CombinedText stringlengths 4 3.42M |
|---|
-- 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 = "FacebookCT"
type = "cert"
function start()
setratelimit(20)
end
function check()
if (api ~= nil and api.key ~= nil and
api.secret ~= nil and api.key ~= "" and api.secret ~= "") then
return true
end
return false
end
function vertical(ctx, domain)
if (api == nil or api.key == nil or
api.secret == nil or api.key == "" or api.secret == "") then
return
end
local dec
local resp
local cacheurl = queryurl_notoken(domain)
-- Check if the response data is in the graph database
if (api.ttl ~= nil and api.ttl > 0) then
resp = obtain_response(cacheurl, api.ttl)
end
if (resp == nil or resp == "") then
local err
resp, err = request({
url=authurl(api.key, api.secret),
headers={['Content-Type']="application/json"},
})
if (err ~= nil and err ~= "") then
return
end
dec = json.decode(resp)
if (dec == nil or dec.access_token == nil or dec.access_token == "") then
return
end
resp, err = request({
url=queryurl(domain, dec.access_token),
headers={['Content-Type']="application/json"},
})
if (err ~= nil and err ~= "") then
return
end
if (api.ttl ~= nil and api.ttl > 0) then
cache_response(cacheurl, resp)
end
end
dec = json.decode(resp)
if (dec == nil or #(dec.data) == 0) then
return
end
for i, r in pairs(dec.data) do
for j, name in pairs(r.domains) do
sendnames(ctx, name)
end
end
end
function authurl(id, secret)
return "https://graph.facebook.com/oauth/access_token?client_id=" .. id .. "&client_secret=" .. secret .. "&grant_type=client_credentials"
end
function queryurl(domain, token)
return "https://graph.facebook.com/certificates?fields=domains&access_token=" .. token .. "&query=*." .. domain
end
function queryurl_notoken(domain)
return "https://graph.facebook.com/certificates?fields=domains&query=*." .. domain
end
function sendnames(ctx, content)
local names = find(content, subdomainre)
if names == nil then
return
end
for i, v in pairs(names) do
newname(ctx, v)
end
end
|
-- Copyright 2004-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 Bar is
type Empty is null record;
type Void_Star is access all Empty;
procedure Do_Nothing (E : Void_Star);
end Bar;
|
-- This spec has been automatically generated from STM32F030.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with System;
package STM32_SVD.DMA is
pragma Preelaborate;
---------------
-- Registers --
---------------
subtype ISR_GIF1_Field is STM32_SVD.Bit;
subtype ISR_TCIF1_Field is STM32_SVD.Bit;
subtype ISR_HTIF1_Field is STM32_SVD.Bit;
subtype ISR_TEIF1_Field is STM32_SVD.Bit;
subtype ISR_GIF2_Field is STM32_SVD.Bit;
subtype ISR_TCIF2_Field is STM32_SVD.Bit;
subtype ISR_HTIF2_Field is STM32_SVD.Bit;
subtype ISR_TEIF2_Field is STM32_SVD.Bit;
subtype ISR_GIF3_Field is STM32_SVD.Bit;
subtype ISR_TCIF3_Field is STM32_SVD.Bit;
subtype ISR_HTIF3_Field is STM32_SVD.Bit;
subtype ISR_TEIF3_Field is STM32_SVD.Bit;
subtype ISR_GIF4_Field is STM32_SVD.Bit;
subtype ISR_TCIF4_Field is STM32_SVD.Bit;
subtype ISR_HTIF4_Field is STM32_SVD.Bit;
subtype ISR_TEIF4_Field is STM32_SVD.Bit;
subtype ISR_GIF5_Field is STM32_SVD.Bit;
subtype ISR_TCIF5_Field is STM32_SVD.Bit;
subtype ISR_HTIF5_Field is STM32_SVD.Bit;
subtype ISR_TEIF5_Field is STM32_SVD.Bit;
subtype ISR_GIF6_Field is STM32_SVD.Bit;
subtype ISR_TCIF6_Field is STM32_SVD.Bit;
subtype ISR_HTIF6_Field is STM32_SVD.Bit;
subtype ISR_TEIF6_Field is STM32_SVD.Bit;
subtype ISR_GIF7_Field is STM32_SVD.Bit;
subtype ISR_TCIF7_Field is STM32_SVD.Bit;
subtype ISR_HTIF7_Field is STM32_SVD.Bit;
subtype ISR_TEIF7_Field is STM32_SVD.Bit;
-- DMA interrupt status register (DMA_ISR)
type ISR_Register is record
-- Read-only. Channel 1 Global interrupt flag
GIF1 : ISR_GIF1_Field;
-- Read-only. Channel 1 Transfer Complete flag
TCIF1 : ISR_TCIF1_Field;
-- Read-only. Channel 1 Half Transfer Complete flag
HTIF1 : ISR_HTIF1_Field;
-- Read-only. Channel 1 Transfer Error flag
TEIF1 : ISR_TEIF1_Field;
-- Read-only. Channel 2 Global interrupt flag
GIF2 : ISR_GIF2_Field;
-- Read-only. Channel 2 Transfer Complete flag
TCIF2 : ISR_TCIF2_Field;
-- Read-only. Channel 2 Half Transfer Complete flag
HTIF2 : ISR_HTIF2_Field;
-- Read-only. Channel 2 Transfer Error flag
TEIF2 : ISR_TEIF2_Field;
-- Read-only. Channel 3 Global interrupt flag
GIF3 : ISR_GIF3_Field;
-- Read-only. Channel 3 Transfer Complete flag
TCIF3 : ISR_TCIF3_Field;
-- Read-only. Channel 3 Half Transfer Complete flag
HTIF3 : ISR_HTIF3_Field;
-- Read-only. Channel 3 Transfer Error flag
TEIF3 : ISR_TEIF3_Field;
-- Read-only. Channel 4 Global interrupt flag
GIF4 : ISR_GIF4_Field;
-- Read-only. Channel 4 Transfer Complete flag
TCIF4 : ISR_TCIF4_Field;
-- Read-only. Channel 4 Half Transfer Complete flag
HTIF4 : ISR_HTIF4_Field;
-- Read-only. Channel 4 Transfer Error flag
TEIF4 : ISR_TEIF4_Field;
-- Read-only. Channel 5 Global interrupt flag
GIF5 : ISR_GIF5_Field;
-- Read-only. Channel 5 Transfer Complete flag
TCIF5 : ISR_TCIF5_Field;
-- Read-only. Channel 5 Half Transfer Complete flag
HTIF5 : ISR_HTIF5_Field;
-- Read-only. Channel 5 Transfer Error flag
TEIF5 : ISR_TEIF5_Field;
-- Read-only. Channel 6 Global interrupt flag
GIF6 : ISR_GIF6_Field;
-- Read-only. Channel 6 Transfer Complete flag
TCIF6 : ISR_TCIF6_Field;
-- Read-only. Channel 6 Half Transfer Complete flag
HTIF6 : ISR_HTIF6_Field;
-- Read-only. Channel 6 Transfer Error flag
TEIF6 : ISR_TEIF6_Field;
-- Read-only. Channel 7 Global interrupt flag
GIF7 : ISR_GIF7_Field;
-- Read-only. Channel 7 Transfer Complete flag
TCIF7 : ISR_TCIF7_Field;
-- Read-only. Channel 7 Half Transfer Complete flag
HTIF7 : ISR_HTIF7_Field;
-- Read-only. Channel 7 Transfer Error flag
TEIF7 : ISR_TEIF7_Field;
-- unspecified
Reserved_28_31 : STM32_SVD.UInt4;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for ISR_Register use record
GIF1 at 0 range 0 .. 0;
TCIF1 at 0 range 1 .. 1;
HTIF1 at 0 range 2 .. 2;
TEIF1 at 0 range 3 .. 3;
GIF2 at 0 range 4 .. 4;
TCIF2 at 0 range 5 .. 5;
HTIF2 at 0 range 6 .. 6;
TEIF2 at 0 range 7 .. 7;
GIF3 at 0 range 8 .. 8;
TCIF3 at 0 range 9 .. 9;
HTIF3 at 0 range 10 .. 10;
TEIF3 at 0 range 11 .. 11;
GIF4 at 0 range 12 .. 12;
TCIF4 at 0 range 13 .. 13;
HTIF4 at 0 range 14 .. 14;
TEIF4 at 0 range 15 .. 15;
GIF5 at 0 range 16 .. 16;
TCIF5 at 0 range 17 .. 17;
HTIF5 at 0 range 18 .. 18;
TEIF5 at 0 range 19 .. 19;
GIF6 at 0 range 20 .. 20;
TCIF6 at 0 range 21 .. 21;
HTIF6 at 0 range 22 .. 22;
TEIF6 at 0 range 23 .. 23;
GIF7 at 0 range 24 .. 24;
TCIF7 at 0 range 25 .. 25;
HTIF7 at 0 range 26 .. 26;
TEIF7 at 0 range 27 .. 27;
Reserved_28_31 at 0 range 28 .. 31;
end record;
subtype IFCR_CGIF1_Field is STM32_SVD.Bit;
subtype IFCR_CTCIF1_Field is STM32_SVD.Bit;
subtype IFCR_CHTIF1_Field is STM32_SVD.Bit;
subtype IFCR_CTEIF1_Field is STM32_SVD.Bit;
subtype IFCR_CGIF2_Field is STM32_SVD.Bit;
subtype IFCR_CTCIF2_Field is STM32_SVD.Bit;
subtype IFCR_CHTIF2_Field is STM32_SVD.Bit;
subtype IFCR_CTEIF2_Field is STM32_SVD.Bit;
subtype IFCR_CGIF3_Field is STM32_SVD.Bit;
subtype IFCR_CTCIF3_Field is STM32_SVD.Bit;
subtype IFCR_CHTIF3_Field is STM32_SVD.Bit;
subtype IFCR_CTEIF3_Field is STM32_SVD.Bit;
subtype IFCR_CGIF4_Field is STM32_SVD.Bit;
subtype IFCR_CTCIF4_Field is STM32_SVD.Bit;
subtype IFCR_CHTIF4_Field is STM32_SVD.Bit;
subtype IFCR_CTEIF4_Field is STM32_SVD.Bit;
subtype IFCR_CGIF5_Field is STM32_SVD.Bit;
subtype IFCR_CTCIF5_Field is STM32_SVD.Bit;
subtype IFCR_CHTIF5_Field is STM32_SVD.Bit;
subtype IFCR_CTEIF5_Field is STM32_SVD.Bit;
subtype IFCR_CGIF6_Field is STM32_SVD.Bit;
subtype IFCR_CTCIF6_Field is STM32_SVD.Bit;
subtype IFCR_CHTIF6_Field is STM32_SVD.Bit;
subtype IFCR_CTEIF6_Field is STM32_SVD.Bit;
subtype IFCR_CGIF7_Field is STM32_SVD.Bit;
subtype IFCR_CTCIF7_Field is STM32_SVD.Bit;
subtype IFCR_CHTIF7_Field is STM32_SVD.Bit;
subtype IFCR_CTEIF7_Field is STM32_SVD.Bit;
-- DMA interrupt flag clear register (DMA_IFCR)
type IFCR_Register is record
-- Write-only. Channel 1 Global interrupt clear
CGIF1 : IFCR_CGIF1_Field := 16#0#;
-- Write-only. Channel 1 Transfer Complete clear
CTCIF1 : IFCR_CTCIF1_Field := 16#0#;
-- Write-only. Channel 1 Half Transfer clear
CHTIF1 : IFCR_CHTIF1_Field := 16#0#;
-- Write-only. Channel 1 Transfer Error clear
CTEIF1 : IFCR_CTEIF1_Field := 16#0#;
-- Write-only. Channel 2 Global interrupt clear
CGIF2 : IFCR_CGIF2_Field := 16#0#;
-- Write-only. Channel 2 Transfer Complete clear
CTCIF2 : IFCR_CTCIF2_Field := 16#0#;
-- Write-only. Channel 2 Half Transfer clear
CHTIF2 : IFCR_CHTIF2_Field := 16#0#;
-- Write-only. Channel 2 Transfer Error clear
CTEIF2 : IFCR_CTEIF2_Field := 16#0#;
-- Write-only. Channel 3 Global interrupt clear
CGIF3 : IFCR_CGIF3_Field := 16#0#;
-- Write-only. Channel 3 Transfer Complete clear
CTCIF3 : IFCR_CTCIF3_Field := 16#0#;
-- Write-only. Channel 3 Half Transfer clear
CHTIF3 : IFCR_CHTIF3_Field := 16#0#;
-- Write-only. Channel 3 Transfer Error clear
CTEIF3 : IFCR_CTEIF3_Field := 16#0#;
-- Write-only. Channel 4 Global interrupt clear
CGIF4 : IFCR_CGIF4_Field := 16#0#;
-- Write-only. Channel 4 Transfer Complete clear
CTCIF4 : IFCR_CTCIF4_Field := 16#0#;
-- Write-only. Channel 4 Half Transfer clear
CHTIF4 : IFCR_CHTIF4_Field := 16#0#;
-- Write-only. Channel 4 Transfer Error clear
CTEIF4 : IFCR_CTEIF4_Field := 16#0#;
-- Write-only. Channel 5 Global interrupt clear
CGIF5 : IFCR_CGIF5_Field := 16#0#;
-- Write-only. Channel 5 Transfer Complete clear
CTCIF5 : IFCR_CTCIF5_Field := 16#0#;
-- Write-only. Channel 5 Half Transfer clear
CHTIF5 : IFCR_CHTIF5_Field := 16#0#;
-- Write-only. Channel 5 Transfer Error clear
CTEIF5 : IFCR_CTEIF5_Field := 16#0#;
-- Write-only. Channel 6 Global interrupt clear
CGIF6 : IFCR_CGIF6_Field := 16#0#;
-- Write-only. Channel 6 Transfer Complete clear
CTCIF6 : IFCR_CTCIF6_Field := 16#0#;
-- Write-only. Channel 6 Half Transfer clear
CHTIF6 : IFCR_CHTIF6_Field := 16#0#;
-- Write-only. Channel 6 Transfer Error clear
CTEIF6 : IFCR_CTEIF6_Field := 16#0#;
-- Write-only. Channel 7 Global interrupt clear
CGIF7 : IFCR_CGIF7_Field := 16#0#;
-- Write-only. Channel 7 Transfer Complete clear
CTCIF7 : IFCR_CTCIF7_Field := 16#0#;
-- Write-only. Channel 7 Half Transfer clear
CHTIF7 : IFCR_CHTIF7_Field := 16#0#;
-- Write-only. Channel 7 Transfer Error clear
CTEIF7 : IFCR_CTEIF7_Field := 16#0#;
-- unspecified
Reserved_28_31 : STM32_SVD.UInt4 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for IFCR_Register use record
CGIF1 at 0 range 0 .. 0;
CTCIF1 at 0 range 1 .. 1;
CHTIF1 at 0 range 2 .. 2;
CTEIF1 at 0 range 3 .. 3;
CGIF2 at 0 range 4 .. 4;
CTCIF2 at 0 range 5 .. 5;
CHTIF2 at 0 range 6 .. 6;
CTEIF2 at 0 range 7 .. 7;
CGIF3 at 0 range 8 .. 8;
CTCIF3 at 0 range 9 .. 9;
CHTIF3 at 0 range 10 .. 10;
CTEIF3 at 0 range 11 .. 11;
CGIF4 at 0 range 12 .. 12;
CTCIF4 at 0 range 13 .. 13;
CHTIF4 at 0 range 14 .. 14;
CTEIF4 at 0 range 15 .. 15;
CGIF5 at 0 range 16 .. 16;
CTCIF5 at 0 range 17 .. 17;
CHTIF5 at 0 range 18 .. 18;
CTEIF5 at 0 range 19 .. 19;
CGIF6 at 0 range 20 .. 20;
CTCIF6 at 0 range 21 .. 21;
CHTIF6 at 0 range 22 .. 22;
CTEIF6 at 0 range 23 .. 23;
CGIF7 at 0 range 24 .. 24;
CTCIF7 at 0 range 25 .. 25;
CHTIF7 at 0 range 26 .. 26;
CTEIF7 at 0 range 27 .. 27;
Reserved_28_31 at 0 range 28 .. 31;
end record;
subtype CCR_EN_Field is STM32_SVD.Bit;
subtype CCR_TCIE_Field is STM32_SVD.Bit;
subtype CCR_HTIE_Field is STM32_SVD.Bit;
subtype CCR_TEIE_Field is STM32_SVD.Bit;
subtype CCR_DIR_Field is STM32_SVD.Bit;
subtype CCR_CIRC_Field is STM32_SVD.Bit;
subtype CCR_PINC_Field is STM32_SVD.Bit;
subtype CCR_MINC_Field is STM32_SVD.Bit;
subtype CCR_PSIZE_Field is STM32_SVD.UInt2;
subtype CCR_MSIZE_Field is STM32_SVD.UInt2;
subtype CCR_PL_Field is STM32_SVD.UInt2;
subtype CCR_MEM2MEM_Field is STM32_SVD.Bit;
-- DMA channel configuration register (DMA_CCR)
type CCR_Register is record
-- Channel enable
EN : CCR_EN_Field := 16#0#;
-- Transfer complete interrupt enable
TCIE : CCR_TCIE_Field := 16#0#;
-- Half Transfer interrupt enable
HTIE : CCR_HTIE_Field := 16#0#;
-- Transfer error interrupt enable
TEIE : CCR_TEIE_Field := 16#0#;
-- Data transfer direction
DIR : CCR_DIR_Field := 16#0#;
-- Circular mode
CIRC : CCR_CIRC_Field := 16#0#;
-- Peripheral increment mode
PINC : CCR_PINC_Field := 16#0#;
-- Memory increment mode
MINC : CCR_MINC_Field := 16#0#;
-- Peripheral size
PSIZE : CCR_PSIZE_Field := 16#0#;
-- Memory size
MSIZE : CCR_MSIZE_Field := 16#0#;
-- Channel Priority level
PL : CCR_PL_Field := 16#0#;
-- Memory to memory mode
MEM2MEM : CCR_MEM2MEM_Field := 16#0#;
-- unspecified
Reserved_15_31 : STM32_SVD.UInt17 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CCR_Register use record
EN at 0 range 0 .. 0;
TCIE at 0 range 1 .. 1;
HTIE at 0 range 2 .. 2;
TEIE at 0 range 3 .. 3;
DIR at 0 range 4 .. 4;
CIRC at 0 range 5 .. 5;
PINC at 0 range 6 .. 6;
MINC at 0 range 7 .. 7;
PSIZE at 0 range 8 .. 9;
MSIZE at 0 range 10 .. 11;
PL at 0 range 12 .. 13;
MEM2MEM at 0 range 14 .. 14;
Reserved_15_31 at 0 range 15 .. 31;
end record;
subtype CNDTR_NDT_Field is STM32_SVD.UInt16;
-- DMA channel 1 number of data register
type CNDTR_Register is record
-- Number of data to transfer
NDT : CNDTR_NDT_Field := 16#0#;
-- unspecified
Reserved_16_31 : STM32_SVD.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CNDTR_Register use record
NDT at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- DMA controller
type DMA_Peripheral is record
-- DMA interrupt status register (DMA_ISR)
ISR : aliased ISR_Register;
-- DMA interrupt flag clear register (DMA_IFCR)
IFCR : aliased IFCR_Register;
-- DMA channel configuration register (DMA_CCR)
CCR1 : aliased CCR_Register;
-- DMA channel 1 number of data register
CNDTR1 : aliased CNDTR_Register;
-- DMA channel 1 peripheral address register
CPAR1 : aliased STM32_SVD.UInt32;
-- DMA channel 1 memory address register
CMAR1 : aliased STM32_SVD.UInt32;
-- DMA channel configuration register (DMA_CCR)
CCR2 : aliased CCR_Register;
-- DMA channel 2 number of data register
CNDTR2 : aliased CNDTR_Register;
-- DMA channel 2 peripheral address register
CPAR2 : aliased STM32_SVD.UInt32;
-- DMA channel 2 memory address register
CMAR2 : aliased STM32_SVD.UInt32;
-- DMA channel configuration register (DMA_CCR)
CCR3 : aliased CCR_Register;
-- DMA channel 3 number of data register
CNDTR3 : aliased CNDTR_Register;
-- DMA channel 3 peripheral address register
CPAR3 : aliased STM32_SVD.UInt32;
-- DMA channel 3 memory address register
CMAR3 : aliased STM32_SVD.UInt32;
-- DMA channel configuration register (DMA_CCR)
CCR4 : aliased CCR_Register;
-- DMA channel 4 number of data register
CNDTR4 : aliased CNDTR_Register;
-- DMA channel 4 peripheral address register
CPAR4 : aliased STM32_SVD.UInt32;
-- DMA channel 4 memory address register
CMAR4 : aliased STM32_SVD.UInt32;
-- DMA channel configuration register (DMA_CCR)
CCR5 : aliased CCR_Register;
-- DMA channel 5 number of data register
CNDTR5 : aliased CNDTR_Register;
-- DMA channel 5 peripheral address register
CPAR5 : aliased STM32_SVD.UInt32;
-- DMA channel 5 memory address register
CMAR5 : aliased STM32_SVD.UInt32;
-- DMA channel configuration register (DMA_CCR)
CCR6 : aliased CCR_Register;
-- DMA channel 6 number of data register
CNDTR6 : aliased CNDTR_Register;
-- DMA channel 6 peripheral address register
CPAR6 : aliased STM32_SVD.UInt32;
-- DMA channel 6 memory address register
CMAR6 : aliased STM32_SVD.UInt32;
-- DMA channel configuration register (DMA_CCR)
CCR7 : aliased CCR_Register;
-- DMA channel 7 number of data register
CNDTR7 : aliased CNDTR_Register;
-- DMA channel 7 peripheral address register
CPAR7 : aliased STM32_SVD.UInt32;
-- DMA channel 7 memory address register
CMAR7 : aliased STM32_SVD.UInt32;
end record
with Volatile;
for DMA_Peripheral use record
ISR at 16#0# range 0 .. 31;
IFCR at 16#4# range 0 .. 31;
CCR1 at 16#8# range 0 .. 31;
CNDTR1 at 16#C# range 0 .. 31;
CPAR1 at 16#10# range 0 .. 31;
CMAR1 at 16#14# range 0 .. 31;
CCR2 at 16#1C# range 0 .. 31;
CNDTR2 at 16#20# range 0 .. 31;
CPAR2 at 16#24# range 0 .. 31;
CMAR2 at 16#28# range 0 .. 31;
CCR3 at 16#30# range 0 .. 31;
CNDTR3 at 16#34# range 0 .. 31;
CPAR3 at 16#38# range 0 .. 31;
CMAR3 at 16#3C# range 0 .. 31;
CCR4 at 16#44# range 0 .. 31;
CNDTR4 at 16#48# range 0 .. 31;
CPAR4 at 16#4C# range 0 .. 31;
CMAR4 at 16#50# range 0 .. 31;
CCR5 at 16#58# range 0 .. 31;
CNDTR5 at 16#5C# range 0 .. 31;
CPAR5 at 16#60# range 0 .. 31;
CMAR5 at 16#64# range 0 .. 31;
CCR6 at 16#6C# range 0 .. 31;
CNDTR6 at 16#70# range 0 .. 31;
CPAR6 at 16#74# range 0 .. 31;
CMAR6 at 16#78# range 0 .. 31;
CCR7 at 16#80# range 0 .. 31;
CNDTR7 at 16#84# range 0 .. 31;
CPAR7 at 16#88# range 0 .. 31;
CMAR7 at 16#8C# range 0 .. 31;
end record;
-- DMA controller
DMA_Periph : aliased DMA_Peripheral
with Import, Address => System'To_Address (16#40020000#);
end STM32_SVD.DMA;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Localization, Internationalization, Globalization for Ada --
-- --
-- Testsuite Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2013, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- Checks work of Last_Index operation.
------------------------------------------------------------------------------
with League.Strings;
procedure Test_315 is
S : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("abc abc");
begin
if S.Last_Index ('b') /= 6 then
raise Program_Error;
end if;
if S.Last_Index ('z') /= 0 then
raise Program_Error;
end if;
end Test_315;
|
with Offmt_Lib.Fmt_Data.Unsigned_8;
with Offmt_Lib.Fmt_Data.Unsigned_16;
with Offmt_Lib.Fmt_Data.Unsigned_32;
package body Offmt_Lib.Fmt_Data is
------------
-- Create --
------------
function Create (Typ : Format_Type) return Instance'Class is
begin
case Typ is
when Type_U8 =>
declare
Ret : Fmt_Data.Unsigned_8.Instance;
begin
return Ret;
end;
when Type_U16 =>
declare
Ret : Fmt_Data.Unsigned_16.Instance;
begin
return Ret;
end;
when Type_U32 =>
declare
Ret : Fmt_Data.Unsigned_32.Instance;
begin
return Ret;
end;
end case;
end Create;
end Offmt_Lib.Fmt_Data;
|
package body Swap_Generics is
procedure Swap_Generic (Value_1 : in out Data_Type; Value_2 : in out Data_Type) is
Tmp : Data_Type;
begin
Tmp := Value_1;
Value_1 := Value_2;
Value_2 := Tmp;
end Swap_Generic;
end Swap_Generics;
|
-----------------------------------------------------------------------
-- awa-questions -- Module questions
-- Copyright (C) 2012, 2013, 2015, 2018 Stephane Carrez
-- Written by Stephane Carrez (Stephane.Carrez@gmail.com)
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
-- = Questions Module =
--
-- @include questions.xml
-- @include question-list.xml
-- @include question-info.xml
-- @include answer-list.xml
--
-- == Model ==
-- [images/awa_questions_model.png]
--
package AWA.Questions is
pragma Preelaborate;
end AWA.Questions;
|
-- Copyright (c) 2019 Maxim Reznik <reznikmm@gmail.com>
--
-- SPDX-License-Identifier: MIT
-- License-Filename: LICENSE
-------------------------------------------------------------
package body Program.Nodes.Function_Access_Types is
function Create
(Not_Token : Program.Lexical_Elements.Lexical_Element_Access;
Null_Token : Program.Lexical_Elements.Lexical_Element_Access;
Access_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Protected_Token : Program.Lexical_Elements.Lexical_Element_Access;
Function_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Left_Bracket_Token : Program.Lexical_Elements.Lexical_Element_Access;
Parameters : Program.Elements.Parameter_Specifications
.Parameter_Specification_Vector_Access;
Right_Bracket_Token : Program.Lexical_Elements.Lexical_Element_Access;
Return_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Not_Token_2 : Program.Lexical_Elements.Lexical_Element_Access;
Null_Token_2 : Program.Lexical_Elements.Lexical_Element_Access;
Result_Subtype : not null Program.Elements.Element_Access)
return Function_Access_Type is
begin
return Result : Function_Access_Type :=
(Not_Token => Not_Token, Null_Token => Null_Token,
Access_Token => Access_Token, Protected_Token => Protected_Token,
Function_Token => Function_Token,
Left_Bracket_Token => Left_Bracket_Token, Parameters => Parameters,
Right_Bracket_Token => Right_Bracket_Token,
Return_Token => Return_Token, Not_Token_2 => Not_Token_2,
Null_Token_2 => Null_Token_2, Result_Subtype => Result_Subtype,
Enclosing_Element => null)
do
Initialize (Result);
end return;
end Create;
function Create
(Parameters : Program.Elements.Parameter_Specifications
.Parameter_Specification_Vector_Access;
Result_Subtype : not null Program.Elements.Element_Access;
Is_Part_Of_Implicit : Boolean := False;
Is_Part_Of_Inherited : Boolean := False;
Is_Part_Of_Instance : Boolean := False;
Has_Not_Null : Boolean := False;
Has_Protected : Boolean := False;
Has_Not_Null_2 : Boolean := False)
return Implicit_Function_Access_Type is
begin
return Result : Implicit_Function_Access_Type :=
(Parameters => Parameters, Result_Subtype => Result_Subtype,
Is_Part_Of_Implicit => Is_Part_Of_Implicit,
Is_Part_Of_Inherited => Is_Part_Of_Inherited,
Is_Part_Of_Instance => Is_Part_Of_Instance,
Has_Not_Null => Has_Not_Null, Has_Protected => Has_Protected,
Has_Not_Null_2 => Has_Not_Null_2, Enclosing_Element => null)
do
Initialize (Result);
end return;
end Create;
overriding function Parameters
(Self : Base_Function_Access_Type)
return Program.Elements.Parameter_Specifications
.Parameter_Specification_Vector_Access is
begin
return Self.Parameters;
end Parameters;
overriding function Result_Subtype
(Self : Base_Function_Access_Type)
return not null Program.Elements.Element_Access is
begin
return Self.Result_Subtype;
end Result_Subtype;
overriding function Not_Token
(Self : Function_Access_Type)
return Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.Not_Token;
end Not_Token;
overriding function Null_Token
(Self : Function_Access_Type)
return Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.Null_Token;
end Null_Token;
overriding function Access_Token
(Self : Function_Access_Type)
return not null Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.Access_Token;
end Access_Token;
overriding function Protected_Token
(Self : Function_Access_Type)
return Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.Protected_Token;
end Protected_Token;
overriding function Function_Token
(Self : Function_Access_Type)
return not null Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.Function_Token;
end Function_Token;
overriding function Left_Bracket_Token
(Self : Function_Access_Type)
return Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.Left_Bracket_Token;
end Left_Bracket_Token;
overriding function Right_Bracket_Token
(Self : Function_Access_Type)
return Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.Right_Bracket_Token;
end Right_Bracket_Token;
overriding function Return_Token
(Self : Function_Access_Type)
return not null Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.Return_Token;
end Return_Token;
overriding function Not_Token_2
(Self : Function_Access_Type)
return Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.Not_Token_2;
end Not_Token_2;
overriding function Null_Token_2
(Self : Function_Access_Type)
return Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.Null_Token_2;
end Null_Token_2;
overriding function Has_Not_Null
(Self : Function_Access_Type)
return Boolean is
begin
return Self.Null_Token.Assigned;
end Has_Not_Null;
overriding function Has_Protected
(Self : Function_Access_Type)
return Boolean is
begin
return Self.Protected_Token.Assigned;
end Has_Protected;
overriding function Has_Not_Null_2
(Self : Function_Access_Type)
return Boolean is
begin
return Self.Null_Token_2.Assigned;
end Has_Not_Null_2;
overriding function Is_Part_Of_Implicit
(Self : Implicit_Function_Access_Type)
return Boolean is
begin
return Self.Is_Part_Of_Implicit;
end Is_Part_Of_Implicit;
overriding function Is_Part_Of_Inherited
(Self : Implicit_Function_Access_Type)
return Boolean is
begin
return Self.Is_Part_Of_Inherited;
end Is_Part_Of_Inherited;
overriding function Is_Part_Of_Instance
(Self : Implicit_Function_Access_Type)
return Boolean is
begin
return Self.Is_Part_Of_Instance;
end Is_Part_Of_Instance;
overriding function Has_Not_Null
(Self : Implicit_Function_Access_Type)
return Boolean is
begin
return Self.Has_Not_Null;
end Has_Not_Null;
overriding function Has_Protected
(Self : Implicit_Function_Access_Type)
return Boolean is
begin
return Self.Has_Protected;
end Has_Protected;
overriding function Has_Not_Null_2
(Self : Implicit_Function_Access_Type)
return Boolean is
begin
return Self.Has_Not_Null_2;
end Has_Not_Null_2;
procedure Initialize
(Self : aliased in out Base_Function_Access_Type'Class) is
begin
for Item in Self.Parameters.Each_Element loop
Set_Enclosing_Element (Item.Element, Self'Unchecked_Access);
end loop;
Set_Enclosing_Element (Self.Result_Subtype, Self'Unchecked_Access);
null;
end Initialize;
overriding function Is_Function_Access_Type_Element
(Self : Base_Function_Access_Type)
return Boolean is
pragma Unreferenced (Self);
begin
return True;
end Is_Function_Access_Type_Element;
overriding function Is_Access_Type_Element
(Self : Base_Function_Access_Type)
return Boolean is
pragma Unreferenced (Self);
begin
return True;
end Is_Access_Type_Element;
overriding function Is_Type_Definition_Element
(Self : Base_Function_Access_Type)
return Boolean is
pragma Unreferenced (Self);
begin
return True;
end Is_Type_Definition_Element;
overriding function Is_Definition_Element
(Self : Base_Function_Access_Type)
return Boolean is
pragma Unreferenced (Self);
begin
return True;
end Is_Definition_Element;
overriding procedure Visit
(Self : not null access Base_Function_Access_Type;
Visitor : in out Program.Element_Visitors.Element_Visitor'Class) is
begin
Visitor.Function_Access_Type (Self);
end Visit;
overriding function To_Function_Access_Type_Text
(Self : aliased in out Function_Access_Type)
return Program.Elements.Function_Access_Types
.Function_Access_Type_Text_Access is
begin
return Self'Unchecked_Access;
end To_Function_Access_Type_Text;
overriding function To_Function_Access_Type_Text
(Self : aliased in out Implicit_Function_Access_Type)
return Program.Elements.Function_Access_Types
.Function_Access_Type_Text_Access is
pragma Unreferenced (Self);
begin
return null;
end To_Function_Access_Type_Text;
end Program.Nodes.Function_Access_Types;
|
--
-- 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.
--
--
package body soc.nvic
with spark_mode => off
is
function to_irq_number
(intr : soc.interrupts.t_interrupt)
return t_irq_index
is
begin
return t_irq_index'val (soc.interrupts.t_interrupt'pos (intr) - 16);
end to_irq_number;
procedure enable_irq
(irq : in t_irq_index)
is
begin
case irq is
when 0 .. 31 => NVIC.ISER0.irq(irq) := IRQ_ENABLED;
when 32 .. 63 => NVIC.ISER1.irq(irq) := IRQ_ENABLED;
when 64 .. 80 => NVIC.ISER2.irq(irq) := IRQ_ENABLED;
end case;
end enable_irq;
procedure clear_pending_irq
(irq : in t_irq_index)
is
begin
case irq is
when 0 .. 31 => NVIC.ICPR0.irq(irq) := CLEAR_PENDING;
when 32 .. 63 => NVIC.ICPR1.irq(irq) := CLEAR_PENDING;
when 64 .. 80 => NVIC.ICPR2.irq(irq) := CLEAR_PENDING;
end case;
end clear_pending_irq;
end soc.nvic;
|
with Gtk.Box; use Gtk.Box;
with Gtk.Label; use Gtk.Label;
with Gtk.Widget; use Gtk.Widget;
with Gtk.Main;
with Gtk.Window; use Gtk.Window;
procedure @_Main_Name_@ is
Win : Gtk_Window;
Label : Gtk_Label;
Box : Gtk_Vbox;
begin
-- Initialize GtkAda.
Gtk.Main.Init;
-- Create a window with a size of 400x400
Gtk_New (Win);
Win.Set_Default_Size (400, 400);
-- Create a box to organize vertically the contents of the window
Gtk_New_Vbox (Box);
Win.Add (Box);
-- Add a label
Gtk_New (Label, "Hello world.");
Box.Add (Label);
-- Show the window and present it
Win.Show_All;
Win.Present;
-- Start the Gtk+ main loop
Gtk.Main.Main;
end @_Main_Name_@;
|
--
-- 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.
--
--
package body ewok.exti.interfaces
with spark_mode => off
is
procedure interfaces_init
is
begin
ewok.exti.init;
end interfaces_init;
end ewok.exti.interfaces;
|
package Aggr14_Pkg is
type A is array (Integer range 1 .. 3) of Short_Short_Integer;
X : A := (1, 2, 3);
procedure Proc;
end Aggr14_Pkg;
|
--------------------------------------------------------------------
--| Program/Package : SCREEN Version : 1.0 |
--------------------------------------------------------------------
--| Abstract : ANSI screen manipulation |
--------------------------------------------------------------------
--| File : screenpkg.ads |
--| Compiler/System : IBM AIX/6000 Ada |
--| Author : John Dalbey Date : 9/28/93 |
--| References : Feldman textbook |
--------------------------------------------------------------------
--| Limitations : To work properly, must be run on VT100 terminal.|
--------------------------------------------------------------------
PACKAGE Screen IS
Screen_Depth : CONSTANT Integer := 24;
Screen_Width : CONSTANT Integer := 80;
SUBTYPE Depth IS Integer RANGE 1..Screen_Depth;
SUBTYPE Width IS Integer RANGE 1..Screen_Width;
TYPE Attribute IS (normal, bold, inverse, blink);
PROCEDURE Beep;
-- assumes : nothing
-- results : the terminal issues a beep tone.
PROCEDURE ClearScreen;
-- assumes : nothing
-- results : the screen is cleared.
PROCEDURE MoveCursor (Row : Depth; Column : Width);
-- assumes : Row and Column have a value.
-- results : The cursor is moved to position (Row, Column).
-- exceptions : Constraint_error can be raised
PROCEDURE SetAttribute (The_Attribute: Attribute);
-- assumes : The_Attribute has a value.
-- results : Subsequent text will be displayed using The_Attribute.
PROCEDURE SaveCursor;
-- assumes : nothing
-- results : the current position of the cursor is saved.
PROCEDURE RestoreCursor;
-- assumes : nothing
-- results : the cursor is restored to it's previously saved position.
END Screen;
|
with MPI;
package MPIUse is
flag : MPI.Errorcode_Type := MPI.Errorcode_Type(-2);
end MPIUse;
|
------------------------------------------------------------------------------
-- --
-- GNAT ncurses Binding Samples --
-- --
-- Sample.Menu_Demo --
-- --
-- S P E C --
-- --
------------------------------------------------------------------------------
-- Copyright (c) 1998,2003 Free Software Foundation, Inc. --
-- --
-- Permission is hereby granted, free of charge, to any person obtaining a --
-- copy of this software and associated documentation files (the --
-- "Software"), to deal in the Software without restriction, including --
-- without limitation the rights to use, copy, modify, merge, publish, --
-- distribute, distribute with modifications, sublicense, and/or sell --
-- copies of the Software, and to permit persons to whom the Software is --
-- furnished to do so, subject to the following conditions: --
-- --
-- The above copyright notice and this permission notice shall be included --
-- in all copies or substantial portions of the Software. --
-- --
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS --
-- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF --
-- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. --
-- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, --
-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR --
-- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR --
-- THE USE OR OTHER DEALINGS IN THE SOFTWARE. --
-- --
-- Except as contained in this notice, the name(s) of the above copyright --
-- holders shall not be used in advertising or otherwise to promote the --
-- sale, use or other dealings in this Software without prior written --
-- authorization. --
------------------------------------------------------------------------------
-- Author: Juergen Pfeifer, 1996
-- Version Control
-- $Revision: 1.10 $
-- Binding Version 01.00
------------------------------------------------------------------------------
package Sample.Menu_Demo is
procedure Demo;
end Sample.Menu_Demo;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
-- --
-- S Y S T E M . T A S K I N G . U T I L I T I E S --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2014, Free Software Foundation, Inc. --
-- --
-- GNARL is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNARL was developed by the GNARL team at Florida State University. --
-- Extensive contributions were provided by Ada Core Technologies, Inc. --
-- --
------------------------------------------------------------------------------
-- This package provides RTS Internal Declarations.
-- These declarations are not part of the GNARLI
with Ada.Unchecked_Conversion;
with System.Task_Primitives;
package System.Tasking.Utilities is
function ATCB_To_Address is new
Ada.Unchecked_Conversion (Task_Id, System.Task_Primitives.Task_Address);
---------------------------------
-- Task_Stage Related routines --
---------------------------------
function Make_Independent return Boolean;
-- Move the current task to the outermost level (level 2) of the master
-- hierarchy of the environment task. That is one level further out
-- than normal tasks defined in library-level packages (level 3). The
-- environment task will wait for level 3 tasks to terminate normally,
-- then it will abort all the level 2 tasks. See Finalize_Global_Tasks
-- procedure for more information.
--
-- This is a dangerous operation, and should never be used on nested tasks
-- or tasks that depend on any objects that might be finalized earlier than
-- the termination of the environment task. It is for internal use by the
-- GNARL, to prevent such internal server tasks from preventing a partition
-- from terminating.
--
-- Also note that the run time assumes that the parent of an independent
-- task is the environment task. If this is not the case, Make_Independent
-- will change the task's parent. This assumption is particularly
-- important for master level completion and for the computation of
-- Independent_Task_Count.
--
-- NOTE WELL: Make_Independent should be called before the task reaches its
-- "begin", like this:
--
-- task body Some_Independent_Task is
-- ...
-- Ignore : constant Boolean := Make_Independent;
-- ...
-- begin
--
-- The return value is meaningless; the only reason this is a function is
-- to get around the Ada limitation that makes a procedure call
-- syntactically illegal before the "begin".
--
-- Calling it before "begin" ensures that the call completes before the
-- activating task can proceed. This is important for preventing race
-- conditions. For example, if the environment task reaches
-- Finalize_Global_Tasks before some task has finished Make_Independent,
-- the program can hang.
--
-- Note also that if a package declares independent tasks, it should not
-- initialize its package-body data after "begin" of the package, because
-- that's where the tasks are activated. Initializing such data before the
-- task activation helps prevent the tasks from accessing uninitialized
-- data.
Independent_Task_Count : Natural := 0;
-- Number of independent tasks. This counter is incremented each time
-- Make_Independent is called. Note that if a server task terminates,
-- this counter will not be decremented. Since Make_Independent locks
-- the environment task (because every independent task depends on it),
-- this counter is protected by the environment task's lock.
---------------------------------
-- Task Abort Related Routines --
---------------------------------
procedure Cancel_Queued_Entry_Calls (T : Task_Id);
-- Cancel any entry calls queued on target task.
-- Call this while holding T's lock (or RTS_Lock in Single_Lock mode).
procedure Exit_One_ATC_Level (Self_ID : Task_Id);
pragma Inline (Exit_One_ATC_Level);
-- Call only with abort deferred and holding lock of Self_ID.
-- This is a bit of common code for all entry calls.
-- The effect is to exit one level of ATC nesting.
procedure Abort_One_Task (Self_ID : Task_Id; T : Task_Id);
-- Similar to Locked_Abort_To_Level (Self_ID, T, 0), but:
-- (1) caller should be holding no locks
-- (2) may be called for tasks that have not yet been activated
-- (3) always aborts whole task
procedure Abort_Tasks (Tasks : Task_List);
-- Abort_Tasks is called to initiate abort, however, the actual
-- aborting is done by aborted task by means of Abort_Handler
procedure Make_Passive (Self_ID : Task_Id; Task_Completed : Boolean);
-- Update counts to indicate current task is either terminated or
-- accepting on a terminate alternative. Call holding no locks except
-- Global_Task_Lock when calling from Terminate_Task, and RTS_Lock when
-- Single_Lock is True.
end System.Tasking.Utilities;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- G N A T . D E B U G _ U T I L I T I E S --
-- --
-- S p e c --
-- --
-- Copyright (C) 1995-2010, AdaCore --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- Debugging utilities
-- This package provides some useful utility subprograms for use in writing
-- routines that generate debugging output.
with System;
package GNAT.Debug_Utilities is
pragma Pure;
Address_64 : constant Boolean := Standard'Address_Size = 64;
-- Set true if 64 bit addresses (assumes only 32 and 64 are possible)
Address_Image_Length : constant := 13 + 10 * Boolean'Pos (Address_64);
-- Length of string returned by Image function for an address
subtype Image_String is String (1 .. Address_Image_Length);
-- Subtype returned by Image function for an address
Address_Image_C_Length : constant := 10 + 8 * Boolean'Pos (Address_64);
-- Length of string returned by Image_C function
subtype Image_C_String is String (1 .. Address_Image_C_Length);
-- Subtype returned by Image_C function
function Image (S : String) return String;
-- Returns a string image of S, obtained by prepending and appending
-- quote (") characters and doubling any quote characters in the string.
-- The maximum length of the result is thus 2 ** S'Length + 2.
function Image (A : System.Address) return Image_String;
-- Returns a string of the form 16#hhhh_hhhh# for 32-bit addresses
-- or 16#hhhh_hhhh_hhhh_hhhh# for 64-bit addresses. Hex characters
-- are in upper case.
function Image_C (A : System.Address) return Image_C_String;
-- Returns a string of the form 0xhhhhhhhh for 32 bit addresses or
-- 0xhhhhhhhhhhhhhhhh for 64-bit addresses. Hex characters are in
-- upper case.
function Value (S : String) return System.Address;
-- Given a valid integer literal in any form, including the form returned
-- by the Image function in this package, yields the corresponding address.
-- Note that this routine will handle any Ada integer format, and will
-- also handle hex constants in C format (0xhh..hhh). Constraint_Error
-- may be raised for obviously incorrect data, but the routine is fairly
-- permissive, and in particular, all underscores in whatever position
-- are simply ignored completely.
end GNAT.Debug_Utilities;
|
-- { dg-do compile }
package static_initializer is
type Vector is array (1 .. 3) of Float;
type Arr is array (Integer range 1 .. 3) of Vector;
Pos : constant Arr := ((0.0, 1.0, 2.0),
(0.5, 1.5, 2.5),
(1.0, 2.0, 4.0));
end;
-- { dg-final { scan-assembler-not "elabs" } }
|
with
lace.Any;
private
with
lace.make_Subject,
lace.make_Observer,
ada.Strings.unbounded;
package chat.Client.local
--
-- Provides a local client.
-- Names must be unique.
--
is
type Item is limited new lace.Any.limited_item
and chat.Client .item with private;
type View is access all Item'Class;
-- Forge
--
function to_Client (Name : in String) return Item;
-- Attributes
--
overriding
function Name (Self : in Item) return String;
overriding
function as_Observer (Self : access Item) return lace.Observer.view;
overriding
function as_Subject (Self : access Item) return lace.Subject.view;
-- Operations
--
procedure start (Self : in out chat.Client.local.item);
overriding
procedure register_Client (Self : in out Item; other_Client : in Client.view);
overriding
procedure deregister_Client (Self : in out Item; other_Client_as_Observer : in lace.Observer.view;
other_Client_Name : in String);
overriding
procedure Registrar_has_shutdown (Self : in out Item);
private
package Observer is new lace.make_Observer (lace.Any.limited_item);
package Subject is new lace.make_Subject (Observer .item);
use ada.Strings.unbounded;
type Item is limited new Subject .item
and chat.Client.item with
record
Name : unbounded_String;
Registrar_has_shutdown : Boolean := False;
Registrar_is_dead : Boolean := False;
end record;
end chat.Client.local;
|
package Giza.Bitmap_Fonts.FreeMono24pt7b is
Font : constant Giza.Font.Ref_Const;
private
FreeMono24pt7bBitmaps : aliased constant Font_Bitmap := (
16#73#, 16#9C#, 16#E7#, 16#39#, 16#CE#, 16#73#, 16#9C#, 16#C6#, 16#30#,
16#84#, 16#21#, 16#08#, 16#00#, 16#00#, 16#00#, 16#03#, 16#BF#, 16#FF#,
16#B8#, 16#FE#, 16#7F#, 16#7C#, 16#7E#, 16#7C#, 16#7E#, 16#7C#, 16#3E#,
16#7C#, 16#3E#, 16#7C#, 16#3E#, 16#7C#, 16#3E#, 16#7C#, 16#3E#, 16#3C#,
16#3E#, 16#38#, 16#1C#, 16#38#, 16#1C#, 16#38#, 16#1C#, 16#38#, 16#1C#,
16#38#, 16#1C#, 16#01#, 16#86#, 16#00#, 16#30#, 16#C0#, 16#06#, 16#18#,
16#00#, 16#C3#, 16#00#, 16#18#, 16#60#, 16#03#, 16#0C#, 16#00#, 16#61#,
16#80#, 16#0C#, 16#30#, 16#01#, 16#8C#, 16#00#, 16#61#, 16#80#, 16#0C#,
16#30#, 16#3F#, 16#FF#, 16#F7#, 16#FF#, 16#FE#, 16#06#, 16#18#, 16#00#,
16#C3#, 16#00#, 16#18#, 16#60#, 16#03#, 16#0C#, 16#00#, 16#61#, 16#80#,
16#0C#, 16#30#, 16#7F#, 16#FF#, 16#EF#, 16#FF#, 16#FC#, 16#06#, 16#18#,
16#00#, 16#C3#, 16#00#, 16#38#, 16#C0#, 16#06#, 16#18#, 16#00#, 16#C3#,
16#00#, 16#18#, 16#60#, 16#03#, 16#0C#, 16#00#, 16#61#, 16#80#, 16#0C#,
16#30#, 16#01#, 16#86#, 16#00#, 16#30#, 16#C0#, 16#00#, 16#C0#, 16#00#,
16#30#, 16#00#, 16#0C#, 16#00#, 16#0F#, 16#C0#, 16#0F#, 16#FD#, 16#87#,
16#03#, 16#E3#, 16#80#, 16#39#, 16#C0#, 16#06#, 16#60#, 16#01#, 16#98#,
16#00#, 16#06#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#38#, 16#00#, 16#07#,
16#C0#, 16#00#, 16#7F#, 16#80#, 16#03#, 16#F8#, 16#00#, 16#0F#, 16#80#,
16#00#, 16#60#, 16#00#, 16#1C#, 16#00#, 16#03#, 16#80#, 16#00#, 16#F0#,
16#00#, 16#3C#, 16#00#, 16#1F#, 16#80#, 16#0E#, 16#FC#, 16#0F#, 16#37#,
16#FF#, 16#80#, 16#7F#, 16#80#, 16#03#, 16#00#, 16#00#, 16#C0#, 16#00#,
16#30#, 16#00#, 16#0C#, 16#00#, 16#03#, 16#00#, 16#00#, 16#C0#, 16#00#,
16#07#, 16#80#, 16#01#, 16#FE#, 16#00#, 16#38#, 16#70#, 16#03#, 16#03#,
16#00#, 16#60#, 16#18#, 16#06#, 16#01#, 16#80#, 16#60#, 16#18#, 16#06#,
16#01#, 16#80#, 16#30#, 16#30#, 16#03#, 16#87#, 16#00#, 16#1F#, 16#E0#,
16#30#, 16#78#, 16#1F#, 16#00#, 16#1F#, 16#80#, 16#0F#, 16#C0#, 16#07#,
16#E0#, 16#03#, 16#F0#, 16#00#, 16#F8#, 16#00#, 16#0C#, 16#01#, 16#E0#,
16#00#, 16#7F#, 16#80#, 16#0E#, 16#1C#, 16#00#, 16#C0#, 16#C0#, 16#18#,
16#06#, 16#01#, 16#80#, 16#60#, 16#18#, 16#06#, 16#01#, 16#80#, 16#60#,
16#0C#, 16#0E#, 16#00#, 16#E1#, 16#C0#, 16#07#, 16#F8#, 16#00#, 16#1E#,
16#00#, 16#03#, 16#EC#, 16#01#, 16#FF#, 16#00#, 16#E1#, 16#00#, 16#70#,
16#00#, 16#18#, 16#00#, 16#06#, 16#00#, 16#01#, 16#80#, 16#00#, 16#30#,
16#00#, 16#0C#, 16#00#, 16#01#, 16#80#, 16#00#, 16#60#, 16#00#, 16#7C#,
16#00#, 16#3B#, 16#83#, 16#D8#, 16#60#, 16#FE#, 16#0C#, 16#33#, 16#03#,
16#98#, 16#C0#, 16#66#, 16#30#, 16#0D#, 16#8C#, 16#03#, 16#C3#, 16#00#,
16#70#, 16#60#, 16#1C#, 16#1C#, 16#0F#, 16#03#, 16#87#, 16#7C#, 16#7F#,
16#9F#, 16#07#, 16#80#, 16#00#, 16#FE#, 16#F9#, 16#F3#, 16#E7#, 16#CF#,
16#9F#, 16#3E#, 16#3C#, 16#70#, 16#E1#, 16#C3#, 16#87#, 16#00#, 16#06#,
16#1C#, 16#30#, 16#E1#, 16#87#, 16#0E#, 16#18#, 16#70#, 16#E1#, 16#C3#,
16#0E#, 16#1C#, 16#38#, 16#70#, 16#E1#, 16#C3#, 16#87#, 16#0E#, 16#0C#,
16#1C#, 16#38#, 16#70#, 16#60#, 16#E1#, 16#C1#, 16#83#, 16#83#, 16#06#,
16#06#, 16#04#, 16#C1#, 16#C1#, 16#83#, 16#83#, 16#07#, 16#0E#, 16#0C#,
16#1C#, 16#38#, 16#70#, 16#E0#, 16#E1#, 16#C3#, 16#87#, 16#0E#, 16#1C#,
16#38#, 16#70#, 16#E1#, 16#87#, 16#0E#, 16#1C#, 16#30#, 16#61#, 16#C3#,
16#0E#, 16#18#, 16#70#, 16#C1#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#30#,
16#00#, 16#0C#, 16#00#, 16#03#, 16#00#, 16#00#, 16#C0#, 16#10#, 16#30#,
16#3F#, 16#8C#, 16#7C#, 16#FF#, 16#FC#, 16#07#, 16#F8#, 16#00#, 16#78#,
16#00#, 16#1F#, 16#00#, 16#0C#, 16#C0#, 16#06#, 16#18#, 16#03#, 16#87#,
16#00#, 16#C0#, 16#C0#, 16#60#, 16#18#, 16#00#, 16#60#, 16#00#, 16#06#,
16#00#, 16#00#, 16#60#, 16#00#, 16#06#, 16#00#, 16#00#, 16#60#, 16#00#,
16#06#, 16#00#, 16#00#, 16#60#, 16#00#, 16#06#, 16#00#, 16#00#, 16#60#,
16#00#, 16#06#, 16#00#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#00#,
16#60#, 16#00#, 16#06#, 16#00#, 16#00#, 16#60#, 16#00#, 16#06#, 16#00#,
16#00#, 16#60#, 16#00#, 16#06#, 16#00#, 16#00#, 16#60#, 16#00#, 16#06#,
16#00#, 16#00#, 16#60#, 16#00#, 16#06#, 16#00#, 16#1F#, 16#8F#, 16#87#,
16#C7#, 16#C3#, 16#E1#, 16#E1#, 16#F0#, 16#F0#, 16#78#, 16#38#, 16#3C#,
16#1C#, 16#0E#, 16#06#, 16#00#, 16#7F#, 16#FF#, 16#FD#, 16#FF#, 16#FF#,
16#F0#, 16#7D#, 16#FF#, 16#FF#, 16#FF#, 16#EF#, 16#80#, 16#00#, 16#00#,
16#C0#, 16#00#, 16#30#, 16#00#, 16#18#, 16#00#, 16#06#, 16#00#, 16#03#,
16#00#, 16#00#, 16#C0#, 16#00#, 16#60#, 16#00#, 16#18#, 16#00#, 16#0C#,
16#00#, 16#03#, 16#00#, 16#01#, 16#80#, 16#00#, 16#60#, 16#00#, 16#30#,
16#00#, 16#0C#, 16#00#, 16#06#, 16#00#, 16#01#, 16#80#, 16#00#, 16#C0#,
16#00#, 16#30#, 16#00#, 16#18#, 16#00#, 16#06#, 16#00#, 16#01#, 16#00#,
16#00#, 16#C0#, 16#00#, 16#20#, 16#00#, 16#18#, 16#00#, 16#04#, 16#00#,
16#03#, 16#00#, 16#00#, 16#80#, 16#00#, 16#60#, 16#00#, 16#10#, 16#00#,
16#0C#, 16#00#, 16#02#, 16#00#, 16#01#, 16#80#, 16#00#, 16#40#, 16#00#,
16#30#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#03#, 16#F0#, 16#03#, 16#FF#,
16#01#, 16#E1#, 16#E0#, 16#E0#, 16#18#, 16#30#, 16#03#, 16#1C#, 16#00#,
16#E6#, 16#00#, 16#19#, 16#80#, 16#06#, 16#E0#, 16#01#, 16#F0#, 16#00#,
16#3C#, 16#00#, 16#0F#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#F0#, 16#00#,
16#3C#, 16#00#, 16#0F#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#F0#, 16#00#,
16#3C#, 16#00#, 16#0F#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#F8#, 16#00#,
16#76#, 16#00#, 16#19#, 16#80#, 16#06#, 16#70#, 16#03#, 16#8C#, 16#00#,
16#C3#, 16#80#, 16#60#, 16#78#, 16#78#, 16#0F#, 16#FC#, 16#00#, 16#FC#,
16#00#, 16#03#, 16#80#, 16#07#, 16#80#, 16#0F#, 16#80#, 16#1D#, 16#80#,
16#39#, 16#80#, 16#71#, 16#80#, 16#E1#, 16#80#, 16#C1#, 16#80#, 16#01#,
16#80#, 16#01#, 16#80#, 16#01#, 16#80#, 16#01#, 16#80#, 16#01#, 16#80#,
16#01#, 16#80#, 16#01#, 16#80#, 16#01#, 16#80#, 16#01#, 16#80#, 16#01#,
16#80#, 16#01#, 16#80#, 16#01#, 16#80#, 16#01#, 16#80#, 16#01#, 16#80#,
16#01#, 16#80#, 16#01#, 16#80#, 16#01#, 16#80#, 16#01#, 16#80#, 16#01#,
16#80#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#03#, 16#F0#, 16#03#, 16#FF#,
16#01#, 16#C0#, 16#E0#, 16#C0#, 16#1C#, 16#60#, 16#03#, 16#B8#, 16#00#,
16#6C#, 16#00#, 16#0F#, 16#00#, 16#03#, 16#00#, 16#00#, 16#C0#, 16#00#,
16#30#, 16#00#, 16#18#, 16#00#, 16#06#, 16#00#, 16#03#, 16#00#, 16#01#,
16#80#, 16#00#, 16#C0#, 16#00#, 16#60#, 16#00#, 16#30#, 16#00#, 16#18#,
16#00#, 16#0C#, 16#00#, 16#06#, 16#00#, 16#03#, 16#00#, 16#01#, 16#80#,
16#00#, 16#C0#, 16#00#, 16#60#, 16#00#, 16#20#, 16#00#, 16#D0#, 16#00#,
16#38#, 16#00#, 16#0F#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#C0#, 16#03#,
16#F8#, 16#01#, 16#FF#, 16#C0#, 16#70#, 16#3C#, 16#18#, 16#01#, 16#C6#,
16#00#, 16#18#, 16#00#, 16#01#, 16#80#, 16#00#, 16#30#, 16#00#, 16#06#,
16#00#, 16#00#, 16#C0#, 16#00#, 16#18#, 16#00#, 16#06#, 16#00#, 16#01#,
16#C0#, 16#00#, 16#70#, 16#01#, 16#FC#, 16#00#, 16#3F#, 16#00#, 16#00#,
16#78#, 16#00#, 16#03#, 16#80#, 16#00#, 16#38#, 16#00#, 16#03#, 16#00#,
16#00#, 16#30#, 16#00#, 16#06#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#18#,
16#00#, 16#03#, 16#00#, 16#00#, 16#D8#, 16#00#, 16#3B#, 16#80#, 16#0E#,
16#3E#, 16#07#, 16#81#, 16#FF#, 16#E0#, 16#07#, 16#E0#, 16#00#, 16#00#,
16#3C#, 16#00#, 16#3C#, 16#00#, 16#6C#, 16#00#, 16#CC#, 16#00#, 16#8C#,
16#01#, 16#8C#, 16#01#, 16#0C#, 16#03#, 16#0C#, 16#06#, 16#0C#, 16#04#,
16#0C#, 16#0C#, 16#0C#, 16#08#, 16#0C#, 16#10#, 16#0C#, 16#30#, 16#0C#,
16#20#, 16#0C#, 16#60#, 16#0C#, 16#40#, 16#0C#, 16#80#, 16#0C#, 16#FF#,
16#FF#, 16#FF#, 16#FF#, 16#00#, 16#0C#, 16#00#, 16#0C#, 16#00#, 16#0C#,
16#00#, 16#0C#, 16#00#, 16#0C#, 16#00#, 16#0C#, 16#00#, 16#FF#, 16#00#,
16#FF#, 16#3F#, 16#FF#, 16#07#, 16#FF#, 16#E0#, 16#C0#, 16#00#, 16#18#,
16#00#, 16#03#, 16#00#, 16#00#, 16#60#, 16#00#, 16#0C#, 16#00#, 16#01#,
16#80#, 16#00#, 16#30#, 16#00#, 16#06#, 16#00#, 16#00#, 16#C7#, 16#E0#,
16#1F#, 16#FF#, 16#03#, 16#80#, 16#70#, 16#00#, 16#03#, 16#00#, 16#00#,
16#30#, 16#00#, 16#06#, 16#00#, 16#00#, 16#60#, 16#00#, 16#0C#, 16#00#,
16#01#, 16#80#, 16#00#, 16#30#, 16#00#, 16#06#, 16#00#, 16#00#, 16#C0#,
16#00#, 16#30#, 16#00#, 16#06#, 16#C0#, 16#01#, 16#DC#, 16#00#, 16#71#,
16#F0#, 16#3C#, 16#0F#, 16#FF#, 16#00#, 16#3F#, 16#00#, 16#00#, 16#3F#,
16#80#, 16#3F#, 16#F0#, 16#3E#, 16#00#, 16#1E#, 16#00#, 16#0E#, 16#00#,
16#07#, 16#00#, 16#03#, 16#80#, 16#00#, 16#C0#, 16#00#, 16#70#, 16#00#,
16#18#, 16#00#, 16#06#, 16#00#, 16#03#, 16#80#, 16#00#, 16#C1#, 16#F8#,
16#31#, 16#FF#, 16#0C#, 16#F0#, 16#F3#, 16#70#, 16#0C#, 16#D8#, 16#01#,
16#BC#, 16#00#, 16#6E#, 16#00#, 16#0F#, 16#80#, 16#03#, 16#C0#, 16#00#,
16#D8#, 16#00#, 16#36#, 16#00#, 16#0D#, 16#80#, 16#03#, 16#30#, 16#01#,
16#8E#, 16#00#, 16#61#, 16#C0#, 16#30#, 16#38#, 16#38#, 16#07#, 16#FC#,
16#00#, 16#7C#, 16#00#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FC#, 16#00#,
16#0F#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#C0#, 16#00#, 16#60#, 16#00#,
16#18#, 16#00#, 16#06#, 16#00#, 16#03#, 16#00#, 16#00#, 16#C0#, 16#00#,
16#30#, 16#00#, 16#18#, 16#00#, 16#06#, 16#00#, 16#01#, 16#80#, 16#00#,
16#C0#, 16#00#, 16#30#, 16#00#, 16#0C#, 16#00#, 16#06#, 16#00#, 16#01#,
16#80#, 16#00#, 16#60#, 16#00#, 16#30#, 16#00#, 16#0C#, 16#00#, 16#03#,
16#00#, 16#01#, 16#80#, 16#00#, 16#60#, 16#00#, 16#18#, 16#00#, 16#0C#,
16#00#, 16#03#, 16#00#, 16#03#, 16#F0#, 16#03#, 16#FF#, 16#03#, 16#C0#,
16#F1#, 16#C0#, 16#0E#, 16#60#, 16#01#, 16#B8#, 16#00#, 16#7C#, 16#00#,
16#0F#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#F0#, 16#00#, 16#36#, 16#00#,
16#18#, 16#C0#, 16#0C#, 16#1C#, 16#0E#, 16#03#, 16#FF#, 16#00#, 16#FF#,
16#C0#, 16#70#, 16#38#, 16#30#, 16#03#, 16#18#, 16#00#, 16#66#, 16#00#,
16#1B#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#F0#, 16#00#, 16#3C#, 16#00#,
16#0F#, 16#00#, 16#03#, 16#60#, 16#01#, 16#98#, 16#00#, 16#E3#, 16#00#,
16#70#, 16#70#, 16#38#, 16#0F#, 16#FC#, 16#00#, 16#FC#, 16#00#, 16#07#,
16#E0#, 16#03#, 16#FE#, 16#01#, 16#C1#, 16#C0#, 16#C0#, 16#38#, 16#60#,
16#07#, 16#18#, 16#00#, 16#CC#, 16#00#, 16#1B#, 16#00#, 16#06#, 16#C0#,
16#01#, 16#B0#, 16#00#, 16#3C#, 16#00#, 16#1F#, 16#00#, 16#07#, 16#60#,
16#03#, 16#D8#, 16#01#, 16#B3#, 16#00#, 16#CC#, 16#F0#, 16#F3#, 16#0F#,
16#F8#, 16#C1#, 16#F8#, 16#30#, 16#00#, 16#1C#, 16#00#, 16#06#, 16#00#,
16#01#, 16#80#, 16#00#, 16#E0#, 16#00#, 16#30#, 16#00#, 16#1C#, 16#00#,
16#0E#, 16#00#, 16#07#, 16#00#, 16#07#, 16#80#, 16#07#, 16#C0#, 16#FF#,
16#C0#, 16#1F#, 16#C0#, 16#00#, 16#7D#, 16#FF#, 16#FF#, 16#FF#, 16#EF#,
16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#,
16#FF#, 16#FF#, 16#FF#, 16#F7#, 16#C0#, 16#0F#, 16#87#, 16#F1#, 16#FC#,
16#7F#, 16#1F#, 16#C3#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#07#, 16#F1#, 16#F8#, 16#7C#, 16#1F#, 16#0F#,
16#83#, 16#E0#, 16#F0#, 16#7C#, 16#1E#, 16#07#, 16#81#, 16#C0#, 16#F0#,
16#38#, 16#04#, 16#00#, 16#00#, 16#00#, 16#18#, 16#00#, 16#01#, 16#E0#,
16#00#, 16#1E#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#0F#, 16#00#, 16#00#,
16#F0#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#07#, 16#00#,
16#00#, 16#78#, 16#00#, 16#07#, 16#80#, 16#00#, 16#0F#, 16#00#, 16#00#,
16#1E#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#,
16#1E#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#,
16#3C#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#,
16#20#, 16#7F#, 16#FF#, 16#FF#, 16#7F#, 16#FF#, 16#FF#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#FF#, 16#FF#, 16#7F#, 16#FF#,
16#FF#, 16#C0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#0F#, 16#00#, 16#00#,
16#1E#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#01#,
16#E0#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#0F#,
16#00#, 16#00#, 16#3C#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#3C#, 16#00#,
16#07#, 16#80#, 16#00#, 16#F0#, 16#00#, 16#1E#, 16#00#, 16#01#, 16#E0#,
16#00#, 16#3C#, 16#00#, 16#07#, 16#80#, 16#00#, 16#F0#, 16#00#, 16#0E#,
16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#07#, 16#F0#, 16#1F#, 16#FE#,
16#3E#, 16#07#, 16#98#, 16#00#, 16#EC#, 16#00#, 16#36#, 16#00#, 16#0F#,
16#00#, 16#06#, 16#00#, 16#03#, 16#00#, 16#01#, 16#80#, 16#01#, 16#C0#,
16#00#, 16#C0#, 16#01#, 16#C0#, 16#03#, 16#C0#, 16#07#, 16#C0#, 16#07#,
16#00#, 16#03#, 16#00#, 16#01#, 16#80#, 16#00#, 16#C0#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#07#, 16#80#, 16#07#, 16#E0#, 16#03#, 16#F0#, 16#01#, 16#F8#, 16#00#,
16#78#, 16#00#, 16#03#, 16#F0#, 16#03#, 16#FF#, 16#01#, 16#E0#, 16#E0#,
16#E0#, 16#1C#, 16#30#, 16#03#, 16#1C#, 16#00#, 16#66#, 16#00#, 16#19#,
16#80#, 16#06#, 16#C0#, 16#01#, 16#B0#, 16#07#, 16#EC#, 16#07#, 16#FB#,
16#03#, 16#C6#, 16#C1#, 16#C1#, 16#B0#, 16#E0#, 16#6C#, 16#30#, 16#1B#,
16#0C#, 16#06#, 16#C3#, 16#01#, 16#B0#, 16#C0#, 16#6C#, 16#18#, 16#1B#,
16#07#, 16#86#, 16#C0#, 16#FF#, 16#F0#, 16#0F#, 16#FC#, 16#00#, 16#03#,
16#00#, 16#00#, 16#60#, 16#00#, 16#18#, 16#00#, 16#07#, 16#00#, 16#00#,
16#C0#, 16#00#, 16#38#, 16#00#, 16#07#, 16#80#, 16#C0#, 16#FF#, 16#F0#,
16#0F#, 16#E0#, 16#07#, 16#FF#, 16#00#, 16#00#, 16#7F#, 16#F0#, 16#00#,
16#00#, 16#1B#, 16#80#, 16#00#, 16#01#, 16#98#, 16#00#, 16#00#, 16#11#,
16#80#, 16#00#, 16#03#, 16#1C#, 16#00#, 16#00#, 16#30#, 16#C0#, 16#00#,
16#06#, 16#0E#, 16#00#, 16#00#, 16#60#, 16#60#, 16#00#, 16#06#, 16#06#,
16#00#, 16#00#, 16#C0#, 16#30#, 16#00#, 16#0C#, 16#03#, 16#00#, 16#00#,
16#80#, 16#38#, 16#00#, 16#18#, 16#01#, 16#80#, 16#01#, 16#80#, 16#18#,
16#00#, 16#3F#, 16#FF#, 16#C0#, 16#03#, 16#FF#, 16#FC#, 16#00#, 16#20#,
16#00#, 16#E0#, 16#06#, 16#00#, 16#06#, 16#00#, 16#60#, 16#00#, 16#60#,
16#0C#, 16#00#, 16#07#, 16#00#, 16#C0#, 16#00#, 16#30#, 16#0C#, 16#00#,
16#03#, 16#81#, 16#80#, 16#00#, 16#18#, 16#7F#, 16#C0#, 16#3F#, 16#F7#,
16#FC#, 16#03#, 16#FF#, 16#FF#, 16#FF#, 16#03#, 16#FF#, 16#FF#, 16#01#,
16#80#, 16#0E#, 16#06#, 16#00#, 16#1C#, 16#18#, 16#00#, 16#38#, 16#60#,
16#00#, 16#61#, 16#80#, 16#01#, 16#86#, 16#00#, 16#06#, 16#18#, 16#00#,
16#38#, 16#60#, 16#01#, 16#C1#, 16#80#, 16#1E#, 16#07#, 16#FF#, 16#E0#,
16#1F#, 16#FF#, 16#C0#, 16#60#, 16#03#, 16#C1#, 16#80#, 16#03#, 16#86#,
16#00#, 16#06#, 16#18#, 16#00#, 16#1C#, 16#60#, 16#00#, 16#31#, 16#80#,
16#00#, 16#C6#, 16#00#, 16#03#, 16#18#, 16#00#, 16#0C#, 16#60#, 16#00#,
16#61#, 16#80#, 16#03#, 16#86#, 16#00#, 16#1C#, 16#FF#, 16#FF#, 16#E3#,
16#FF#, 16#FE#, 16#00#, 16#00#, 16#FC#, 16#00#, 16#0F#, 16#FE#, 16#60#,
16#F0#, 16#3D#, 16#87#, 16#00#, 16#3E#, 16#38#, 16#00#, 16#38#, 16#C0#,
16#00#, 16#E7#, 16#00#, 16#01#, 16#98#, 16#00#, 16#06#, 16#60#, 16#00#,
16#03#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#,
16#C0#, 16#00#, 16#03#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#30#,
16#00#, 16#00#, 16#C0#, 16#00#, 16#03#, 16#00#, 16#00#, 16#0C#, 16#00#,
16#00#, 16#18#, 16#00#, 16#00#, 16#60#, 16#00#, 16#01#, 16#C0#, 16#00#,
16#03#, 16#80#, 16#00#, 16#C7#, 16#00#, 16#06#, 16#0E#, 16#00#, 16#70#,
16#1E#, 16#07#, 16#80#, 16#3F#, 16#FC#, 16#00#, 16#1F#, 16#80#, 16#FF#,
16#FE#, 16#03#, 16#FF#, 16#FE#, 16#03#, 16#00#, 16#3C#, 16#0C#, 16#00#,
16#38#, 16#30#, 16#00#, 16#70#, 16#C0#, 16#00#, 16#C3#, 16#00#, 16#03#,
16#8C#, 16#00#, 16#06#, 16#30#, 16#00#, 16#1C#, 16#C0#, 16#00#, 16#33#,
16#00#, 16#00#, 16#CC#, 16#00#, 16#03#, 16#30#, 16#00#, 16#0C#, 16#C0#,
16#00#, 16#33#, 16#00#, 16#00#, 16#CC#, 16#00#, 16#03#, 16#30#, 16#00#,
16#0C#, 16#C0#, 16#00#, 16#33#, 16#00#, 16#01#, 16#8C#, 16#00#, 16#06#,
16#30#, 16#00#, 16#30#, 16#C0#, 16#01#, 16#C3#, 16#00#, 16#0E#, 16#0C#,
16#00#, 16#F0#, 16#FF#, 16#FF#, 16#83#, 16#FF#, 16#F8#, 16#00#, 16#FF#,
16#FF#, 16#FB#, 16#FF#, 16#FF#, 16#E1#, 16#80#, 16#01#, 16#86#, 16#00#,
16#06#, 16#18#, 16#00#, 16#18#, 16#60#, 16#00#, 16#61#, 16#80#, 16#01#,
16#86#, 16#00#, 16#00#, 16#18#, 16#0C#, 16#00#, 16#60#, 16#30#, 16#01#,
16#80#, 16#C0#, 16#07#, 16#FF#, 16#00#, 16#1F#, 16#FC#, 16#00#, 16#60#,
16#30#, 16#01#, 16#80#, 16#C0#, 16#06#, 16#03#, 16#00#, 16#18#, 16#00#,
16#00#, 16#60#, 16#00#, 16#01#, 16#80#, 16#00#, 16#C6#, 16#00#, 16#03#,
16#18#, 16#00#, 16#0C#, 16#60#, 16#00#, 16#31#, 16#80#, 16#00#, 16#C6#,
16#00#, 16#03#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#F0#, 16#FF#,
16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#F1#, 16#80#, 16#00#, 16#C6#, 16#00#,
16#03#, 16#18#, 16#00#, 16#0C#, 16#60#, 16#00#, 16#31#, 16#80#, 16#00#,
16#C6#, 16#00#, 16#00#, 16#18#, 16#0C#, 16#00#, 16#60#, 16#30#, 16#01#,
16#80#, 16#C0#, 16#07#, 16#FF#, 16#00#, 16#1F#, 16#FC#, 16#00#, 16#60#,
16#30#, 16#01#, 16#80#, 16#C0#, 16#06#, 16#03#, 16#00#, 16#18#, 16#00#,
16#00#, 16#60#, 16#00#, 16#01#, 16#80#, 16#00#, 16#06#, 16#00#, 16#00#,
16#18#, 16#00#, 16#00#, 16#60#, 16#00#, 16#01#, 16#80#, 16#00#, 16#06#,
16#00#, 16#00#, 16#FF#, 16#F0#, 16#03#, 16#FF#, 16#C0#, 16#00#, 16#00#,
16#FF#, 16#00#, 16#07#, 16#FF#, 16#98#, 16#1E#, 16#03#, 16#F0#, 16#70#,
16#01#, 16#E1#, 16#80#, 16#01#, 16#C6#, 16#00#, 16#01#, 16#9C#, 16#00#,
16#03#, 16#30#, 16#00#, 16#00#, 16#60#, 16#00#, 16#01#, 16#C0#, 16#00#,
16#03#, 16#00#, 16#00#, 16#06#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#,
16#18#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#60#, 16#03#, 16#FF#,
16#C0#, 16#07#, 16#FF#, 16#80#, 16#00#, 16#1B#, 16#00#, 16#00#, 16#37#,
16#00#, 16#00#, 16#66#, 16#00#, 16#00#, 16#CC#, 16#00#, 16#01#, 16#8C#,
16#00#, 16#03#, 16#1C#, 16#00#, 16#06#, 16#1E#, 16#00#, 16#0C#, 16#0F#,
16#00#, 16#F8#, 16#0F#, 16#FF#, 16#C0#, 16#03#, 16#FC#, 16#00#, 16#7F#,
16#01#, 16#FC#, 16#FE#, 16#03#, 16#F8#, 16#60#, 16#00#, 16#C0#, 16#C0#,
16#01#, 16#81#, 16#80#, 16#03#, 16#03#, 16#00#, 16#06#, 16#06#, 16#00#,
16#0C#, 16#0C#, 16#00#, 16#18#, 16#18#, 16#00#, 16#30#, 16#30#, 16#00#,
16#60#, 16#60#, 16#00#, 16#C0#, 16#FF#, 16#FF#, 16#81#, 16#FF#, 16#FF#,
16#03#, 16#00#, 16#06#, 16#06#, 16#00#, 16#0C#, 16#0C#, 16#00#, 16#18#,
16#18#, 16#00#, 16#30#, 16#30#, 16#00#, 16#60#, 16#60#, 16#00#, 16#C0#,
16#C0#, 16#01#, 16#81#, 16#80#, 16#03#, 16#03#, 16#00#, 16#06#, 16#06#,
16#00#, 16#0C#, 16#0C#, 16#00#, 16#18#, 16#FF#, 16#01#, 16#FF#, 16#FE#,
16#03#, 16#FC#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#01#, 16#80#, 16#01#,
16#80#, 16#01#, 16#80#, 16#01#, 16#80#, 16#01#, 16#80#, 16#01#, 16#80#,
16#01#, 16#80#, 16#01#, 16#80#, 16#01#, 16#80#, 16#01#, 16#80#, 16#01#,
16#80#, 16#01#, 16#80#, 16#01#, 16#80#, 16#01#, 16#80#, 16#01#, 16#80#,
16#01#, 16#80#, 16#01#, 16#80#, 16#01#, 16#80#, 16#01#, 16#80#, 16#01#,
16#80#, 16#01#, 16#80#, 16#01#, 16#80#, 16#FF#, 16#FF#, 16#FF#, 16#FF#,
16#00#, 16#FF#, 16#FE#, 16#01#, 16#FF#, 16#FC#, 16#00#, 16#03#, 16#00#,
16#00#, 16#06#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#18#, 16#00#,
16#00#, 16#30#, 16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#C0#, 16#00#,
16#01#, 16#80#, 16#00#, 16#03#, 16#00#, 16#00#, 16#06#, 16#00#, 16#00#,
16#0C#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#30#, 16#60#, 16#00#,
16#60#, 16#C0#, 16#00#, 16#C1#, 16#80#, 16#01#, 16#83#, 16#00#, 16#03#,
16#06#, 16#00#, 16#06#, 16#0C#, 16#00#, 16#0C#, 16#18#, 16#00#, 16#30#,
16#38#, 16#00#, 16#60#, 16#38#, 16#01#, 16#80#, 16#3C#, 16#0E#, 16#00#,
16#3F#, 16#F8#, 16#00#, 16#0F#, 16#C0#, 16#00#, 16#FF#, 16#81#, 16#FE#,
16#FF#, 16#81#, 16#FE#, 16#18#, 16#00#, 16#30#, 16#18#, 16#00#, 16#E0#,
16#18#, 16#01#, 16#C0#, 16#18#, 16#03#, 16#80#, 16#18#, 16#07#, 16#00#,
16#18#, 16#0C#, 16#00#, 16#18#, 16#18#, 16#00#, 16#18#, 16#70#, 16#00#,
16#18#, 16#E0#, 16#00#, 16#19#, 16#E0#, 16#00#, 16#1B#, 16#F8#, 16#00#,
16#1F#, 16#1C#, 16#00#, 16#1C#, 16#06#, 16#00#, 16#18#, 16#03#, 16#00#,
16#18#, 16#03#, 16#80#, 16#18#, 16#01#, 16#80#, 16#18#, 16#00#, 16#C0#,
16#18#, 16#00#, 16#C0#, 16#18#, 16#00#, 16#60#, 16#18#, 16#00#, 16#60#,
16#18#, 16#00#, 16#70#, 16#18#, 16#00#, 16#30#, 16#FF#, 16#80#, 16#3F#,
16#FF#, 16#80#, 16#1F#, 16#FF#, 16#F0#, 16#07#, 16#FF#, 16#80#, 16#01#,
16#80#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#60#, 16#00#, 16#03#, 16#00#,
16#00#, 16#18#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#06#, 16#00#, 16#00#,
16#30#, 16#00#, 16#01#, 16#80#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#60#,
16#00#, 16#03#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#C0#, 16#00#,
16#06#, 16#00#, 16#18#, 16#30#, 16#00#, 16#C1#, 16#80#, 16#06#, 16#0C#,
16#00#, 16#30#, 16#60#, 16#01#, 16#83#, 16#00#, 16#0C#, 16#18#, 16#00#,
16#60#, 16#C0#, 16#03#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#C0#,
16#FC#, 16#00#, 16#0F#, 16#FF#, 16#00#, 16#03#, 16#F3#, 16#60#, 16#01#,
16#B0#, 16#D8#, 16#00#, 16#6C#, 16#33#, 16#00#, 16#33#, 16#0C#, 16#C0#,
16#0C#, 16#C3#, 16#38#, 16#06#, 16#30#, 16#C6#, 16#01#, 16#8C#, 16#31#,
16#C0#, 16#E3#, 16#0C#, 16#30#, 16#30#, 16#C3#, 16#0E#, 16#0C#, 16#30#,
16#C1#, 16#86#, 16#0C#, 16#30#, 16#71#, 16#83#, 16#0C#, 16#0C#, 16#C0#,
16#C3#, 16#03#, 16#B0#, 16#30#, 16#C0#, 16#78#, 16#0C#, 16#30#, 16#1E#,
16#03#, 16#0C#, 16#03#, 16#00#, 16#C3#, 16#00#, 16#00#, 16#30#, 16#C0#,
16#00#, 16#0C#, 16#30#, 16#00#, 16#03#, 16#0C#, 16#00#, 16#00#, 16#C3#,
16#00#, 16#00#, 16#30#, 16#C0#, 16#00#, 16#0C#, 16#FF#, 16#00#, 16#3F#,
16#FF#, 16#C0#, 16#0F#, 16#F0#, 16#FC#, 16#00#, 16#FF#, 16#FC#, 16#00#,
16#FF#, 16#1E#, 16#00#, 16#0C#, 16#1F#, 16#00#, 16#0C#, 16#1B#, 16#00#,
16#0C#, 16#19#, 16#80#, 16#0C#, 16#19#, 16#C0#, 16#0C#, 16#18#, 16#C0#,
16#0C#, 16#18#, 16#60#, 16#0C#, 16#18#, 16#60#, 16#0C#, 16#18#, 16#30#,
16#0C#, 16#18#, 16#38#, 16#0C#, 16#18#, 16#18#, 16#0C#, 16#18#, 16#0C#,
16#0C#, 16#18#, 16#0E#, 16#0C#, 16#18#, 16#06#, 16#0C#, 16#18#, 16#03#,
16#0C#, 16#18#, 16#03#, 16#0C#, 16#18#, 16#01#, 16#8C#, 16#18#, 16#01#,
16#CC#, 16#18#, 16#00#, 16#CC#, 16#18#, 16#00#, 16#6C#, 16#18#, 16#00#,
16#7C#, 16#18#, 16#00#, 16#3C#, 16#7F#, 16#80#, 16#1C#, 16#7F#, 16#80#,
16#1C#, 16#00#, 16#7E#, 16#00#, 16#01#, 16#FF#, 16#C0#, 16#07#, 16#81#,
16#E0#, 16#0E#, 16#00#, 16#70#, 16#1C#, 16#00#, 16#38#, 16#38#, 16#00#,
16#1C#, 16#30#, 16#00#, 16#0C#, 16#70#, 16#00#, 16#0E#, 16#60#, 16#00#,
16#06#, 16#60#, 16#00#, 16#06#, 16#C0#, 16#00#, 16#03#, 16#C0#, 16#00#,
16#03#, 16#C0#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#03#, 16#C0#, 16#00#,
16#03#, 16#C0#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#03#, 16#C0#, 16#00#,
16#03#, 16#60#, 16#00#, 16#06#, 16#60#, 16#00#, 16#06#, 16#70#, 16#00#,
16#0E#, 16#30#, 16#00#, 16#0C#, 16#38#, 16#00#, 16#1C#, 16#1C#, 16#00#,
16#38#, 16#0E#, 16#00#, 16#70#, 16#07#, 16#81#, 16#E0#, 16#03#, 16#FF#,
16#C0#, 16#00#, 16#7E#, 16#00#, 16#FF#, 16#FF#, 16#07#, 16#FF#, 16#FE#,
16#06#, 16#00#, 16#78#, 16#30#, 16#00#, 16#E1#, 16#80#, 16#03#, 16#0C#,
16#00#, 16#0C#, 16#60#, 16#00#, 16#63#, 16#00#, 16#03#, 16#18#, 16#00#,
16#18#, 16#C0#, 16#01#, 16#C6#, 16#00#, 16#0C#, 16#30#, 16#00#, 16#C1#,
16#80#, 16#1E#, 16#0F#, 16#FF#, 16#C0#, 16#7F#, 16#F8#, 16#03#, 16#00#,
16#00#, 16#18#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#06#, 16#00#, 16#00#,
16#30#, 16#00#, 16#01#, 16#80#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#60#,
16#00#, 16#03#, 16#00#, 16#00#, 16#FF#, 16#F0#, 16#07#, 16#FF#, 16#80#,
16#00#, 16#00#, 16#7E#, 16#00#, 16#01#, 16#FF#, 16#80#, 16#07#, 16#81#,
16#E0#, 16#0E#, 16#00#, 16#70#, 16#1C#, 16#00#, 16#38#, 16#38#, 16#00#,
16#1C#, 16#30#, 16#00#, 16#0C#, 16#70#, 16#00#, 16#0E#, 16#60#, 16#00#,
16#06#, 16#60#, 16#00#, 16#06#, 16#C0#, 16#00#, 16#03#, 16#C0#, 16#00#,
16#03#, 16#C0#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#03#, 16#C0#, 16#00#,
16#03#, 16#C0#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#03#, 16#C0#, 16#00#,
16#03#, 16#60#, 16#00#, 16#06#, 16#60#, 16#00#, 16#06#, 16#70#, 16#00#,
16#0E#, 16#30#, 16#00#, 16#0C#, 16#18#, 16#00#, 16#1C#, 16#0C#, 16#00#,
16#38#, 16#06#, 16#00#, 16#70#, 16#03#, 16#81#, 16#E0#, 16#00#, 16#FF#,
16#C0#, 16#00#, 16#7E#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#03#, 16#FF#,
16#87#, 16#07#, 16#FF#, 16#FE#, 16#07#, 16#00#, 16#F8#, 16#FF#, 16#FE#,
16#00#, 16#FF#, 16#FF#, 16#80#, 16#18#, 16#03#, 16#C0#, 16#18#, 16#00#,
16#E0#, 16#18#, 16#00#, 16#60#, 16#18#, 16#00#, 16#30#, 16#18#, 16#00#,
16#30#, 16#18#, 16#00#, 16#30#, 16#18#, 16#00#, 16#30#, 16#18#, 16#00#,
16#70#, 16#18#, 16#00#, 16#60#, 16#18#, 16#01#, 16#C0#, 16#18#, 16#07#,
16#80#, 16#1F#, 16#FF#, 16#00#, 16#1F#, 16#FC#, 16#00#, 16#18#, 16#0E#,
16#00#, 16#18#, 16#07#, 16#00#, 16#18#, 16#03#, 16#80#, 16#18#, 16#01#,
16#C0#, 16#18#, 16#00#, 16#E0#, 16#18#, 16#00#, 16#60#, 16#18#, 16#00#,
16#30#, 16#18#, 16#00#, 16#30#, 16#18#, 16#00#, 16#18#, 16#FF#, 16#80#,
16#1F#, 16#FF#, 16#80#, 16#0F#, 16#03#, 16#F8#, 16#00#, 16#FF#, 16#E6#,
16#1E#, 16#07#, 16#E3#, 16#80#, 16#1E#, 16#30#, 16#00#, 16#E6#, 16#00#,
16#06#, 16#60#, 16#00#, 16#66#, 16#00#, 16#06#, 16#60#, 16#00#, 16#07#,
16#00#, 16#00#, 16#30#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#0F#, 16#C0#,
16#00#, 16#3F#, 16#C0#, 16#00#, 16#3F#, 16#80#, 16#00#, 16#1C#, 16#00#,
16#00#, 16#E0#, 16#00#, 16#07#, 16#00#, 16#00#, 16#30#, 16#00#, 16#03#,
16#C0#, 16#00#, 16#3C#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#7E#, 16#00#,
16#06#, 16#F8#, 16#01#, 16#ED#, 16#E0#, 16#7C#, 16#CF#, 16#FF#, 16#00#,
16#3F#, 16#C0#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FC#, 16#03#,
16#00#, 16#F0#, 16#0C#, 16#03#, 16#C0#, 16#30#, 16#0F#, 16#00#, 16#C0#,
16#3C#, 16#03#, 16#00#, 16#C0#, 16#0C#, 16#00#, 16#00#, 16#30#, 16#00#,
16#00#, 16#C0#, 16#00#, 16#03#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#,
16#30#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#03#, 16#00#, 16#00#, 16#0C#,
16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#03#, 16#00#,
16#00#, 16#0C#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#C0#, 16#00#,
16#03#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#0F#, 16#FF#, 16#C0#, 16#3F#,
16#FF#, 16#00#, 16#FF#, 16#01#, 16#FF#, 16#FE#, 16#03#, 16#FC#, 16#C0#,
16#00#, 16#61#, 16#80#, 16#00#, 16#C3#, 16#00#, 16#01#, 16#86#, 16#00#,
16#03#, 16#0C#, 16#00#, 16#06#, 16#18#, 16#00#, 16#0C#, 16#30#, 16#00#,
16#18#, 16#60#, 16#00#, 16#30#, 16#C0#, 16#00#, 16#61#, 16#80#, 16#00#,
16#C3#, 16#00#, 16#01#, 16#86#, 16#00#, 16#03#, 16#0C#, 16#00#, 16#06#,
16#18#, 16#00#, 16#0C#, 16#30#, 16#00#, 16#18#, 16#60#, 16#00#, 16#30#,
16#C0#, 16#00#, 16#61#, 16#80#, 16#00#, 16#C3#, 16#80#, 16#03#, 16#83#,
16#00#, 16#06#, 16#07#, 16#00#, 16#1C#, 16#07#, 16#00#, 16#70#, 16#07#,
16#83#, 16#C0#, 16#07#, 16#FF#, 16#00#, 16#03#, 16#F8#, 16#00#, 16#7F#,
16#C0#, 16#3F#, 16#F7#, 16#FC#, 16#03#, 16#FF#, 16#18#, 16#00#, 16#01#,
16#80#, 16#C0#, 16#00#, 16#30#, 16#0C#, 16#00#, 16#03#, 16#00#, 16#60#,
16#00#, 16#30#, 16#06#, 16#00#, 16#06#, 16#00#, 16#60#, 16#00#, 16#60#,
16#03#, 16#00#, 16#0C#, 16#00#, 16#30#, 16#00#, 16#C0#, 16#03#, 16#80#,
16#0C#, 16#00#, 16#18#, 16#01#, 16#80#, 16#01#, 16#80#, 16#18#, 16#00#,
16#0C#, 16#03#, 16#00#, 16#00#, 16#C0#, 16#30#, 16#00#, 16#0E#, 16#03#,
16#00#, 16#00#, 16#60#, 16#60#, 16#00#, 16#06#, 16#06#, 16#00#, 16#00#,
16#30#, 16#C0#, 16#00#, 16#03#, 16#0C#, 16#00#, 16#00#, 16#30#, 16#80#,
16#00#, 16#01#, 16#98#, 16#00#, 16#00#, 16#19#, 16#80#, 16#00#, 16#00#,
16#F0#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#E0#, 16#00#,
16#FF#, 16#80#, 16#7F#, 16#FF#, 16#E0#, 16#1F#, 16#F3#, 16#00#, 16#00#,
16#10#, 16#C0#, 16#00#, 16#04#, 16#30#, 16#00#, 16#03#, 16#0C#, 16#03#,
16#80#, 16#C3#, 16#01#, 16#E0#, 16#30#, 16#60#, 16#78#, 16#0C#, 16#18#,
16#1F#, 16#02#, 16#06#, 16#05#, 16#C0#, 16#81#, 16#83#, 16#30#, 16#20#,
16#60#, 16#CC#, 16#18#, 16#18#, 16#33#, 16#86#, 16#06#, 16#18#, 16#61#,
16#81#, 16#86#, 16#18#, 16#60#, 16#71#, 16#87#, 16#10#, 16#0C#, 16#40#,
16#C4#, 16#03#, 16#30#, 16#31#, 16#00#, 16#CC#, 16#0E#, 16#40#, 16#33#,
16#03#, 16#B0#, 16#0D#, 16#80#, 16#6C#, 16#03#, 16#60#, 16#1B#, 16#00#,
16#D8#, 16#07#, 16#80#, 16#34#, 16#00#, 16#E0#, 16#07#, 16#00#, 16#38#,
16#01#, 16#C0#, 16#0E#, 16#00#, 16#7F#, 16#00#, 16#FF#, 16#7F#, 16#00#,
16#FF#, 16#18#, 16#00#, 16#18#, 16#0C#, 16#00#, 16#38#, 16#0E#, 16#00#,
16#70#, 16#07#, 16#00#, 16#60#, 16#03#, 16#00#, 16#C0#, 16#01#, 16#81#,
16#80#, 16#01#, 16#C3#, 16#80#, 16#00#, 16#E7#, 16#00#, 16#00#, 16#76#,
16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#3C#,
16#00#, 16#00#, 16#7E#, 16#00#, 16#00#, 16#67#, 16#00#, 16#00#, 16#C3#,
16#00#, 16#01#, 16#81#, 16#80#, 16#03#, 16#81#, 16#C0#, 16#07#, 16#00#,
16#E0#, 16#06#, 16#00#, 16#70#, 16#0C#, 16#00#, 16#30#, 16#18#, 16#00#,
16#18#, 16#38#, 16#00#, 16#1C#, 16#FF#, 16#00#, 16#FF#, 16#FF#, 16#00#,
16#FF#, 16#FF#, 16#00#, 16#FF#, 16#FF#, 16#00#, 16#FF#, 16#18#, 16#00#,
16#18#, 16#1C#, 16#00#, 16#30#, 16#0E#, 16#00#, 16#70#, 16#06#, 16#00#,
16#60#, 16#03#, 16#00#, 16#C0#, 16#03#, 16#81#, 16#C0#, 16#01#, 16#81#,
16#80#, 16#00#, 16#C3#, 16#00#, 16#00#, 16#E7#, 16#00#, 16#00#, 16#66#,
16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#18#,
16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#18#,
16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#18#,
16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#18#,
16#00#, 16#07#, 16#FF#, 16#E0#, 16#07#, 16#FF#, 16#E0#, 16#7F#, 16#FF#,
16#9F#, 16#FF#, 16#E6#, 16#00#, 16#19#, 16#80#, 16#0C#, 16#60#, 16#07#,
16#18#, 16#03#, 16#86#, 16#00#, 16#C1#, 16#80#, 16#70#, 16#00#, 16#38#,
16#00#, 16#0C#, 16#00#, 16#06#, 16#00#, 16#03#, 16#80#, 16#00#, 16#C0#,
16#00#, 16#60#, 16#00#, 16#30#, 16#00#, 16#1C#, 16#00#, 16#06#, 16#00#,
16#03#, 16#00#, 16#31#, 16#C0#, 16#0C#, 16#60#, 16#03#, 16#30#, 16#00#,
16#D8#, 16#00#, 16#3E#, 16#00#, 16#0F#, 16#00#, 16#03#, 16#FF#, 16#FF#,
16#FF#, 16#FF#, 16#F0#, 16#FF#, 16#FF#, 16#06#, 16#0C#, 16#18#, 16#30#,
16#60#, 16#C1#, 16#83#, 16#06#, 16#0C#, 16#18#, 16#30#, 16#60#, 16#C1#,
16#83#, 16#06#, 16#0C#, 16#18#, 16#30#, 16#60#, 16#C1#, 16#83#, 16#06#,
16#0C#, 16#18#, 16#30#, 16#60#, 16#FF#, 16#FC#, 16#C0#, 16#00#, 16#38#,
16#00#, 16#0E#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#70#, 16#00#, 16#0E#,
16#00#, 16#03#, 16#80#, 16#00#, 16#60#, 16#00#, 16#1C#, 16#00#, 16#03#,
16#00#, 16#00#, 16#E0#, 16#00#, 16#18#, 16#00#, 16#07#, 16#00#, 16#00#,
16#C0#, 16#00#, 16#38#, 16#00#, 16#06#, 16#00#, 16#01#, 16#C0#, 16#00#,
16#30#, 16#00#, 16#0E#, 16#00#, 16#01#, 16#80#, 16#00#, 16#70#, 16#00#,
16#0C#, 16#00#, 16#03#, 16#80#, 16#00#, 16#60#, 16#00#, 16#1C#, 16#00#,
16#03#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#18#, 16#00#, 16#07#, 16#00#,
16#00#, 16#C0#, 16#00#, 16#38#, 16#00#, 16#06#, 16#00#, 16#01#, 16#C0#,
16#00#, 16#30#, 16#00#, 16#0C#, 16#FF#, 16#FC#, 16#18#, 16#30#, 16#60#,
16#C1#, 16#83#, 16#06#, 16#0C#, 16#18#, 16#30#, 16#60#, 16#C1#, 16#83#,
16#06#, 16#0C#, 16#18#, 16#30#, 16#60#, 16#C1#, 16#83#, 16#06#, 16#0C#,
16#18#, 16#30#, 16#60#, 16#C1#, 16#83#, 16#FF#, 16#FC#, 16#00#, 16#40#,
16#00#, 16#30#, 16#00#, 16#1E#, 16#00#, 16#0E#, 16#C0#, 16#07#, 16#38#,
16#01#, 16#87#, 16#00#, 16#C0#, 16#C0#, 16#60#, 16#18#, 16#30#, 16#03#,
16#1C#, 16#00#, 16#E6#, 16#00#, 16#1F#, 16#00#, 16#03#, 16#FF#, 16#FF#,
16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#C0#, 16#E0#, 16#70#, 16#3C#,
16#0E#, 16#07#, 16#03#, 16#01#, 16#FC#, 16#00#, 16#7F#, 16#FC#, 16#01#,
16#C0#, 16#3C#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#60#, 16#00#,
16#01#, 16#80#, 16#00#, 16#06#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#,
16#60#, 16#0F#, 16#F9#, 16#81#, 16#FF#, 16#FE#, 16#0F#, 16#80#, 16#38#,
16#70#, 16#00#, 16#63#, 16#80#, 16#01#, 16#8C#, 16#00#, 16#06#, 16#30#,
16#00#, 16#18#, 16#C0#, 16#00#, 16#E3#, 16#00#, 16#07#, 16#86#, 16#00#,
16#76#, 16#1E#, 16#07#, 16#9F#, 16#3F#, 16#F8#, 16#7C#, 16#3F#, 16#80#,
16#00#, 16#F8#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#60#, 16#00#,
16#00#, 16#C0#, 16#00#, 16#01#, 16#80#, 16#00#, 16#03#, 16#00#, 16#00#,
16#06#, 16#00#, 16#00#, 16#0C#, 16#1F#, 16#80#, 16#18#, 16#FF#, 16#C0#,
16#33#, 16#81#, 16#C0#, 16#6E#, 16#01#, 16#C0#, 16#F0#, 16#00#, 16#C1#,
16#E0#, 16#01#, 16#C3#, 16#80#, 16#01#, 16#87#, 16#00#, 16#03#, 16#8C#,
16#00#, 16#03#, 16#18#, 16#00#, 16#06#, 16#30#, 16#00#, 16#0C#, 16#60#,
16#00#, 16#18#, 16#C0#, 16#00#, 16#31#, 16#80#, 16#00#, 16#63#, 16#80#,
16#01#, 16#87#, 16#00#, 16#03#, 16#0F#, 16#00#, 16#0E#, 16#1F#, 16#00#,
16#38#, 16#37#, 16#00#, 16#E3#, 16#E7#, 16#03#, 16#87#, 16#C7#, 16#FE#,
16#00#, 16#03#, 16#F0#, 16#00#, 16#01#, 16#FC#, 16#00#, 16#3F#, 16#F9#,
16#83#, 16#C0#, 16#FC#, 16#38#, 16#01#, 16#E3#, 16#00#, 16#07#, 16#38#,
16#00#, 16#19#, 16#80#, 16#00#, 16#DC#, 16#00#, 16#06#, 16#C0#, 16#00#,
16#06#, 16#00#, 16#00#, 16#30#, 16#00#, 16#01#, 16#80#, 16#00#, 16#0C#,
16#00#, 16#00#, 16#60#, 16#00#, 16#03#, 16#80#, 16#00#, 16#0C#, 16#00#,
16#00#, 16#70#, 16#00#, 16#01#, 16#80#, 16#00#, 16#C7#, 16#00#, 16#1E#,
16#1E#, 16#03#, 16#C0#, 16#7F#, 16#FC#, 16#00#, 16#FF#, 16#00#, 16#00#,
16#00#, 16#F8#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#18#, 16#00#,
16#00#, 16#18#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#18#, 16#00#,
16#00#, 16#18#, 16#01#, 16#F8#, 16#18#, 16#07#, 16#FE#, 16#18#, 16#0F#,
16#07#, 16#98#, 16#1C#, 16#01#, 16#D8#, 16#38#, 16#00#, 16#F8#, 16#70#,
16#00#, 16#78#, 16#60#, 16#00#, 16#38#, 16#E0#, 16#00#, 16#38#, 16#C0#,
16#00#, 16#18#, 16#C0#, 16#00#, 16#18#, 16#C0#, 16#00#, 16#18#, 16#C0#,
16#00#, 16#18#, 16#C0#, 16#00#, 16#18#, 16#C0#, 16#00#, 16#18#, 16#60#,
16#00#, 16#38#, 16#60#, 16#00#, 16#38#, 16#70#, 16#00#, 16#78#, 16#38#,
16#00#, 16#D8#, 16#1C#, 16#01#, 16#D8#, 16#0F#, 16#07#, 16#9F#, 16#07#,
16#FE#, 16#1F#, 16#01#, 16#F8#, 16#00#, 16#01#, 16#FC#, 16#00#, 16#3F#,
16#F8#, 16#07#, 16#80#, 16#F0#, 16#70#, 16#01#, 16#C3#, 16#00#, 16#07#,
16#30#, 16#00#, 16#19#, 16#80#, 16#00#, 16#78#, 16#00#, 16#03#, 16#C0#,
16#00#, 16#1F#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#80#, 16#00#,
16#0C#, 16#00#, 16#00#, 16#60#, 16#00#, 16#01#, 16#80#, 16#00#, 16#0C#,
16#00#, 16#00#, 16#30#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#C7#, 16#00#,
16#0E#, 16#1E#, 16#03#, 16#E0#, 16#3F#, 16#FC#, 16#00#, 16#7F#, 16#00#,
16#00#, 16#7F#, 16#C0#, 16#3F#, 16#FC#, 16#0E#, 16#00#, 16#03#, 16#80#,
16#00#, 16#60#, 16#00#, 16#0C#, 16#00#, 16#01#, 16#80#, 16#00#, 16#30#,
16#00#, 16#FF#, 16#FF#, 16#9F#, 16#FF#, 16#F0#, 16#18#, 16#00#, 16#03#,
16#00#, 16#00#, 16#60#, 16#00#, 16#0C#, 16#00#, 16#01#, 16#80#, 16#00#,
16#30#, 16#00#, 16#06#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#18#, 16#00#,
16#03#, 16#00#, 16#00#, 16#60#, 16#00#, 16#0C#, 16#00#, 16#01#, 16#80#,
16#00#, 16#30#, 16#00#, 16#06#, 16#00#, 16#00#, 16#C0#, 16#03#, 16#FF#,
16#FC#, 16#7F#, 16#FF#, 16#80#, 16#01#, 16#F8#, 16#00#, 16#0F#, 16#FC#,
16#7C#, 16#38#, 16#1C#, 16#F8#, 16#E0#, 16#0D#, 16#83#, 16#00#, 16#0F#,
16#0E#, 16#00#, 16#1E#, 16#18#, 16#00#, 16#1C#, 16#70#, 16#00#, 16#38#,
16#C0#, 16#00#, 16#31#, 16#80#, 16#00#, 16#63#, 16#00#, 16#00#, 16#C6#,
16#00#, 16#01#, 16#8C#, 16#00#, 16#03#, 16#18#, 16#00#, 16#06#, 16#18#,
16#00#, 16#1C#, 16#30#, 16#00#, 16#38#, 16#30#, 16#00#, 16#F0#, 16#70#,
16#03#, 16#60#, 16#78#, 16#1C#, 16#C0#, 16#3F#, 16#F1#, 16#80#, 16#1F#,
16#83#, 16#00#, 16#00#, 16#06#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#,
16#18#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#03#,
16#80#, 16#00#, 16#0E#, 16#00#, 16#3F#, 16#F8#, 16#00#, 16#7F#, 16#C0#,
16#00#, 16#F8#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#60#, 16#00#,
16#00#, 16#C0#, 16#00#, 16#01#, 16#80#, 16#00#, 16#03#, 16#00#, 16#00#,
16#06#, 16#00#, 16#00#, 16#0C#, 16#3F#, 16#00#, 16#18#, 16#FF#, 16#80#,
16#37#, 16#03#, 16#80#, 16#7C#, 16#03#, 16#80#, 16#F0#, 16#03#, 16#81#,
16#C0#, 16#03#, 16#03#, 16#00#, 16#06#, 16#06#, 16#00#, 16#0C#, 16#0C#,
16#00#, 16#18#, 16#18#, 16#00#, 16#30#, 16#30#, 16#00#, 16#60#, 16#60#,
16#00#, 16#C0#, 16#C0#, 16#01#, 16#81#, 16#80#, 16#03#, 16#03#, 16#00#,
16#06#, 16#06#, 16#00#, 16#0C#, 16#0C#, 16#00#, 16#18#, 16#18#, 16#00#,
16#30#, 16#30#, 16#00#, 16#63#, 16#FC#, 16#07#, 16#FF#, 16#F8#, 16#0F#,
16#F0#, 16#01#, 16#C0#, 16#00#, 16#70#, 16#00#, 16#1C#, 16#00#, 16#07#,
16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#0F#, 16#F0#, 16#03#, 16#FC#, 16#00#, 16#03#,
16#00#, 16#00#, 16#C0#, 16#00#, 16#30#, 16#00#, 16#0C#, 16#00#, 16#03#,
16#00#, 16#00#, 16#C0#, 16#00#, 16#30#, 16#00#, 16#0C#, 16#00#, 16#03#,
16#00#, 16#00#, 16#C0#, 16#00#, 16#30#, 16#00#, 16#0C#, 16#00#, 16#03#,
16#00#, 16#00#, 16#C0#, 16#00#, 16#30#, 16#00#, 16#0C#, 16#03#, 16#FF#,
16#FF#, 16#FF#, 16#FF#, 16#C0#, 16#00#, 16#70#, 16#01#, 16#C0#, 16#07#,
16#00#, 16#1C#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#03#, 16#FF#, 16#FF#, 16#FF#, 16#C0#, 16#03#, 16#00#, 16#0C#,
16#00#, 16#30#, 16#00#, 16#C0#, 16#03#, 16#00#, 16#0C#, 16#00#, 16#30#,
16#00#, 16#C0#, 16#03#, 16#00#, 16#0C#, 16#00#, 16#30#, 16#00#, 16#C0#,
16#03#, 16#00#, 16#0C#, 16#00#, 16#30#, 16#00#, 16#C0#, 16#03#, 16#00#,
16#0C#, 16#00#, 16#30#, 16#00#, 16#C0#, 16#03#, 16#00#, 16#0C#, 16#00#,
16#70#, 16#03#, 16#80#, 16#1C#, 16#FF#, 16#E3#, 16#FF#, 16#00#, 16#F8#,
16#00#, 16#03#, 16#E0#, 16#00#, 16#01#, 16#80#, 16#00#, 16#06#, 16#00#,
16#00#, 16#18#, 16#00#, 16#00#, 16#60#, 16#00#, 16#01#, 16#80#, 16#00#,
16#06#, 16#00#, 16#00#, 16#18#, 16#1F#, 16#E0#, 16#60#, 16#7F#, 16#81#,
16#80#, 16#60#, 16#06#, 16#07#, 16#00#, 16#18#, 16#38#, 16#00#, 16#61#,
16#C0#, 16#01#, 16#8E#, 16#00#, 16#06#, 16#60#, 16#00#, 16#1B#, 16#80#,
16#00#, 16#7F#, 16#00#, 16#01#, 16#CE#, 16#00#, 16#06#, 16#1C#, 16#00#,
16#18#, 16#38#, 16#00#, 16#60#, 16#70#, 16#01#, 16#80#, 16#E0#, 16#06#,
16#01#, 16#C0#, 16#18#, 16#03#, 16#80#, 16#60#, 16#07#, 16#0F#, 16#80#,
16#7F#, 16#FE#, 16#01#, 16#FF#, 16#3F#, 16#C0#, 16#0F#, 16#F0#, 16#00#,
16#0C#, 16#00#, 16#03#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#30#, 16#00#,
16#0C#, 16#00#, 16#03#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#30#, 16#00#,
16#0C#, 16#00#, 16#03#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#30#, 16#00#,
16#0C#, 16#00#, 16#03#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#30#, 16#00#,
16#0C#, 16#00#, 16#03#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#30#, 16#00#,
16#0C#, 16#00#, 16#03#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#30#, 16#0F#,
16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#00#, 16#F0#, 16#3C#, 16#0F#, 16#9F#,
16#87#, 16#E0#, 16#FB#, 16#1C#, 16#C7#, 16#01#, 16#E0#, 16#D8#, 16#38#,
16#1C#, 16#07#, 16#01#, 16#81#, 16#80#, 16#60#, 16#18#, 16#18#, 16#06#,
16#01#, 16#81#, 16#80#, 16#60#, 16#18#, 16#18#, 16#06#, 16#01#, 16#81#,
16#80#, 16#60#, 16#18#, 16#18#, 16#06#, 16#01#, 16#81#, 16#80#, 16#60#,
16#18#, 16#18#, 16#06#, 16#01#, 16#81#, 16#80#, 16#60#, 16#18#, 16#18#,
16#06#, 16#01#, 16#81#, 16#80#, 16#60#, 16#18#, 16#18#, 16#06#, 16#01#,
16#81#, 16#80#, 16#60#, 16#18#, 16#18#, 16#06#, 16#01#, 16#8F#, 16#E0#,
16#7C#, 16#1F#, 16#FE#, 16#07#, 16#C1#, 16#F0#, 16#00#, 16#1F#, 16#00#,
16#F8#, 16#FF#, 16#81#, 16#F3#, 16#83#, 16#80#, 16#6C#, 16#03#, 16#80#,
16#F0#, 16#03#, 16#81#, 16#C0#, 16#03#, 16#03#, 16#00#, 16#06#, 16#06#,
16#00#, 16#0C#, 16#0C#, 16#00#, 16#18#, 16#18#, 16#00#, 16#30#, 16#30#,
16#00#, 16#60#, 16#60#, 16#00#, 16#C0#, 16#C0#, 16#01#, 16#81#, 16#80#,
16#03#, 16#03#, 16#00#, 16#06#, 16#06#, 16#00#, 16#0C#, 16#0C#, 16#00#,
16#18#, 16#18#, 16#00#, 16#30#, 16#30#, 16#00#, 16#67#, 16#FC#, 16#03#,
16#FF#, 16#F8#, 16#07#, 16#E0#, 16#00#, 16#FC#, 16#00#, 16#1F#, 16#FE#,
16#00#, 16#F0#, 16#3C#, 16#07#, 16#00#, 16#38#, 16#38#, 16#00#, 16#71#,
16#C0#, 16#00#, 16#E6#, 16#00#, 16#01#, 16#98#, 16#00#, 16#06#, 16#C0#,
16#00#, 16#0F#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#F0#, 16#00#,
16#03#, 16#C0#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#36#, 16#00#, 16#01#,
16#98#, 16#00#, 16#06#, 16#70#, 16#00#, 16#38#, 16#E0#, 16#01#, 16#C1#,
16#C0#, 16#0E#, 16#03#, 16#C0#, 16#F0#, 16#07#, 16#FF#, 16#80#, 16#03#,
16#F0#, 16#00#, 16#00#, 16#3F#, 16#01#, 16#F1#, 16#FF#, 16#83#, 16#E7#,
16#03#, 16#80#, 16#D8#, 16#01#, 16#81#, 16#E0#, 16#01#, 16#83#, 16#C0#,
16#03#, 16#87#, 16#00#, 16#03#, 16#0E#, 16#00#, 16#07#, 16#18#, 16#00#,
16#06#, 16#30#, 16#00#, 16#0C#, 16#60#, 16#00#, 16#18#, 16#C0#, 16#00#,
16#31#, 16#80#, 16#00#, 16#63#, 16#00#, 16#00#, 16#C7#, 16#00#, 16#03#,
16#0E#, 16#00#, 16#06#, 16#1E#, 16#00#, 16#18#, 16#36#, 16#00#, 16#70#,
16#67#, 16#03#, 16#C0#, 16#C7#, 16#FE#, 16#01#, 16#83#, 16#F0#, 16#03#,
16#00#, 16#00#, 16#06#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#18#,
16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#C0#,
16#00#, 16#0F#, 16#FC#, 16#00#, 16#1F#, 16#F8#, 16#00#, 16#00#, 16#01#,
16#F8#, 16#00#, 16#07#, 16#FF#, 16#1F#, 16#0F#, 16#07#, 16#9F#, 16#1C#,
16#01#, 16#D8#, 16#38#, 16#00#, 16#78#, 16#70#, 16#00#, 16#78#, 16#60#,
16#00#, 16#38#, 16#E0#, 16#00#, 16#38#, 16#C0#, 16#00#, 16#18#, 16#C0#,
16#00#, 16#18#, 16#C0#, 16#00#, 16#18#, 16#C0#, 16#00#, 16#18#, 16#C0#,
16#00#, 16#18#, 16#C0#, 16#00#, 16#18#, 16#60#, 16#00#, 16#38#, 16#70#,
16#00#, 16#78#, 16#30#, 16#00#, 16#78#, 16#1C#, 16#01#, 16#D8#, 16#0F#,
16#07#, 16#98#, 16#07#, 16#FF#, 16#18#, 16#01#, 16#FC#, 16#18#, 16#00#,
16#00#, 16#18#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#18#, 16#00#,
16#00#, 16#18#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#18#, 16#00#,
16#00#, 16#18#, 16#00#, 16#03#, 16#FF#, 16#00#, 16#03#, 16#FF#, 16#7E#,
16#03#, 16#C3#, 16#F0#, 16#7F#, 16#81#, 16#8F#, 16#0E#, 16#0C#, 16#E0#,
16#00#, 16#7E#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#1C#, 16#00#, 16#00#,
16#C0#, 16#00#, 16#06#, 16#00#, 16#00#, 16#30#, 16#00#, 16#01#, 16#80#,
16#00#, 16#0C#, 16#00#, 16#00#, 16#60#, 16#00#, 16#03#, 16#00#, 16#00#,
16#18#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#06#, 16#00#, 16#00#, 16#30#,
16#00#, 16#3F#, 16#FF#, 16#C1#, 16#FF#, 16#FE#, 16#00#, 16#07#, 16#F0#,
16#07#, 16#FF#, 16#63#, 16#C0#, 16#F9#, 16#C0#, 16#0E#, 16#60#, 16#01#,
16#98#, 16#00#, 16#66#, 16#00#, 16#19#, 16#C0#, 16#00#, 16#38#, 16#00#,
16#07#, 16#C0#, 16#00#, 16#7F#, 16#C0#, 16#00#, 16#7C#, 16#00#, 16#03#,
16#80#, 16#00#, 16#70#, 16#00#, 16#0F#, 16#00#, 16#03#, 16#C0#, 16#00#,
16#F8#, 16#00#, 16#7F#, 16#00#, 16#3B#, 16#F0#, 16#3C#, 16#DF#, 16#FE#,
16#00#, 16#FE#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#60#, 16#00#, 16#03#,
16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#06#, 16#00#,
16#03#, 16#FF#, 16#FE#, 16#1F#, 16#FF#, 16#F0#, 16#0C#, 16#00#, 16#00#,
16#60#, 16#00#, 16#03#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#C0#,
16#00#, 16#06#, 16#00#, 16#00#, 16#30#, 16#00#, 16#01#, 16#80#, 16#00#,
16#0C#, 16#00#, 16#00#, 16#60#, 16#00#, 16#03#, 16#00#, 16#00#, 16#18#,
16#00#, 16#00#, 16#C0#, 16#00#, 16#06#, 16#00#, 16#00#, 16#30#, 16#00#,
16#00#, 16#C0#, 16#07#, 16#07#, 16#01#, 16#F0#, 16#1F#, 16#FF#, 16#00#,
16#3F#, 16#80#, 16#F8#, 16#03#, 16#F1#, 16#F0#, 16#07#, 16#E0#, 16#60#,
16#00#, 16#C0#, 16#C0#, 16#01#, 16#81#, 16#80#, 16#03#, 16#03#, 16#00#,
16#06#, 16#06#, 16#00#, 16#0C#, 16#0C#, 16#00#, 16#18#, 16#18#, 16#00#,
16#30#, 16#30#, 16#00#, 16#60#, 16#60#, 16#00#, 16#C0#, 16#C0#, 16#01#,
16#81#, 16#80#, 16#03#, 16#03#, 16#00#, 16#06#, 16#06#, 16#00#, 16#0C#,
16#0C#, 16#00#, 16#38#, 16#18#, 16#00#, 16#F0#, 16#18#, 16#03#, 16#60#,
16#38#, 16#3C#, 16#F8#, 16#3F#, 16#F1#, 16#F0#, 16#1F#, 16#00#, 16#00#,
16#7F#, 16#C0#, 16#FF#, 16#DF#, 16#F0#, 16#3F#, 16#F0#, 16#C0#, 16#00#,
16#40#, 16#30#, 16#00#, 16#30#, 16#06#, 16#00#, 16#08#, 16#01#, 16#80#,
16#06#, 16#00#, 16#30#, 16#01#, 16#80#, 16#0C#, 16#00#, 16#C0#, 16#03#,
16#80#, 16#30#, 16#00#, 16#60#, 16#18#, 16#00#, 16#18#, 16#06#, 16#00#,
16#03#, 16#01#, 16#00#, 16#00#, 16#C0#, 16#C0#, 16#00#, 16#18#, 16#20#,
16#00#, 16#06#, 16#18#, 16#00#, 16#00#, 16#C6#, 16#00#, 16#00#, 16#33#,
16#00#, 16#00#, 16#0E#, 16#C0#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#,
16#78#, 16#00#, 16#7F#, 16#00#, 16#3F#, 16#DF#, 16#C0#, 16#0F#, 16#F1#,
16#80#, 16#00#, 16#20#, 16#60#, 16#00#, 16#18#, 16#18#, 16#00#, 16#06#,
16#06#, 16#03#, 16#01#, 16#80#, 16#81#, 16#E0#, 16#60#, 16#30#, 16#78#,
16#10#, 16#0C#, 16#1E#, 16#0C#, 16#03#, 16#0C#, 16#C3#, 16#00#, 16#C3#,
16#30#, 16#C0#, 16#10#, 16#CE#, 16#30#, 16#06#, 16#61#, 16#98#, 16#01#,
16#98#, 16#66#, 16#00#, 16#66#, 16#1D#, 16#80#, 16#0B#, 16#03#, 16#60#,
16#03#, 16#C0#, 16#D0#, 16#00#, 16#F0#, 16#1C#, 16#00#, 16#38#, 16#07#,
16#00#, 16#0E#, 16#01#, 16#C0#, 16#3F#, 16#81#, 16#FE#, 16#3F#, 16#81#,
16#FE#, 16#0C#, 16#00#, 16#38#, 16#06#, 16#00#, 16#70#, 16#03#, 16#00#,
16#E0#, 16#01#, 16#81#, 16#C0#, 16#00#, 16#C3#, 16#80#, 16#00#, 16#67#,
16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#3C#,
16#00#, 16#00#, 16#67#, 16#00#, 16#00#, 16#C3#, 16#80#, 16#01#, 16#81#,
16#C0#, 16#03#, 16#00#, 16#E0#, 16#06#, 16#00#, 16#70#, 16#0C#, 16#00#,
16#38#, 16#18#, 16#00#, 16#1C#, 16#7F#, 16#81#, 16#FF#, 16#7F#, 16#81#,
16#FF#, 16#7F#, 16#00#, 16#FF#, 16#7F#, 16#00#, 16#FF#, 16#18#, 16#00#,
16#0C#, 16#18#, 16#00#, 16#18#, 16#0C#, 16#00#, 16#18#, 16#0C#, 16#00#,
16#30#, 16#06#, 16#00#, 16#30#, 16#06#, 16#00#, 16#60#, 16#03#, 16#00#,
16#60#, 16#03#, 16#00#, 16#C0#, 16#01#, 16#80#, 16#C0#, 16#01#, 16#81#,
16#80#, 16#00#, 16#C1#, 16#80#, 16#00#, 16#C3#, 16#00#, 16#00#, 16#63#,
16#00#, 16#00#, 16#66#, 16#00#, 16#00#, 16#36#, 16#00#, 16#00#, 16#34#,
16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#18#,
16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#20#,
16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#40#, 16#00#, 16#00#, 16#C0#,
16#00#, 16#7F#, 16#FC#, 16#00#, 16#7F#, 16#FC#, 16#00#, 16#FF#, 16#FF#,
16#7F#, 16#FF#, 16#B0#, 16#01#, 16#98#, 16#01#, 16#CC#, 16#01#, 16#C0#,
16#00#, 16#C0#, 16#00#, 16#C0#, 16#00#, 16#C0#, 16#00#, 16#C0#, 16#00#,
16#C0#, 16#00#, 16#E0#, 16#00#, 16#60#, 16#00#, 16#60#, 16#00#, 16#60#,
16#00#, 16#60#, 16#00#, 16#60#, 16#03#, 16#70#, 16#01#, 16#B0#, 16#00#,
16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#F0#, 16#00#, 16#E0#, 16#7C#, 16#0C#,
16#03#, 16#00#, 16#60#, 16#0C#, 16#01#, 16#80#, 16#30#, 16#06#, 16#00#,
16#C0#, 16#18#, 16#03#, 16#00#, 16#60#, 16#0C#, 16#03#, 16#00#, 16#E0#,
16#F0#, 16#1E#, 16#00#, 16#70#, 16#06#, 16#00#, 16#60#, 16#0C#, 16#01#,
16#80#, 16#30#, 16#06#, 16#00#, 16#C0#, 16#18#, 16#03#, 16#00#, 16#60#,
16#0C#, 16#01#, 16#80#, 16#18#, 16#03#, 16#E0#, 16#1C#, 16#FF#, 16#FF#,
16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#F0#, 16#E0#, 16#1F#,
16#00#, 16#60#, 16#06#, 16#00#, 16#C0#, 16#18#, 16#03#, 16#00#, 16#60#,
16#0C#, 16#01#, 16#80#, 16#30#, 16#06#, 16#00#, 16#C0#, 16#18#, 16#01#,
16#80#, 16#38#, 16#01#, 16#E0#, 16#3C#, 16#1C#, 16#03#, 16#00#, 16#C0#,
16#18#, 16#03#, 16#00#, 16#60#, 16#0C#, 16#01#, 16#80#, 16#30#, 16#06#,
16#00#, 16#C0#, 16#18#, 16#03#, 16#00#, 16#C0#, 16#F8#, 16#1C#, 16#00#,
16#0F#, 16#00#, 16#03#, 16#FC#, 16#03#, 16#70#, 16#E0#, 16#76#, 16#07#,
16#8E#, 16#C0#, 16#1F#, 16#C0#, 16#00#, 16#F0#);
FreeMono24pt7bGlyphs : aliased constant Glyph_Array := (
(0, 0, 0, 28, 0, 1), -- 0x20 ' '
(0, 5, 30, 28, 11, -28), -- 0x21 '!'
(19, 16, 14, 28, 6, -28), -- 0x22 '"'
(47, 19, 32, 28, 4, -29), -- 0x23 '#'
(123, 18, 33, 28, 5, -29), -- 0x24 '$'
(198, 20, 29, 28, 4, -27), -- 0x25 '%'
(271, 18, 25, 28, 5, -23), -- 0x26 '&'
(328, 7, 14, 28, 11, -28), -- 0x27 '''
(341, 7, 34, 28, 14, -27), -- 0x28 '('
(371, 7, 34, 28, 8, -27), -- 0x29 ')'
(401, 18, 16, 28, 5, -27), -- 0x2A '*'
(437, 20, 22, 28, 4, -23), -- 0x2B '+'
(492, 9, 14, 28, 6, -6), -- 0x2C ','
(508, 22, 2, 28, 3, -13), -- 0x2D '-'
(514, 7, 6, 28, 11, -4), -- 0x2E '.'
(520, 18, 35, 28, 5, -30), -- 0x2F '/'
(599, 18, 30, 28, 5, -28), -- 0x30 '0'
(667, 16, 29, 28, 6, -28), -- 0x31 '1'
(725, 18, 29, 28, 5, -28), -- 0x32 '2'
(791, 19, 30, 28, 5, -28), -- 0x33 '3'
(863, 16, 28, 28, 6, -27), -- 0x34 '4'
(919, 19, 29, 28, 5, -27), -- 0x35 '5'
(988, 18, 30, 28, 6, -28), -- 0x36 '6'
(1056, 18, 28, 28, 5, -27), -- 0x37 '7'
(1119, 18, 30, 28, 5, -28), -- 0x38 '8'
(1187, 18, 30, 28, 6, -28), -- 0x39 '9'
(1255, 7, 21, 28, 11, -19), -- 0x3A ':'
(1274, 10, 27, 28, 7, -19), -- 0x3B ';'
(1308, 22, 22, 28, 3, -23), -- 0x3C '<'
(1369, 24, 9, 28, 2, -17), -- 0x3D '='
(1396, 21, 22, 28, 4, -23), -- 0x3E '>'
(1454, 17, 28, 28, 6, -26), -- 0x3F '?'
(1514, 18, 32, 28, 5, -28), -- 0x40 '@'
(1586, 28, 26, 28, 0, -25), -- 0x41 'A'
(1677, 22, 26, 28, 3, -25), -- 0x42 'B'
(1749, 22, 28, 28, 3, -26), -- 0x43 'C'
(1826, 22, 26, 28, 3, -25), -- 0x44 'D'
(1898, 22, 26, 28, 3, -25), -- 0x45 'E'
(1970, 22, 26, 28, 3, -25), -- 0x46 'F'
(2042, 23, 28, 28, 3, -26), -- 0x47 'G'
(2123, 23, 26, 28, 3, -25), -- 0x48 'H'
(2198, 16, 26, 28, 6, -25), -- 0x49 'I'
(2250, 23, 27, 28, 4, -25), -- 0x4A 'J'
(2328, 24, 26, 28, 3, -25), -- 0x4B 'K'
(2406, 21, 26, 28, 4, -25), -- 0x4C 'L'
(2475, 26, 26, 28, 1, -25), -- 0x4D 'M'
(2560, 24, 26, 28, 2, -25), -- 0x4E 'N'
(2638, 24, 28, 28, 2, -26), -- 0x4F 'O'
(2722, 21, 26, 28, 3, -25), -- 0x50 'P'
(2791, 24, 32, 28, 2, -26), -- 0x51 'Q'
(2887, 24, 26, 28, 3, -25), -- 0x52 'R'
(2965, 20, 28, 28, 4, -26), -- 0x53 'S'
(3035, 22, 26, 28, 3, -25), -- 0x54 'T'
(3107, 23, 27, 28, 3, -25), -- 0x55 'U'
(3185, 28, 26, 28, 0, -25), -- 0x56 'V'
(3276, 26, 26, 28, 1, -25), -- 0x57 'W'
(3361, 24, 26, 28, 2, -25), -- 0x58 'X'
(3439, 24, 26, 28, 2, -25), -- 0x59 'Y'
(3517, 18, 26, 28, 5, -25), -- 0x5A 'Z'
(3576, 7, 34, 28, 13, -27), -- 0x5B '['
(3606, 18, 35, 28, 5, -30), -- 0x5C '\'
(3685, 7, 34, 28, 8, -27), -- 0x5D ']'
(3715, 18, 12, 28, 5, -28), -- 0x5E '^'
(3742, 28, 2, 28, 0, 5), -- 0x5F '_'
(3749, 8, 7, 28, 7, -29), -- 0x60 '`'
(3756, 22, 22, 28, 3, -20), -- 0x61 'a'
(3817, 23, 29, 28, 2, -27), -- 0x62 'b'
(3901, 21, 22, 28, 4, -20), -- 0x63 'c'
(3959, 24, 29, 28, 3, -27), -- 0x64 'd'
(4046, 21, 22, 28, 3, -20), -- 0x65 'e'
(4104, 19, 28, 28, 6, -27), -- 0x66 'f'
(4171, 23, 30, 28, 3, -20), -- 0x67 'g'
(4258, 23, 28, 28, 3, -27), -- 0x68 'h'
(4339, 18, 29, 28, 5, -28), -- 0x69 'i'
(4405, 14, 38, 28, 6, -28), -- 0x6A 'j'
(4472, 22, 28, 28, 4, -27), -- 0x6B 'k'
(4549, 18, 28, 28, 5, -27), -- 0x6C 'l'
(4612, 28, 21, 28, 0, -20), -- 0x6D 'm'
(4686, 23, 21, 28, 2, -20), -- 0x6E 'n'
(4747, 22, 22, 28, 3, -20), -- 0x6F 'o'
(4808, 23, 30, 28, 2, -20), -- 0x70 'p'
(4895, 24, 30, 28, 3, -20), -- 0x71 'q'
(4985, 21, 20, 28, 5, -19), -- 0x72 'r'
(5038, 18, 22, 28, 5, -20), -- 0x73 's'
(5088, 21, 27, 28, 3, -25), -- 0x74 't'
(5159, 23, 21, 28, 3, -19), -- 0x75 'u'
(5220, 26, 20, 28, 1, -19), -- 0x76 'v'
(5285, 26, 20, 28, 1, -19), -- 0x77 'w'
(5350, 24, 20, 28, 2, -19), -- 0x78 'x'
(5410, 24, 29, 28, 2, -19), -- 0x79 'y'
(5497, 17, 20, 28, 6, -19), -- 0x7A 'z'
(5540, 11, 34, 28, 8, -27), -- 0x7B '{'
(5587, 2, 34, 28, 13, -27), -- 0x7C '|'
(5596, 11, 34, 28, 9, -27), -- 0x7D '}'
(5643, 20, 6, 28, 4, -15)); -- 0x7E '~'
Font_D : aliased constant Bitmap_Font :=
(FreeMono24pt7bBitmaps'Access,
FreeMono24pt7bGlyphs'Access,
47);
Font : constant Giza.Font.Ref_Const := Font_D'Access;
end Giza.Bitmap_Fonts.FreeMono24pt7b;
|
with Ada.Text_IO;
procedure Remove_Characters is
S: String := "upraisers";
use Ada.Text_IO;
begin
Put_Line("Full String: """ & S & """");
Put_Line("Without_First: """ & S(S'First+1 .. S'Last) & """");
Put_Line("Without_Last: """ & S(S'First .. S'Last-1) & """");
Put_Line("Without_Both: """ & S(S'First+1 .. S'Last-1) & """");
end Remove_Characters;
|
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE boost_serialization>
<boost_serialization signature="serialization::archive" version="14">
<syndb class_id="0" tracking_level="0" version="0">
<userIPLatency>-1</userIPLatency>
<userIPName/>
<cdfg class_id="1" tracking_level="1" version="0" object_id="_0">
<name>call_Loop_LB2D_buf_p</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>1</id>
<name>in_stream_V_value_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo class_id="6" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>stream&lt;PackedStencil&lt;unsigned int, 1, 1, 1, 1&gt; &gt;.V.value.V</originalName>
<rtlName/>
<coreName>FIFO_SRL</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>3</if_type>
<array_size>0</array_size>
<bit_vecs class_id="7" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_2">
<Value>
<Obj>
<type>1</type>
<id>2</id>
<name>slice_stream_V_value_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName>FIFO_SRL</coreName>
</Obj>
<bitwidth>96</bitwidth>
</Value>
<direction>1</direction>
<if_type>3</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>43</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_3">
<Value>
<Obj>
<type>0</type>
<id>7</id>
<name>buffer_0_value_V</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>168</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="10" tracking_level="0" version="0">
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second class_id="11" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="12" tracking_level="0" version="0">
<first class_id="13" tracking_level="0" version="0">
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>168</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>buffer[0].value.V</originalName>
<rtlName>buffer_0_value_V_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_4">
<Value>
<Obj>
<type>0</type>
<id>8</id>
<name>buffer_1_value_V</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>168</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>168</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>buffer[1].value.V</originalName>
<rtlName>buffer_1_value_V_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>72</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/>
<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>73</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_6">
<Value>
<Obj>
<type>0</type>
<id>11</id>
<name>write_idx_1</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>write_idx_1</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>75</item>
<item>76</item>
<item>77</item>
<item>78</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_7">
<Value>
<Obj>
<type>0</type>
<id>12</id>
<name>row</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>row</originalName>
<rtlName/>
<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="_8">
<Value>
<Obj>
<type>0</type>
<id>13</id>
<name>tmp</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>177</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>177</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_fu_168_p2</rtlName>
<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="_9">
<Value>
<Obj>
<type>0</type>
<id>15</id>
<name>row_1</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>177</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>177</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>row</originalName>
<rtlName>row_1_fu_174_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>87</item>
<item>89</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>16</id>
<name/>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>177</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>177</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>90</item>
<item>91</item>
<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>20</id>
<name>tmp_5</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>187</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>187</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_5_fu_180_p4</rtlName>
<coreName/>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>113</item>
<item>114</item>
<item>116</item>
<item>118</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name>icmp</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>187</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>187</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_fu_190_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>119</item>
<item>121</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>22</id>
<name/>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>179</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>179</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>122</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>24</id>
<name>write_idx_1_1</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>211</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>211</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>96</item>
<item>97</item>
<item>98</item>
<item>99</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>25</id>
<name>col</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>col</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>100</item>
<item>101</item>
<item>102</item>
<item>103</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>26</id>
<name>tmp_6</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>179</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>179</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_6_fu_196_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>104</item>
<item>106</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>27</id>
<name>col_1</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>179</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>179</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>col</originalName>
<rtlName>col_1_fu_202_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>107</item>
<item>108</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>28</id>
<name/>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>179</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>179</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>109</item>
<item>110</item>
<item>111</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>30</id>
<name>col_cast</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>179</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>179</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>col_cast_fu_208_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>131</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>34</id>
<name>tmp_7</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>183</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>183</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_7_fu_214_p4</rtlName>
<coreName/>
</Obj>
<bitwidth>63</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>133</item>
<item>134</item>
<item>135</item>
<item>137</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>35</id>
<name>icmp1</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>183</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>183</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp1_fu_224_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>138</item>
<item>140</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>36</id>
<name>write_idx_1_3</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>184</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>write_idx_1</originalName>
<rtlName>write_idx_1_3_fu_230_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>141</item>
<item>143</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name>p_write_idx_1_1</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>183</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>183</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>p_write_idx_1_1_fu_236_p3</rtlName>
<coreName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>144</item>
<item>145</item>
<item>146</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name>tmp_value_V_2</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.value.V</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>148</item>
<item>149</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>39</id>
<name>buffer_0_value_V_ad</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>179</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>179</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>150</item>
<item>151</item>
<item>152</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>buffer_0_value_V_lo</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>198</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>153</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name>buffer_1_value_V_ad</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>179</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>179</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>154</item>
<item>155</item>
<item>156</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>42</id>
<name>buffer_1_value_V_lo</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>198</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>157</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name/>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>187</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>187</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>158</item>
<item>159</item>
<item>160</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>45</id>
<name>tmp_8</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>183</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>183</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_8_fu_243_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>161</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>46</id>
<name>p_Val2_8_0_phi</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>198</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>p_Val2_8_0_phi_fu_251_p3</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>162</item>
<item>163</item>
<item>164</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>47</id>
<name>p_Val2_8_1_phi</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>198</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>p_Val2_8_1_phi_fu_256_p3</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>165</item>
<item>166</item>
<item>167</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>48</id>
<name>p_Result_s</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>206</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>206</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName>slice_stream_V_value_V_din</rtlName>
<coreName/>
</Obj>
<bitwidth>96</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>169</item>
<item>170</item>
<item>171</item>
<item>172</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>49</id>
<name/>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>207</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>207</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>174</item>
<item>175</item>
<item>176</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>50</id>
<name/>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>208</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>208</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>177</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>52</id>
<name>tmp_9</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>183</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>183</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_9_fu_247_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>127</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>53</id>
<name/>
<fileName>../../../lib_files/Stencil.h</fileName>
<fileDirectory>..</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</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>209</second>
</item>
<item>
<first>
<first>../../../lib_files/Stencil.h</first>
<second>operator=</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>128</item>
<item>129</item>
<item>130</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>55</id>
<name/>
<fileName>../../../lib_files/Stencil.h</fileName>
<fileDirectory>..</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</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>209</second>
</item>
<item>
<first>
<first>../../../lib_files/Stencil.h</first>
<second>operator=</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>124</item>
<item>125</item>
<item>297</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>56</id>
<name/>
<fileName>../../../lib_files/Stencil.h</fileName>
<fileDirectory>..</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</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>209</second>
</item>
<item>
<first>
<first>../../../lib_files/Stencil.h</first>
<second>operator=</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>126</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_40">
<Value>
<Obj>
<type>0</type>
<id>58</id>
<name/>
<fileName>../../../lib_files/Stencil.h</fileName>
<fileDirectory>..</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</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>209</second>
</item>
<item>
<first>
<first>../../../lib_files/Stencil.h</first>
<second>operator=</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>178</item>
<item>179</item>
<item>296</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>59</id>
<name/>
<fileName>../../../lib_files/Stencil.h</fileName>
<fileDirectory>..</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</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>209</second>
</item>
<item>
<first>
<first>../../../lib_files/Stencil.h</first>
<second>operator=</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>180</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_42">
<Value>
<Obj>
<type>0</type>
<id>62</id>
<name/>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>179</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>179</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>123</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_43">
<Value>
<Obj>
<type>0</type>
<id>64</id>
<name>write_idx_1_2</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>211</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>211</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>write_idx_1</originalName>
<rtlName>write_idx_1_2_fu_271_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>93</item>
<item>94</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_44">
<Value>
<Obj>
<type>0</type>
<id>66</id>
<name/>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>177</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>177</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_45">
<Value>
<Obj>
<type>0</type>
<id>68</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>0</count>
<item_version>0</item_version>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>12</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_46">
<Value>
<Obj>
<type>2</type>
<id>70</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_47">
<Value>
<Obj>
<type>2</type>
<id>74</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="_48">
<Value>
<Obj>
<type>2</type>
<id>79</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>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_49">
<Value>
<Obj>
<type>2</type>
<id>85</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>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>1080</content>
</item>
<item class_id_reference="16" object_id="_50">
<Value>
<Obj>
<type>2</type>
<id>88</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>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_51">
<Value>
<Obj>
<type>2</type>
<id>105</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>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>1920</content>
</item>
<item class_id_reference="16" object_id="_52">
<Value>
<Obj>
<type>2</type>
<id>115</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_53">
<Value>
<Obj>
<type>2</type>
<id>117</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>10</content>
</item>
<item class_id_reference="16" object_id="_54">
<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>10</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_55">
<Value>
<Obj>
<type>2</type>
<id>136</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>63</content>
</item>
<item class_id_reference="16" object_id="_56">
<Value>
<Obj>
<type>2</type>
<id>139</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>63</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_57">
<Value>
<Obj>
<type>2</type>
<id>142</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>18446744073709551614</content>
</item>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>12</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_58">
<Obj>
<type>3</type>
<id>10</id>
<name>newFuncRoot</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>7</item>
<item>8</item>
<item>9</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_59">
<Obj>
<type>3</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>
<node_objs>
<count>5</count>
<item_version>0</item_version>
<item>11</item>
<item>12</item>
<item>13</item>
<item>15</item>
<item>16</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_60">
<Obj>
<type>3</type>
<id>23</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>3</count>
<item_version>0</item_version>
<item>20</item>
<item>21</item>
<item>22</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_61">
<Obj>
<type>3</type>
<id>29</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>5</count>
<item_version>0</item_version>
<item>24</item>
<item>25</item>
<item>26</item>
<item>27</item>
<item>28</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_62">
<Obj>
<type>3</type>
<id>44</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>11</count>
<item_version>0</item_version>
<item>30</item>
<item>34</item>
<item>35</item>
<item>36</item>
<item>37</item>
<item>38</item>
<item>39</item>
<item>40</item>
<item>41</item>
<item>42</item>
<item>43</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_63">
<Obj>
<type>3</type>
<id>51</id>
<name>.preheader56.preheader.critedge.0</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>6</count>
<item_version>0</item_version>
<item>45</item>
<item>46</item>
<item>47</item>
<item>48</item>
<item>49</item>
<item>50</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_64">
<Obj>
<type>3</type>
<id>54</id>
<name>._crit_edge</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>52</item>
<item>53</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_65">
<Obj>
<type>3</type>
<id>57</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>2</count>
<item_version>0</item_version>
<item>55</item>
<item>56</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_66">
<Obj>
<type>3</type>
<id>60</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>2</count>
<item_version>0</item_version>
<item>58</item>
<item>59</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_67">
<Obj>
<type>3</type>
<id>63</id>
<name>._crit_edge33</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>62</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_68">
<Obj>
<type>3</type>
<id>67</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>64</item>
<item>66</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_69">
<Obj>
<type>3</type>
<id>69</id>
<name>.preheader.exitStub</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>68</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>106</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_70">
<id>71</id>
<edge_type>1</edge_type>
<source_obj>70</source_obj>
<sink_obj>7</sink_obj>
</item>
<item class_id_reference="20" object_id="_71">
<id>72</id>
<edge_type>1</edge_type>
<source_obj>70</source_obj>
<sink_obj>8</sink_obj>
</item>
<item class_id_reference="20" object_id="_72">
<id>73</id>
<edge_type>2</edge_type>
<source_obj>17</source_obj>
<sink_obj>9</sink_obj>
</item>
<item class_id_reference="20" object_id="_73">
<id>75</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_74">
<id>76</id>
<edge_type>2</edge_type>
<source_obj>10</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_75">
<id>77</id>
<edge_type>1</edge_type>
<source_obj>64</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_76">
<id>78</id>
<edge_type>2</edge_type>
<source_obj>67</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_77">
<id>80</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_78">
<id>81</id>
<edge_type>2</edge_type>
<source_obj>10</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_79">
<id>82</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_80">
<id>83</id>
<edge_type>2</edge_type>
<source_obj>67</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_81">
<id>84</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_82">
<id>86</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_83">
<id>87</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_84">
<id>89</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_85">
<id>90</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>16</sink_obj>
</item>
<item class_id_reference="20" object_id="_86">
<id>91</id>
<edge_type>2</edge_type>
<source_obj>23</source_obj>
<sink_obj>16</sink_obj>
</item>
<item class_id_reference="20" object_id="_87">
<id>92</id>
<edge_type>2</edge_type>
<source_obj>69</source_obj>
<sink_obj>16</sink_obj>
</item>
<item class_id_reference="20" object_id="_88">
<id>93</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>64</sink_obj>
</item>
<item class_id_reference="20" object_id="_89">
<id>94</id>
<edge_type>1</edge_type>
<source_obj>70</source_obj>
<sink_obj>64</sink_obj>
</item>
<item class_id_reference="20" object_id="_90">
<id>95</id>
<edge_type>2</edge_type>
<source_obj>17</source_obj>
<sink_obj>66</sink_obj>
</item>
<item class_id_reference="20" object_id="_91">
<id>96</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>24</sink_obj>
</item>
<item class_id_reference="20" object_id="_92">
<id>97</id>
<edge_type>2</edge_type>
<source_obj>23</source_obj>
<sink_obj>24</sink_obj>
</item>
<item class_id_reference="20" object_id="_93">
<id>98</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>24</sink_obj>
</item>
<item class_id_reference="20" object_id="_94">
<id>99</id>
<edge_type>2</edge_type>
<source_obj>63</source_obj>
<sink_obj>24</sink_obj>
</item>
<item class_id_reference="20" object_id="_95">
<id>100</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>25</sink_obj>
</item>
<item class_id_reference="20" object_id="_96">
<id>101</id>
<edge_type>2</edge_type>
<source_obj>23</source_obj>
<sink_obj>25</sink_obj>
</item>
<item class_id_reference="20" object_id="_97">
<id>102</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>25</sink_obj>
</item>
<item class_id_reference="20" object_id="_98">
<id>103</id>
<edge_type>2</edge_type>
<source_obj>63</source_obj>
<sink_obj>25</sink_obj>
</item>
<item class_id_reference="20" object_id="_99">
<id>104</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>26</sink_obj>
</item>
<item class_id_reference="20" object_id="_100">
<id>106</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>26</sink_obj>
</item>
<item class_id_reference="20" object_id="_101">
<id>107</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>27</sink_obj>
</item>
<item class_id_reference="20" object_id="_102">
<id>108</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>27</sink_obj>
</item>
<item class_id_reference="20" object_id="_103">
<id>109</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>28</sink_obj>
</item>
<item class_id_reference="20" object_id="_104">
<id>110</id>
<edge_type>2</edge_type>
<source_obj>44</source_obj>
<sink_obj>28</sink_obj>
</item>
<item class_id_reference="20" object_id="_105">
<id>111</id>
<edge_type>2</edge_type>
<source_obj>67</source_obj>
<sink_obj>28</sink_obj>
</item>
<item class_id_reference="20" object_id="_106">
<id>114</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_107">
<id>116</id>
<edge_type>1</edge_type>
<source_obj>115</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_108">
<id>118</id>
<edge_type>1</edge_type>
<source_obj>117</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_109">
<id>119</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_110">
<id>121</id>
<edge_type>1</edge_type>
<source_obj>120</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_111">
<id>122</id>
<edge_type>2</edge_type>
<source_obj>29</source_obj>
<sink_obj>22</sink_obj>
</item>
<item class_id_reference="20" object_id="_112">
<id>123</id>
<edge_type>2</edge_type>
<source_obj>29</source_obj>
<sink_obj>62</sink_obj>
</item>
<item class_id_reference="20" object_id="_113">
<id>124</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>55</sink_obj>
</item>
<item class_id_reference="20" object_id="_114">
<id>125</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>55</sink_obj>
</item>
<item class_id_reference="20" object_id="_115">
<id>126</id>
<edge_type>2</edge_type>
<source_obj>63</source_obj>
<sink_obj>56</sink_obj>
</item>
<item class_id_reference="20" object_id="_116">
<id>127</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>52</sink_obj>
</item>
<item class_id_reference="20" object_id="_117">
<id>128</id>
<edge_type>1</edge_type>
<source_obj>52</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_118">
<id>129</id>
<edge_type>2</edge_type>
<source_obj>57</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_119">
<id>130</id>
<edge_type>2</edge_type>
<source_obj>60</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_120">
<id>131</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_121">
<id>134</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_122">
<id>135</id>
<edge_type>1</edge_type>
<source_obj>115</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_123">
<id>137</id>
<edge_type>1</edge_type>
<source_obj>136</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_124">
<id>138</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>35</sink_obj>
</item>
<item class_id_reference="20" object_id="_125">
<id>140</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>35</sink_obj>
</item>
<item class_id_reference="20" object_id="_126">
<id>141</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>36</sink_obj>
</item>
<item class_id_reference="20" object_id="_127">
<id>143</id>
<edge_type>1</edge_type>
<source_obj>142</source_obj>
<sink_obj>36</sink_obj>
</item>
<item class_id_reference="20" object_id="_128">
<id>144</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_129">
<id>145</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_130">
<id>146</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_131">
<id>149</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>38</sink_obj>
</item>
<item class_id_reference="20" object_id="_132">
<id>150</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>39</sink_obj>
</item>
<item class_id_reference="20" object_id="_133">
<id>151</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>39</sink_obj>
</item>
<item class_id_reference="20" object_id="_134">
<id>152</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>39</sink_obj>
</item>
<item class_id_reference="20" object_id="_135">
<id>153</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_136">
<id>154</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_137">
<id>155</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_138">
<id>156</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_139">
<id>157</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_140">
<id>158</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_141">
<id>159</id>
<edge_type>2</edge_type>
<source_obj>51</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_142">
<id>160</id>
<edge_type>2</edge_type>
<source_obj>54</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_143">
<id>161</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_144">
<id>162</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_145">
<id>163</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_146">
<id>164</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_147">
<id>165</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>47</sink_obj>
</item>
<item class_id_reference="20" object_id="_148">
<id>166</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>47</sink_obj>
</item>
<item class_id_reference="20" object_id="_149">
<id>167</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>47</sink_obj>
</item>
<item class_id_reference="20" object_id="_150">
<id>170</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>48</sink_obj>
</item>
<item class_id_reference="20" object_id="_151">
<id>171</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>48</sink_obj>
</item>
<item class_id_reference="20" object_id="_152">
<id>172</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>48</sink_obj>
</item>
<item class_id_reference="20" object_id="_153">
<id>175</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>49</sink_obj>
</item>
<item class_id_reference="20" object_id="_154">
<id>176</id>
<edge_type>1</edge_type>
<source_obj>48</source_obj>
<sink_obj>49</sink_obj>
</item>
<item class_id_reference="20" object_id="_155">
<id>177</id>
<edge_type>2</edge_type>
<source_obj>54</source_obj>
<sink_obj>50</sink_obj>
</item>
<item class_id_reference="20" object_id="_156">
<id>178</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>58</sink_obj>
</item>
<item class_id_reference="20" object_id="_157">
<id>179</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>58</sink_obj>
</item>
<item class_id_reference="20" object_id="_158">
<id>180</id>
<edge_type>2</edge_type>
<source_obj>63</source_obj>
<sink_obj>59</sink_obj>
</item>
<item class_id_reference="20" object_id="_159">
<id>281</id>
<edge_type>2</edge_type>
<source_obj>10</source_obj>
<sink_obj>17</sink_obj>
</item>
<item class_id_reference="20" object_id="_160">
<id>282</id>
<edge_type>2</edge_type>
<source_obj>17</source_obj>
<sink_obj>69</sink_obj>
</item>
<item class_id_reference="20" object_id="_161">
<id>283</id>
<edge_type>2</edge_type>
<source_obj>17</source_obj>
<sink_obj>23</sink_obj>
</item>
<item class_id_reference="20" object_id="_162">
<id>284</id>
<edge_type>2</edge_type>
<source_obj>23</source_obj>
<sink_obj>29</sink_obj>
</item>
<item class_id_reference="20" object_id="_163">
<id>285</id>
<edge_type>2</edge_type>
<source_obj>29</source_obj>
<sink_obj>67</sink_obj>
</item>
<item class_id_reference="20" object_id="_164">
<id>286</id>
<edge_type>2</edge_type>
<source_obj>29</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_165">
<id>287</id>
<edge_type>2</edge_type>
<source_obj>44</source_obj>
<sink_obj>54</sink_obj>
</item>
<item class_id_reference="20" object_id="_166">
<id>288</id>
<edge_type>2</edge_type>
<source_obj>44</source_obj>
<sink_obj>51</sink_obj>
</item>
<item class_id_reference="20" object_id="_167">
<id>289</id>
<edge_type>2</edge_type>
<source_obj>51</source_obj>
<sink_obj>54</sink_obj>
</item>
<item class_id_reference="20" object_id="_168">
<id>290</id>
<edge_type>2</edge_type>
<source_obj>54</source_obj>
<sink_obj>60</sink_obj>
</item>
<item class_id_reference="20" object_id="_169">
<id>291</id>
<edge_type>2</edge_type>
<source_obj>54</source_obj>
<sink_obj>57</sink_obj>
</item>
<item class_id_reference="20" object_id="_170">
<id>292</id>
<edge_type>2</edge_type>
<source_obj>57</source_obj>
<sink_obj>63</sink_obj>
</item>
<item class_id_reference="20" object_id="_171">
<id>293</id>
<edge_type>2</edge_type>
<source_obj>60</source_obj>
<sink_obj>63</sink_obj>
</item>
<item class_id_reference="20" object_id="_172">
<id>294</id>
<edge_type>2</edge_type>
<source_obj>63</source_obj>
<sink_obj>29</sink_obj>
</item>
<item class_id_reference="20" object_id="_173">
<id>295</id>
<edge_type>2</edge_type>
<source_obj>67</source_obj>
<sink_obj>17</sink_obj>
</item>
<item class_id_reference="20" object_id="_174">
<id>296</id>
<edge_type>4</edge_type>
<source_obj>42</source_obj>
<sink_obj>58</sink_obj>
</item>
<item class_id_reference="20" object_id="_175">
<id>297</id>
<edge_type>4</edge_type>
<source_obj>40</source_obj>
<sink_obj>55</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="_176">
<mId>1</mId>
<mTag>call_Loop_LB2D_buf_p</mTag>
<mType>0</mType>
<sub_regions>
<count>3</count>
<item_version>0</item_version>
<item>2</item>
<item>3</item>
<item>7</item>
</sub_regions>
<basic_blocks>
<count>0</count>
<item_version>0</item_version>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>2077921</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_177">
<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"/>
</item>
<item class_id_reference="22" object_id="_178">
<mId>3</mId>
<mTag>LB2D_buf</mTag>
<mType>1</mType>
<sub_regions>
<count>3</count>
<item_version>0</item_version>
<item>4</item>
<item>5</item>
<item>6</item>
</sub_regions>
<basic_blocks>
<count>0</count>
<item_version>0</item_version>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>1080</mMinTripCount>
<mMaxTripCount>1080</mMaxTripCount>
<mMinLatency>2077920</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_179">
<mId>4</mId>
<mTag>Region 1</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>17</item>
<item>23</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_180">
<mId>5</mId>
<mTag>LB2D_buf.1</mTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>7</count>
<item_version>0</item_version>
<item>29</item>
<item>44</item>
<item>51</item>
<item>54</item>
<item>57</item>
<item>60</item>
<item>63</item>
</basic_blocks>
<mII>1</mII>
<mDepth>3</mDepth>
<mMinTripCount>1920</mMinTripCount>
<mMaxTripCount>1920</mMaxTripCount>
<mMinLatency>1921</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_181">
<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>67</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="_182">
<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>69</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
</cdfg_regions>
<fsm class_id="24" tracking_level="1" version="0" object_id="_183">
<states class_id="25" tracking_level="0" version="0">
<count>6</count>
<item_version>0</item_version>
<item class_id="26" tracking_level="1" version="0" object_id="_184">
<id>1</id>
<operations class_id="27" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="28" tracking_level="1" version="0" object_id="_185">
<id>3</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_186">
<id>4</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_187">
<id>5</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_188">
<id>6</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_189">
<id>7</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_190">
<id>8</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_191">
<id>9</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_192">
<id>2</id>
<operations>
<count>12</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_193">
<id>11</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_194">
<id>12</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_195">
<id>13</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_196">
<id>14</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_197">
<id>15</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_198">
<id>16</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_199">
<id>18</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_200">
<id>19</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_201">
<id>20</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_202">
<id>21</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_203">
<id>22</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_204">
<id>68</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_205">
<id>3</id>
<operations>
<count>13</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_206">
<id>24</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_207">
<id>25</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_208">
<id>26</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_209">
<id>27</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_210">
<id>28</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_211">
<id>30</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_212">
<id>34</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_213">
<id>35</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_214">
<id>39</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_215">
<id>40</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_216">
<id>41</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_217">
<id>42</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_218">
<id>43</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_219">
<id>4</id>
<operations>
<count>8</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_220">
<id>36</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_221">
<id>37</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_222">
<id>38</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_223">
<id>40</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_224">
<id>42</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_225">
<id>45</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_226">
<id>52</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_227">
<id>53</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_228">
<id>5</id>
<operations>
<count>14</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_229">
<id>31</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_230">
<id>32</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_231">
<id>33</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_232">
<id>46</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_233">
<id>47</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_234">
<id>48</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_235">
<id>49</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_236">
<id>50</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_237">
<id>55</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_238">
<id>56</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_239">
<id>58</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_240">
<id>59</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_241">
<id>61</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_242">
<id>62</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_243">
<id>6</id>
<operations>
<count>3</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_244">
<id>64</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_245">
<id>65</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_246">
<id>66</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="29" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="1" version="0" object_id="_247">
<inState>1</inState>
<outState>2</outState>
<condition class_id="31" tracking_level="0" version="0">
<id>55</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="_248">
<inState>2</inState>
<outState>3</outState>
<condition>
<id>57</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>13</first>
<second>0</second>
</first>
<second>1</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_249">
<inState>6</inState>
<outState>2</outState>
<condition>
<id>68</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_250">
<inState>4</inState>
<outState>5</outState>
<condition>
<id>70</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_251">
<inState>5</inState>
<outState>3</outState>
<condition>
<id>71</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_252">
<inState>3</inState>
<outState>6</outState>
<condition>
<id>69</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>26</first>
<second>0</second>
</first>
<second>0</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_253">
<inState>3</inState>
<outState>4</outState>
<condition>
<id>72</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>26</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="_254">
<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>21</count>
<item_version>0</item_version>
<item class_id="38" tracking_level="0" version="0">
<first>ap_block_pp0_stage0_flag00001001 ( or ) </first>
<second class_id="39" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="40" tracking_level="0" version="0">
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>ap_block_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_state4_pp0_stage0_iter1 ( and ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>ap_block_state5_pp0_stage0_iter2 ( 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>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_state3_pp0_iter0_stage0 ( 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_state4_pp0_iter1_stage0 ( 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_state5_pp0_iter2_stage0 ( 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>col_1_fu_202_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>11</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>38</second>
</item>
<item>
<first>LUT</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>icmp1_fu_224_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>63</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>32</second>
</item>
</second>
</item>
<item>
<first>icmp_fu_190_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>10</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>5</second>
</item>
</second>
</item>
<item>
<first>p_Val2_8_0_phi_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>32</second>
</item>
<item>
<first>(2P2)</first>
<second>32</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>32</second>
</item>
</second>
</item>
<item>
<first>p_Val2_8_1_phi_fu_256_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>32</second>
</item>
<item>
<first>(2P2)</first>
<second>32</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>32</second>
</item>
</second>
</item>
<item>
<first>p_write_idx_1_1_fu_236_p3 ( select ) </first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>64</second>
</item>
<item>
<first>(2P2)</first>
<second>64</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>64</second>
</item>
</second>
</item>
<item>
<first>row_1_fu_174_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>11</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>38</second>
</item>
<item>
<first>LUT</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>start_write ( 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>tmp_6_fu_196_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>11</second>
</item>
<item>
<first>(1P1)</first>
<second>9</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>6</second>
</item>
</second>
</item>
<item>
<first>tmp_fu_168_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>11</second>
</item>
<item>
<first>(1P1)</first>
<second>11</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>6</second>
</item>
</second>
</item>
<item>
<first>write_idx_1_2_fu_271_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>64</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>197</second>
</item>
<item>
<first>LUT</first>
<second>69</second>
</item>
</second>
</item>
<item>
<first>write_idx_1_3_fu_230_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>64</second>
</item>
<item>
<first>(1P1)</first>
<second>3</second>
</item>
<item>
<first>FF</first>
<second>197</second>
</item>
<item>
<first>LUT</first>
<second>69</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>2</count>
<item_version>0</item_version>
<item>
<first>buffer_0_value_V_U</first>
<second>
<count>7</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>1920</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>61440</second>
</item>
<item>
<first>BRAM</first>
<second>4</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>buffer_1_value_V_U</first>
<second>
<count>7</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>1920</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>61440</second>
</item>
<item>
<first>BRAM</first>
<second>4</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
</second>
</item>
</dp_memory_resource>
<dp_multiplexer_resource>
<count>12</count>
<item_version>0</item_version>
<item>
<first>ap_NS_fsm</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>5</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>5</second>
</item>
<item>
<first>LUT</first>
<second>27</second>
</item>
</second>
</item>
<item>
<first>ap_done</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ap_enable_reg_pp0_iter1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ap_enable_reg_pp0_iter2</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>col_reg_157</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>11</second>
</item>
<item>
<first>(2Count)</first>
<second>22</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>in_stream_V_value_V_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>real_start</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>row_reg_135</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>11</second>
</item>
<item>
<first>(2Count)</first>
<second>22</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>slice_stream_V_value_V_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>write_idx_1_1_phi_fu_149_p4</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>64</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>write_idx_1_1_reg_146</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>64</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>write_idx_1_reg_123</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>64</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
</dp_multiplexer_resource>
<dp_register_resource>
<count>25</count>
<item_version>0</item_version>
<item>
<first>ap_CS_fsm</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>4</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>4</second>
</item>
</second>
</item>
<item>
<first>ap_done_reg</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>ap_enable_reg_pp0_iter0</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>ap_enable_reg_pp0_iter1</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>ap_enable_reg_pp0_iter2</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>ap_reg_pp0_iter1_buffer_0_value_V_ad_reg_304</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>11</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>ap_reg_pp0_iter1_buffer_1_value_V_ad_reg_310</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>11</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>buffer_0_value_V_ad_reg_304</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>11</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>buffer_0_value_V_lo_reg_328</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>buffer_1_value_V_ad_reg_310</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>11</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>buffer_1_value_V_lo_reg_334</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>col_reg_157</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>11</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>icmp1_reg_299</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>icmp_reg_286</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>real_start_status_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>row_1_reg_281</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>11</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>row_reg_135</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>11</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>start_control_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>start_once_reg</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>tmp_6_reg_290</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>tmp_8_reg_340</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>tmp_9_reg_346</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>tmp_value_V_2_reg_321</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>write_idx_1_1_reg_146</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>write_idx_1_reg_123</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>
</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>11</count>
<item_version>0</item_version>
<item class_id="42" tracking_level="0" version="0">
<first>col_1_fu_202_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
<item>
<first>icmp1_fu_224_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>icmp_fu_190_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>p_Val2_8_0_phi_fu_251_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>p_Val2_8_1_phi_fu_256_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>p_write_idx_1_1_fu_236_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>row_1_fu_174_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>tmp_6_fu_196_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>tmp_fu_168_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>write_idx_1_2_fu_271_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>write_idx_1_3_fu_230_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
</dp_expression_map>
<dp_fifo_map>
<count>0</count>
<item_version>0</item_version>
</dp_fifo_map>
<dp_memory_map>
<count>2</count>
<item_version>0</item_version>
<item>
<first>buffer_0_value_V_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>165</item>
</second>
</item>
<item>
<first>buffer_1_value_V_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>175</item>
</second>
</item>
</dp_memory_map>
</res>
<node_label_latency class_id="43" tracking_level="0" version="0">
<count>43</count>
<item_version>0</item_version>
<item class_id="44" tracking_level="0" version="0">
<first>7</first>
<second class_id="45" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>8</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>9</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>11</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>12</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>13</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>15</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>16</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>20</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>21</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>22</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>24</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>25</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>26</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>27</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>28</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>30</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>34</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>35</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>36</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>37</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>39</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>40</first>
<second>
<first>2</first>
<second>1</second>
</second>
</item>
<item>
<first>41</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>42</first>
<second>
<first>2</first>
<second>1</second>
</second>
</item>
<item>
<first>43</first>
<second>
<first>2</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>4</first>
<second>0</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>49</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>50</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>52</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>53</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>55</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>56</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>58</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>59</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>62</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>64</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>66</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>68</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="46" tracking_level="0" version="0">
<count>12</count>
<item_version>0</item_version>
<item class_id="47" tracking_level="0" version="0">
<first>10</first>
<second class_id="48" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>17</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>23</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>29</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>44</first>
<second>
<first>2</first>
<second>4</second>
</second>
</item>
<item>
<first>51</first>
<second>
<first>3</first>
<second>4</second>
</second>
</item>
<item>
<first>54</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>57</first>
<second>
<first>4</first>
<second>4</second>
</second>
</item>
<item>
<first>60</first>
<second>
<first>4</first>
<second>4</second>
</second>
</item>
<item>
<first>63</first>
<second>
<first>4</first>
<second>4</second>
</second>
</item>
<item>
<first>67</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>69</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="49" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="50" tracking_level="1" version="0" object_id="_255">
<region_name>LB2D_buf.1</region_name>
<basic_blocks>
<count>7</count>
<item_version>0</item_version>
<item>29</item>
<item>44</item>
<item>51</item>
<item>54</item>
<item>57</item>
<item>60</item>
<item>63</item>
</basic_blocks>
<nodes>
<count>0</count>
<item_version>0</item_version>
</nodes>
<anchor_node>-1</anchor_node>
<region_type>8</region_type>
<interval>1</interval>
<pipe_depth>3</pipe_depth>
</item>
</regions>
<dp_fu_nodes class_id="51" tracking_level="0" version="0">
<count>29</count>
<item_version>0</item_version>
<item class_id="52" tracking_level="0" version="0">
<first>74</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>7</item>
</second>
</item>
<item>
<first>78</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>82</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>88</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>95</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>101</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>40</item>
<item>40</item>
<item>55</item>
</second>
</item>
<item>
<first>106</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>112</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>42</item>
<item>42</item>
<item>58</item>
</second>
</item>
<item>
<first>127</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>139</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>149</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>161</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>168</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>174</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>180</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>190</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>196</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>202</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
<item>
<first>208</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>214</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>224</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>230</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>236</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>243</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>247</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>251</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>256</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>261</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>271</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="54" tracking_level="0" version="0">
<count>25</count>
<item_version>0</item_version>
<item class_id="55" tracking_level="0" version="0">
<first>buffer_0_value_V_ad_gep_fu_95</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>buffer_0_value_V_alloca_fu_74</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>7</item>
</second>
</item>
<item>
<first>buffer_1_value_V_ad_gep_fu_106</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>buffer_1_value_V_alloca_fu_78</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>col_1_fu_202</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
<item>
<first>col_cast_fu_208</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>col_phi_fu_161</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>icmp1_fu_224</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>icmp_fu_190</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>p_Result_s_fu_261</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>p_Val2_8_0_phi_fu_251</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>p_Val2_8_1_phi_fu_256</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>p_write_idx_1_1_fu_236</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>row_1_fu_174</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>row_phi_fu_139</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>tmp_5_fu_180</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>tmp_6_fu_196</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>tmp_7_fu_214</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>tmp_8_fu_243</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>tmp_9_fu_247</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>tmp_fu_168</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>write_idx_1_1_phi_fu_149</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>write_idx_1_2_fu_271</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>write_idx_1_3_fu_230</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>write_idx_1_phi_fu_127</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
</dp_fu_nodes_expression>
<dp_fu_nodes_module>
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_module>
<dp_fu_nodes_io>
<count>2</count>
<item_version>0</item_version>
<item>
<first>StgValue_53_write_fu_88</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>tmp_value_V_2_read_fu_82</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</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>4</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>buffer_0_value_V</first>
<second>0</second>
</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>40</item>
<item>40</item>
</second>
</item>
<item>
<first>
<first>buffer_0_value_V</first>
<second>1</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>
<first>buffer_1_value_V</first>
<second>0</second>
</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>42</item>
<item>42</item>
</second>
</item>
<item>
<first>
<first>buffer_1_value_V</first>
<second>1</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>19</count>
<item_version>0</item_version>
<item>
<first>123</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>135</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>146</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>157</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>277</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>281</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>286</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>290</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>294</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
<item>
<first>299</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>304</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>310</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>316</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>321</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>328</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>334</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>340</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>346</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>350</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>19</count>
<item_version>0</item_version>
<item>
<first>buffer_0_value_V_ad_reg_304</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>buffer_0_value_V_lo_reg_328</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>buffer_1_value_V_ad_reg_310</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>buffer_1_value_V_lo_reg_334</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>col_1_reg_294</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
<item>
<first>col_reg_157</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>icmp1_reg_299</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>icmp_reg_286</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>p_write_idx_1_1_reg_316</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>row_1_reg_281</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>row_reg_135</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>tmp_6_reg_290</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>tmp_8_reg_340</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>tmp_9_reg_346</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>tmp_reg_277</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>tmp_value_V_2_reg_321</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>write_idx_1_1_reg_146</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>write_idx_1_2_reg_350</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>write_idx_1_reg_123</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
</dp_regname_nodes>
<dp_reg_phi>
<count>4</count>
<item_version>0</item_version>
<item>
<first>123</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>135</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>146</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>157</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
</dp_reg_phi>
<dp_regname_phi>
<count>4</count>
<item_version>0</item_version>
<item>
<first>col_reg_157</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>row_reg_135</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>write_idx_1_1_reg_146</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>write_idx_1_reg_123</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
</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>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
</second>
</item>
<item>
<first>slice_stream_V_value_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</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>2</count>
<item_version>0</item_version>
<item>
<first>7</first>
<second>RAM</second>
</item>
<item>
<first>8</first>
<second>RAM</second>
</item>
</node2core>
</syndb>
</boost_serialization>
|
generic
type Character_Type is (<>); -- Character, Wide_Character, Wide_Wide_Character (or whatever)
type String_Type is array(Positive range <>) of Character_Type;
Carriage_Return: in Character_Type; -- CR in the corresponding type
Line_Feed: in Character_Type; -- LF in the corresponding type
type Coder_Base is abstract tagged private; -- Type to derive
package Encodings.Line_Endings.Generic_Add_CR is
type Coder is new Coder_Base with private;
procedure Convert(
This: in out Coder; -- Coder state
Source: in String_Type; -- String to be converted
Source_Last: out Natural; -- Last index of source string read (length if string is starting at 1)
Target: out String_Type; -- Converted string
Target_Last: out Natural -- Last Index of destination string written
);
private
type Coder_State is (
Initial,
Have_CR,
Need_LF
);
type Coder is new Coder_Base with record
State: Coder_State := Initial;
end record;
end Encodings.Line_Endings.Generic_Add_CR;
|
with Test_Solution; use Test_Solution;
with Ada.Text_IO; use Ada.Text_IO;
package problem_14 is
type Int64 is range -2**63 .. 2**63 - 1;
function Solution_1 return Integer;
procedure Test_Solution_1;
function Get_Solutions return Solution_Case;
end problem_14;
|
-- { dg-do compile }
package Atomic3 is
type Four_Bits is mod 2**4;
type Fourteen_Bits is mod 2**14;
type Twenty_Eight_Bits is mod 2**28;
type Rec1 (Mode : Boolean := True) is record
Reserved : Four_Bits;
case Mode is
when True =>
High_Part : Fourteen_Bits;
Low_Part : Fourteen_Bits;
when False =>
Data : Twenty_Eight_Bits;
end case;
end record;
for Rec1 use record
Reserved at 0 range 28 .. 31;
High_Part at 0 range 14 .. 27;
Low_Part at 0 range 0 .. 13;
Data at 0 range 0 .. 27;
end record;
for Rec1'Size use 32;
pragma Unchecked_Union (Rec1);
type Rec2 is record
A : Rec1;
pragma Atomic (A);
end record;
end Atomic3;
|
------------------------------------------------------------------------------
-- --
-- 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. --
-- --
------------------------------------------------------------------------------
with Oled; use Oled;
with Interfaces; use Interfaces;
with Lm3s8962; use Lm3s8962;
procedure Main is
procedure Draw_Ball (X : Col_Type;
Y : Line_Type;
Show : Boolean := True) is
begin
if Show then
Draw_Image (X, Y,
((16#0f#, 16#f0#),
(16#ff#, 16#ff#),
(16#ff#, 16#ff#),
(16#0f#, 16#f0#)));
else
Draw_Image (X, Y,
((16#00#, 16#00#),
(16#00#, 16#00#),
(16#00#, 16#00#),
(16#00#, 16#00#)));
end if;
end Draw_Ball;
Bat_Size : constant := 16;
procedure Draw_Bat (X : Col_Type;
Y : Line_Type;
Show : Boolean := True) is
V : Unsigned_8;
begin
if Show then
V := 16#f0#;
else
V := 16#00#;
end if;
Draw_Image (X, Y,
(1 .. Bat_Size => (1 => V)));
end Draw_Bat;
Ball_Size : constant := 4;
X : Col_Type := Col_Type'Last / 2;
Y : Line_Type := Line_Type'Last / 2;
Inc_X : Integer := 1;
Inc_Y : Integer := 1;
Bat_X : constant Col_Type := 10;
Bat_Y : Line_Type := Line_Type'Last / 2;
SW_UP : constant := 2#0001#;
SW_DOWN : constant := 2#0010#;
SW_LEFT : constant := 2#0100#;
SW_RIGHT : constant := 2#1000#;
Beep : Boolean;
begin
Oled_Init;
-- Power-on GPIO E
RCGC2 := RCGC2 or 2#1_0000#;
-- GPIO E as input
GPIOE_DIR := 0;
GPIOE_DEN := SW_UP or SW_DOWN or SW_LEFT or SW_RIGHT;
GPIOE_PUR := SW_UP or SW_DOWN or SW_LEFT or SW_RIGHT;
-- PWM
RCGC0 := RCGC0 or 16#10_0000#; -- Enable PWM module
RCGC2 := RCGC2 or 2#100_0000#; -- Enable GPIO G module
GPIOG_AFSEL := GPIOG_AFSEL or 2#10#; -- PWM1 output
GPIOG_DEN := GPIOG_DEN or 2#10#;
RCC := (RCC and not 16#001e_0000#) or 16#001e_0000#; -- PWMclk=SYSclk / 64
PWM0CTL := 0;
PWM0GENA := 0;
PWM0GENB := 2#00_00_10_00_11_00#; -- 1 on load, 0 when = A
PWM0LOAD := (50_000_000 / 64) / 440;
PWM0CMPA := PWM0LOAD / 2;
PWM0CTL := 1; -- Enable
PWMENABLE := 2#10#;
loop
Draw_Bat (Bat_X, Bat_Y);
Draw_Ball (X, Y);
for J in 0 .. 5 * 10000 loop
null;
end loop;
Draw_Ball (X, Y, False);
Draw_Bat (Bat_X, Bat_Y, False);
Beep := False;
if X + Inc_X + Ball_Size > Col_Type'Last then
Inc_X := -1;
Beep := True;
elsif Inc_X < 0 and then X + Inc_X = Bat_X then
if Y >= Bat_Y - Ball_Size / 2
and then Y <= Bat_Y + Bat_Size + Ball_Size / 2
then
Inc_X := 1;
Beep := True;
else
-- You loose
null;
end if;
elsif X + Inc_X < 0 then
Inc_X := 1;
Beep := True;
end if;
if Y + Inc_Y + Ball_Size > Line_Type'Last then
Inc_Y := -1;
Beep := True;
elsif Y + Inc_Y < 0 then
Inc_Y := 1;
Beep := True;
end if;
X := X + Inc_X;
Y := Y + Inc_Y;
if GPIOE_DATA (SW_UP) = 0 and then Bat_Y > 0 then
Bat_Y := Bat_Y - 1;
end if;
if GPIOE_DATA (SW_DOWN) = 0
and then Bat_Y + Bat_Size < Line_Type'Last
then
Bat_Y := Bat_Y + 1;
end if;
if Beep then
PWMENABLE := 2#10#;
else
PWMENABLE := 0;
end if;
end loop;
end Main;
|
with Command_Line; use Command_Line;
with SPARK.Text_IO; use SPARK.Text_IO;
with Error_Reporter;
with Scanners;
with Tokens;
procedure Lox with SPARK_Mode is
procedure Run (Source : String) with
Pre => Source'First >= 1 and then Source'Last < Integer'Last;
procedure Run_File (Path : String);
procedure Run_Prompt;
procedure Run (Source : String) is
Token_List : Tokens.Lists.List (100);
Position : Tokens.Lists.Cursor;
begin
Scanners.Scan_Tokens (Source, Token_List);
Position := Tokens.Lists.First (Token_List);
while Tokens.Lists.Has_Element (Token_List, Position) and then
Is_Writable (Standard_Output) and then Status (Standard_Output) = Success loop
Put_Line (Tokens.To_String (Tokens.Lists.Element (Token_List, Position)));
Tokens.Lists.Next (Token_List, Position);
end loop;
end Run;
procedure Run_File (Path : String) is
Source_File : File_Type;
Source : String (1 .. 10_240) := (others => ' ');
Source_Line : String (1 .. 1_024);
Last : Natural;
Position : Natural := 1;
Line_No : Natural := 0;
begin
if Is_Open (Source_File) then
Error_Reporter.Error (Line_No => 1,
Message => "Source file already open");
return;
end if;
if not Is_Open (Source_File) then
Error_Reporter.Error (Line_No => 1,
Message => "Could not open source file");
return;
end if;
Open (The_File => Source_File,
The_Mode => In_File,
The_Name => Path);
while not End_Of_File (Source_File) loop
Get_Line (File => Source_File,
Item => Source_Line,
Last => Last);
if Line_No < Integer'Last then
Line_No := Line_No + 1;
else
Error_Reporter.Error (Line_No => Line_No,
Message => "Too many lines of source code");
return;
end if;
if Position <= Source'Last - Last then
Source (Position .. Position + Last - 1) := Source_Line (1 .. Last);
Source (Position + Last) := Scanners.LF;
Position := Position + Last + 1;
else
Error_Reporter.Error (Line_No => Line_No,
Message => "Source code too large for buffer");
return;
end if;
end loop;
Run (Source (Source'First .. Position - 1));
if Error_Reporter.Had_Error then
Command_Line.Set_Exit_Status (65);
end if;
end Run_File;
procedure Run_Prompt is
Source_Line : String (1 .. 1024);
Last : Natural;
begin
loop
if Status (Standard_Output) /= Success then
Error_Reporter.Error (Line_No => 1,
Message => "Session ended");
return;
end if;
Put ("> ");
Get_Line (Item => Source_Line,
Last => Last);
Run (Source_Line (Source_Line'First .. Last));
Error_Reporter.Clear_Error;
end loop;
end Run_Prompt;
begin
if Argument_Count > 1 then
if Status (Standard_Output) = Success then
Put_Line ("Usage: lox [script]");
end if;
elsif Argument_Count = 1 then
Run_File (Argument (1));
else
Run_Prompt;
end if;
end Lox;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2012, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- This file is generated, don't edit it.
------------------------------------------------------------------------------
with AMF.Elements.Generic_Hash;
function AMF.Utp.Test_Components.Hash is
new AMF.Elements.Generic_Hash (Utp_Test_Component, Utp_Test_Component_Access);
|
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
-- 14 package Asis.Iterator
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
package Asis.Iterator is
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
-- Asis.Iterator encapsulates the generic procedure Traverse_Element which
-- allows an ASIS application to perform an iterative traversal of a
-- logical syntax tree. It requires the use of two generic procedures,
-- Pre_Operation, which identifies processing for the traversal, and
-- Post_Operation, which identifies processing after the traversal.
-- The State_Information allows processing state to be passed during the
-- iteration of Traverse_Element.
--
-- Package Asis.Iterator is established as a child package to highlight the
-- iteration capability and to facilitate the translation of ASIS to IDL.
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
-- 14.1 procedure Traverse_Element
-------------------------------------------------------------------------------
generic
type State_Information is limited private;
with procedure Pre_Operation
(Element : in Asis.Element;
Control : in out Traverse_Control;
State : in out State_Information) is <>;
with procedure Post_Operation
(Element : in Asis.Element;
Control : in out Traverse_Control;
State : in out State_Information) is <>;
procedure Traverse_Element
(Element : in Asis.Element;
Control : in out Traverse_Control;
State : in out State_Information);
-------------------------------------------------------------------------------
-- Element - Specifies the initial element in the traversal
-- Control - Specifies what next to do with the traversal
-- State_Information - Specifies other information for the traversal
--
-- Traverses the element and all its component elements, if any.
-- Component elements are all elements that can be obtained by a combination
-- of the ASIS structural queries appropriate for the given element.
--
-- If an element has one or more component elements, each is called a child
-- element. An element's parent element is its Enclosing_Element. Children
-- with the same parent are sibling elements. The type Traverse_Control uses
-- the terms children and siblings to control the traverse.
--
-- For each element, the formal procedure Pre_Operation is called when first
-- visiting the element. Each of that element's children are then visited
-- and finally the formal procedure Post_Operation is called for the element.
--
-- The order of Element traversal is in terms of the textual representation of
-- the Elements. Elements are traversed in left-to-right and top-to-bottom
-- order.
--
-- Traversal of Implicit Elements:
--
-- Implicit elements are not traversed by default. However, they may be
-- explicitly queried and then passed to the traversal instance. Implicit
-- elements include implicit predefined operator declarations, implicit
-- inherited subprogram declarations, implicit expanded generic specifications
-- and bodies, default expressions supplied to procedure, function, and entry
-- calls, etc.
--
-- Applications that wish to traverse these implicit Elements shall query for
-- them at the appropriate places in a traversal and then recursively call
-- their instantiation of the traversal generic. (Implicit elements provided
-- by ASIS do not cover all possible Ada implicit constructs. For example,
-- implicit initializations for variables of an access type are not provided
-- by ASIS.)
--
-- Traversal of Association lists:
--
-- Argument and association lists for procedure calls, function calls, entry
-- calls, generic instantiations, and aggregates are traversed in their
-- unnormalized forms, as if the Normalized parameter was False for those
-- queries. Implementations that always normalize certain associations may
-- return Is_Normalized associations. See the Implementation Permissions
-- for the queries Discriminant_Associations, Generic_Actual_Part,
-- Call_Statement_Parameters, Record_Component_Associations, or
-- Function_Call_Parameters.
--
-- Applications that wish to explicitly traverse normalized associations can
-- do so by querying the appropriate locations in order to obtain the
-- normalized list. The list can then be traversed by recursively calling
-- the traverse instance. Once that sub-traversal is finished, the Control
-- parameter can be set to Abandon_Children to skip processing of the
-- unnormalized argument list.
--
-- Traversal can be controlled with the Control parameter.
--
-- A call to an instance of Traverse_Element will not result in calls to
-- Pre_Operation or Post_Operation unless Control is set to Continue.
--
-- The subprograms matching Pre_Operation and Post_Operation can set
-- their Control parameter to affect the traverse:
--
-- - Continue
--
-- o Continues the normal depth-first traversal.
--
-- - Abandon_Children
--
-- o Prevents traversal of the current element's children.
--
-- o If set in a Pre_Operation, traversal picks up with the next sibling
-- element of the current element.
--
-- o If set in a Post_Operation, this is the same as Continue, all children
-- will already have been traversed. Traversal picks up with the
-- Post_Operation of the parent.
--
-- - Abandon_Siblings
--
-- o Prevents traversal of the current element's children and remaining
-- siblings.
--
-- o If set in a Pre_Operation, this abandons the associated Post_Operation
-- for the current element. Traversal picks up with the Post_Operation
-- of the parent.
--
-- o If set in a Post_Operation, traversal picks up with the Post_Operation
-- of the parent.
--
-- - Terminate_Immediately
--
-- o Does exactly that.
--
-- Raises ASIS_Inappropriate_Element if the element is a Nil_Element
--
-------------------------------------------------------------------------------
end Asis.Iterator;
------------------------------------------------------------------------------
-- Copyright (c) 2006-2013, Maxim Reznik
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the following conditions are met:
--
-- * Redistributions of source code must retain the above copyright notice,
-- this list of conditions and the following disclaimer.
-- * Redistributions in binary form must reproduce the above copyright
-- notice, this list of conditions and the following disclaimer in the
-- documentation and/or other materials provided with the distribution.
-- * Neither the name of the Maxim Reznik, IE nor the names of its
-- contributors may be used to endorse or promote products derived from
-- this software without specific prior written permission.
--
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-- POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
|
pragma License (Unrestricted);
package GNAT.Command_Line is
-- Parsing
type Opt_Parser is null record;
Command_Line_Parser : constant Opt_Parser := (null record);
procedure Initialize_Option_Scan (
Switch_Char : Character := '-';
Stop_At_First_Non_Switch : Boolean := False;
Section_Delimiters : String := "") is null;
function Full_Switch (Parser : Opt_Parser := Command_Line_Parser)
return String;
function Getopt (
Switches : String;
Concatenate : Boolean := True;
Parser : Opt_Parser := Command_Line_Parser)
return Character;
function Get_Argument (
Do_Expansion : Boolean := False;
Parser : Opt_Parser := Command_Line_Parser)
return String;
function Parameter (Parser : Opt_Parser := Command_Line_Parser)
return String;
Invalid_Switch : exception;
Invalid_Parameter : exception;
end GNAT.Command_Line;
|
-- Copyright 2016-2020 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
with System;
package Pck is
function Ident (I : Integer) return Integer;
procedure Do_Nothing (A : System.Address);
end Pck;
|
------------------------------------------------------------------------------
-- --
-- GNAT LIBRARY COMPONENTS --
-- --
-- A D A . S T R I N G S . B O U N D E D . H A S H --
-- --
-- S p e c --
-- --
-- This specification is derived 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.Containers;
generic
with package Bounded is
new Ada.Strings.Bounded.Generic_Bounded_Length (<>);
function Ada.Strings.Bounded.Hash (Key : Bounded.Bounded_String)
return Containers.Hash_Type;
pragma Preelaborate (Ada.Strings.Bounded.Hash);
|
-----------------------------------------------------------------------
-- util-listeners-tests -- Unit tests for listeners
-- Copyright (C) 2012, 2013 Stephane Carrez
-- Written by Stephane Carrez (Stephane.Carrez@gmail.com)
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Ada.Strings.Unbounded;
with Util.Measures;
with Util.Test_Caller;
with Util.Listeners.Observers;
with Util.Listeners.Lifecycles;
package body Util.Listeners.Tests is
use Util.Tests;
Test_Error : exception;
Count : Natural := 0;
package String_Observers is new Util.Listeners.Observers (String);
package Integer_Observers is new Util.Listeners.Observers (Integer);
type String_Listener is new String_Observers.Observer with record
Expect : Ada.Strings.Unbounded.Unbounded_String;
end record;
overriding
procedure Update (Listener : in String_Listener;
Item : in String);
type Integer_Listener is new Integer_Observers.Observer with record
Expect : Integer;
end record;
overriding
procedure Update (Listener : in Integer_Listener;
Item : in Integer);
package Caller is new Util.Test_Caller (Test, "Listeners");
procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite) is
begin
Caller.Add_Test (Suite, "Test Util.Listeners.Publish",
Test_Publish'Access);
Caller.Add_Test (Suite, "Test Util.Listeners.Publish_Perf",
Test_Publish_Perf'Access);
Caller.Add_Test (Suite, "Test Util.Listeners.Lifecycles",
Test_Lifecycles'Access);
end Add_Tests;
overriding
procedure Update (Listener : in String_Listener;
Item : in String) is
use type Ada.Strings.Unbounded.Unbounded_String;
begin
if Item /= Listener.Expect then
raise Test_Error;
end if;
Count := Count + 1;
end Update;
overriding
procedure Update (Listener : in Integer_Listener;
Item : in Integer) is
use type Ada.Strings.Unbounded.Unbounded_String;
begin
if Item /= Listener.Expect then
raise Test_Error;
end if;
Count := Count + 1;
end Update;
-- ------------------------------
-- Test the listeners and the publish operation.
-- ------------------------------
procedure Test_Publish (T : in out Test) is
Listeners : Util.Listeners.List;
L1 : aliased String_Listener;
L2 : aliased Integer_Listener;
L3 : aliased Integer_Listener;
begin
Listeners.Append (L1'Unchecked_Access);
Listeners.Append (L2'Unchecked_Access);
Listeners.Append (L3'Unchecked_Access);
L1.Expect := Ada.Strings.Unbounded.To_Unbounded_String ("Hello");
String_Observers.Notify (Listeners, "Hello");
Util.Tests.Assert_Equals (T, 1, Count, "Invalid number of calls");
L2.Expect := 3;
L3.Expect := 3;
Integer_Observers.Notify (Listeners, 3);
end Test_Publish;
-- ------------------------------
-- Performance test for the listeners.
-- ------------------------------
procedure Test_Publish_Perf (T : in out Test) is
procedure Test_Basic (Item : in Integer);
Listeners : Util.Listeners.List;
L1 : aliased Integer_Listener;
procedure Test_Basic (Item : in Integer) is
begin
Util.Tests.Assert_Equals (T, 3, Item);
end Test_Basic;
begin
Listeners.Append (L1'Unchecked_Access);
L1.Expect := 3;
declare
S : Util.Measures.Stamp;
begin
for I in 1 .. 1_000 loop
Integer_Observers.Notify (Listeners, 3);
end loop;
Util.Measures.Report (S, "Observers.Notify", 1000);
end;
declare
S : Util.Measures.Stamp;
begin
for I in 1 .. 1_000 loop
Test_Basic (3);
end loop;
Util.Measures.Report (S, "Call basic procedure", 1000);
end;
end Test_Publish_Perf;
-- ------------------------------
-- Test the lifecycles listener.
-- ------------------------------
procedure Test_Lifecycles (T : in out Test) is
package TL is new Util.Listeners.Lifecycles (Util.Measures.Stamp);
Create_Count : Natural := 0;
Update_Count : Natural := 0;
Delete_Count : Natural := 0;
type Listener is new TL.Listener with null record;
-- The `On_Create` procedure is called by `Notify_Create` to notify the creation
-- of the item.
overriding
procedure On_Create (Instance : in Listener;
Item : in Util.Measures.Stamp);
-- The `On_Update` procedure is called by `Notify_Update` to notify the update of the item.
overriding
procedure On_Update (Instance : in Listener;
Item : in Util.Measures.Stamp);
-- The `On_Delete` procedure is called by `Notify_Delete` to notify the deletion
-- of the item.
overriding
procedure On_Delete (Instance : in Listener;
Item : in Util.Measures.Stamp);
-- ------------------------------
-- The `On_Create` procedure is called by `Notify_Create` to notify the creation
-- of the item.
-- ------------------------------
overriding
procedure On_Create (Instance : in Listener;
Item : in Util.Measures.Stamp) is
pragma Unreferenced (Instance, Item);
begin
Create_Count := Create_Count + 1;
end On_Create;
-- ------------------------------
-- The `On_Update` procedure is called by `Notify_Update` to notify the update of the item.
-- ------------------------------
overriding
procedure On_Update (Instance : in Listener;
Item : in Util.Measures.Stamp) is
pragma Unreferenced (Instance, Item);
begin
Update_Count := Update_Count + 1;
end On_Update;
-- ------------------------------
-- The `On_Delete` procedure is called by `Notify_Delete` to notify the deletion
-- of the item.
-- ------------------------------
overriding
procedure On_Delete (Instance : in Listener;
Item : in Util.Measures.Stamp) is
pragma Unreferenced (Instance, Item);
begin
Delete_Count := Delete_Count + 1;
end On_Delete;
Listeners : Util.Listeners.List;
L1 : aliased Integer_Listener;
L2 : aliased Listener;
begin
Listeners.Append (L1'Unchecked_Access);
Listeners.Append (L2'Unchecked_Access);
declare
S : Util.Measures.Stamp;
begin
TL.Notify_Create (Listeners, S);
TL.Notify_Update (Listeners, S);
TL.Notify_Delete (Listeners, S);
Util.Measures.Report (S, "Notify Create, Update, Delete");
end;
Util.Tests.Assert_Equals (T, 1, Create_Count, "On_Create not called");
Util.Tests.Assert_Equals (T, 1, Update_Count, "On_Update not called");
Util.Tests.Assert_Equals (T, 1, Delete_Count, "On_Delete not called");
end Test_Lifecycles;
end Util.Listeners.Tests;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M --
-- --
-- S p e c --
-- (ARM Cortex M4 Version) --
-- --
-- Copyright (C) 1992-2020, Free Software Foundation, Inc. --
-- --
-- This specification is derived from the Ada Reference Manual for use with --
-- GNAT. The copyright notice above, and the license provisions that follow --
-- apply solely to the contents of the part following the private keyword. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
pragma Restrictions (No_Exception_Propagation);
-- Only local exception handling is supported in this profile
pragma Restrictions (No_Exception_Registration);
-- Disable exception name registration. This capability is not used because
-- it is only required by exception stream attributes which are not supported
-- in this run time.
pragma Restrictions (No_Implicit_Dynamic_Code);
-- Pointers to nested subprograms are not allowed in this run time, in order
-- to prevent the compiler from building "trampolines".
pragma Restrictions (No_Finalization);
-- Controlled types are not supported in this run time
pragma Profile (Ravenscar);
-- This is a Ravenscar run time
pragma Restrictions (No_Task_At_Interrupt_Priority);
-- On Cortex-M, it is not possible to have tasks at Interrupt_Priority, as
-- the context switch is triggered by the Pend_SV interrupt, which is at
-- lowest priority.
package System is
pragma Pure;
-- Note that we take advantage of the implementation permission to make
-- this unit Pure instead of Preelaborable; see RM 13.7.1(15). In Ada
-- 2005, this is Pure in any case (AI-362).
pragma No_Elaboration_Code_All;
-- Allow the use of that restriction in units that WITH this unit
type Name is (SYSTEM_NAME_GNAT);
System_Name : constant Name := SYSTEM_NAME_GNAT;
-- System-Dependent Named Numbers
Min_Int : constant := -2 ** (Standard'Max_Integer_Size - 1);
Max_Int : constant := 2 ** (Standard'Max_Integer_Size - 1) - 1;
Max_Binary_Modulus : constant := 2 ** Standard'Max_Integer_Size;
Max_Nonbinary_Modulus : constant := 2 ** Integer'Size - 1;
Max_Base_Digits : constant := Long_Long_Float'Digits;
Max_Digits : constant := Long_Long_Float'Digits;
Max_Mantissa : constant := Standard'Max_Integer_Size - 1;
Fine_Delta : constant := 2.0 ** (-Max_Mantissa);
Tick : constant := 0.000_001;
-- Storage-related Declarations
type Address is private;
pragma Preelaborable_Initialization (Address);
Null_Address : constant Address;
Storage_Unit : constant := 8;
Word_Size : constant := 32;
Memory_Size : constant := 2 ** 32;
-- Address comparison
function "<" (Left, Right : Address) return Boolean;
function "<=" (Left, Right : Address) return Boolean;
function ">" (Left, Right : Address) return Boolean;
function ">=" (Left, Right : Address) return Boolean;
function "=" (Left, Right : Address) return Boolean;
pragma Import (Intrinsic, "<");
pragma Import (Intrinsic, "<=");
pragma Import (Intrinsic, ">");
pragma Import (Intrinsic, ">=");
pragma Import (Intrinsic, "=");
-- Other System-Dependent Declarations
type Bit_Order is (High_Order_First, Low_Order_First);
Default_Bit_Order : constant Bit_Order :=
Bit_Order'Val (Standard'Default_Bit_Order);
pragma Warnings (Off, Default_Bit_Order); -- kill constant condition warning
-- Priority-related Declarations (RM D.1)
-- 241 .. 255 corresponds to priority level 15 .. 1
Max_Interrupt_Priority : constant Positive := 255;
Max_Priority : constant Positive := 240;
subtype Any_Priority is Integer range 0 .. 255;
subtype Priority is Any_Priority range 0 .. 240;
subtype Interrupt_Priority is Any_Priority range 241 .. 255;
Default_Priority : constant Priority := 120;
private
type Address is mod Memory_Size;
Null_Address : constant Address := 0;
--------------------------------------
-- System Implementation Parameters --
--------------------------------------
-- These parameters provide information about the target that is used by
-- the compiler. They are in the private part of System, where they can be
-- accessed using the special circuitry in the Targparm unit whose source
-- should be consulted for more detailed descriptions of the individual
-- switch values.
Atomic_Sync_Default : constant Boolean := False;
Backend_Divide_Checks : constant Boolean := False;
Backend_Overflow_Checks : constant Boolean := True;
Command_Line_Args : constant Boolean := False;
Configurable_Run_Time : constant Boolean := True;
Denorm : constant Boolean := True;
Duration_32_Bits : constant Boolean := False;
Exit_Status_Supported : constant Boolean := False;
Fractional_Fixed_Ops : constant Boolean := False;
Frontend_Layout : constant Boolean := False;
Machine_Overflows : constant Boolean := False;
Machine_Rounds : constant Boolean := True;
Preallocated_Stacks : constant Boolean := True;
Signed_Zeros : constant Boolean := True;
Stack_Check_Default : constant Boolean := False;
Stack_Check_Probes : constant Boolean := False;
Stack_Check_Limits : constant Boolean := False;
Support_Aggregates : constant Boolean := True;
Support_Composite_Assign : constant Boolean := True;
Support_Composite_Compare : constant Boolean := True;
Support_Long_Shifts : constant Boolean := True;
Always_Compatible_Rep : constant Boolean := True;
Suppress_Standard_Library : constant Boolean := True;
Use_Ada_Main_Program_Name : constant Boolean := False;
Frontend_Exceptions : constant Boolean := False;
ZCX_By_Default : constant Boolean := True;
end System;
|
-- This file is covered by the Internet Software Consortium (ISC) License
-- Reference: ../License.txt
with Utilities;
with Ada.Characters.Latin_1;
with Ada.Directories;
with Parameters;
with Unix;
package body Port_Specification.Transform is
package UTL renames Utilities;
package LAT renames Ada.Characters.Latin_1;
package DIR renames Ada.Directories;
--------------------------------------------------------------------------------------------
-- apply_directives
--------------------------------------------------------------------------------------------
procedure apply_directives
(specs : in out Portspecs;
variant : String;
arch_standard : supported_arch;
osmajor : String)
is
procedure copy_option_over (position : option_crate.Cursor);
procedure copy_option_over (position : option_crate.Cursor)
is
procedure augment (field : spec_option; directive : string_crate.Vector);
procedure grow_plist_sub (name : String; currently_ON : Boolean);
procedure handle_broken;
rec : Option_Helper renames option_crate.Element (position);
procedure augment (field : spec_option; directive : string_crate.Vector)
is
procedure transfer (position : string_crate.Cursor);
procedure transfer (position : string_crate.Cursor)
is
item : HT.Text renames string_crate.Element (position);
itemstr : String := HT.USS (item);
special : HT.Text;
begin
if rec.currently_set_ON then
case field is
when buildrun_depends_on => specs.buildrun_deps.Append (item);
when build_depends_on => specs.build_deps.Append (item);
when build_target_on => specs.build_target.Append (item);
when cflags_on => specs.cflags.Append (item);
when cmake_args_on => specs.cmake_args.Append (item);
when configure_args_on => specs.config_args.Append (item);
when configure_env_on => specs.config_env.Append (item);
when cppflags_on => specs.cppflags.Append (item);
when cxxflags_on => specs.cxxflags.Append (item);
when df_index_on => specs.df_index.Append (item);
when extract_only_on => specs.extract_only.Append (item);
when extra_patches_on => specs.extra_patches.Append (item);
when gnome_comp_on => specs.gnome_comps.Append (item);
when info_on => specs.info.Append (item);
when install_target_on => specs.install_tgt.Append (item);
when keywords_on => specs.keywords.Append (item);
when ldflags_on => specs.ldflags.Append (item);
when make_args_on => specs.make_args.Append (item);
when make_env_on => specs.make_env.Append (item);
when patchfiles_on => specs.patchfiles.Append (item);
when plist_sub_on => specs.plist_sub.Append (item);
when php_ext_on => specs.php_extensions.Append (item);
when qmake_args_on => specs.qmake_args.Append (item);
when run_depends_on => specs.run_deps.Append (item);
when sub_files_on => specs.sub_files.Append (item);
when sub_list_on => specs.sub_list.Append (item);
when test_target_on => specs.test_tgt.Append (item);
when makefile_on => specs.mk_verbatim.Append (item);
when only_for_opsys_on => specs.inc_opsys.Append (item);
when xorg_comp_on => specs.xorg_comps.Append (item);
when uses_on =>
declare
stripped : String := HT.part_1 (itemstr, ":");
text_stripped : HT.Text := HT.SUS (stripped);
begin
specs.uses.Append (item);
if not specs.uses_base.Contains (text_stripped) then
specs.uses_base.Append (text_stripped);
end if;
end;
when cmake_bool_f_both =>
special := HT.SUS ("-D" & itemstr & ":BOOL=false");
specs.cmake_args.Append (special);
when cmake_bool_t_both =>
special := HT.SUS ("-D" & itemstr & ":BOOL-true");
specs.cmake_args.Append (special);
when configure_enable_both =>
special := HT.SUS ("--enable-" & itemstr);
specs.config_args.Append (special);
when configure_with_both =>
special := HT.SUS ("--with-" & itemstr);
specs.config_args.Append (special);
when others =>
null;
end case;
else
case field is
when buildrun_depends_off => specs.buildrun_deps.Append (item);
when build_depends_off => specs.build_deps.Append (item);
when build_target_off => specs.build_target.Append (item);
when run_depends_off => specs.run_deps.Append (item);
when cmake_args_off => specs.cmake_args.Append (item);
when cflags_off => specs.cflags.Append (item);
when cppflags_off => specs.cppflags.Append (item);
when cxxflags_off => specs.cxxflags.Append (item);
when ldflags_off => specs.ldflags.Append (item);
when configure_args_off => specs.config_args.Append (item);
when configure_env_off => specs.config_env.Append (item);
when df_index_off => specs.df_index.Append (item);
when extract_only_off => specs.extract_only.Append (item);
when extra_patches_off => specs.extra_patches.Append (item);
when gnome_comp_off => specs.gnome_comps.Append (item);
when info_off => specs.info.Append (item);
when install_target_off => specs.install_tgt.Append (item);
when keywords_off => specs.keywords.Append (item);
when makefile_off => specs.mk_verbatim.Append (item);
when make_args_off => specs.make_args.Append (item);
when make_env_off => specs.make_env.Append (item);
when patchfiles_off => specs.patchfiles.Append (item);
when plist_sub_off => specs.plist_sub.Append (item);
when php_ext_off => specs.php_extensions.Append (item);
when qmake_args_off => specs.qmake_args.Append (item);
when sub_files_off => specs.sub_files.Append (item);
when sub_list_off => specs.sub_list.Append (item);
when test_target_off => specs.test_tgt.Append (item);
when xorg_comp_off => specs.xorg_comps.Append (item);
when cmake_bool_f_both =>
special := HT.SUS ("-D" & itemstr & ":BOOL-true");
specs.cmake_args.Append (special);
when cmake_bool_t_both =>
special := HT.SUS ("-D" & itemstr & ":BOOL=false");
specs.cmake_args.Append (special);
when configure_enable_both =>
special := HT.SUS ("--disable-" & itemstr);
specs.config_args.Append (special);
when configure_with_both =>
special := HT.SUS ("--without-" & itemstr);
specs.config_args.Append (special);
when uses_off =>
declare
stripped : String := HT.part_1 (itemstr, ":");
text_stripped : HT.Text := HT.SUS (stripped);
begin
specs.uses.Append (item);
if not specs.uses_base.Contains (text_stripped) then
specs.uses_base.Append (text_stripped);
end if;
end;
when others =>
null;
end case;
end if;
end transfer;
begin
directive.Iterate (Process => transfer'Access);
end augment;
procedure grow_plist_sub (name : String; currently_ON : Boolean)
is
comment : constant String := LAT.Quotation & "@comment " & LAT.Quotation;
WON : constant String := "-ON=";
WOFF : constant String := "-OFF=";
begin
if currently_ON then
specs.plist_sub.Append (HT.SUS (name & WON));
specs.plist_sub.Append (HT.SUS (name & WOFF & comment));
else
specs.plist_sub.Append (HT.SUS (name & WOFF));
specs.plist_sub.Append (HT.SUS (name & WON & comment));
end if;
end grow_plist_sub;
procedure handle_broken
is
procedure grow (Key : HT.Text; Element : in out group_list);
index : HT.Text := HT.SUS (broken_all);
procedure grow (Key : HT.Text; Element : in out group_list) is
begin
Element.list.Append (rec.BROKEN_ON);
end grow;
begin
if not HT.IsBlank (rec.BROKEN_ON) then
if not specs.broken.Contains (index) then
specs.establish_group (sp_broken, broken_all);
end if;
specs.broken.Update_Element (Position => specs.broken.Find (index),
Process => grow'Access);
end if;
end handle_broken;
begin
if HT.equivalent (rec.option_name, options_none) then
return;
end if;
if rec.currently_set_ON then
handle_broken;
augment (buildrun_depends_on, rec.BUILDRUN_DEPENDS_ON);
augment (build_depends_on, rec.BUILD_DEPENDS_ON);
augment (build_target_on, rec.BUILD_TARGET_ON);
augment (cflags_off, rec.CFLAGS_OFF);
augment (cflags_on, rec.CFLAGS_ON);
augment (cmake_args_on, rec.CMAKE_ARGS_ON);
augment (configure_args_on, rec.CONFIGURE_ARGS_ON);
augment (configure_env_on, rec.CONFIGURE_ENV_ON);
augment (cppflags_on, rec.CPPFLAGS_ON);
augment (cxxflags_on, rec.CXXFLAGS_ON);
augment (df_index_on, rec.DF_INDEX_ON);
augment (extract_only_on, rec.EXTRACT_ONLY_ON);
augment (extra_patches_on, rec.EXTRA_PATCHES_ON);
augment (gnome_comp_on, rec.GNOME_COMPONENTS_ON);
augment (info_on, rec.INFO_ON);
augment (install_target_on, rec.INSTALL_TARGET_ON);
augment (keywords_on, rec.KEYWORDS_ON);
augment (ldflags_on, rec.LDFLAGS_ON);
augment (makefile_on, rec.MAKEFILE_ON);
augment (make_args_on, rec.MAKE_ARGS_ON);
augment (make_env_on, rec.MAKE_ENV_ON);
augment (only_for_opsys_on, rec.ONLY_FOR_OPSYS_ON);
augment (patchfiles_on, rec.PATCHFILES_ON);
augment (plist_sub_on, rec.PLIST_SUB_ON);
augment (php_ext_on, rec.PHP_EXTENSIONS_ON);
augment (qmake_args_on, rec.QMAKE_ARGS_ON);
augment (run_depends_on, rec.RUN_DEPENDS_ON);
augment (sub_files_on, rec.SUB_FILES_ON);
augment (sub_list_on, rec.SUB_LIST_ON);
augment (test_target_on, rec.TEST_TARGET_ON);
augment (uses_on, rec.USES_ON);
augment (xorg_comp_on, rec.XORG_COMPONENTS_ON);
else
augment (buildrun_depends_off, rec.BUILDRUN_DEPENDS_OFF);
augment (build_depends_off, rec.BUILD_DEPENDS_OFF);
augment (build_target_off, rec.BUILD_TARGET_OFF);
augment (cflags_off, rec.CFLAGS_OFF);
augment (cppflags_off, rec.CPPFLAGS_OFF);
augment (cxxflags_off, rec.CXXFLAGS_OFF);
augment (ldflags_off, rec.LDFLAGS_OFF);
augment (cmake_args_off, rec.CMAKE_ARGS_OFF);
augment (configure_args_off, rec.CONFIGURE_ARGS_OFF);
augment (configure_env_off, rec.CONFIGURE_ENV_OFF);
augment (df_index_off, rec.DF_INDEX_OFF);
augment (extract_only_off, rec.EXTRACT_ONLY_OFF);
augment (extra_patches_off, rec.EXTRA_PATCHES_OFF);
augment (gnome_comp_off, rec.GNOME_COMPONENTS_OFF);
augment (info_off, rec.INFO_OFF);
augment (install_target_off, rec.INSTALL_TARGET_OFF);
augment (keywords_off, rec.KEYWORDS_OFF);
augment (makefile_off, rec.MAKEFILE_OFF);
augment (make_args_off, rec.MAKE_ARGS_OFF);
augment (make_env_off, rec.MAKE_ENV_OFF);
augment (patchfiles_off, rec.PATCHFILES_OFF);
augment (plist_sub_off, rec.PLIST_SUB_OFF);
augment (php_ext_off, rec.PHP_EXTENSIONS_OFF);
augment (qmake_args_off, rec.QMAKE_ARGS_OFF);
augment (run_depends_off, rec.RUN_DEPENDS_OFF);
augment (sub_files_off, rec.SUB_FILES_OFF);
augment (sub_list_off, rec.SUB_LIST_OFF);
augment (test_target_off, rec.TEST_TARGET_OFF);
augment (uses_off, rec.USES_OFF);
augment (xorg_comp_off, rec.XORG_COMPONENTS_OFF);
end if;
augment (cmake_bool_f_both, rec.CMAKE_BOOL_F_BOTH);
augment (cmake_bool_t_both, rec.CMAKE_BOOL_T_BOTH);
augment (configure_enable_both, rec.CONFIGURE_ENABLE_BOTH);
augment (configure_with_both, rec.CONFIGURE_WITH_BOTH);
grow_plist_sub (HT.USS (rec.option_name), rec.currently_set_ON);
end copy_option_over;
skip_compiler_packages : constant Boolean := Unix.env_variable_defined ("SKIPCCRUN");
begin
specs.ops_helpers.Iterate (Process => copy_option_over'Access);
apply_extraction_deps (specs);
apply_opsys_dependencies (specs);
apply_cpe_module (specs, arch_standard, osmajor);
apply_gmake_module (specs);
apply_scons_module (specs);
apply_makeinfo_module (specs);
apply_readline_module (specs);
apply_libiconv_module (specs);
apply_libtool_module (specs);
apply_pkgconfig_module (specs);
apply_gprbuild_module (specs);
apply_ncurses_module (specs);
apply_info_presence (specs);
apply_gettext_runtime_module (specs);
apply_gettext_tools_module (specs);
apply_gnome_icons_module (specs);
apply_mime_info_module (specs);
apply_autoconf_module (specs);
apply_execinfo_module (specs);
apply_display_module (specs);
apply_sqlite_module (specs);
apply_cmake_module (specs);
apply_imake_module (specs);
apply_perl_module (specs);
apply_bdb_module (specs);
apply_ssl_module (specs);
apply_clang_module (specs);
apply_bison_module (specs);
apply_mysql_module (specs);
apply_pgsql_module (specs);
apply_meson_module (specs);
apply_ninja_module (specs);
apply_fonts_module (specs);
apply_cran_module (specs);
apply_ruby_module (specs);
apply_zlib_module (specs);
apply_zstd_module (specs);
apply_mesa_module (specs);
apply_jpeg_module (specs);
apply_tiff_module (specs);
apply_pcre_module (specs);
apply_lua_module (specs);
apply_tcl_module (specs);
apply_php_module (specs);
apply_png_module (specs);
apply_gif_module (specs);
apply_gem_module (specs);
apply_lz4_module (specs);
apply_lzo_module (specs);
apply_bz2_module (specs);
apply_expat_module (specs);
apply_cargo_module (specs);
apply_gtkdoc_module (specs);
apply_schemas_module (specs);
apply_firebird_module (specs);
apply_desktop_utils_module (specs);
apply_gnome_components_dependencies (specs);
apply_sdl_components_dependencies (specs);
apply_xorg_components_dependencies (specs);
apply_php_extension_dependencies (specs);
apply_python_module (specs);
if not skip_compiler_packages then
apply_gcc_run_module (specs, variant, "ada", "ada_run");
apply_gcc_run_module (specs, variant, "c++", "cxx_run");
apply_gcc_run_module (specs, variant, "fortran", "fortran_run");
apply_gcc_run_module (specs, variant, "cclibs", "libs");
apply_gcc_run_module (specs, variant, "compiler", "complete");
if platform_type = sunos or else platform_type = macos
then
-- Solaris 10 doesn't use dl_iterate_phdr, so many packages have executables that
-- requires libgcc_s.so. Rather than specify potentially hundreds of C_USES
-- keywords, just make gcc8:libs:standard a run depends of every package (including
-- gcc6, gcc7, gcc8 and later).
add_exrun_cclibs (specs, variant);
end if;
end if;
apply_curly_bracket_conversions (specs);
apply_default_version_transformations (specs);
convert_exrun_versions (specs);
end apply_directives;
--------------------------------------------------------------------------------------------
-- set_option_defaults
--------------------------------------------------------------------------------------------
procedure set_option_defaults
(specs : in out Portspecs;
variant : String;
opsys : supported_opsys;
arch_standard : supported_arch;
osrelease : String)
is
procedure vopt_set (position : string_crate.Cursor);
procedure varstd_set (position : string_crate.Cursor);
procedure opsys_set (position : string_crate.Cursor);
procedure set_on (Key : HT.Text; Element : in out Option_Helper);
variant_text : HT.Text := HT.SUS (variant);
all_text : HT.Text := HT.SUS (options_all);
arch_text : HT.Text := HT.SUS (UTL.cpu_arch (arch_standard));
opsys_text : HT.Text := HT.SUS (UTL.lower_opsys (opsys));
procedure set_on (Key : HT.Text; Element : in out Option_Helper) is
begin
Element.set_ON_by_default := True;
end set_on;
procedure vopt_set (position : string_crate.Cursor)
is
-- ignore =OFF versions (defaults already to False, only consider =ON
item : String := HT.USS (string_crate.Element (position));
begin
if HT.trails (item, "=ON") then
declare
option_name : String := HT.partial_search (item, 0, "=");
option_text : HT.Text := HT.SUS (option_name);
begin
if specs.ops_helpers.Contains (option_text) then
specs.ops_helpers.Update_Element
(Position => specs.ops_helpers.Find (option_text),
Process => set_on'Access);
end if;
end;
end if;
end vopt_set;
procedure varstd_set (position : string_crate.Cursor)
is
option_name : String := HT.USS (string_crate.Element (position));
option_text : HT.Text := HT.SUS (option_name);
begin
if specs.ops_helpers.Contains (option_text) then
specs.ops_helpers.Update_Element
(Position => specs.ops_helpers.Find (option_text),
Process => set_on'Access);
end if;
end varstd_set;
procedure opsys_set (position : string_crate.Cursor)
is
-- Assume option name is valid
option_name : String := HT.USS (string_crate.Element (position));
option_text : HT.Text;
num_slash : Natural := HT.count_char (option_name, LAT.Solidus);
begin
if num_slash > 0 then
if num_slash = 1 then
declare
opt_name : HT.Text := HT.SUS (HT.part_1 (option_name, "/"));
spec_version : String := HT.part_2 (option_name, "/");
begin
if GTE (gen_release => osrelease, spec_release => spec_version) then
option_text := opt_name;
end if;
end;
else
declare
opt_name : HT.Text := HT.SUS (HT.part_1 (option_name, "/"));
temp_P2 : String := HT.part_2 (option_name, "/");
spec_version : String := HT.part_1 (temp_P2);
arch_str : String := HT.part_2 (temp_P2);
meets_ver : Boolean := spec_version = "" or else
GTE (osrelease, spec_version);
meets_arch : Boolean := HT.contains (arch_str, UTL.cpu_arch (arch_standard));
begin
if meets_ver and then meets_arch then
option_text := opt_name;
end if;
end;
end if;
else
option_text := HT.SUS (option_name);
end if;
if specs.ops_helpers.Contains (option_text) then
specs.ops_helpers.Update_Element
(Position => specs.ops_helpers.Find (option_text),
Process => set_on'Access);
end if;
end opsys_set;
begin
if variant = variant_standard then
if specs.options_on.Contains (all_text) then
specs.options_on.Element (all_text).list.Iterate (Process => varstd_set'Access);
end if;
if specs.options_on.Contains (arch_text) then
specs.options_on.Element (arch_text).list.Iterate (Process => varstd_set'Access);
end if;
if not specs.skip_opsys_dep then
if specs.options_on.Contains (opsys_text) then
specs.options_on.Element (opsys_text).list.Iterate (Process => opsys_set'Access);
end if;
end if;
else
if not specs.variantopts.Contains (variant_text) then
-- Variant does not exist, silently exit
return;
end if;
specs.variantopts.Element (variant_text).list.Iterate (Process => vopt_set'Access);
end if;
end set_option_defaults;
--------------------------------------------------------------------------------------------
-- set_option_to_default_values
--------------------------------------------------------------------------------------------
procedure set_option_to_default_values (specs : in out Portspecs)
is
procedure copy_setting (position : option_crate.Cursor);
procedure copy_setting (position : option_crate.Cursor)
is
procedure set_option (Key : HT.Text; Element : in out Option_Helper);
procedure set_option (Key : HT.Text; Element : in out Option_Helper) is
begin
Element.currently_set_ON := Element.set_ON_by_default;
end set_option;
begin
specs.ops_helpers.Update_Element (Position => position, Process => set_option'Access);
end copy_setting;
begin
specs.ops_helpers.Iterate (Process => copy_setting'Access);
end set_option_to_default_values;
--------------------------------------------------------------------------------------------
-- define_option_setting
--------------------------------------------------------------------------------------------
procedure define_option_setting (specs : in out Portspecs; option : String; value : Boolean)
is
procedure set_option (Key : HT.Text; Element : in out Option_Helper);
optname_text : HT.Text := HT.SUS (option);
procedure set_option (Key : HT.Text; Element : in out Option_Helper) is
begin
Element.currently_set_ON := value;
end set_option;
begin
if specs.ops_helpers.Contains (optname_text) then
specs.ops_helpers.Update_Element (Position => specs.ops_helpers.Find (optname_text),
Process => set_option'Access);
end if;
end define_option_setting;
--------------------------------------------------------------------------------------------
-- release_format
--------------------------------------------------------------------------------------------
function release_format (candidate : String) return Boolean
is
fullstop : Boolean := False;
begin
for X in candidate'Range loop
case candidate (X) is
when '.' =>
if fullstop then
return False;
end if;
if X = candidate'First or else
X = candidate'Last
then
return False;
end if;
fullstop := True;
when '0' .. '9' => null;
when others => return False;
end case;
end loop;
return True;
end release_format;
--------------------------------------------------------------------------------------------
-- centurian_release
--------------------------------------------------------------------------------------------
function centurian_release (release : String) return Natural
is
-- Requires release is validated by release_format()
X : String := HT.part_1 (release, ".");
Y : String := HT.part_2 (release, ".");
RX : Natural := Integer'Value (X) * 100;
RY : Natural := 0;
begin
if Y = "" then
RY := Integer'Value (Y);
end if;
return (RX + RY);
end centurian_release;
--------------------------------------------------------------------------------------------
-- LTE
--------------------------------------------------------------------------------------------
function LTE (gen_release, spec_release : String) return Boolean
is
GR : Natural := 999900;
SR : Natural := 0;
begin
if release_format (gen_release) then
GR := centurian_release (gen_release);
end if;
if release_format (spec_release) then
SR := centurian_release (spec_release);
end if;
return (GR <= SR);
end LTE;
--------------------------------------------------------------------------------------------
-- GTE
--------------------------------------------------------------------------------------------
function GTE (gen_release, spec_release : String) return Boolean
is
GR : Natural := 0;
SR : Natural := 999900;
begin
if release_format (gen_release) then
GR := centurian_release (spec_release);
end if;
if release_format (spec_release) then
SR := centurian_release (spec_release);
end if;
return (GR >= SR);
end GTE;
--------------------------------------------------------------------------------------------
-- set_outstanding_ignore
--------------------------------------------------------------------------------------------
procedure set_outstanding_ignore
(specs : in out Portspecs;
variant : String;
opsys : supported_opsys;
arch_standard : supported_arch;
osrelease : String;
osmajor : String)
is
-- Copy relevant arch broken to "all" index
-- Copy relevant opsys broken to "all" index (may be funtion of release or arch)
procedure check (position : list_crate.Cursor);
procedure check_ignore;
cpu_ia64 : constant String := UTL.cpu_arch (x86_64) & "_";
cpu_ia32 : constant String := UTL.cpu_arch (i386) & "_";
cpu_armv8 : constant String := UTL.cpu_arch (aarch64) & "_";
separator : constant String := ": ";
index : HT.Text := HT.SUS (broken_all);
procedure check (position : list_crate.Cursor)
is
procedure check_list (position : string_crate.Cursor);
broken_Key : String := HT.USS (list_crate.Element (position).group);
procedure check_list (position : string_crate.Cursor)
is
procedure grow (Key : HT.Text; Element : in out group_list);
reason : String := HT.USS (string_crate.Element (position));
used : Boolean := False;
split : Boolean := True;
procedure grow (Key : HT.Text; Element : in out group_list) is
begin
if split then
Element.list.Append (HT.SUS (HT.part_2 (reason, ": ")));
else
Element.list.Append (string_crate.Element (position));
end if;
end grow;
begin
if broken_Key = UTL.cpu_arch (arch_standard) then
used := True;
split := False;
elsif broken_Key = UTL.lower_opsys (opsys) then
if HT.leads (reason, "REL_") then
used := (HT.partial_search (reason, 4, separator) = osmajor);
elsif HT.leads (reason, "GTE_") then
used := GTE (gen_release => osrelease,
spec_release => HT.partial_search (reason, 4, separator));
elsif HT.leads (reason, "LTE_") then
used := LTE (gen_release => osmajor,
spec_release => HT.partial_search (reason, 4, separator));
elsif HT.leads (reason, cpu_ia64) then
used := (HT.partial_search (reason, cpu_ia64'Length, separator) = osmajor);
elsif HT.leads (reason, cpu_ia32) then
used := (HT.partial_search (reason, cpu_ia32'Length, separator) = osmajor);
elsif HT.leads (reason, cpu_armv8) then
used := (HT.partial_search (reason, cpu_armv8'Length, separator) = osmajor);
else
used := True;
split := False;
end if;
end if;
if used then
if not specs.broken.Contains (index) then
specs.establish_group (sp_broken, broken_all);
end if;
specs.broken.Update_Element (Position => specs.broken.Find (index),
Process => grow'Access);
end if;
end check_list;
begin
if not specs.skip_opsys_dep then
list_crate.Element (position).list.Iterate (Process => check_list'Access);
end if;
end check;
procedure check_ignore
is
procedure grow (Key : HT.Text; Element : in out group_list);
procedure append_ignore;
reason : HT.Text;
procedure grow (Key : HT.Text; Element : in out group_list) is
begin
Element.list.Append (reason);
end grow;
procedure append_ignore is
begin
-- Call after "reason" is set
if not specs.broken.Contains (index) then
specs.establish_group (sp_broken, broken_all);
end if;
specs.broken.Update_Element (Position => specs.broken.Find (index),
Process => grow'Access);
end append_ignore;
LIST_SSL_FAILURE : constant String := "Does not build with SSL default '";
LIST_MYSQL_FAILURE : constant String := "Does not build with MySQL default '";
LIST_PGSQL_FAILURE : constant String := "Does not build with PGSQL default '";
begin
if not specs.skip_opsys_dep then
if specs.exc_opsys.Contains (HT.SUS (UTL.lower_opsys (opsys))) or else
(not specs.inc_opsys.Is_Empty and then
not specs.inc_opsys.Contains (HT.SUS (UTL.lower_opsys (opsys))))
then
reason := HT.SUS ("Specification excludes " & UTL.mixed_opsys (opsys) & " OS");
append_ignore;
end if;
if specs.exc_arch.Contains (HT.SUS (UTL.cpu_arch (arch_standard))) then
reason := HT.SUS ("Specification excludes " & UTL.cpu_arch (arch_standard) &
" architecture");
append_ignore;
end if;
end if;
-- Handle BROKEN_SSL directive
if HT.equivalent (Parameters.configuration.def_ssl, ports_default) then
if specs.broken_ssl.Contains (HT.SUS (default_ssl)) then
reason := HT.SUS (LIST_SSL_FAILURE & default_ssl & "'");
append_ignore;
end if;
else
if specs.broken_ssl.Contains (Parameters.configuration.def_ssl) then
reason := HT.SUS (LIST_SSL_FAILURE &
HT.USS (Parameters.configuration.def_ssl) & "'");
append_ignore;
end if;
end if;
-- Handle BROKEN_MYSQL directive
if HT.equivalent (Parameters.configuration.def_mysql_group, ports_default) then
if specs.broken_mysql.Contains (HT.SUS (default_mysql)) then
reason := HT.SUS (LIST_MYSQL_FAILURE & default_mysql & "'");
append_ignore;
end if;
else
if specs.broken_mysql.Contains (Parameters.configuration.def_mysql_group) then
reason := HT.SUS (LIST_MYSQL_FAILURE &
HT.USS (Parameters.configuration.def_mysql_group) & "'");
append_ignore;
end if;
end if;
-- Handle BROKEN_PGSQL directive
if HT.equivalent (Parameters.configuration.def_postgresql, ports_default) then
if specs.broken_pgsql.Contains (HT.SUS (default_pgsql)) then
reason := HT.SUS (LIST_PGSQL_FAILURE & default_pgsql & "'");
append_ignore;
end if;
else
if specs.broken_pgsql.Contains (Parameters.configuration.def_postgresql) then
reason := HT.SUS (LIST_PGSQL_FAILURE &
HT.USS (Parameters.configuration.def_postgresql) & "'");
append_ignore;
end if;
end if;
end check_ignore;
begin
specs.broken.Iterate (Process => check'Access);
check_ignore;
end set_outstanding_ignore;
--------------------------------------------------------------------------------------------
-- apply_cpe_module
--------------------------------------------------------------------------------------------
procedure apply_cpe_module
(specs : in out Portspecs;
arch_standard : supported_arch;
osmajor : String)
is
function retrieve (key : String; default_value : String) return String;
function arch_default return String;
function other_default return String;
text_cpe : HT.Text := HT.SUS ("cpe");
function retrieve (key : String; default_value : String) return String
is
key_text : HT.Text := HT.SUS (key);
begin
if specs.catch_all.Contains (key_text) then
return HT.USS (specs.catch_all.Element (key_text).list.First_Element);
else
return default_value;
end if;
end retrieve;
function arch_default return String is
begin
case arch_standard is
when x86_64 => return "x64";
when i386 => return "x86";
when aarch64 => return "aarch64";
end case;
end arch_default;
function other_default return String is
begin
if specs.revision = 0 then
return "";
else
return LAT.Colon & HT.int2str (specs.revision);
end if;
end other_default;
begin
if not specs.uses.Contains (text_cpe) then
return;
end if;
declare
cpe_product : String := retrieve ("CPE_PRODUCT", HT.lowercase (specs.get_namebase));
cpe_vendor : String := retrieve ("CPE_VENDOR", cpe_product);
cpe_version : String := retrieve ("CPE_VERSION", HT.lowercase (HT.USS (specs.version)));
cpe_tgt_sw : String := retrieve ("CPE_TARGET_SW",
UTL.lower_opsys (platform_type) & osmajor);
default_note : String := "cpe:2.3" & LAT.Colon &
retrieve ("CPE_PART", "a") & LAT.Colon &
cpe_vendor & LAT.Colon &
cpe_product & LAT.Colon &
cpe_version & LAT.Colon &
retrieve ("CPE_UPDATE", "") & LAT.Colon &
retrieve ("CPE_EDITION", "") & LAT.Colon &
retrieve ("CPE_LANG", "") & LAT.Colon &
retrieve ("CPE_SW_EDITION", "") & LAT.Colon &
cpe_tgt_sw & LAT.Colon &
retrieve ("CPE_TARGET_HW", arch_default) &
retrieve ("CPE_OTHER", other_default);
begin
specs.pkg_notes.Insert (text_cpe, HT.SUS (retrieve ("CPE_STR", default_note)));
end;
end apply_cpe_module;
--------------------------------------------------------------------------------------------
-- generic_build_module
--------------------------------------------------------------------------------------------
procedure generic_build_module
(specs : in out Portspecs;
module : String;
dependency : String)
is
begin
if specs.uses_base.Contains (HT.SUS (module)) then
add_build_depends (specs, dependency);
end if;
end generic_build_module;
--------------------------------------------------------------------------------------------
-- generic_library_module
--------------------------------------------------------------------------------------------
procedure generic_library_module
(specs : in out Portspecs;
module : String;
dependency : String)
is
begin
if specs.uses_base.Contains (HT.SUS (module)) then
add_buildrun_depends (specs, dependency);
end if;
end generic_library_module;
--------------------------------------------------------------------------------------------
-- generic_run_module
--------------------------------------------------------------------------------------------
procedure generic_run_module
(specs : in out Portspecs;
module : String;
dependency : String)
is
begin
if specs.uses_base.Contains (HT.SUS (module)) then
add_run_depends (specs, dependency);
end if;
end generic_run_module;
--------------------------------------------------------------------------------------------
-- apply_scons_module
--------------------------------------------------------------------------------------------
procedure apply_scons_module (specs : in out Portspecs)
is
module : String := "scons";
dependency : String := "scons:single:standard";
begin
generic_build_module (specs, module, dependency);
end apply_scons_module;
--------------------------------------------------------------------------------------------
-- apply_gmake_module
--------------------------------------------------------------------------------------------
procedure apply_gmake_module (specs : in out Portspecs)
is
module : String := "gmake";
dependency : String := "gmake:single:ravensys";
begin
generic_build_module (specs, module, dependency);
end apply_gmake_module;
--------------------------------------------------------------------------------------------
-- apply_cargo_module
--------------------------------------------------------------------------------------------
procedure apply_cargo_module (specs : in out Portspecs)
is
module : String := "cargo";
dependency : String := "rust:single:standard";
begin
generic_build_module (specs, module, dependency);
end apply_cargo_module;
--------------------------------------------------------------------------------------------
-- apply_ninja_module
--------------------------------------------------------------------------------------------
procedure apply_ninja_module (specs : in out Portspecs)
is
module : String := "ninja";
dependency : String renames NINJA;
begin
generic_build_module (specs, module, dependency);
end apply_ninja_module;
--------------------------------------------------------------------------------------------
-- apply_meson_module
--------------------------------------------------------------------------------------------
procedure apply_meson_module (specs : in out Portspecs)
is
module : String := "meson";
dependency : String := "meson:single:standard";
begin
generic_build_module (specs, module, dependency);
generic_build_module (specs, module, NINJA);
end apply_meson_module;
--------------------------------------------------------------------------------------------
-- apply_zlib_module
--------------------------------------------------------------------------------------------
procedure apply_zlib_module (specs : in out Portspecs)
is
module : String := "zlib";
prefix : String := "zlib";
begin
generic_split_module (specs, module, prefix);
end apply_zlib_module;
--------------------------------------------------------------------------------------------
-- apply_mesa_module
--------------------------------------------------------------------------------------------
procedure apply_mesa_module (specs : in out Portspecs)
is
module : String := "mesa";
dependency : String := "mesa:libs:standard";
begin
generic_library_module (specs, module, dependency);
end apply_mesa_module;
--------------------------------------------------------------------------------------------
-- apply_makeinfo_module
--------------------------------------------------------------------------------------------
procedure apply_makeinfo_module (specs : in out Portspecs)
is
module : String := "makeinfo";
dependency : String := "texinfo:primary:standard";
begin
generic_build_module (specs, module, dependency);
end apply_makeinfo_module;
--------------------------------------------------------------------------------------------
-- apply_readline_module
--------------------------------------------------------------------------------------------
procedure apply_readline_module (specs : in out Portspecs)
is
module : String := "readline";
dependency : String := "readline:single:standard";
begin
generic_library_module (specs, module, dependency);
end apply_readline_module;
--------------------------------------------------------------------------------------------
-- apply_sqlite_module
--------------------------------------------------------------------------------------------
procedure apply_sqlite_module (specs : in out Portspecs)
is
module : String := "sqlite";
dependency : String := "sqlite:single:standard";
begin
generic_library_module (specs, module, dependency);
end apply_sqlite_module;
--------------------------------------------------------------------------------------------
-- apply_execinfo_module
--------------------------------------------------------------------------------------------
procedure apply_execinfo_module (specs : in out Portspecs)
is
module : String := "execinfo";
dependency : String := "libexecinfo:single:standard";
begin
if platform_type /= macos then
-- MacOS has Mach-O formatted files while libexecinfo only
-- functions under the ELF format, so it's both unbuildable and unusable on mac.
if specs.uses_base.Contains (HT.SUS (module)) then
if argument_present (specs, module, BUILD) then
add_build_depends (specs, dependency);
else
add_buildrun_depends (specs, dependency);
end if;
end if;
end if;
end apply_execinfo_module;
--------------------------------------------------------------------------------------------
-- apply_cmake_module
--------------------------------------------------------------------------------------------
procedure apply_cmake_module (specs : in out Portspecs)
is
module : String := "cmake";
dependency : String := "cmake:single:standard";
begin
if specs.uses_base.Contains (HT.SUS (module)) then
if argument_present (specs, module, RUN) then
add_buildrun_depends (specs, dependency);
else
add_build_depends (specs, dependency);
end if;
end if;
end apply_cmake_module;
--------------------------------------------------------------------------------------------
-- apply_imake_module
--------------------------------------------------------------------------------------------
procedure apply_imake_module (specs : in out Portspecs)
is
module : String := "imake";
dependency : String := "imake:single:standard";
begin
generic_build_module (specs, module, dependency);
end apply_imake_module;
--------------------------------------------------------------------------------------------
-- apply_clang_module
--------------------------------------------------------------------------------------------
procedure apply_clang_module (specs : in out Portspecs)
is
module : String := "clang";
dependency : String := "clang:complete:standard";
begin
generic_build_module (specs, module, dependency);
end apply_clang_module;
--------------------------------------------------------------------------------------------
-- apply_gtkdoc_module
--------------------------------------------------------------------------------------------
procedure apply_gtkdoc_module (specs : in out Portspecs)
is
module : String := "gtk-doc";
dependency : String := "gtk-doc:single:standard";
begin
generic_build_module (specs, module, dependency);
end apply_gtkdoc_module;
--------------------------------------------------------------------------------------------
-- apply_cran_module
--------------------------------------------------------------------------------------------
procedure apply_cran_module (specs : in out Portspecs)
is
module : String := "cran";
cran_build : String := "R:primary:standard";
cran_run : String := "R:complete:standard";
begin
generic_build_module (specs, module, cran_build);
generic_run_module (specs, module, cran_run);
end apply_cran_module;
--------------------------------------------------------------------------------------------
-- apply_gcc_run_module
--------------------------------------------------------------------------------------------
procedure apply_gcc_run_module (specs : in out Portspecs;
variant : String;
module : String;
gccsubpackage : String)
is
procedure scan (position : string_crate.Cursor);
dependency : String := default_compiler & ":" & gccsubpackage & ":" & variant_standard;
procedure scan (position : string_crate.Cursor)
is
subpackage : String := HT.USS (string_crate.Element (position));
begin
if argument_present (specs, module, subpackage) then
add_exrun_depends (specs, dependency, subpackage);
end if;
end scan;
begin
if specs.uses_base.Contains (HT.SUS (module)) then
specs.subpackages.Element (HT.SUS (variant)).list.Iterate (scan'Access);
end if;
end apply_gcc_run_module;
--------------------------------------------------------------------------------------------
-- add_exrun_cclibs
--------------------------------------------------------------------------------------------
procedure add_exrun_cclibs (specs : in out Portspecs; variant : String)
is
prime_pkg : HT.Text;
primary_found : Boolean := False;
begin
-- Calculate "primary" package
for item in Positive range 1 .. specs.get_subpackage_length (variant) loop
declare
subpackage : String := specs.get_subpackage_item (variant, item);
begin
if not primary_found and then
subpackage /= spkg_complete and then
subpackage /= spkg_examples and then
subpackage /= spkg_nls and then
subpackage /= spkg_docs
then
prime_pkg := HT.SUS (subpackage);
primary_found := True;
end if;
end;
end loop;
-- Abort if primary package was never determined. Spec file is wrong?
if not primary_found then
return;
end if;
declare
dependency : String := default_compiler & ":libs:" & variant_standard;
begin
-- Check if cclibs:<subpackage> has already been set, and abort if so
if specs.extra_rundeps.Contains (prime_pkg) and then
specs.extra_rundeps.Element (prime_pkg).list.Contains (HT.SUS (dependency))
then
return;
end if;
-- set cclibs:<primary subpackage>
add_exrun_depends (specs, dependency, HT.USS (prime_pkg));
end;
end add_exrun_cclibs;
--------------------------------------------------------------------------------------------
-- apply_firebird_module
--------------------------------------------------------------------------------------------
procedure apply_firebird_module (specs : in out Portspecs)
is
function determine_dependency return String;
module : String := "firebird";
function determine_dependency return String
is
suffix : String := ":client:standard";
setting : constant String := HT.USS (Parameters.configuration.def_mysql_group);
begin
if argument_present (specs, module, "server") then
suffix := ":server:standard";
end if;
if setting = "3.0" then
return "firebird30" & suffix;
else
-- case: setting = ports_default
-- case: setting = default_firebird
-- case: setting = invalid value
return "firebird25" & suffix;
end if;
end determine_dependency;
dependency : String := determine_dependency;
begin
generic_library_module (specs, module, dependency);
end apply_firebird_module;
--------------------------------------------------------------------------------------------
-- apply_mysql_module
--------------------------------------------------------------------------------------------
procedure apply_mysql_module (specs : in out Portspecs)
is
function determine_dependency return String;
module : String := "mysql";
function determine_dependency return String is
begin
if argument_present (specs, module, "server") then
return determine_mysql_package (True);
else
return determine_mysql_package (False);
end if;
end determine_dependency;
dependency : String := determine_dependency;
begin
if specs.uses_base.Contains (HT.SUS (module)) then
if argument_present (specs, module, "build") then
add_build_depends (specs, dependency);
else
add_buildrun_depends (specs, dependency);
end if;
end if;
end apply_mysql_module;
--------------------------------------------------------------------------------------------
-- apply_pgsql_module
--------------------------------------------------------------------------------------------
procedure apply_pgsql_module (specs : in out Portspecs)
is
procedure set_dependency (subpackage : String);
procedure set_dependency_on_subpackage (subpackage : String);
module : String := "pgsql";
namebase : String := determine_pgsql_namebase;
build_only : Boolean := argument_present (specs, module, BUILD);
procedure set_dependency (subpackage : String)
is
dependency : String := namebase & ":" & subpackage & ":standard";
begin
if build_only then
add_build_depends (specs, dependency);
else
add_buildrun_depends (specs, dependency);
end if;
end set_dependency;
procedure set_dependency_on_subpackage (subpackage : String) is
begin
if argument_present (specs, module, subpackage) then
set_dependency (subpackage);
end if;
end set_dependency_on_subpackage;
begin
if specs.uses_base.Contains (HT.SUS (module)) then
if no_arguments_present (specs, module) then
set_dependency ("client");
elsif argument_present (specs, module, "all") then
-- ignore everything else
set_dependency (spkg_complete);
else
set_dependency_on_subpackage ("server");
set_dependency_on_subpackage ("plperl");
set_dependency_on_subpackage ("plpython");
set_dependency_on_subpackage ("pltcl");
set_dependency_on_subpackage ("contrib");
if not argument_present (specs, module, "server") then
set_dependency_on_subpackage ("client");
end if;
end if;
end if;
end apply_pgsql_module;
--------------------------------------------------------------------------------------------
-- apply_ncurses_module
--------------------------------------------------------------------------------------------
procedure apply_ncurses_module (specs : in out Portspecs)
is
module : String := "ncurses";
full_dependency : String := "ncurses:primary:standard";
static_dependency : String := "ncurses:primary:static";
begin
if not specs.uses_base.Contains (HT.SUS (module)) then
return;
end if;
if no_arguments_present (specs, module) then
add_buildrun_depends (specs, full_dependency);
elsif argument_present (specs, module, "static") then
add_build_depends (specs, static_dependency);
end if;
end apply_ncurses_module;
--------------------------------------------------------------------------------------------
-- apply_libtool_module
--------------------------------------------------------------------------------------------
procedure apply_libtool_module (specs : in out Portspecs)
is
module : String := "libtool";
dependency : String := "libtool:single:standard";
begin
if specs.uses_base.Contains (HT.SUS (module)) and then
argument_present (specs, module, BUILD)
then
add_build_depends (specs, dependency);
end if;
end apply_libtool_module;
--------------------------------------------------------------------------------------------
-- generic_split_module
--------------------------------------------------------------------------------------------
procedure generic_split_module
(specs : in out Portspecs;
module : String;
depprefix : String)
is
shared_dependency : String := depprefix & ":shared:standard";
static_dependency : String := depprefix & ":static:standard";
begin
if specs.uses_base.Contains (HT.SUS (module)) then
add_build_depends (specs, static_dependency);
if not argument_present (specs, module, BUILD) then
add_buildrun_depends (specs, shared_dependency);
end if;
end if;
end generic_split_module;
--------------------------------------------------------------------------------------------
-- apply_libiconv_module
--------------------------------------------------------------------------------------------
procedure apply_libiconv_module (specs : in out Portspecs)
is
module : String := "iconv";
dep_prefix : String := "libiconv";
begin
generic_split_module (specs, module, dep_prefix);
end apply_libiconv_module;
--------------------------------------------------------------------------------------------
-- apply_zstd_module
--------------------------------------------------------------------------------------------
procedure apply_zstd_module (specs : in out Portspecs)
is
module : String := "zstd";
dep_prefix : String := "Zstandard";
begin
generic_split_module (specs, module, dep_prefix);
end apply_zstd_module;
--------------------------------------------------------------------------------------------
-- apply_lz4_module
--------------------------------------------------------------------------------------------
procedure apply_lz4_module (specs : in out Portspecs)
is
module : String := "lz4";
dep_prefix : String := "lz4";
begin
generic_split_module (specs, module, dep_prefix);
end apply_lz4_module;
--------------------------------------------------------------------------------------------
-- apply_lzo_module
--------------------------------------------------------------------------------------------
procedure apply_lzo_module (specs : in out Portspecs)
is
module : String := "lzo";
dep_prefix : String := "lzo";
begin
generic_split_module (specs, module, dep_prefix);
end apply_lzo_module;
--------------------------------------------------------------------------------------------
-- apply_bz2_module
--------------------------------------------------------------------------------------------
procedure apply_bz2_module (specs : in out Portspecs)
is
module : String := "bz2";
dep_prefix : String := "bzip2";
begin
generic_split_module (specs, module, dep_prefix);
end apply_bz2_module;
--------------------------------------------------------------------------------------------
-- apply_expat_module
--------------------------------------------------------------------------------------------
procedure apply_expat_module (specs : in out Portspecs)
is
module : String := "expat";
dep_prefix : String := "expat";
begin
generic_split_module (specs, module, dep_prefix);
end apply_expat_module;
--------------------------------------------------------------------------------------------
-- apply_pcre_module
--------------------------------------------------------------------------------------------
procedure apply_pcre_module (specs : in out Portspecs)
is
module : String := "pcre";
dep_prefix : String := "pcre";
begin
generic_split_module (specs, module, dep_prefix);
end apply_pcre_module;
--------------------------------------------------------------------------------------------
-- apply_info_presence
--------------------------------------------------------------------------------------------
procedure apply_info_presence (specs : in out Portspecs)
is
dependency : String := "indexinfo:single:standard";
begin
if not specs.info.Is_Empty then
add_buildrun_depends (specs, dependency);
end if;
end apply_info_presence;
--------------------------------------------------------------------------------------------
-- apply_pkgconfig_module
--------------------------------------------------------------------------------------------
procedure apply_pkgconfig_module (specs : in out Portspecs)
is
module : String := "pkgconfig";
dependency : String := "pkgconf:single:standard";
begin
if not specs.uses_base.Contains (HT.SUS (module)) then
return;
end if;
if no_arguments_present (specs, module) or else
argument_present (specs, module, BUILD)
then
add_build_depends (specs, dependency);
else
if argument_present (specs, module, BUILDRUN) then
add_buildrun_depends (specs, dependency);
elsif argument_present (specs, module, RUN) then
add_run_depends (specs, dependency);
end if;
end if;
end apply_pkgconfig_module;
--------------------------------------------------------------------------------------------
-- apply_autoconf_module
--------------------------------------------------------------------------------------------
procedure apply_autoconf_module (specs : in out Portspecs)
is
module : String := "autoreconf";
AUTOCONF : String := "autoconf:single:standard";
AUTOMAKE : String := "automake:single:standard";
LIBTOOL : String := "libtool:single:standard";
begin
if not specs.uses_base.Contains (HT.SUS (module)) then
return;
end if;
add_build_depends (specs, AUTOCONF);
add_build_depends (specs, AUTOMAKE);
if not argument_present (specs, module, BUILD) then
add_build_depends (specs, LIBTOOL);
end if;
end apply_autoconf_module;
--------------------------------------------------------------------------------------------
-- apply_gprbuild_module
--------------------------------------------------------------------------------------------
procedure apply_gprbuild_module (specs : in out Portspecs)
is
module : String := "gprbuild";
dependency : String := "gprbuild:primary:standard";
begin
if not specs.uses_base.Contains (HT.SUS (module)) then
return;
end if;
if no_arguments_present (specs, module) or else
argument_present (specs, module, BUILD)
then
add_build_depends (specs, dependency);
else
if argument_present (specs, module, BUILDRUN) then
add_buildrun_depends (specs, dependency);
elsif argument_present (specs, module, RUN) then
add_run_depends (specs, dependency);
end if;
end if;
end apply_gprbuild_module;
--------------------------------------------------------------------------------------------
-- apply_display_module
--------------------------------------------------------------------------------------------
procedure apply_display_module (specs : in out Portspecs)
is
module : String := "display";
begin
if specs.uses_base.Contains (HT.SUS (module)) then
add_build_depends (specs, "xorg-server:single:virtual");
add_build_depends (specs, "xorg-misc-bitmap-fonts:single:standard");
add_build_depends (specs, "xorg-font-alias:single:standard");
add_build_depends (specs, "daemonize:single:standard");
end if;
end apply_display_module;
--------------------------------------------------------------------------------------------
-- apply_gnome_icons_module
--------------------------------------------------------------------------------------------
procedure apply_gnome_icons_module (specs : in out Portspecs)
is
module : String := "gnome-icons";
dependency : String := "gtk-update-icon-cache:single:standard";
begin
generic_run_module (specs, module, dependency);
end apply_gnome_icons_module;
--------------------------------------------------------------------------------------------
-- apply_mime_info_module
--------------------------------------------------------------------------------------------
procedure apply_mime_info_module (specs : in out Portspecs)
is
module : String := "mime-info";
dependency : String := "shared-mime-info:primary:standard";
begin
generic_library_module (specs, module, dependency);
end apply_mime_info_module;
--------------------------------------------------------------------------------------------
-- apply_schemas_module
--------------------------------------------------------------------------------------------
procedure apply_schemas_module (specs : in out Portspecs)
is
module : String := "schemas";
dependency : String renames GNOMELIB;
begin
generic_run_module (specs, module, dependency);
end apply_schemas_module;
--------------------------------------------------------------------------------------------
-- apply_desktop_utils_module
--------------------------------------------------------------------------------------------
procedure apply_desktop_utils_module (specs : in out Portspecs)
is
module : String := "desktop-utils";
dependency : String := "desktop-file-utils:single:standard";
begin
generic_library_module (specs, module, dependency);
end apply_desktop_utils_module;
--------------------------------------------------------------------------------------------
-- apply_gettext_tools_module
--------------------------------------------------------------------------------------------
procedure apply_gettext_tools_module (specs : in out Portspecs)
is
module : String := "gettext-tools";
dependency : String := "gettext:tools:standard";
begin
generic_3B_module (specs, module, dependency);
end apply_gettext_tools_module;
--------------------------------------------------------------------------------------------
-- apply_gettext_runtime_module
--------------------------------------------------------------------------------------------
procedure apply_gettext_runtime_module (specs : in out Portspecs)
is
module : String := "gettext-runtime";
dependency : String := "gettext:runtime:standard";
asprintf : String := "gettext:asprintf:standard";
begin
if not specs.uses_base.Contains (HT.SUS (module)) then
return;
end if;
generic_3BR_module (specs, module, dependency);
if argument_present (specs, module, "asprintf") then
generic_3BR_module (specs, module, asprintf);
end if;
end apply_gettext_runtime_module;
--------------------------------------------------------------------------------------------
-- apply_python_module
--------------------------------------------------------------------------------------------
procedure apply_python_module (specs : in out Portspecs)
is
procedure set_snake_ports (build_only : Boolean; python_port, py_variant : String);
module : constant String := "python";
PY27 : constant String := "py27";
PY38 : constant String := "py38";
PY39 : constant String := "py39";
autopython : constant String := "autoselect-python:single:standard";
use_pip : Boolean := False;
use_setup : Boolean := False;
procedure set_snake_ports (build_only : Boolean; python_port, py_variant : String) is
begin
if build_only then
add_build_depends (specs, python_port);
else
add_buildrun_depends (specs, python_port);
end if;
if use_pip then
add_build_depends (specs, "python-pip:single:" & py_variant);
end if;
if use_setup then
add_build_depends (specs, "python-setuptools:single:" & py_variant);
end if;
specs.used_python := HT.SUS (py_variant);
end set_snake_ports;
begin
if not specs.uses_base.Contains (HT.SUS (module)) then
return;
end if;
-- When changing python defaults, don't forget to alter convert_exrun_versions() too.
if argument_present (specs, module, "wheel") then
use_pip := True;
end if;
if argument_present (specs, module, "sutools") then
use_setup := True;
end if;
if argument_present (specs, module, "build") then
if argument_present (specs, module, PY27) then
set_snake_ports (True, PYTHON27, PY27);
elsif argument_present (specs, module, PY39) then
set_snake_ports (True, PYTHON39, PY39);
else -- default to py38
set_snake_ports (True, PYTHON38, PY38);
end if;
else
if argument_present (specs, module, PY27) then
set_snake_ports (False, PYTHON27, PY27);
elsif argument_present (specs, module, PY39) then
set_snake_ports (False, PYTHON39, PY39);
else -- default to py38
set_snake_ports (False, PYTHON38, PY38);
end if;
end if;
add_build_depends (specs, autopython);
end apply_python_module;
--------------------------------------------------------------------------------------------
-- apply_ruby_module
--------------------------------------------------------------------------------------------
procedure apply_ruby_module (specs : in out Portspecs)
is
module : constant String := "ruby";
v26 : constant String := "v26";
v27 : constant String := "v27";
v30 : constant String := "v30";
begin
if not specs.uses_base.Contains (HT.SUS (module)) or else
argument_present (specs, module, "interp")
then
return;
end if;
if argument_present (specs, module, "build") then
if argument_present (specs, module, v30) then
add_build_depends (specs, RUBY30);
specs.used_ruby := HT.SUS (RUBY30);
elsif argument_present (specs, module, v26) then
add_build_depends (specs, RUBY26);
specs.used_ruby := HT.SUS (RUBY26);
else -- default to current default
add_build_depends (specs, RUBY27);
specs.used_ruby := HT.SUS (RUBY27);
end if;
else
if argument_present (specs, module, v30) then
add_buildrun_depends (specs, RUBY30);
specs.used_ruby := HT.SUS (RUBY30);
elsif argument_present (specs, module, v26) then
add_buildrun_depends (specs, RUBY26);
specs.used_ruby := HT.SUS (RUBY26);
else -- default to current default
add_buildrun_depends (specs, RUBY27);
specs.used_ruby := HT.SUS (RUBY27);
end if;
end if;
end apply_ruby_module;
--------------------------------------------------------------------------------------------
-- apply_fonts_module
--------------------------------------------------------------------------------------------
procedure apply_fonts_module (specs : in out Portspecs)
is
module : String := "fonts";
fontconfig : String := "fontconfig:primary:standard";
mkfontscale : String := "xorg-mkfontscale:single:standard";
begin
if not specs.uses_base.Contains (HT.SUS (module)) then
return;
end if;
if no_arguments_present (specs, module) or else
argument_present (specs, module, "fontsdir")
then
add_buildrun_depends (specs, mkfontscale);
return;
end if;
if argument_present (specs, module, "fc") then
add_buildrun_depends (specs, fontconfig);
return;
end if;
if argument_present (specs, module, "fcfontsdir") then
add_buildrun_depends (specs, fontconfig);
add_buildrun_depends (specs, mkfontscale);
end if;
end apply_fonts_module;
--------------------------------------------------------------------------------------------
-- apply_bison_module
--------------------------------------------------------------------------------------------
procedure apply_bison_module (specs : in out Portspecs)
is
module : String := "bison";
dependency : String := "bison:primary:standard";
begin
generic_3B_module (specs, module, dependency);
end apply_bison_module;
--------------------------------------------------------------------------------------------
-- generic_3BR_module
--------------------------------------------------------------------------------------------
procedure generic_3BR_module
(specs : in out Portspecs;
module : String;
dependency : String)
is
-- Defaults to BUILDRUN, takes explicit "build", "run", "buildrun"
hit_run : Boolean;
hit_build : Boolean;
hit_both : Boolean;
begin
if not specs.uses_base.Contains (HT.SUS (module)) then
return;
end if;
if no_arguments_present (specs, module) then
hit_build := False;
hit_both := True;
hit_run := False;
else
hit_build := argument_present (specs, module, BUILD);
hit_both := argument_present (specs, module, BUILDRUN);
hit_run := argument_present (specs, module, RUN);
if not (hit_build or else hit_both or else hit_run) then
hit_both := True;
end if;
end if;
if hit_both or else (hit_build and hit_run) then
add_buildrun_depends (specs, dependency);
elsif hit_build then
add_build_depends (specs, dependency);
else
add_run_depends (specs, dependency);
end if;
end generic_3BR_module;
--------------------------------------------------------------------------------------------
-- generic_3B_module
--------------------------------------------------------------------------------------------
procedure generic_3B_module
(specs : in out Portspecs;
module : String;
dependency : String)
is
hit_run : Boolean;
hit_build : Boolean;
hit_both : Boolean;
begin
if not specs.uses_base.Contains (HT.SUS (module)) then
return;
end if;
if no_arguments_present (specs, module) then
hit_build := True;
hit_both := False;
hit_run := False;
else
hit_build := argument_present (specs, module, BUILD);
hit_both := argument_present (specs, module, BUILDRUN);
hit_run := argument_present (specs, module, RUN);
if not (hit_build or else hit_both or else hit_run) then
hit_build := True;
end if;
end if;
if hit_both or else (hit_build and hit_run) then
add_buildrun_depends (specs, dependency);
elsif hit_build then
add_build_depends (specs, dependency);
else
add_run_depends (specs, dependency);
end if;
end generic_3B_module;
--------------------------------------------------------------------------------------------
-- apply_jpeg_module
--------------------------------------------------------------------------------------------
procedure apply_jpeg_module (specs : in out Portspecs)
is
module : String := "jpeg";
dependency : String := "jpeg-turbo:primary:standard";
begin
generic_3BR_module (specs, module, dependency);
end apply_jpeg_module;
--------------------------------------------------------------------------------------------
-- apply_png_module
--------------------------------------------------------------------------------------------
procedure apply_png_module (specs : in out Portspecs)
is
module : String := "png";
dependency : String := "png:single:standard";
begin
generic_3BR_module (specs, module, dependency);
end apply_png_module;
--------------------------------------------------------------------------------------------
-- apply_gif_module
--------------------------------------------------------------------------------------------
procedure apply_gif_module (specs : in out Portspecs)
is
module : String := "gif";
dependency : String := "giflib:single:standard";
begin
generic_3BR_module (specs, module, dependency);
end apply_gif_module;
--------------------------------------------------------------------------------------------
-- apply_tiff_module
--------------------------------------------------------------------------------------------
procedure apply_tiff_module (specs : in out Portspecs)
is
module : String := "tiff";
dependency : String := "tiff:primary:standard";
begin
generic_3BR_module (specs, module, dependency);
end apply_tiff_module;
--------------------------------------------------------------------------------------------
-- apply_gem_module
--------------------------------------------------------------------------------------------
procedure apply_gem_module (specs : in out Portspecs)
is
module : String := "gem";
defver : String (1 .. 2) :=
default_ruby (default_ruby'First) & default_ruby (default_ruby'Last);
flavor : String := "v" & defver;
begin
if specs.uses_base.Contains (HT.SUS (module)) then
if not no_arguments_present (specs, module) then
if argument_present (specs, module, "v26") then
flavor := "v26";
elsif argument_present (specs, module, "v27") then
flavor := "v27";
elsif argument_present (specs, module, "v30") then
flavor := "v30";
end if;
end if;
add_buildrun_depends (specs, "ruby-rubygems:single:" & flavor);
end if;
end apply_gem_module;
--------------------------------------------------------------------------------------------
-- apply_php_module
--------------------------------------------------------------------------------------------
procedure apply_php_module (specs : in out Portspecs)
is
module : constant String := "php";
std_suffix : constant String := ":single:standard";
-- This defver works until PHP 10 is released
defver : String (1 .. 2) := default_php (default_php'First) & default_php (default_php'Last);
flavor : String := "php" & defver;
hit_build : Boolean := False;
hit_phpize : Boolean := False;
hit_ext : Boolean := False;
hit_zend : Boolean := False;
begin
if not specs.uses_base.Contains (HT.SUS (module)) then
return;
end if;
if not no_arguments_present (specs, module) then
if argument_present (specs, module, "80") then
flavor := "php80";
elsif argument_present (specs, module, "74") then
flavor := "php74";
elsif argument_present (specs, module, "73") then
flavor := "php73";
end if;
hit_build := argument_present (specs, module, BUILD);
hit_phpize := argument_present (specs, module, "phpize");
hit_ext := argument_present (specs, module, "ext");
hit_zend := argument_present (specs, module, "zend");
end if;
if hit_build or else hit_phpize or else hit_ext or else hit_zend then
add_buildrun_depends (specs, flavor & std_suffix);
else
add_run_depends (specs, flavor & std_suffix);
end if;
if hit_phpize or else hit_ext or else hit_zend then
add_build_depends (specs, "autoconf" & std_suffix);
end if;
end apply_php_module;
--------------------------------------------------------------------------------------------
-- apply_lua_module
--------------------------------------------------------------------------------------------
procedure apply_lua_module (specs : in out Portspecs)
is
function pick_lua return String;
module : String := "lua";
hit_run : Boolean;
hit_build : Boolean;
hit_both : Boolean;
function pick_lua return String
is
LUA52 : String := "lua52:single:standard";
LUA53 : String := "lua53:single:standard";
LUA54 : String := "lua54:single:standard";
def_setting : String := HT.USS (Parameters.configuration.def_lua);
begin
if argument_present (specs, module, "5.2") then
return LUA52;
elsif argument_present (specs, module, "5.3") then
return LUA53;
elsif argument_present (specs, module, "5.4") then
return LUA54;
end if;
-- No valid argument present, use configured setting
if def_setting = "5.2" then
return LUA52;
elsif def_setting = "5.4" then
return LUA54;
else
-- current default: lua53
return LUA53;
end if;
end pick_lua;
dependency : String := pick_lua;
begin
if not specs.uses_base.Contains (HT.SUS (module)) then
return;
end if;
if no_arguments_present (specs, module) then
hit_build := False;
hit_both := True;
hit_run := False;
else
hit_build := argument_present (specs, module, BUILD);
hit_both := argument_present (specs, module, BUILDRUN);
hit_run := argument_present (specs, module, RUN);
if not (hit_build or else hit_both or else hit_run) then
hit_both := True;
end if;
end if;
if hit_both or else (hit_build and hit_run) then
add_buildrun_depends (specs, dependency);
elsif hit_build then
add_build_depends (specs, dependency);
else
add_run_depends (specs, dependency);
end if;
specs.used_lua := HT.SUS (HT.specific_field (dependency, 1, ":"));
end apply_lua_module;
--------------------------------------------------------------------------------------------
-- apply_tcl_module
--------------------------------------------------------------------------------------------
procedure apply_tcl_module (specs : in out Portspecs)
is
function pick_tcl (actually_tk : Boolean) return String;
procedure install_package (dependency : String);
module : String := "tcl";
hit_run : Boolean;
hit_build : Boolean;
hit_both : Boolean;
install_tk : Boolean;
-- When changing tcl defaults, don't forget to alter convert_exrun_versions() too.
function pick_tcl (actually_tk : Boolean) return String
is
def_setting : String := HT.USS (Parameters.configuration.def_tcl_tk);
begin
if argument_present (specs, module, "8.5") then
return TCL85;
elsif argument_present (specs, module, "8.6") or else
def_setting = ports_default or else
def_setting = "8.6"
then
if actually_tk then
return TK86;
else
return TCL86;
end if;
else
if actually_tk then
return TK85;
else
return TCL85;
end if;
end if;
end pick_tcl;
procedure install_package (dependency : String) is
begin
if hit_both or else (hit_build and hit_run) then
add_buildrun_depends (specs, dependency);
elsif hit_build then
add_build_depends (specs, dependency);
else
add_run_depends (specs, dependency);
end if;
end install_package;
tcl_package : String := pick_tcl (actually_tk => False);
tk_package : String := pick_tcl (actually_tk => True);
begin
if not specs.uses_base.Contains (HT.SUS (module)) then
return;
end if;
if no_arguments_present (specs, module) then
hit_build := False;
hit_both := True;
hit_run := False;
install_tk := False;
else
hit_build := argument_present (specs, module, BUILD);
hit_both := argument_present (specs, module, BUILDRUN);
hit_run := argument_present (specs, module, RUN);
install_tk := argument_present (specs, module, "tk");
if not (hit_build or else hit_both or else hit_run) then
hit_both := True;
end if;
end if;
install_package (tcl_package);
if install_tk then
install_package (tk_package);
end if;
end apply_tcl_module;
--------------------------------------------------------------------------------------------
-- apply_ssl_module
--------------------------------------------------------------------------------------------
procedure apply_ssl_module (specs : in out Portspecs)
is
hit_run : Boolean;
hit_build : Boolean;
hit_both : Boolean;
module : constant String := "ssl";
begin
if not specs.uses_base.Contains (HT.SUS (module)) then
return;
end if;
if no_arguments_present (specs, module) then
hit_build := False;
hit_both := True;
hit_run := False;
else
hit_build := argument_present (specs, module, BUILD);
hit_both := argument_present (specs, module, BUILDRUN);
hit_run := argument_present (specs, module, RUN);
if not (hit_build or else hit_both or else hit_run) then
hit_both := True;
end if;
end if;
declare
normvar : constant String := Parameters.ssl_selection (Parameters.configuration);
dependency : constant String := specs.get_ssl_variant (normvar) & ":single:standard";
begin
if hit_both or else (hit_build and hit_run) then
add_buildrun_depends (specs, dependency);
elsif hit_build then
add_build_depends (specs, dependency);
else
add_run_depends (specs, dependency);
end if;
end;
end apply_ssl_module;
--------------------------------------------------------------------------------------------
-- apply_bdb_module
--------------------------------------------------------------------------------------------
procedure apply_bdb_module (specs : in out Portspecs)
is
module : String := "bdb";
dep_static_5 : String := "db5:static:standard";
dep_shared_5 : String := "db5:shared:standard";
dep_static_6 : String := "db6:static:standard";
dep_shared_6 : String := "db6:shared:standard";
dep_static_7 : String := "db18:static:standard";
dep_shared_7 : String := "db18:shared:standard";
need_static : Boolean := False;
begin
if not specs.uses_base.Contains (HT.SUS (module)) then
return;
end if;
if argument_present (specs, module, "static") then
need_static := True;
end if;
if argument_present (specs, module, "6") then
add_build_depends (specs, dep_static_6);
if not need_static then
add_buildrun_depends (specs, dep_shared_6);
end if;
elsif argument_present (specs, module, "18") then
add_build_depends (specs, dep_static_7);
if not need_static then
add_buildrun_depends (specs, dep_shared_7);
end if;
else
add_build_depends (specs, dep_static_5);
if not need_static then
add_buildrun_depends (specs, dep_shared_5);
end if;
end if;
end apply_bdb_module;
--------------------------------------------------------------------------------------------
-- apply_perl_module
--------------------------------------------------------------------------------------------
procedure apply_perl_module (specs : in out Portspecs)
is
function retrieve_dependency return String;
module : constant String := "perl";
pmodbuild : constant String := "perl-Module-Build:single:";
pmodbuildtiny : constant String := "perl-Module-Build-Tiny:single:";
perl_532 : constant String := "532";
perl_534 : constant String := "534";
dep_suffix : String := " ";
hit_run : Boolean;
hit_build : Boolean;
hit_both : Boolean;
hit_bmod : Boolean;
hit_bmodtiny : Boolean;
hit_config : Boolean;
function retrieve_dependency return String
is
rport_default : String := "perl-" & default_perl;
suffix : String := ":primary:standard";
def_setting : String := HT.USS (Parameters.configuration.def_perl);
override_dep : String := "perl-" & def_setting;
begin
if argument_present (specs, module, perl_532) then
dep_suffix := perl_532;
return "perl-5.32" & suffix;
elsif argument_present (specs, module, perl_534) then
dep_suffix := perl_534;
return "perl-5.34" & suffix;
else
if def_setting = ports_default then
dep_suffix := HT.replace_char (default_perl, LAT.Full_Stop, "");
return rport_default & suffix;
else
dep_suffix := HT.replace_char (def_setting, LAT.Full_Stop, "");
return override_dep & suffix;
end if;
end if;
end retrieve_dependency;
dependency : String := retrieve_dependency;
begin
if not specs.uses_base.Contains (HT.SUS (module)) then
return;
end if;
if no_arguments_present (specs, module) then
hit_build := False;
hit_both := True;
hit_run := False;
hit_bmod := False;
hit_bmodtiny := False;
hit_config := False;
else
hit_build := argument_present (specs, module, BUILD);
hit_run := argument_present (specs, module, RUN);
hit_bmod := argument_present (specs, module, "buildmod");
hit_bmodtiny := argument_present (specs, module, "buildmodtiny");
hit_config := argument_present (specs, module, "configure");
hit_both := hit_config or else
(hit_run and hit_bmod) or else
(hit_run and hit_bmodtiny);
if hit_bmod or else hit_bmodtiny then
hit_build := True;
end if;
if not (hit_build or else hit_both or else hit_run) then
hit_both := True;
end if;
end if;
if hit_both or else (hit_build and hit_run) then
add_buildrun_depends (specs, dependency);
elsif hit_build then
add_build_depends (specs, dependency);
elsif hit_run then
add_run_depends (specs, dependency);
end if;
if hit_bmod then
if specs.get_namebase /= "perl-Module-Build" then
add_build_depends (specs, pmodbuild & dep_suffix);
end if;
elsif hit_bmodtiny then
if specs.get_namebase /= "perl-Module-Build-Tiny" then
add_build_depends (specs, pmodbuildtiny & dep_suffix);
end if;
end if;
specs.used_perl := HT.SUS (dep_suffix);
end apply_perl_module;
--------------------------------------------------------------------------------------------
-- apply_opsys_dependencies
--------------------------------------------------------------------------------------------
procedure apply_opsys_dependencies (specs : in out Portspecs)
is
procedure scan_dep (position : string_crate.Cursor);
procedure scan_use (position : string_crate.Cursor);
type deptype is (os_build, os_run, os_buildrun);
dt : deptype;
key_opsys : HT.Text := HT.SUS (UTL.lower_opsys (platform_type));
procedure scan_dep (position : string_crate.Cursor)
is
dependency : String := HT.USS (string_crate.Element (position));
begin
case dt is
when os_build => add_build_depends (specs, dependency);
when os_run => add_run_depends (specs, dependency);
when os_buildrun => add_buildrun_depends (specs, dependency);
end case;
end scan_dep;
procedure scan_use (position : string_crate.Cursor)
is
text_value : HT.Text renames string_crate.Element (position);
text_stripped : HT.Text := HT.SUS (HT.part_1 (HT.USS (text_value), ":"));
begin
specs.uses.Append (text_value);
if not specs.uses_base.Contains (text_stripped) then
specs.uses_base.Append (text_stripped);
end if;
end scan_use;
begin
if specs.skip_opsys_dep then
return;
end if;
if specs.opsys_b_deps.Contains (key_opsys) then
dt := os_build;
specs.opsys_b_deps.Element (key_opsys).list.Iterate (scan_dep'Access);
end if;
if specs.opsys_r_deps.Contains (key_opsys) then
dt := os_run;
specs.opsys_r_deps.Element (key_opsys).list.Iterate (scan_dep'Access);
end if;
if specs.opsys_br_deps.Contains (key_opsys) then
dt := os_buildrun;
specs.opsys_br_deps.Element (key_opsys).list.Iterate (scan_dep'Access);
end if;
if specs.opsys_c_uses.Contains (key_opsys) then
specs.opsys_c_uses.Element (key_opsys).list.Iterate (scan_use'Access);
end if;
end apply_opsys_dependencies;
--------------------------------------------------------------------------------------------
-- apply_curly_bracket_conversions
--------------------------------------------------------------------------------------------
procedure apply_curly_bracket_conversions (specs : in out Portspecs)
is
procedure apply_to_list1 (position : list_crate.Cursor);
procedure apply_to_list2 (position : list_crate.Cursor);
procedure apply_to_list3 (position : list_crate.Cursor);
procedure apply_to_list4 (position : list_crate.Cursor);
procedure apply_to_list5 (position : list_crate.Cursor);
procedure alter (Key : HT.Text; Element : in out group_list);
procedure alter (Key : HT.Text; Element : in out group_list) is
begin
apply_cbc_string_crate (Element.list);
end alter;
procedure apply_to_list1 (position : list_crate.Cursor) is
begin
specs.catch_all.Update_Element (Position => position,
Process => alter'Access);
end apply_to_list1;
procedure apply_to_list2 (position : list_crate.Cursor) is
begin
specs.extract_head.Update_Element (Position => position,
Process => alter'Access);
end apply_to_list2;
procedure apply_to_list3 (position : list_crate.Cursor) is
begin
specs.extract_tail.Update_Element (Position => position,
Process => alter'Access);
end apply_to_list3;
procedure apply_to_list4 (position : list_crate.Cursor) is
begin
specs.var_opsys.Update_Element (Position => position,
Process => alter'Access);
end apply_to_list4;
procedure apply_to_list5 (position : list_crate.Cursor) is
begin
specs.var_arch.Update_Element (Position => position,
Process => alter'Access);
end apply_to_list5;
begin
UTL.apply_cbc_string (specs.install_wrksrc);
UTL.apply_cbc_string (specs.build_wrksrc);
UTL.apply_cbc_string (specs.patch_wrksrc);
UTL.apply_cbc_string (specs.config_wrksrc);
UTL.apply_cbc_string (specs.config_prefix);
UTL.apply_cbc_string (specs.config_script);
UTL.apply_cbc_string (specs.config_target);
UTL.apply_cbc_string (specs.distname);
UTL.apply_cbc_string (specs.prefix);
apply_cbc_string_crate (specs.config_args);
apply_cbc_string_crate (specs.config_env);
apply_cbc_string_crate (specs.make_args);
apply_cbc_string_crate (specs.make_env);
apply_cbc_string_crate (specs.test_args);
apply_cbc_string_crate (specs.test_env);
apply_cbc_string_crate (specs.cflags);
apply_cbc_string_crate (specs.cxxflags);
apply_cbc_string_crate (specs.cppflags);
apply_cbc_string_crate (specs.ldflags);
apply_cbc_string_crate (specs.cmake_args);
apply_cbc_string_crate (specs.qmake_args);
apply_cbc_string_crate (specs.test_args);
apply_cbc_string_crate (specs.lic_files);
apply_cbc_string_crate (specs.lic_source);
apply_cbc_string_crate (specs.lic_terms);
apply_cbc_string_crate (specs.plist_sub);
apply_cbc_string_crate (specs.mk_verbatim);
apply_cbc_string_crate (specs.sub_list);
apply_cbc_string_crate (specs.users);
apply_cbc_string_crate (specs.groups);
apply_cbc_string_crate (specs.mandirs);
specs.catch_all.Iterate (apply_to_list1'Access);
specs.extract_head.Iterate (apply_to_list2'Access);
specs.extract_tail.Iterate (apply_to_list3'Access);
specs.var_opsys.Iterate (apply_to_list4'Access);
specs.var_arch.Iterate (apply_to_list5'Access);
end apply_curly_bracket_conversions;
--------------------------------------------------------------------------------------------
-- apply_cbc_string_crate
--------------------------------------------------------------------------------------------
procedure apply_cbc_string_crate (crate : in out string_crate.Vector)
is
procedure check (position : string_crate.Cursor);
procedure swap_braces (Element : in out HT.Text);
procedure swap_braces (Element : in out HT.Text) is
begin
UTL.apply_cbc_string (Element);
end swap_braces;
procedure check (position : string_crate.Cursor) is
begin
crate.Update_Element (position, swap_braces'Access);
end check;
begin
crate.Iterate (check'Access);
end apply_cbc_string_crate;
--------------------------------------------------------------------------------------------
-- argument_present
--------------------------------------------------------------------------------------------
function argument_present (specs : Portspecs; module, argument : String) return Boolean
is
procedure scan (position : string_crate.Cursor);
found : Boolean := False;
procedure scan (position : string_crate.Cursor)
is
value_text : HT.Text renames string_crate.Element (position);
value : String := HT.USS (value_text);
begin
if not found and then HT.count_char (value, LAT.Colon) = 1 then
declare
modulestr : String := HT.part_1 (value, ":");
begin
if modulestr = module then
declare
argumentstr : String := HT.part_2 (value, ":");
num_commas : Natural := HT.count_char (argumentstr, LAT.Comma);
begin
if num_commas = 0 then
found := (argument = argumentstr);
else
for x in 1 .. num_commas + 1 loop
if argument = HT.specific_field (argumentstr, x, ",") then
found := True;
exit;
end if;
end loop;
end if;
end;
end if;
end;
end if;
end scan;
begin
specs.uses.Iterate (scan'Access);
return found;
end argument_present;
--------------------------------------------------------------------------------------------
-- no_arguments_present
--------------------------------------------------------------------------------------------
function no_arguments_present (specs : Portspecs; module : String) return Boolean
is
procedure scan (position : string_crate.Cursor);
found : Boolean := False;
procedure scan (position : string_crate.Cursor)
is
value_text : HT.Text renames string_crate.Element (position);
value : String := HT.USS (value_text);
begin
if not found and then HT.count_char (value, LAT.Colon) = 1 then
declare
modulestr : String := HT.part_1 (value, ":");
begin
if modulestr = module then
found := True;
end if;
end;
end if;
end scan;
begin
specs.uses.Iterate (scan'Access);
return not found;
end no_arguments_present;
--------------------------------------------------------------------------------------------
-- argument_present
--------------------------------------------------------------------------------------------
procedure shift_extra_patches
(specs : Portspecs;
extract_dir : String)
is
num_extra_patch : Natural := specs.get_list_length (sp_extra_patches);
patchdir : constant String := extract_dir & "/patches";
begin
if num_extra_patch > 0 then
if not DIR.Exists (patchdir) then
DIR.Create_Directory (patchdir);
end if;
end if;
for item in 1 .. num_extra_patch loop
declare
patch : String := specs.get_list_item (sp_extra_patches, item);
xp_loc : String := extract_dir & "/files/" & patch;
begin
if DIR.Exists (xp_loc) then
DIR.Rename (Old_Name => xp_loc,
New_Name => patchdir & "/patch-zzz-" & patch);
end if;
end;
end loop;
end shift_extra_patches;
--------------------------------------------------------------------------------------------
-- add_build_depends
--------------------------------------------------------------------------------------------
procedure add_build_depends (specs : in out Portspecs; dependency : String)
is
dependency_text : HT.Text := HT.SUS (dependency);
begin
if not specs.build_deps.Contains (dependency_text) then
specs.build_deps.Append (dependency_text);
end if;
end add_build_depends;
--------------------------------------------------------------------------------------------
-- add_buildrun_depends
--------------------------------------------------------------------------------------------
procedure add_buildrun_depends (specs : in out Portspecs; dependency : String)
is
dependency_text : HT.Text := HT.SUS (dependency);
begin
if not specs.buildrun_deps.Contains (dependency_text) then
specs.buildrun_deps.Append (dependency_text);
end if;
end add_buildrun_depends;
--------------------------------------------------------------------------------------------
-- add_run_depends
--------------------------------------------------------------------------------------------
procedure add_run_depends (specs : in out Portspecs; dependency : String)
is
dependency_text : HT.Text := HT.SUS (dependency);
begin
if not specs.run_deps.Contains (dependency_text) then
specs.run_deps.Append (dependency_text);
end if;
end add_run_depends;
--------------------------------------------------------------------------------------------
-- add_exrun_depends
--------------------------------------------------------------------------------------------
procedure add_exrun_depends (specs : in out Portspecs; dependency, subpackage : String)
is
procedure grow (Key : HT.Text; Element : in out group_list);
dependency_text : HT.Text := HT.SUS (dependency);
group : HT.Text := HT.SUS (subpackage);
procedure grow (Key : HT.Text; Element : in out group_list) is
begin
Element.list.Append (dependency_text);
end grow;
begin
if not specs.extra_rundeps.Contains (group) then
specs.establish_group (sp_exrun, subpackage);
end if;
if not specs.extra_rundeps.Element (group).list.Contains (dependency_text) then
specs.extra_rundeps.Update_Element (Position => specs.extra_rundeps.Find (group),
Process => grow'Access);
end if;
end add_exrun_depends;
--------------------------------------------------------------------------------------------
-- convert_exrun_versions
--------------------------------------------------------------------------------------------
procedure convert_exrun_versions (specs : in out Portspecs)
is
procedure convert1 (position1 : list_crate.Cursor);
procedure convert2 (Key : HT.Text; Element : in out group_list);
procedure convert3 (Element : in out HT.Text);
procedure convert3 (Element : in out HT.Text)
is
exrundep : String := HT.USS (Element);
begin
if exrundep = "ssl" then
declare
setting : String := HT.USS (Parameters.configuration.def_ssl);
begin
if setting = ports_default then
Element := HT.SUS ("libressl:single:standard");
else
Element := HT.SUS (setting & ":single:standard");
end if;
end;
elsif exrundep = "python" then
if specs.buildrun_deps.Contains (HT.SUS (PYTHON27)) then
Element := HT.SUS (PYTHON27);
elsif specs.buildrun_deps.Contains (HT.SUS (PYTHON39)) then
Element := HT.SUS (PYTHON39);
else
Element := HT.SUS (PYTHON38);
end if;
elsif exrundep = "tcl" then
if specs.buildrun_deps.Contains (HT.SUS (TCL85)) then
Element := HT.SUS (TCL85);
else
Element := HT.SUS (TCL86);
end if;
elsif exrundep = "perl" then
declare
setting : String := HT.USS (Parameters.configuration.def_perl);
suffix : String := ":primary:standard";
begin
if setting = ports_default then
Element := HT.SUS ("perl-" & default_perl & suffix);
else
Element := HT.SUS ("perl-" & setting & suffix);
end if;
end;
elsif exrundep = "mysql" then
-- only mysql:client is supported by EXRUN
Element := HT.SUS (determine_mysql_package (False));
elsif exrundep = "pgsql" then
-- only pgsql:client is supported by EXRUN
Element := HT.SUS (determine_pgsql_namebase & ":client:standard");
end if;
end convert3;
procedure convert2 (Key : HT.Text; Element : in out group_list)
is
txt_ssl : HT.Text := HT.SUS ("ssl");
txt_python : HT.Text := HT.SUS ("python");
txt_tcl : HT.Text := HT.SUS ("tcl");
txt_perl : HT.Text := HT.SUS ("perl");
txt_mysql : HT.Text := HT.SUS ("mysql");
txt_pgsql : HT.Text := HT.SUS ("pgsql");
begin
if Element.list.Contains (txt_ssl) then
Element.list.Update_Element (Position => Element.list.Find (txt_ssl),
Process => convert3'Access);
end if;
if Element.list.Contains (txt_python) then
Element.list.Update_Element (Position => Element.list.Find (txt_python),
Process => convert3'Access);
end if;
if Element.list.Contains (txt_tcl) then
Element.list.Update_Element (Position => Element.list.Find (txt_tcl),
Process => convert3'Access);
end if;
if Element.list.Contains (txt_perl) then
Element.list.Update_Element (Position => Element.list.Find (txt_perl),
Process => convert3'Access);
end if;
if Element.list.Contains (txt_mysql) then
Element.list.Update_Element (Position => Element.list.Find (txt_mysql),
Process => convert3'Access);
end if;
if Element.list.Contains (txt_pgsql) then
Element.list.Update_Element (Position => Element.list.Find (txt_pgsql),
Process => convert3'Access);
end if;
end convert2;
procedure convert1 (position1 : list_crate.Cursor) is
begin
specs.extra_rundeps.Update_Element (Position => position1,
Process => convert2'Access);
end convert1;
begin
specs.extra_rundeps.Iterate (convert1'Access);
end convert_exrun_versions;
--------------------------------------------------------------------------------------------
-- apply_extraction_deps
--------------------------------------------------------------------------------------------
procedure apply_extraction_deps (specs : in out Portspecs) is
begin
-- unzip is already in base
if not specs.extract_7z.Is_Empty then
add_build_depends (specs, "p7zip:primary:standard");
end if;
-- TODO: placeholder for LHA
end apply_extraction_deps;
--------------------------------------------------------------------------------------------
-- transform_defaults
--------------------------------------------------------------------------------------------
function transform_defaults (dep, pyx, plx, lux, rbx : String) return String
is
function name_subpackage return String;
trailer : constant String := HT.specific_field (dep, 3, ":");
function name_subpackage return String is
begin
return HT.specific_field (dep, 1, ":") & ":" & HT.specific_field (dep, 2, ":") & ":";
end name_subpackage;
begin
if trailer = "python_default" then
declare
setting : String := HT.USS (Parameters.configuration.def_python3);
begin
if setting = ports_default or else setting = default_python3 then
return name_subpackage & "py38";
else
return name_subpackage & "py39";
end if;
end;
elsif trailer = "perl_default" then
declare
setting : String := HT.USS (Parameters.configuration.def_perl);
begin
if setting = ports_default or else setting = default_perl then
return name_subpackage & "532";
else
return name_subpackage & "534";
end if;
end;
elsif trailer = "lua_default" then
declare
setting : String := HT.USS (Parameters.configuration.def_lua);
begin
if setting = "5.2" then
return name_subpackage & "lua52";
elsif setting = "5.4" then
return name_subpackage & "lua54";
else
-- ports_default or default_lua ("5.3")
return name_subpackage & "lua53";
end if;
end;
elsif trailer = "ruby_default" then
declare
setting : String := HT.USS (Parameters.configuration.def_ruby);
begin
if setting = "2.6" then
return name_subpackage & "v26";
elsif setting = "3.0" then
return name_subpackage & "v30";
else
-- ports_default or default_python ("2.7")
return name_subpackage & "v27";
end if;
end;
elsif trailer = "python_used" then
return name_subpackage & pyx;
elsif trailer = "perl_used" then
return name_subpackage & plx;
elsif trailer = "lua_used" then
return name_subpackage & lux;
elsif trailer = "ruby_used" then
return name_subpackage & rbx;
else
return dep;
end if;
end transform_defaults;
--------------------------------------------------------------------------------------------
-- apply_default_version_transformations
--------------------------------------------------------------------------------------------
procedure apply_default_version_transformations (specs : in out Portspecs)
is
procedure check_build (position : string_crate.Cursor);
procedure check_buildrun (position : string_crate.Cursor);
procedure check_run (position : string_crate.Cursor);
procedure alter (Element : in out HT.Text);
transformed_dep : HT.Text;
pyx : constant String := HT.USS (specs.used_python);
plx : constant String := HT.USS (specs.used_perl);
lux : constant String := HT.USS (specs.used_lua);
rbx : constant String := HT.USS (specs.used_ruby);
procedure alter (Element : in out HT.Text) is
begin
Element := transformed_dep;
end alter;
procedure check_build (position : string_crate.Cursor)
is
dep : String := HT.USS (string_crate.Element (position));
xdep : String := transform_defaults (dep, pyx, plx, lux, rbx);
begin
if xdep /= dep then
transformed_dep := HT.SUS (xdep);
specs.build_deps.Update_Element (position, alter'Access);
end if;
end check_build;
procedure check_buildrun (position : string_crate.Cursor)
is
dep : String := HT.USS (string_crate.Element (position));
xdep : String := transform_defaults (dep, pyx, plx, lux, rbx);
begin
if xdep /= dep then
transformed_dep := HT.SUS (xdep);
specs.buildrun_deps.Update_Element (position, alter'Access);
end if;
end check_buildrun;
procedure check_run (position : string_crate.Cursor)
is
dep : String := HT.USS (string_crate.Element (position));
xdep : String := transform_defaults (dep, pyx, plx, lux, rbx);
begin
if xdep /= dep then
transformed_dep := HT.SUS (xdep);
specs.run_deps.Update_Element (position, alter'Access);
end if;
end check_run;
begin
specs.build_deps.Iterate (check_build'Access);
specs.buildrun_deps.Iterate (check_buildrun'Access);
specs.run_deps.Iterate (check_run'Access);
end apply_default_version_transformations;
--------------------------------------------------------------------------------------------
-- apply_gnome_components_dependencies
--------------------------------------------------------------------------------------------
procedure apply_gnome_components_dependencies (specs : in out Portspecs)
is
-- May require several iterations
-- First pass: set top-level requirements
-- repeat subsequent passes on "components" until no changes made
-- Use "component" array to define gnome component imports
procedure initial_setup (position : string_crate. Cursor);
procedure implicate (comp : gnome_type);
procedure import (comp : gnome_type);
procedure implies (comp : gnome_type);
defpy : constant String := "py" & HT.replace_char (default_python3, '.', "");
ss : constant String := ":single:standard";
ps : constant String := ":primary:standard";
uses_py : HT.Text := HT.SUS ("python");
pybuild : HT.Text := HT.SUS ("python:build");
component : array (gnome_type) of Boolean := (others => False);
new_data : Boolean;
procedure implies (comp : gnome_type) is
begin
if not component (comp) then
component (comp) := True;
new_data := True;
end if;
end implies;
procedure initial_setup (position : string_crate. Cursor)
is
component_text : HT.Text renames string_crate.Element (position);
comp : gnome_type := determine_gnome_component (HT.USS (component_text));
begin
component (comp) := True;
end initial_setup;
procedure implicate (comp : gnome_type) is
begin
case comp is
when atk =>
implies (glib);
when dconf =>
implies (glib);
when gdkpixbuf =>
implies (glib);
when glibmm =>
implies (glib);
when gtk2 =>
implies (atk);
implies (pango);
when gtk3 =>
implies (atk);
implies (pango);
when gtkmm30 =>
implies (gtk3);
when gtkmm40 =>
implies (gtk4);
when gtksourceview3 =>
implies (gtk3);
implies (libxml2);
when introspection =>
implies (glib);
when libglade =>
implies (libxml2);
implies (gtk2);
when libgsf =>
implies (glib);
implies (libxml2);
when libidl =>
implies (glib);
when librsvg =>
implies (libgsf);
implies (gdkpixbuf);
implies (pango);
when libxslt =>
implies (libxml2);
when orbit2 =>
implies (libidl);
when pygobject =>
implies (glib);
when vte =>
implies (gtk3);
when others => null;
end case;
end implicate;
procedure import (comp : gnome_type) is
begin
case comp is
when invalid_component => null; -- should be impossible
when atk =>
add_buildrun_depends (specs, "atk" & ps);
when atkmm =>
add_buildrun_depends (specs, "atkmm" & ss);
when atkmm16 =>
add_buildrun_depends (specs, "atkmm16" & ss);
when cairo =>
add_buildrun_depends (specs, "cairo" & ss);
when cairomm =>
add_buildrun_depends (specs, "cairomm" & ss);
when cairomm10 =>
add_buildrun_depends (specs, "cairomm10" & ss);
when dconf =>
add_buildrun_depends (specs, "dconf" & ps);
when gconf =>
add_buildrun_depends (specs, "gconf" & ps);
when gdkpixbuf =>
add_buildrun_depends (specs, "gdk-pixbuf" & ps);
when glib =>
add_buildrun_depends (specs, GNOMELIB);
add_buildrun_depends (specs, "gettext:runtime:standard");
if not specs.uses.Contains (pybuild) then
specs.uses.Append (pybuild);
end if;
if not specs.uses_base.Contains (uses_py) then
specs.uses_base.Append (uses_py);
end if;
when glibmm =>
add_buildrun_depends (specs, "glibmm" & ss);
when glibmm24 =>
add_buildrun_depends (specs, "glibmm24" & ss);
when gtk2 =>
add_buildrun_depends (specs, "gtk2" & ps);
when gtk3 =>
add_buildrun_depends (specs, "gtk3" & ps);
when gtk4 =>
add_buildrun_depends (specs, "gtk4" & ps);
when gtkmm30 =>
add_buildrun_depends (specs, "gtkmm30" & ss);
when gtkmm40 =>
add_buildrun_depends (specs, "gtkmm40" & ss);
when gtksourceview3 =>
add_buildrun_depends (specs, "gtksourceview3" & ps);
when intltool =>
add_build_depends (specs, "intltool" & ss);
when introspection =>
add_build_depends (specs, "gobject-introspection" & ss);
specs.make_env.Append (HT.SUS ("GI_SCANNER_DISABLE_CACHE=1"));
specs.make_env.Append (HT.SUS ("XDG_CACHE_HOME=${WRKDIR}"));
when libcroco =>
add_buildrun_depends (specs, "libcroco" & ps);
when libglade =>
add_buildrun_depends (specs, "libglade" & ss);
when libgsf =>
add_buildrun_depends (specs, "libgsf" & ps);
when libidl =>
add_buildrun_depends (specs, "libIDL" & ss);
when librsvg =>
add_buildrun_depends (specs, "librsvg" & ps);
when libsigcxx2 =>
add_buildrun_depends (specs, "libsigcxx" & ps);
when libxmlxx2 =>
add_buildrun_depends (specs, "libxmlxx2" & ss);
when libxml2 =>
add_buildrun_depends (specs, "libxml2" & ss);
when libxslt =>
add_buildrun_depends (specs, "libxslt" & ss);
when orbit2 =>
add_buildrun_depends (specs, "ORBit2" & ps);
when pango =>
add_buildrun_depends (specs, "pango" & ps);
when pangomm =>
add_buildrun_depends (specs, "pangomm" & ss);
when pangomm14 =>
add_buildrun_depends (specs, "pangomm14" & ss);
when pygobject =>
add_buildrun_depends (specs, "python-PyGObject:single:" & defpy);
when vte =>
add_buildrun_depends (specs, "vte" & ps);
end case;
end import;
begin
specs.gnome_comps.Iterate (initial_setup'Access);
loop
new_data := False;
for x in gnome_type'Range loop
if component (x) then
implicate (x);
end if;
end loop;
exit when not new_data;
end loop;
for x in gnome_type'Range loop
if component (x) then
import (x);
end if;
end loop;
end apply_gnome_components_dependencies;
--------------------------------------------------------------------------------------------
-- apply_sdl_components_dependencies
--------------------------------------------------------------------------------------------
procedure apply_sdl_components_dependencies (specs : in out Portspecs)
is
procedure import (position : string_crate.Cursor);
ss : constant String := ":single:standard";
menv1 : HT.Text := HT.SUS ("SDL_CONFIG=""${LOCALBASE}/bin/sdl-config""");
menv2 : HT.Text := HT.SUS ("SDL_CONFIG=""${LOCALBASE}/bin/sdl2-config""");
procedure import (position : string_crate.Cursor)
is
component_text : HT.Text renames string_crate.Element (position);
comp : sdl_type := determine_sdl_component (HT.USS (component_text));
begin
case comp is
when invalid_component => null; -- should be impossible
when sdl1 => null;
when sdl2 => null;
when gfx1 => add_buildrun_depends (specs, "sdl1_gfx" & ss);
when gfx2 => add_buildrun_depends (specs, "sdl2_gfx" & ss);
when image1 => add_buildrun_depends (specs, "sdl1_image" & ss);
when image2 => add_buildrun_depends (specs, "sdl2_image" & ss);
when mixer1 => add_buildrun_depends (specs, "sdl1_mixer" & ss);
when mixer2 => add_buildrun_depends (specs, "sdl2_mixer" & ss);
when net1 => add_buildrun_depends (specs, "sdl1_net" & ss);
when net2 => add_buildrun_depends (specs, "sdl2_net" & ss);
when ttf1 => add_buildrun_depends (specs, "sdl1_ttf" & ss);
when ttf2 => add_buildrun_depends (specs, "sdl2_ttf" & ss);
end case;
case comp is
when sdl1 | gfx1 | image1 | mixer1 | net1 | ttf1 =>
add_buildrun_depends (specs, "sdl1:primary:standard");
specs.make_env.Append (menv1);
specs.config_env.Append (menv1);
when sdl2 | gfx2 | image2 | mixer2 | net2 | ttf2 =>
add_buildrun_depends (specs, "sdl2:single:standard");
specs.make_env.Append (menv2);
specs.config_env.Append (menv2);
when invalid_component => null;
end case;
end import;
begin
specs.sdl_comps.Iterate (import'Access);
end apply_sdl_components_dependencies;
--------------------------------------------------------------------------------------------
-- apply_xorg_components_dependencies
--------------------------------------------------------------------------------------------
procedure apply_xorg_components_dependencies (specs : in out Portspecs)
is
procedure import (position : string_crate.Cursor);
-- All xorg components have this format : xorg-{COMPONENT}:single:standard
-- All xorg components ending in "proto" are build-only depends
-- The rest are considered libraries (buildrun type)
-- All libraries depend on pkgconfig and xorg-macros
uses_xorg : Boolean := False;
ss : constant String := ":single:standard";
procedure import (position : string_crate.Cursor)
is
component_text : HT.Text renames string_crate.Element (position);
component : constant String := HT.USS (component_text);
dependency : constant String := "xorg-" & component & ss;
begin
if HT.trails (component, "proto") then
add_build_depends (specs, dependency);
else
add_buildrun_depends (specs, dependency);
end if;
uses_xorg := True;
end import;
begin
specs.xorg_comps.Iterate (import'Access);
if uses_xorg and then not HT.trails (specs.get_namebase, "proto") then
add_build_depends (specs, "xorg-macros" & ss);
add_build_depends (specs, "pkgconf" & ss);
end if;
end apply_xorg_components_dependencies;
--------------------------------------------------------------------------------------------
-- apply_php_extension_dependencies
--------------------------------------------------------------------------------------------
procedure apply_php_extension_dependencies (specs : in out Portspecs)
is
procedure import (position : string_crate.Cursor);
php_module : constant String := "php";
std_suffix : constant String := ":single:standard";
hit_build : Boolean := False;
hit_ext : Boolean := False;
-- This defver works until PHP 10 is released
defver : String (1 .. 2) := default_php (default_php'First) & default_php (default_php'Last);
flavor : String := "php" & defver;
procedure import (position : string_crate.Cursor)
is
extension_text : HT.Text renames string_crate.Element (position);
extension : constant String := HT.USS (extension_text);
dependency : constant String := flavor & "-" & extension & std_suffix;
begin
if hit_build or else hit_ext then
add_buildrun_depends (specs, dependency);
else
add_run_depends (specs, dependency);
end if;
end import;
begin
if not no_arguments_present (specs, php_module) then
if argument_present (specs, php_module, "80") then
flavor := "php80";
elsif argument_present (specs, php_module, "74") then
flavor := "php74";
elsif argument_present (specs, php_module, "73") then
flavor := "php73";
end if;
end if;
hit_build := argument_present (specs, php_module, BUILD);
hit_ext := argument_present (specs, php_module, "ext");
specs.php_extensions.Iterate (import'Access);
end apply_php_extension_dependencies;
--------------------------------------------------------------------------------------------
-- determine_mysql_package
--------------------------------------------------------------------------------------------
function determine_mysql_package (server : Boolean) return String
is
suffix : String := ":client:standard";
setting : constant String := HT.USS (Parameters.configuration.def_mysql_group);
begin
if server then
suffix := ":server:standard";
end if;
if setting = "oracle-5.7" then
return "mysql57" & suffix;
elsif setting = "mariadb-10.2" then
return "mariadb102" & suffix;
elsif setting = "mariadb-10.3" then
return "mariadb103" & suffix;
elsif setting = "mariadb-10.4" then
return "mariadb104" & suffix;
elsif setting = "mariadb-10.5" then
return "mariadb105" & suffix;
elsif setting = "mariadb-10.6" then
return "mariadb106" & suffix;
elsif setting = "percona-5.6" then
return "percona56" & suffix;
elsif setting = "percona-5.7" then
return "percona57" & suffix;
elsif setting = "percona-8.0" then
return "percona80" & suffix;
else
-- case: setting = ports_default
-- case: setting = default_mysql
-- case: setting = invalid value
return "mysql80" & suffix;
end if;
end determine_mysql_package;
--------------------------------------------------------------------------------------------
-- determine_pgsql_namebase
--------------------------------------------------------------------------------------------
function determine_pgsql_namebase return String
is
setting : constant String := HT.USS (Parameters.configuration.def_postgresql);
begin
if setting = "9.6" then
return "postgresql96";
elsif setting = "10" then
return "postgresql10";
elsif setting = "11" then
return "postgresql11";
elsif setting = "13" then
return "postgresql13";
else
-- case: setting = ports_default
-- case: setting = default_pgsql (12 right now)
-- case: setting = invalid value
return "postgresql12";
end if;
end determine_pgsql_namebase;
end Port_Specification.Transform;
|
with impact.d2.orbs.Shape,
impact.d2.Math,
interfaces.c.Pointers;
package impact.d2.orbs.Distance
--
--
--
is
use impact.d2.Math;
type b2Vec2_array is array (uint32 range <>) of aliased b2Vec2;
package b2Vec2_Pointers is new Interfaces.C.Pointers (uint32, b2Vec2,
b2Vec2_array,
b2Vec2'(0.0, 0.0));
subtype b2Vec2_view is b2Vec2_Pointers.Pointer;
-- A distance proxy is used by the GJK algorithm.
-- It encapsulates any shape.
--
type b2DistanceProxy is
record
m_vertices : b2Vec2;
m_count : int32 := 0;
m_radius : float32 := 0.0;
end record;
-- Initialize the proxy using the given shape. The shape
-- must remain in scope while the proxy is in use.
--
procedure set (Self : in out b2DistanceProxy; shape : impact.d2.orbs.Shape.view);
-- Get the supporting vertex index in the given direction.
--
function getSupport (Self : in b2DistanceProxy; d : b2Vec2) return int32;
-- Get the supporting vertex in the given direction.
--
function getSupportVertex (Self : in b2DistanceProxy; d : b2Vec2) return b2Vec2;
-- Get the vertex count.
--
function getVertexCount (Self : in b2DistanceProxy) return int32;
-- Get a vertex by index. Used by b2Distance.
--
function GetVertex (Self : in b2DistanceProxy; index : int32) return b2Vec2;
type cache_Indices is array (int32 range 1 .. 3) of uint8;
-- Used to warm start b2Distance.
-- Set count to zero on first call.
--
type b2SimplexCache is
record
metric : float32; -- length or area
count : uint16;
indexA : cache_Indices; -- vertices on shape A
indexB : cache_Indices; -- vertices on shape B
end record;
-- Input for b2Distance.
-- You have to option to use the shape radii
-- in the computation. Even
--
type b2DistanceInput is
record
proxyA : b2DistanceProxy;
proxyB : b2DistanceProxy;
transformA : b2Transform;
transformB : b2Transform;
useRadii : Boolean;
end record;
-- Output for b2Distance.
--
type b2DistanceOutput is
record
pointA : aliased b2Vec2; -- closest point on shapeA
pointB : aliased b2Vec2; -- closest point on shapeB
distance : float32;
iterations : int32; -- number of GJK iterations used
end record;
-- Compute the closest points between two shapes. Supports any combination of:
-- b2CircleShape, b2PolygonShape, b2EdgeShape. The simplex cache is input/output.
-- On the first call set b2SimplexCache.count to zero.
--
procedure b2Distance (output : access b2DistanceOutput;
cache : access b2SimplexCache;
input : in b2DistanceInput);
end impact.d2.orbs.Distance;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- G N A T . A R R A Y _ S P L I T --
-- --
-- B o d y --
-- --
-- Copyright (C) 2002-2020, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Ada.Unchecked_Deallocation;
package body GNAT.Array_Split is
procedure Free is
new Ada.Unchecked_Deallocation (Slices_Indexes, Slices_Access);
procedure Free is
new Ada.Unchecked_Deallocation (Separators_Indexes, Indexes_Access);
function Count
(Source : Element_Sequence;
Pattern : Element_Set) return Natural;
-- Returns the number of occurrences of Pattern elements in Source, 0 is
-- returned if no occurrence is found in Source.
------------
-- Adjust --
------------
overriding procedure Adjust (S : in out Slice_Set) is
begin
S.D.Ref_Counter := S.D.Ref_Counter + 1;
end Adjust;
------------
-- Create --
------------
procedure Create
(S : out Slice_Set;
From : Element_Sequence;
Separators : Element_Sequence;
Mode : Separator_Mode := Single)
is
begin
Create (S, From, To_Set (Separators), Mode);
end Create;
function Create
(From : Element_Sequence;
Separators : Element_Sequence;
Mode : Separator_Mode := Single) return Slice_Set is
begin
return Ret : Slice_Set do
Create (Ret, From, Separators, Mode);
end return;
end Create;
------------
-- Create --
------------
procedure Create
(S : out Slice_Set;
From : Element_Sequence;
Separators : Element_Set;
Mode : Separator_Mode := Single)
is
Result : Slice_Set;
begin
Result.D.Source := new Element_Sequence'(From);
Set (Result, Separators, Mode);
S := Result;
end Create;
function Create
(From : Element_Sequence;
Separators : Element_Set;
Mode : Separator_Mode := Single) return Slice_Set is
begin
return Ret : Slice_Set do
Create (Ret, From, Separators, Mode);
end return;
end Create;
-----------
-- Count --
-----------
function Count
(Source : Element_Sequence;
Pattern : Element_Set) return Natural
is
C : Natural := 0;
begin
for K in Source'Range loop
if Is_In (Source (K), Pattern) then
C := C + 1;
end if;
end loop;
return C;
end Count;
--------------
-- Finalize --
--------------
overriding procedure Finalize (S : in out Slice_Set) is
procedure Free is
new Ada.Unchecked_Deallocation (Element_Sequence, Element_Access);
procedure Free is
new Ada.Unchecked_Deallocation (Data, Data_Access);
D : Data_Access := S.D;
begin
-- Ensure call is idempotent
S.D := null;
if D /= null then
D.Ref_Counter := D.Ref_Counter - 1;
if D.Ref_Counter = 0 then
Free (D.Source);
Free (D.Indexes);
Free (D.Slices);
Free (D);
end if;
end if;
end Finalize;
----------------
-- Initialize --
----------------
overriding procedure Initialize (S : in out Slice_Set) is
begin
S.D := new Data'(1, null, 0, null, null);
end Initialize;
----------------
-- Separators --
----------------
function Separators
(S : Slice_Set;
Index : Slice_Number) return Slice_Separators
is
begin
if Index > S.D.N_Slice then
raise Index_Error;
elsif Index = 0
or else (Index = 1 and then S.D.N_Slice = 1)
then
-- Whole string, or no separator used
return (Before => Array_End,
After => Array_End);
elsif Index = 1 then
return (Before => Array_End,
After => S.D.Source (S.D.Slices (Index).Stop + 1));
elsif Index = S.D.N_Slice then
return (Before => S.D.Source (S.D.Slices (Index).Start - 1),
After => Array_End);
else
return (Before => S.D.Source (S.D.Slices (Index).Start - 1),
After => S.D.Source (S.D.Slices (Index).Stop + 1));
end if;
end Separators;
----------------
-- Separators --
----------------
function Separators (S : Slice_Set) return Separators_Indexes is
begin
return S.D.Indexes.all;
end Separators;
---------
-- Set --
---------
procedure Set
(S : in out Slice_Set;
Separators : Element_Sequence;
Mode : Separator_Mode := Single)
is
begin
Set (S, To_Set (Separators), Mode);
end Set;
---------
-- Set --
---------
procedure Set
(S : in out Slice_Set;
Separators : Element_Set;
Mode : Separator_Mode := Single)
is
procedure Copy_On_Write (S : in out Slice_Set);
-- Make a copy of S if shared with another variable
-------------------
-- Copy_On_Write --
-------------------
procedure Copy_On_Write (S : in out Slice_Set) is
begin
if S.D.Ref_Counter > 1 then
-- First let's remove our count from the current data
S.D.Ref_Counter := S.D.Ref_Counter - 1;
-- Then duplicate the data
S.D := new Data'(S.D.all);
S.D.Ref_Counter := 1;
if S.D.Source /= null then
S.D.Source := new Element_Sequence'(S.D.Source.all);
S.D.Indexes := null;
S.D.Slices := null;
end if;
else
-- If there is a single reference to this variable, free it now
-- as it will be redefined below.
Free (S.D.Indexes);
Free (S.D.Slices);
end if;
end Copy_On_Write;
Count_Sep : constant Natural := Count (S.D.Source.all, Separators);
J : Positive;
begin
Copy_On_Write (S);
-- Compute all separator's indexes
S.D.Indexes := new Separators_Indexes (1 .. Count_Sep);
J := S.D.Indexes'First;
for K in S.D.Source'Range loop
if Is_In (S.D.Source (K), Separators) then
S.D.Indexes (J) := K;
J := J + 1;
end if;
end loop;
-- Compute slice info for fast slice access
declare
S_Info : Slices_Indexes (1 .. Slice_Number (Count_Sep) + 1);
K : Natural := 1;
Start, Stop : Natural;
begin
S.D.N_Slice := 0;
Start := S.D.Source'First;
Stop := 0;
loop
if K > Count_Sep then
-- No more separators, last slice ends at end of source string
Stop := S.D.Source'Last;
else
Stop := S.D.Indexes (K) - 1;
end if;
-- Add slice to the table
S.D.N_Slice := S.D.N_Slice + 1;
S_Info (S.D.N_Slice) := (Start, Stop);
exit when K > Count_Sep;
case Mode is
when Single =>
-- In this mode just set start to character next to the
-- current separator, advance the separator index.
Start := S.D.Indexes (K) + 1;
K := K + 1;
when Multiple =>
-- In this mode skip separators following each other
loop
Start := S.D.Indexes (K) + 1;
K := K + 1;
exit when K > Count_Sep
or else S.D.Indexes (K) > S.D.Indexes (K - 1) + 1;
end loop;
end case;
end loop;
S.D.Slices := new Slices_Indexes'(S_Info (1 .. S.D.N_Slice));
end;
end Set;
-----------
-- Slice --
-----------
function Slice
(S : Slice_Set;
Index : Slice_Number) return Element_Sequence
is
begin
if Index = 0 then
return S.D.Source.all;
elsif Index > S.D.N_Slice then
raise Index_Error;
else
return
S.D.Source (S.D.Slices (Index).Start .. S.D.Slices (Index).Stop);
end if;
end Slice;
-----------------
-- Slice_Count --
-----------------
function Slice_Count (S : Slice_Set) return Slice_Number is
begin
return S.D.N_Slice;
end Slice_Count;
end GNAT.Array_Split;
|
with Ada.Text_IO;
use Ada.Text_IO;
package body VisitFailurePackage is
procedure RaiseVisitFailure(msg: String) is
begin
put_line(msg);
raise VisitFailure;
end RaiseVisitFailure;
end VisitFailurePackage;
|
------------------------------------------------------------------------------
-- --
-- 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.Standard_Profile_L3.System_Models.Collections is
pragma Preelaborate;
package Standard_Profile_L3_System_Model_Collections is
new AMF.Generic_Collections
(Standard_Profile_L3_System_Model,
Standard_Profile_L3_System_Model_Access);
type Set_Of_Standard_Profile_L3_System_Model is
new Standard_Profile_L3_System_Model_Collections.Set with null record;
Empty_Set_Of_Standard_Profile_L3_System_Model : constant Set_Of_Standard_Profile_L3_System_Model;
type Ordered_Set_Of_Standard_Profile_L3_System_Model is
new Standard_Profile_L3_System_Model_Collections.Ordered_Set with null record;
Empty_Ordered_Set_Of_Standard_Profile_L3_System_Model : constant Ordered_Set_Of_Standard_Profile_L3_System_Model;
type Bag_Of_Standard_Profile_L3_System_Model is
new Standard_Profile_L3_System_Model_Collections.Bag with null record;
Empty_Bag_Of_Standard_Profile_L3_System_Model : constant Bag_Of_Standard_Profile_L3_System_Model;
type Sequence_Of_Standard_Profile_L3_System_Model is
new Standard_Profile_L3_System_Model_Collections.Sequence with null record;
Empty_Sequence_Of_Standard_Profile_L3_System_Model : constant Sequence_Of_Standard_Profile_L3_System_Model;
private
Empty_Set_Of_Standard_Profile_L3_System_Model : constant Set_Of_Standard_Profile_L3_System_Model
:= (Standard_Profile_L3_System_Model_Collections.Set with null record);
Empty_Ordered_Set_Of_Standard_Profile_L3_System_Model : constant Ordered_Set_Of_Standard_Profile_L3_System_Model
:= (Standard_Profile_L3_System_Model_Collections.Ordered_Set with null record);
Empty_Bag_Of_Standard_Profile_L3_System_Model : constant Bag_Of_Standard_Profile_L3_System_Model
:= (Standard_Profile_L3_System_Model_Collections.Bag with null record);
Empty_Sequence_Of_Standard_Profile_L3_System_Model : constant Sequence_Of_Standard_Profile_L3_System_Model
:= (Standard_Profile_L3_System_Model_Collections.Sequence with null record);
end AMF.Standard_Profile_L3.System_Models.Collections;
|
with ada.text_io, ada.integer_text_io;
use ada.text_io, ada.integer_text_io;
procedure sacar_ficha is
begin
put("Ficha sale");
end sacar_ficha; |
--
-- Copyright 2021 (C) Holger Rodriguez
--
-- SPDX-License-Identifier: BSD-3-Clause
--
package body Evaluate.LEDs is
--------------------------------------------------------------------------
-- Check functions for the input received
-- Those functions set the global variables to the received value
--------------------------------------------------------------------------
function Check_Block (Block_Char : Character) return Boolean;
function Check_Color (Color_Char : Character) return Boolean;
function Check_Operation (Operation_Char : Character) return Boolean;
--------------------------------------------------------------------------
-- Those variables hold the input received and are set by the
-- different Check_ functions
--------------------------------------------------------------------------
Block : Blocks; pragma Warnings (Off, Block);
Color : Colors;
Operation : Operations;
--------------------------------------------------------------------------
-- see: .ads file
--------------------------------------------------------------------------
function Check_Input (Instruction : LED_Instruction)
return Execute.LED_Errors is
begin
if not Check_Block (Instruction (1)) then
return Execute.Wrong_Block;
end if;
if not Check_Color (Instruction (2)) then
return Execute.Wrong_Color;
end if;
if not Check_Operation (Instruction (3)) then
return Execute.Wrong_Operation;
end if;
return Execute.OK;
end Check_Input;
--------------------------------------------------------------------------
-- see: .ads file
--------------------------------------------------------------------------
function Evaluate (Instruction : LED_Instruction)
return Execute.LED_Commands is
subtype Command is Execute.LED_Commands;
type Command_Map is array (Blocks, Colors, Operations) of Command;
Command_Mapper : constant Command_Map
:= (Zero => (
Red => (
Off => Execute.Red_Off,
On => Execute.Red_On,
Toggle => Execute.Red_Toggle),
Amber => (
Off => Execute.Amber_Off,
On => Execute.Amber_On,
Toggle => Execute.Amber_Toggle),
Green => (
Off => Execute.Green_Off,
On => Execute.Green_On,
Toggle => Execute.Green_Toggle),
White => (
Off => Execute.White_Off,
On => Execute.White_On,
Toggle => Execute.White_Toggle),
Blue => (
Off => Execute.Blue_Off,
On => Execute.Blue_On,
Toggle => Execute.Blue_Toggle)
)
);
begin
return Command_Mapper (Block, Color, Operation);
end Evaluate;
--------------------------------------------------------------------------
-- Checks the character for the correct block request
--------------------------------------------------------------------------
function Check_Block (Block_Char : Character) return Boolean is
type B_2_C_Map is array (Blocks) of Character;
B_2_C : constant B_2_C_Map := (Zero => '0');
begin
for B in B_2_C_Map'First .. B_2_C_Map'Last loop
if Block_Char = B_2_C (B) then
Block := B;
return True;
end if;
end loop;
return False;
end Check_Block;
--------------------------------------------------------------------------
-- Checks the character for the correct color request
--------------------------------------------------------------------------
function Check_Color (Color_Char : Character) return Boolean is
type C_2_C_Map is array (Colors) of Character;
C_2_C : constant C_2_C_Map := (Red => 'R',
Amber => 'A',
Green => 'G',
White => 'W',
Blue => 'B'
);
begin
for C in C_2_C_Map'First .. C_2_C_Map'Last loop
if Color_Char = C_2_C (C) then
Color := C;
return True;
end if;
end loop;
return False;
end Check_Color;
--------------------------------------------------------------------------
-- Checks the character for the correct operation request
--------------------------------------------------------------------------
function Check_Operation (Operation_Char : Character) return Boolean is
type O_2_C_Map is array (Operations) of Character;
O_2_C : constant O_2_C_Map
:= (Off => '0',
On => '1',
Toggle => '2');
begin
for O in
O_2_C_Map'First .. O_2_C_Map'Last loop
if Operation_Char = O_2_C (O) then
Operation := O;
return True;
end if;
end loop;
return False;
end Check_Operation;
end Evaluate.LEDs;
|
-------------------------------------------------------------------------------
-- --
-- Coffee Clock --
-- --
-- Copyright (C) 2016-2017 Fabien Chouteau --
-- --
-- Coffee Clock 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. --
-- --
-- Coffee Clock 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 We Noise Maker. If not, see <http://www.gnu.org/licenses/>. --
-- --
-------------------------------------------------------------------------------
with Giza.Widget.Button;
use Giza.Widget;
with Giza.Events; use Giza.Events;
with Giza.Types; use Giza.Types;
with Dialog_Window;
with Date_Widget;
with HAL.Real_Time_Clock;
package Date_Select_Window is
subtype Parent is Dialog_Window.Instance;
type Instance is new Parent (Panel_Size => 90)
with private;
subtype Class is Instance'Class;
type Ref is access all Class;
overriding
procedure On_Init (This : in out Instance);
overriding
procedure On_Displayed (This : in out Instance);
overriding
procedure On_Hidden (This : in out Instance);
overriding
function On_Position_Event
(This : in out Instance;
Evt : Position_Event_Ref;
Pos : Point_T)
return Boolean;
procedure Set_Date (This : in out Instance;
Date : HAL.Real_Time_Clock.RTC_Date);
function Get_Date (This : Instance) return HAL.Real_Time_Clock.RTC_Date;
private
type Instance is new Parent (Panel_Size => 90)
with record
Up_M, Down_M, Up_D, Down_D, Up_Y, Down_Y : aliased Button.Instance;
Date : aliased Date_Widget.Instance (Show_Day_Of_Week => False);
end record;
end Date_Select_Window;
|
-----------------------------------------------------------------------
-- openapi-streams-forms -- x-www-form-urlencoded streams
-- Copyright (C) 2018, 2022 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.Streams;
with Util.Streams.Texts;
with Util.Serialize.IO;
package OpenAPI.Streams.Forms is
type Output_Stream is limited new Util.Serialize.IO.Output_Stream with private;
procedure Initialize (Stream : in out Output_Stream;
Buffer : in Util.Streams.Texts.Print_Stream_Access);
-- Flush the buffer (if any) to the sink.
overriding
procedure Flush (Stream : in out Output_Stream);
-- Close the sink.
overriding
procedure Close (Stream : in out Output_Stream);
-- Write the buffer array to the output stream.
overriding
procedure Write (Stream : in out Output_Stream;
Buffer : in Ada.Streams.Stream_Element_Array);
-- Start a document.
overriding
procedure Start_Document (Stream : in out Output_Stream) is null;
-- Finish a document.
overriding
procedure End_Document (Stream : in out Output_Stream) is null;
overriding
procedure Start_Entity (Stream : in out Output_Stream;
Name : in String) is null;
procedure End_Entity (Stream : in out Output_Stream;
Name : in String) is null;
-- Write the attribute name/value pair.
overriding
procedure Write_Attribute (Stream : in out Output_Stream;
Name : in String;
Value : in String);
overriding
procedure Write_Wide_Attribute (Stream : in out Output_Stream;
Name : in String;
Value : in Wide_Wide_String);
overriding
procedure Write_Attribute (Stream : in out Output_Stream;
Name : in String;
Value : in Integer);
overriding
procedure Write_Attribute (Stream : in out Output_Stream;
Name : in String;
Value : in Boolean);
overriding
procedure Write_Attribute (Stream : in out Output_Stream;
Name : in String;
Value : in Util.Beans.Objects.Object);
-- Write the attribute with a null value.
overriding
procedure Write_Null_Attribute (Stream : in out Output_Stream;
Name : in String);
-- Write the entity value.
overriding
procedure Write_Entity (Stream : in out Output_Stream;
Name : in String;
Value : in String);
overriding
procedure Write_Wide_Entity (Stream : in out Output_Stream;
Name : in String;
Value : in Wide_Wide_String);
overriding
procedure Write_Entity (Stream : in out Output_Stream;
Name : in String;
Value : in Boolean);
overriding
procedure Write_Entity (Stream : in out Output_Stream;
Name : in String;
Value : in Integer);
overriding
procedure Write_Entity (Stream : in out Output_Stream;
Name : in String;
Value : in Ada.Calendar.Time);
overriding
procedure Write_Long_Entity (Stream : in out Output_Stream;
Name : in String;
Value : in Long_Long_Integer);
overriding
procedure Write_Enum_Entity (Stream : in out Output_Stream;
Name : in String;
Value : in String);
overriding
procedure Write_Entity (Stream : in out Output_Stream;
Name : in String;
Value : in Util.Beans.Objects.Object);
-- Write an entity with a null value.
overriding
procedure Write_Null_Entity (Stream : in out Output_Stream;
Name : in String);
private
type Output_Stream is limited new Util.Serialize.IO.Output_Stream with record
Stream : Util.Streams.Texts.Print_Stream_Access;
Has_Param : Boolean := False;
end record;
end OpenAPI.Streams.Forms;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- A D A B K E N D --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2012, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. 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. --
-- --
------------------------------------------------------------------------------
-- Generic package implementing the common parts of back_end.adb for back ends
-- written in Ada, thereby reducing code duplication.
with Types;
generic
Product_Name : String;
Copyright_Years : String;
with procedure Driver (Root : Types.Node_Id);
-- Main driver procedure for back end
with function Is_Back_End_Switch (Switch : String) return Boolean;
-- Back-end specific function to determine validity of switches
package Adabkend is
procedure Call_Back_End;
-- Call back end, i.e. make call to the Driver passing the root
-- node for this compilation unit.
procedure Scan_Compiler_Arguments;
-- Acquires command-line parameters passed to the compiler and processes
-- them. Calls Scan_Front_End_Switches for any front-end switches
-- encountered. See spec of Back_End for more details.
end Adabkend;
|
-- C99004A.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 'TERMINATED AND 'CALLABLE CAN BE A
-- FUNCTION CALL RETURNING AN OBJECT HAVING A TASK TYPE.
-- NOTE: SEE TEST C38202A FOR CHECKS INVOLVING PREFIXES WHICH ARE
-- ACCESS TYPES DENOTING TASK TYPES OR WHICH ARE FUNCTIONS
-- RETURNING ACCESS TYPES DENOTING TASK TYPES.
-- HISTORY:
-- RJW 09/16/86 CREATED ORIGINAL TEST.
-- DHH 10/15/87 CORRECTED HEADER COMMENTS.
with Impdef;
WITH REPORT; USE REPORT;
PROCEDURE C99004A IS
TYPE ENUM IS (A, B, C, D);
EARRAY : ARRAY (ENUM) OF STRING (1 .. 17) :=
(A => "BEFORE ACTIVATION",
B => "DURING ACTIVATION",
C => "DURING EXECUTION ",
D => "AFTER TERMINATION" );
FUNCTION CHECK (S : STRING; CALL, B1, TERM, B2 : BOOLEAN;
E : ENUM) RETURN BOOLEAN IS
BEGIN
IF CALL /= B1 THEN
FAILED ( "INCORRECT VALUE FOR " & S & "'CALLABLE " &
EARRAY (E) & " OF TASK" );
END IF;
IF TERM /= B2 THEN
FAILED ( "INCORRECT VALUE FOR " & S & "'TERMINATED " &
EARRAY (E) & " OF TASK" );
END IF;
RETURN IDENT_BOOL (TRUE);
END CHECK;
BEGIN
TEST ( "C99004A", "CHECK THAT THE PREFIX OF 'TERMINATED AND " &
"'CALLABLE CAN BE A FUNCTION CALL RETURNING " &
"AN OBJECT HAVING A TASK TYPE" );
DECLARE
TASK TYPE TT IS
ENTRY E;
END TT;
PACKAGE PKG1 IS
T1 : TT;
END PKG1;
FUNCTION F RETURN TT IS
BEGIN
RETURN PKG1.T1;
END F;
PACKAGE PKG2 IS
A1 : BOOLEAN := CHECK ("F", F'CALLABLE, TRUE,
F'TERMINATED, FALSE, A);
END PKG2;
TASK MAIN_TASK IS
ENTRY E (INTEGER RANGE 1 .. 2);
END MAIN_TASK;
TASK BODY TT IS
B1 : BOOLEAN := CHECK ("F", F'CALLABLE, TRUE,
F'TERMINATED, FALSE, B);
C1 : BOOLEAN;
BEGIN
C1 := CHECK ("F", F'CALLABLE, TRUE,
F'TERMINATED, FALSE, C);
MAIN_TASK.E (1);
MAIN_TASK.E (2);
END TT;
PACKAGE BODY PKG1 IS
BEGIN
NULL;
END;
TASK BODY MAIN_TASK IS
D1 : BOOLEAN;
BEGIN
ACCEPT E (1);
ABORT PKG1.T1;
DELAY 5.0 * Impdef.One_Long_Second;
D1 := CHECK ("F", F'CALLABLE, FALSE,
F'TERMINATED, TRUE, D);
END MAIN_TASK;
BEGIN
NULL;
END;
DECLARE
TASK TYPE TT IS
ENTRY E;
END TT;
T2 : TT;
A2 : BOOLEAN := CHECK ("T2", T2'CALLABLE, TRUE,
T2'TERMINATED, FALSE, A);
TASK MAIN_TASK IS
ENTRY E (INTEGER RANGE 1 .. 2);
END MAIN_TASK;
TASK BODY TT IS
B2 : BOOLEAN := CHECK ("T2", T2'CALLABLE, TRUE,
T2'TERMINATED, FALSE, B);
C2 : BOOLEAN;
BEGIN
C2 := CHECK ("T2", T2'CALLABLE, TRUE,
T2'TERMINATED, FALSE, C);
MAIN_TASK.E (1);
MAIN_TASK.E (2);
END TT;
TASK BODY MAIN_TASK IS
D2 : BOOLEAN;
BEGIN
ACCEPT E (1);
ABORT T2;
DELAY 5.0 * Impdef.One_Long_Second;
D2 := CHECK ("T2", T2'CALLABLE, FALSE,
T2'TERMINATED, TRUE, D);
END MAIN_TASK;
BEGIN
NULL;
END;
RESULT;
END C99004A;
|
----------------------------------------------------------------
-- ZLib for Ada thick binding. --
-- --
-- Copyright (C) 2002-2003 Dmitriy Anisimkov --
-- --
-- Open source license information is in the zlib.ads file. --
----------------------------------------------------------------
-- Id: zlib-streams.adb,v 1.10 2004/05/31 10:53:40 vagul Exp
with Ada.Unchecked_Deallocation;
package body ZLib.Streams is
-----------
-- Close --
-----------
procedure Close (Stream : in out Stream_Type) is
procedure Free is new Ada.Unchecked_Deallocation
(Stream_Element_Array, Buffer_Access);
begin
if Stream.Mode = Out_Stream or Stream.Mode = Duplex then
-- We should flush the data written by the writer.
Flush (Stream, Finish);
Close (Stream.Writer);
end if;
if Stream.Mode = In_Stream or Stream.Mode = Duplex then
Close (Stream.Reader);
Free (Stream.Buffer);
end if;
end Close;
------------
-- Create --
------------
procedure Create
(Stream : out Stream_Type;
Mode : in Stream_Mode;
Back : in Stream_Access;
Back_Compressed : in Boolean;
Level : in Compression_Level := Default_Compression;
Strategy : in Strategy_Type := Default_Strategy;
Header : in Header_Type := Default;
Read_Buffer_Size : in Ada.Streams.Stream_Element_Offset
:= Default_Buffer_Size;
Write_Buffer_Size : in Ada.Streams.Stream_Element_Offset
:= Default_Buffer_Size)
is
subtype Buffer_Subtype is Stream_Element_Array (1 .. Read_Buffer_Size);
procedure Init_Filter
(Filter : in out Filter_Type;
Compress : in Boolean);
-----------------
-- Init_Filter --
-----------------
procedure Init_Filter
(Filter : in out Filter_Type;
Compress : in Boolean) is
begin
if Compress then
Deflate_Init
(Filter, Level, Strategy, Header => Header);
else
Inflate_Init (Filter, Header => Header);
end if;
end Init_Filter;
begin
Stream.Back := Back;
Stream.Mode := Mode;
if Mode = Out_Stream or Mode = Duplex then
Init_Filter (Stream.Writer, Back_Compressed);
Stream.Buffer_Size := Write_Buffer_Size;
else
Stream.Buffer_Size := 0;
end if;
if Mode = In_Stream or Mode = Duplex then
Init_Filter (Stream.Reader, not Back_Compressed);
Stream.Buffer := new Buffer_Subtype;
Stream.Rest_First := Stream.Buffer'Last + 1;
Stream.Rest_Last := Stream.Buffer'Last;
end if;
end Create;
-----------
-- Flush --
-----------
procedure Flush
(Stream : in out Stream_Type;
Mode : in Flush_Mode := Sync_Flush)
is
Buffer : Stream_Element_Array (1 .. Stream.Buffer_Size);
Last : Stream_Element_Offset;
begin
loop
Flush (Stream.Writer, Buffer, Last, Mode);
Ada.Streams.Write (Stream.Back.all, Buffer (1 .. Last));
exit when Last < Buffer'Last;
end loop;
end Flush;
-------------
-- Is_Open --
-------------
function Is_Open (Stream : Stream_Type) return Boolean is
begin
return Is_Open (Stream.Reader) or else Is_Open (Stream.Writer);
end Is_Open;
----------
-- Read --
----------
procedure Read
(Stream : in out Stream_Type;
Item : out Stream_Element_Array;
Last : out Stream_Element_Offset)
is
procedure Read
(Item : out Stream_Element_Array;
Last : out Stream_Element_Offset);
----------
-- Read --
----------
procedure Read
(Item : out Stream_Element_Array;
Last : out Stream_Element_Offset) is
begin
Ada.Streams.Read (Stream.Back.all, Item, Last);
end Read;
procedure Read is new ZLib.Read
(Read => Read,
Buffer => Stream.Buffer.all,
Rest_First => Stream.Rest_First,
Rest_Last => Stream.Rest_Last);
begin
Read (Stream.Reader, Item, Last);
end Read;
-------------------
-- Read_Total_In --
-------------------
function Read_Total_In (Stream : in Stream_Type) return Count is
begin
return Total_In (Stream.Reader);
end Read_Total_In;
--------------------
-- Read_Total_Out --
--------------------
function Read_Total_Out (Stream : in Stream_Type) return Count is
begin
return Total_Out (Stream.Reader);
end Read_Total_Out;
-----------
-- Write --
-----------
procedure Write
(Stream : in out Stream_Type;
Item : in Stream_Element_Array)
is
procedure Write (Item : in Stream_Element_Array);
-----------
-- Write --
-----------
procedure Write (Item : in Stream_Element_Array) is
begin
Ada.Streams.Write (Stream.Back.all, Item);
end Write;
procedure Write is new ZLib.Write
(Write => Write,
Buffer_Size => Stream.Buffer_Size);
begin
Write (Stream.Writer, Item, No_Flush);
end Write;
--------------------
-- Write_Total_In --
--------------------
function Write_Total_In (Stream : in Stream_Type) return Count is
begin
return Total_In (Stream.Writer);
end Write_Total_In;
---------------------
-- Write_Total_Out --
---------------------
function Write_Total_Out (Stream : in Stream_Type) return Count is
begin
return Total_Out (Stream.Writer);
end Write_Total_Out;
end ZLib.Streams;
|
-- Institution: Technische Universität München
-- Department: Realtime Computer Systems (RCS)
-- Project: StratoX
--
-- Authors: Emanuel Regnath (emanuel.regnath@tum.de)
with HIL.Devices;
-- @summary
-- Target-independent specification for HIL of SPI
package HIL.SPI with
Spark_Mode => On
-- Abstract_State => Deselect
is
type Device_ID_Type is new HIL.Devices.Device_Type_SPI;
type Data_Type is array (Natural range <>) of Byte;
is_Init : Boolean := False with Ghost;
procedure configure with
Post => is_Init;
procedure select_Chip (Device : Device_ID_Type) with
Pre => is_Init;
procedure deselect_Chip (Device : Device_ID_Type) with
Pre => is_Init;
-- with Global => (Input => (Deselect));
procedure write (Device : Device_ID_Type; Data : Data_Type) with
Pre => is_Init;
-- send byte array to device
procedure read (Device : in Device_ID_Type; Data : out Data_Type) with
Pre => is_Init;
-- read byte array from device
procedure transfer
(Device : in Device_ID_Type;
Data_TX : in Data_Type;
Data_RX : out Data_Type) with
Pre => is_Init;
-- combining sequential write and read, for those devices where CS must stay
-- asserted between command and response.
procedure transceive (Device : in Device_ID_Type;
Data_TX : in Data_Type;
Data_RX : out Data_Type)
with Pre => Data_TX'Length = Data_RX'Length;
-- same as transfer, but simultanoeus read and write
end HIL.SPI;
|
-- This file is generated by SWIG. Please do not modify by hand.
--
with Interfaces;
with Interfaces.C;
with Interfaces.C.Pointers;
package xcb.xcb_glx_get_floatv_request_t is
-- Item
--
type Item is record
major_opcode : aliased Interfaces.Unsigned_8;
minor_opcode : aliased Interfaces.Unsigned_8;
length : aliased Interfaces.Unsigned_16;
context_tag : aliased xcb.xcb_glx_context_tag_t;
pname : aliased Interfaces.Unsigned_32;
end record;
-- Item_Array
--
type Item_Array is
array
(Interfaces.C
.size_t range <>) of aliased xcb.xcb_glx_get_floatv_request_t
.Item;
-- Pointer
--
package C_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_glx_get_floatv_request_t.Item,
Element_Array => xcb.xcb_glx_get_floatv_request_t.Item_Array,
Default_Terminator => (others => <>));
subtype Pointer is C_Pointers.Pointer;
-- Pointer_Array
--
type Pointer_Array is
array
(Interfaces.C
.size_t range <>) of aliased xcb.xcb_glx_get_floatv_request_t
.Pointer;
-- Pointer_Pointer
--
package C_Pointer_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_glx_get_floatv_request_t.Pointer,
Element_Array => xcb.xcb_glx_get_floatv_request_t.Pointer_Array,
Default_Terminator => null);
subtype Pointer_Pointer is C_Pointer_Pointers.Pointer;
end xcb.xcb_glx_get_floatv_request_t;
|
-- CZ1103A.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 PROCEDURE CHECK_FILE WORKS CORRECTLY, IN
-- PARTICULAR, THAT IT WILL REPORT INCORRECT FILE CONTENTS
-- AS TEST FAILURES.
-- THIS TEST INTENTIONALLY CONTAINS MISMATCHES BETWEEN FILE
-- CONTENTS AND THE 'CONTENTS' STRING PARAMETER OF PROCEDURE
-- CHECK_FILE.
-- PASS/FAIL CRITERIA:
-- IF AN IMPLEMENTATION SUPPORTS EXTERNAL FILES, IT PASSES THIS TEST
-- IF TEST EXECUTION REPORTS THE FOLLOWING FOUR FAILURES, REPORTS AN
-- INTERMEDIATE "FAILED" RESULT, REPORTS A FINAL "TENTATIVELY PASSED"
-- RESULT, AND REPORTS NO OTHER FAILURES.
-- * CZ1103A FROM CHECK_FILE: END OF LINE EXPECTED - E
-- ENCOUNTERED.
-- * CZ1103A FROM CHECK_FILE: END_OF_PAGE NOT WHERE EXPECTED.
-- * CZ1103A FROM CHECK_FILE: END_OF_FILE NOT WHERE EXPECTED.
-- * CZ1103A FROM CHECK_FILE: FILE DOES NOT CONTAIN CORRECT
-- OUTPUT - EXPECTED C - GOT I.
--
-- IF AN IMPLEMENTATION DOES NOT SUPPORT EXTERNAL FILES, IT PASSES THIS
-- TEST IF TEST EXECUTION REPORTS NINE FAILURES FOR INCOMPLETE SUBTESTS
-- SIMILAR TO THE SAMPLE BELOW, REPORTS AN INTERMEDIATE "FAILED" RESULT,
-- REPORTS A FINAL "TENTATIVELY PASSED" RESULT, AND REPORTS NO OTHER
-- FAILURES.
-- * CZ1103A TEST WITH EMPTY FILE INCOMPLETE.
-- HISTORY:
-- SPS 12/09/82 CREATED ORIGINAL TEST.
-- JRK 11/18/85 ADDED COMMENTS ABOUT PASS/FAIL CRITERIA.
-- JET 01/13/88 UPDATED HEADER FORMAT, ADDED FINAL CALL TO
-- SPECIAL_ACTION.
-- PWB 06/24/88 CORRECTED PASS/FAIL CRITERIA TO INDICATE THE
-- EXPECTED RESULT (TENTATIVELY PASSED).
-- RLB 03/20/00 CORRECTED PASS/FAIL CRITERIA TO REFLECT PROPER RESULT
-- FOR AN IMPLEMENTATION THAT DOES NOT SUPPORT EXTERNAL FILES.
WITH REPORT; USE REPORT;
WITH TEXT_IO; USE TEXT_IO;
WITH CHECK_FILE;
PROCEDURE CZ1103A IS
NULL_FILE : FILE_TYPE;
FILE_WITH_BLANK_LINES : FILE_TYPE;
FILE_WITH_BLANK_PAGES : FILE_TYPE;
FILE_WITH_TRAILING_BLANKS : FILE_TYPE;
FILE_WITHOUT_TRAILING_BLANKS : FILE_TYPE;
FILE_WITH_END_OF_LINE_ERROR : FILE_TYPE;
FILE_WITH_END_OF_PAGE_ERROR : FILE_TYPE;
FILE_WITH_END_OF_FILE_ERROR : FILE_TYPE;
FILE_WITH_DATA_ERROR : FILE_TYPE;
BEGIN
TEST ("CZ1103A", "CHECK THAT PROCEDURE CHECK_FILE WORKS");
-- THIS SECTION TESTS CHECK_FILE WITH AN EMPTY FILE.
BEGIN
COMMENT ("BEGIN TEST WITH AN EMPTY FILE");
CREATE (NULL_FILE, OUT_FILE);
CHECK_FILE (NULL_FILE, "#@%");
CLOSE (NULL_FILE);
EXCEPTION
WHEN OTHERS =>
FAILED ("TEST WITH EMPTY FILE INCOMPLETE");
END;
-- THIS SECTION TESTS CHECK_FILE WITH A FILE WITH BLANK LINES.
BEGIN
COMMENT ("BEGIN TEST WITH A FILE WITH BLANK LINES");
CREATE (FILE_WITH_BLANK_LINES, OUT_FILE);
NEW_LINE (FILE_WITH_BLANK_LINES, 20);
CHECK_FILE (FILE_WITH_BLANK_LINES, "####################@%");
CLOSE (FILE_WITH_BLANK_LINES);
EXCEPTION
WHEN OTHERS =>
FAILED ("TEST WITH FILE WITH BLANK LINES INCOMPLETE");
END;
-- THIS SECTION TESTS CHECK_FILE WITH A FILE WITH BLANK LINES AND PAGES.
BEGIN
COMMENT ("BEGIN TEST WITH A FILE WITH BLANK LINES " &
"AND PAGES");
CREATE (FILE_WITH_BLANK_PAGES, OUT_FILE);
NEW_LINE (FILE_WITH_BLANK_PAGES, 3);
NEW_PAGE (FILE_WITH_BLANK_PAGES);
NEW_LINE (FILE_WITH_BLANK_PAGES, 2);
NEW_PAGE (FILE_WITH_BLANK_PAGES);
NEW_PAGE (FILE_WITH_BLANK_PAGES);
CHECK_FILE (FILE_WITH_BLANK_PAGES, "###@##@#@%");
CLOSE (FILE_WITH_BLANK_PAGES);
EXCEPTION
WHEN OTHERS =>
FAILED ("TEST WITH FILE WITH BLANK PAGES INCOMPLETE");
END;
-- THIS SECTION TESTS CHECK_FILE WITH A FILE WITH TRAILING BLANKS.
BEGIN
COMMENT ("BEGIN TEST WITH A FILE WITH TRAILING BLANKS");
CREATE (FILE_WITH_TRAILING_BLANKS, OUT_FILE);
FOR I IN 1 .. 3 LOOP
PUT_LINE (FILE_WITH_TRAILING_BLANKS,
"LINE WITH TRAILING BLANKS ");
END LOOP;
CHECK_FILE(FILE_WITH_TRAILING_BLANKS, "LINE WITH TRAILING" &
" BLANKS#LINE WITH TRAILING BLANKS#LINE" &
" WITH TRAILING BLANKS#@%");
CLOSE (FILE_WITH_TRAILING_BLANKS);
EXCEPTION
WHEN OTHERS =>
FAILED ("TEST WITH FILE WITH TRAILING BLANKS " &
"INCOMPLETE");
END;
-- THIS SECTION TESTS CHECK_FILE WITH A FILE WITHOUT TRAILING BLANKS.
BEGIN
COMMENT ("BEGIN TEST WITH A FILE WITHOUT TRAILING BLANKS");
CREATE (FILE_WITHOUT_TRAILING_BLANKS, OUT_FILE);
FOR I IN 1 .. 3 LOOP
PUT_LINE (FILE_WITHOUT_TRAILING_BLANKS,
"LINE WITHOUT TRAILING BLANKS");
END LOOP;
CHECK_FILE(FILE_WITHOUT_TRAILING_BLANKS, "LINE WITHOUT " &
"TRAILING BLANKS#LINE WITHOUT TRAILING BLANKS#" &
"LINE WITHOUT TRAILING BLANKS#@%");
CLOSE (FILE_WITHOUT_TRAILING_BLANKS);
EXCEPTION
WHEN OTHERS =>
FAILED ("TEST WITH FILE WITHOUT TRAILING BLANKS " &
"INCOMPLETE");
END;
-- THIS SECTION TESTS CHECK_FILE WITH A FILE WITH AN END OF LINE ERROR.
BEGIN
COMMENT ("BEGIN TEST WITH A FILE WITH AN END OF LINE ERROR");
CREATE (FILE_WITH_END_OF_LINE_ERROR, OUT_FILE);
PUT_LINE (FILE_WITH_END_OF_LINE_ERROR, "THIS LINE WILL " &
"CONTAIN AN END OF LINE IN THE WRONG PLACE");
CHECK_FILE (FILE_WITH_END_OF_LINE_ERROR, "THIS LINE WILL " &
"CONTAIN AN # IN THE WRONG PLACE#@%");
CLOSE (FILE_WITH_END_OF_LINE_ERROR);
EXCEPTION
WHEN OTHERS =>
FAILED ("TEST WITH END_OF_LINE ERROR INCOMPLETE");
END;
-- THIS SECTION TESTS CHECK_FILE WITH A FILE WITH AN END OF PAGE ERROR.
BEGIN
COMMENT ("BEGIN TEST WITH FILE WITH END OF PAGE ERROR");
CREATE (FILE_WITH_END_OF_PAGE_ERROR, OUT_FILE);
PUT_LINE (FILE_WITH_END_OF_PAGE_ERROR, "THIS LINE WILL " &
"CONTAIN AN END OF PAGE IN THE WRONG PLACE");
CHECK_FILE (FILE_WITH_END_OF_PAGE_ERROR, "THIS LINE WILL " &
"CONTAIN AN @ IN THE WRONG PLACE#@%");
CLOSE (FILE_WITH_END_OF_PAGE_ERROR);
EXCEPTION
WHEN OTHERS =>
FAILED ("TEST WITH END_OF_PAGE ERROR INCOMPLETE");
END;
-- THIS SECTION TESTS CHECK_FILE WITH A FILE WITH AN END OF FILE ERROR.
BEGIN
COMMENT ("BEGIN TEST WITH FILE WITH END OF FILE ERROR");
CREATE (FILE_WITH_END_OF_FILE_ERROR, OUT_FILE);
PUT_LINE (FILE_WITH_END_OF_FILE_ERROR, "THIS LINE WILL " &
"CONTAIN AN END OF FILE IN THE WRONG PLACE");
CHECK_FILE (FILE_WITH_END_OF_FILE_ERROR, "THIS LINE WILL " &
"CONTAIN AN % IN THE WRONG PLACE#@%");
CLOSE (FILE_WITH_END_OF_FILE_ERROR);
EXCEPTION
WHEN OTHERS =>
FAILED ("TEST WITH END_OF_FILE ERROR INCOMPLETE");
END;
-- THIS SECTION TESTS CHECK_FILE WITH A FILE WITH INCORRECT DATA.
BEGIN
COMMENT ("BEGIN TEST WITH FILE WITH INCORRECT DATA");
CREATE (FILE_WITH_DATA_ERROR, OUT_FILE);
PUT_LINE (FILE_WITH_DATA_ERROR, "LINE WITH INCORRECT " &
"DATA");
CHECK_FILE (FILE_WITH_DATA_ERROR, "LINE WITH CORRECT " &
"DATA#@%");
CLOSE (FILE_WITH_DATA_ERROR);
EXCEPTION
WHEN OTHERS =>
FAILED ("TEST WITH INCORRECT DATA INCOMPLETE");
END;
RESULT;
TEST ("CZ1103A", "THE LINE ABOVE SHOULD REPORT FAILURE");
SPECIAL_ACTION ("COMPARE THIS OUTPUT TO THE EXPECTED RESULT");
RESULT;
END CZ1103A;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Localization, Internationalization, Globalization for Ada --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2009-2013, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- This package provides implementation of the Case Algorithms from the
-- Unicode specification.
with Matreshka.Internals.Locales;
with Matreshka.Internals.Strings;
with Matreshka.Internals.Unicode.Ucd;
package Matreshka.Internals.Unicode.Casing is
pragma Preelaborate;
procedure Convert_Case
(Locale : not null Matreshka.Internals.Locales.Locale_Data_Access;
Source : not null Matreshka.Internals.Strings.Shared_String_Access;
Kind : Matreshka.Internals.Unicode.Ucd.Case_Mapping_Kinds;
Property : Matreshka.Internals.Unicode.Ucd.Boolean_Properties;
Destination : in out Matreshka.Internals.Strings.Shared_String_Access);
procedure Simple_Convert_Case
(Locale : not null Matreshka.Internals.Locales.Locale_Data_Access;
Source : not null Matreshka.Internals.Strings.Shared_String_Access;
Kind : Matreshka.Internals.Unicode.Ucd.Case_Mapping_Kinds;
Property : Matreshka.Internals.Unicode.Ucd.Boolean_Properties;
Destination : in out Matreshka.Internals.Strings.Shared_String_Access);
end Matreshka.Internals.Unicode.Casing;
|
-- SPDX-License-Identifier: Apache-2.0
--
-- Copyright (c) 2019 onox <denkpadje@gmail.com>
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
with Ada.Unchecked_Conversion;
package body Orka.Inputs.Joysticks is
function Convert is new Ada.Unchecked_Conversion
(Source => Joystick_Button_States, Target => Boolean_Button_States);
function Just_Pressed (Object : Joystick_Input'Class) return Boolean_Button_States is
Changed_Buttons : constant Boolean_Button_States :=
Convert (Object.Current_State.Buttons) xor Convert (Object.Last_State.Buttons);
begin
return Changed_Buttons and Convert (Object.Current_State.Buttons);
end Just_Pressed;
function Just_Released (Object : Joystick_Input'Class) return Boolean_Button_States is
Changed_Buttons : constant Boolean_Button_States :=
Convert (Object.Current_State.Buttons) xor Convert (Object.Last_State.Buttons);
begin
return Changed_Buttons and not Convert (Object.Current_State.Buttons);
end Just_Released;
end Orka.Inputs.Joysticks;
|
-- Ascon.Load_Store
-- Functions to load and store 64-bit words from Storage_Array in Big Endian
-- format. Currently these are not optimised for the case where the machine
-- itself is BE or has dedicated assembly instructions that can perform the
-- conversion. Some compilers may have a peephole optimisation for these
-- routines.
-- Copyright (c) 2016-2017, James Humphry - see LICENSE file for details
-- Note that all the Unsigned_xx types count as Implementation_Identifiers
pragma Restrictions(No_Implementation_Attributes,
No_Implementation_Units,
No_Obsolescent_Features);
with System.Storage_Elements;
use System.Storage_Elements;
with Interfaces;
use Interfaces;
private generic package Ascon.Load_Store
with SPARK_Mode => On is
subtype E is Storage_Element;
function Check_Storage_Array_Length_8 (X : in Storage_Array) return Boolean
is
(
if X'Last < X'First then
False
elsif X'First < 0 then
(
(Long_Long_Integer (X'Last) < Long_Long_Integer'Last +
Long_Long_Integer (X'First))
and then
X'Last - X'First = 7)
else
X'Last - X'First = 7
)
with Ghost;
function Storage_Array_To_Unsigned_64 (S : in Storage_Array)
return Unsigned_64 is
(Shift_Left(Unsigned_64(S(S'First)), 56) or
Shift_Left(Unsigned_64(S(S'First + 1)), 48) or
Shift_Left(Unsigned_64(S(S'First + 2)), 40) or
Shift_Left(Unsigned_64(S(S'First + 3)), 32) or
Shift_Left(Unsigned_64(S(S'First + 4)), 24) or
Shift_Left(Unsigned_64(S(S'First + 5)), 16) or
Shift_Left(Unsigned_64(S(S'First + 6)), 8) or
Unsigned_64(S(S'First + 7)))
with Inline, Pre => (Check_Storage_Array_Length_8(S));
function Unsigned_64_To_Storage_Array (W : in Unsigned_64)
return Storage_Array is
(Storage_Array'(E(Shift_Right(W, 56) mod 16#100#),
E(Shift_Right(W, 48) mod 16#100#),
E(Shift_Right(W, 40) mod 16#100#),
E(Shift_Right(W, 32) mod 16#100#),
E(Shift_Right(W, 24) mod 16#100#),
E(Shift_Right(W, 16) mod 16#100#),
E(Shift_Right(W, 8) mod 16#100#),
E(W mod 16#100#)))
with Inline, Post => (Unsigned_64_To_Storage_Array'Result'Length = 8);
end Ascon.Load_Store;
|
------------------------------------------------------------------------------
-- --
-- Unicode Utilities --
-- --
-- Unicode Character Database (UCD) Facilities --
-- --
-- ------------------------------------------------------------------------ --
-- --
-- Copyright (C) 2019, ANNEXI-STRAYLINE Trans-Human Ltd. --
-- All rights reserved. --
-- --
-- Original Contributors: --
-- * Richard Wai (ANNEXI-STRAYLINE) --
-- --
-- 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 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 --
-- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT --
-- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, --
-- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY --
-- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT --
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE --
-- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
with Ada.Streams;
private with Ada.Characters.Conversions;
private with Ada.Strings.Wide_Wide_Unbounded;
private with Ada.Containers.Vectors;
package Unicode.UCD is
Bad_Data: exception;
type UCD_Entry is tagged private with Preelaborable_Initialization;
function Next_Entry
(Stream: not null access Ada.Streams.Root_Stream_Type'Class)
return UCD_Entry;
-- Parse from the beginning of a line in a UCD file, returning the result.
--
-- This should never fail when used correctly with a properly formatted
-- file. Therefore a parsing error is considered fatal for a given stream.
-- Once a Bad_Data exception is raised, it should be expected that
-- subsequent calls to Next_Extry will also fail.
--
-- Next_Entry is strict in parsing and makes no assuptions.
function First_Codepoint (E: UCD_Entry) return Wide_Wide_Character;
function Last_Codepoint (E: UCD_Entry) return Wide_Wide_Character;
-- Returns the first and last codepoint values for the entry.
function Property_Count (E: UCD_Entry) return Natural;
-- Returns the number of properties contained in the entry
function Property (E: UCD_Entry; Index: Positive) return String;
function Property (E: UCD_Entry; Index: Positive) return Wide_Wide_String;
-- Returns the value of the Property at the given index.
-- Raises CONSTRAINT_ERROR if the property index does not exist, or if
-- the property cannot be represented in a String
function Comment (E: UCD_Entry) return String;
function Comment (E: UCD_Entry) return Wide_Wide_String;
-- Returns the value of the comment (if any) at the end of the entry
-- (not including the initial '#')
private
package WWU renames Ada.Strings.Wide_Wide_Unbounded;
use type WWU.Unbounded_Wide_Wide_String;
subtype Unbounded_Wide_Wide_String is WWU.Unbounded_Wide_Wide_String;
package Property_Vectors is
new Ada.Containers.Vectors (Index_Type => Positive,
Element_Type => Unbounded_Wide_Wide_String);
use type Property_Vectors.Vector;
subtype Property_Vector is Property_Vectors.Vector;
type UCD_Entry is tagged
record
First, Last: Wide_Wide_Character;
Properties : Property_Vector;
Comment : Unbounded_Wide_Wide_String;
end record;
function First_Codepoint (E: UCD_Entry) return Wide_Wide_Character
is (E.First);
function Last_Codepoint (E: UCD_Entry) return Wide_Wide_Character
is (E.Last);
function Property_Count (E: UCD_Entry) return Natural
is (Natural (E.Properties.Length));
function Property (E: UCD_Entry; Index: Positive) return Wide_Wide_String
is (WWU.To_Wide_Wide_String (E.Properties(Index)));
function Property (E: UCD_Entry; Index: Positive) return String
is (Ada.Characters.Conversions.To_String
(Wide_Wide_String'(E.Property(Index))));
function Comment (E: UCD_Entry) return Wide_Wide_String
is (WWU.To_Wide_Wide_String (E.Comment));
function Comment (E: UCD_Entry) return String
is (Ada.Characters.Conversions.To_String
(WWU.To_Wide_Wide_String (E.Comment)));
end Unicode.UCD;
|
generic
type Element_Type is private;
package Generic_Stack is
type T is limited private;
procedure Push( Stack: in out T; Element: in Element_Type );
procedure Pop( Stack: in out T; Element: out Element_Type );
procedure Peek( Stack: in out T; Element: out Element_Type );
function Empty( Stack: in T ) return Boolean;
procedure Reset( Stack: in out T );
Underflow : exception;
private
type Stack_Node;
type Stack_Node_Ptr is access Stack_Node;
type Stack_Node is
record
Data : Element_Type;
Next : Stack_Node_Ptr;
end record;
type T is
record
Head : Stack_Node_Ptr;
end record;
end Generic_Stack;
|
pragma License (Unrestricted);
-- runtime unit for ZCX (or SjLj, or Win64 SEH)
with C.unwind;
package System.Unwind.Representation is
pragma Preelaborate;
subtype Unwind_Exception_Class is C.unwind.Unwind_Exception_Class;
-- (a-exexpr-gcc.adb)
GNAT_Exception_Class : constant := 16#474e552d41646100#;
-- equivalent to GNAT_GCC_Exception (a-excmac-gcc.adb)
type Machine_Occurrence is record
Header : aliased C.unwind.struct_Unwind_Exception;
Occurrence : aliased Exception_Occurrence;
Stack_Guard : Address; -- for skipping on stack overflow
-- shortcut for phase2 (see exception.c in libobjc)
landing_pad : C.unwind.Unwind_Ptr;
ttype_filter : C.unwind.Unwind_Sword;
end record
with Convention => C;
pragma Suppress_Initialization (Machine_Occurrence);
type Machine_Occurrence_Access is access all Machine_Occurrence;
for Machine_Occurrence_Access'Storage_Size use 0;
-- by -fdump-tree-all, try ... exception be expanded below:
-- try
-- {
-- ... user code ...
-- }
-- catch
-- {
-- ... .builtin_eh_filter ...
-- catch (&exception_name ex. program_error)
-- {
-- {
-- void * EXPTR = .builtin_eh_pointer (0);
-- try
-- {
-- void * EXPTR = .builtin_eh_pointer (0);
-- .gnat_begin_handler (EXPTR);
-- -- system.soft_links.abort_undefer ();
-- -- [gcc-4.7] abort_undefer is not called if zcx
-- ... user code ...
-- }
-- finally
-- {
-- .gnat_end_handler (EXPTR);
-- ... builtin_unwind_resume ...
-- }
-- }
-- }
-- ... builtin_unwind_resume ...
-- }
end System.Unwind.Representation;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUNTIME COMPONENTS --
-- --
-- S Y S T E M . E X N _ I N T --
-- --
-- S p e c --
-- --
-- $Revision$
-- --
-- Copyright (C) 1992,1993 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. --
-- --
------------------------------------------------------------------------------
-- Integer exponentiation (checks off)
with System.Exn_Gen;
package System.Exn_Int is
pragma Pure (Exn_Int);
function Exn_Integer is
new System.Exn_Gen.Exn_Integer_Type (Integer);
end System.Exn_Int;
|
------------------------------------------------------------------------------
-- 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. --
------------------------------------------------------------------------------
------------------------------------------------------------------------------
-- Natools.File_Streams provides a standard stream object associated with --
-- a file on disk. The semantics of the provided subprograms mirror those --
-- of Ada.Streams.Stream_IO, except that the file has to be opened on --
-- object initialization and closed on finalization. --
-- The current implementation does not expose most useful primitives, but --
-- is enough for a direct use as a stream object. --
------------------------------------------------------------------------------
with Ada.Streams.Stream_IO;
private with Ada.Finalization;
package Natools.File_Streams is
pragma Preelaborate;
package Stream_IO renames Ada.Streams.Stream_IO;
type File_Stream is limited new Ada.Streams.Root_Stream_Type with private;
overriding procedure Read
(Stream : in out File_Stream;
Item : out Ada.Streams.Stream_Element_Array;
Last : out Ada.Streams.Stream_Element_Offset);
overriding procedure Write
(Stream : in out File_Stream;
Item : in Ada.Streams.Stream_Element_Array);
not overriding function Create
(Mode : in Stream_IO.File_Mode := Stream_IO.Out_File;
Name : in String := "";
Form : in String := "")
return File_Stream;
not overriding function Open
(Mode : in Stream_IO.File_Mode;
Name : in String;
Form : in String := "")
return File_Stream;
not overriding function Mode (File : in File_Stream)
return Stream_IO.File_Mode;
not overriding function Name (File : in File_Stream) return String;
not overriding function Form (File : in File_Stream) return String;
private
type Autoclose is new Ada.Finalization.Limited_Controlled with record
Backend : Stream_IO.File_Type;
end record;
overriding procedure Finalize (Object : in out Autoclose);
type File_Stream is limited new Ada.Streams.Root_Stream_Type
with record
Internal : Autoclose;
end record;
end Natools.File_Streams;
|
--
-- Copyright (C) 2013 Reto Buerki <reet@codelabs.ch>
-- Copyright (C) 2013 Adrian-Ken Rueegsegger <ken@codelabs.ch>
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the following conditions
-- are met:
-- 1. Redistributions of source code must retain the above copyright
-- notice, this list of conditions and the following disclaimer.
-- 2. Redistributions in binary form must reproduce the above copyright
-- notice, this list of conditions and the following disclaimer in the
-- documentation and/or other materials provided with the distribution.
-- 3. Neither the name of the 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.
--
with Ahven.Framework;
package Tkmrpc_ORB_Tests
is
type Testcase is new Ahven.Framework.Test_Case with null record;
procedure Initialize (T : in out Testcase);
-- Initialize testcase.
procedure Client_Server_ORBs;
-- Test client/server ORB interaction.
procedure C_Test_Client;
-- Test interaction with client written in C.
end Tkmrpc_ORB_Tests;
|
<?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>coreConv</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>22</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>output_num</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>output_num</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</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>conv_loop_cnt</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>conv_loop_cnt</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2398532576</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="_3">
<Value>
<Obj>
<type>1</type>
<id>3</id>
<name>contol</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>contol</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</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="_4">
<Value>
<Obj>
<type>1</type>
<id>4</id>
<name>frac_w</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>frac_w</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</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="_5">
<Value>
<Obj>
<type>1</type>
<id>5</id>
<name>frac_din</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>frac_din</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>3892314240</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="_6">
<Value>
<Obj>
<type>1</type>
<id>6</id>
<name>frac_dout</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>frac_dout</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2783138808</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="_7">
<Value>
<Obj>
<type>1</type>
<id>7</id>
<name>bias_in_V_data_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>bias_in</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>465</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="_8">
<Value>
<Obj>
<type>1</type>
<id>8</id>
<name>bias_in_V_keep_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>bias_in</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>132</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="_9">
<Value>
<Obj>
<type>1</type>
<id>9</id>
<name>bias_in_V_strb_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>bias_in</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>132</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="_10">
<Value>
<Obj>
<type>1</type>
<id>10</id>
<name>bias_in_V_last_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>bias_in</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>609</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_11">
<Value>
<Obj>
<type>1</type>
<id>11</id>
<name>weight_in_V_data_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>weight_in</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>132</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="_12">
<Value>
<Obj>
<type>1</type>
<id>12</id>
<name>weight_in_V_keep_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>weight_in</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>weight_in_V_strb_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>weight_in</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>132</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="_14">
<Value>
<Obj>
<type>1</type>
<id>14</id>
<name>weight_in_V_last_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>weight_in</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>49</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_15">
<Value>
<Obj>
<type>1</type>
<id>15</id>
<name>data_in_V_data_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>data_in</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>401</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="_16">
<Value>
<Obj>
<type>1</type>
<id>16</id>
<name>data_in_V_keep_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>data_in</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="_17">
<Value>
<Obj>
<type>1</type>
<id>17</id>
<name>data_in_V_strb_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>data_in</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>132</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="_18">
<Value>
<Obj>
<type>1</type>
<id>18</id>
<name>data_in_V_last_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>data_in</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_19">
<Value>
<Obj>
<type>1</type>
<id>19</id>
<name>conv_out_V_data_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>conv_out</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>3892314240</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<direction>1</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="_20">
<Value>
<Obj>
<type>1</type>
<id>20</id>
<name>conv_out_V_keep_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>conv_out</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2396942816</coreId>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<direction>1</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="_21">
<Value>
<Obj>
<type>1</type>
<id>21</id>
<name>conv_out_V_strb_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>conv_out</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1153</coreId>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<direction>1</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="_22">
<Value>
<Obj>
<type>1</type>
<id>22</id>
<name>conv_out_V_last_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>conv_out</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>132</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<direction>1</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>211</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>23</id>
<name>conv_inner_cnt</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>conv_inner_cnt</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>835</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>287</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="_24">
<Value>
<Obj>
<type>0</type>
<id>24</id>
<name>bias</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>bias</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>288</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="_25">
<Value>
<Obj>
<type>0</type>
<id>25</id>
<name>bias_1</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>bias</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>289</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="_26">
<Value>
<Obj>
<type>0</type>
<id>26</id>
<name>frac_dout_read</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>frac_dout</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>291</item>
<item>292</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>7</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>27</id>
<name>frac_din_read</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>frac_din</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>293</item>
<item>294</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>8</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>28</id>
<name>frac_w_read</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>frac_w</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>295</item>
<item>296</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>9</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>29</id>
<name>contol_read</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>contol</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>298</item>
<item>299</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>11</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>30</id>
<name>conv_loop_cnt_read</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>conv_loop_cnt</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>300</item>
<item>301</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="_31">
<Value>
<Obj>
<type>0</type>
<id>31</id>
<name>output_num_read</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>output_num</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>302</item>
<item>303</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="_32">
<Value>
<Obj>
<type>0</type>
<id>32</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>empty_fu_587_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2398675224</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>304</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>12</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>74</id>
<name>mul</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>mul_32s_32s_32_2_1_U1</rtlName>
<control/>
<opType>mul</opType>
<implIndex/>
<coreName/>
<coreId>132</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>305</item>
<item>306</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>10</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>75</id>
<name>sub113</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>sub113_fu_591_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>307</item>
<item>309</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.88</m_delay>
<m_topoIndex>13</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>76</id>
<name>frac_w_cast38</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>frac_w_cast38_fu_596_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1818850421</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>310</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>14</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>77</id>
<name>frac_w_cast</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>frac_w_cast_fu_599_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>132</coreId>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>311</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>15</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>78</id>
<name>frac_din_cast</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>frac_din_cast_fu_602_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2019521635</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>312</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>16</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>79</id>
<name>frac_dout_cast39</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>frac_dout_cast39_fu_605_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1852795252</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>313</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>17</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>80</id>
<name>frac_dout_cast</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>frac_dout_cast_fu_608_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>857750117</coreId>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>314</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>18</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_40">
<Value>
<Obj>
<type>0</type>
<id>81</id>
<name>tmp</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_fu_611_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>315</item>
<item>317</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>19</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>82</id>
<name>tmp_cast</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_cast_fu_617_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>193</coreId>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>318</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>20</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_42">
<Value>
<Obj>
<type>0</type>
<id>83</id>
<name>sub150</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>sub150_fu_621_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>tadder</implIndex>
<coreName>TAddSub</coreName>
<coreId>10</coreId>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>319</item>
<item>320</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>21</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_43">
<Value>
<Obj>
<type>0</type>
<id>84</id>
<name>sub151</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>sub151_fu_627_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>tadder</implIndex>
<coreName>TAddSub</coreName>
<coreId>10</coreId>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>321</item>
<item>322</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>22</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_44">
<Value>
<Obj>
<type>0</type>
<id>85</id>
<name>sub151_cast</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>sub151_cast_fu_633_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>3892314240</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>323</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>23</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_45">
<Value>
<Obj>
<type>0</type>
<id>86</id>
<name>shr</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>shr_fu_637_p2</rtlName>
<control>auto</control>
<opType>lshr</opType>
<implIndex>auto_pipe</implIndex>
<coreName>Shifter</coreName>
<coreId>75</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>324</item>
<item>325</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>24</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_46">
<Value>
<Obj>
<type>0</type>
<id>87</id>
<name>neg</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>neg_fu_643_p2</rtlName>
<control/>
<opType>xor</opType>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>326</item>
<item>327</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.74</m_delay>
<m_topoIndex>25</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_47">
<Value>
<Obj>
<type>0</type>
<id>88</id>
<name>sub174</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>sub174_fu_649_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>tadder</implIndex>
<coreName>TAddSub</coreName>
<coreId>10</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>328</item>
<item>329</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>26</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_48">
<Value>
<Obj>
<type>0</type>
<id>89</id>
<name>sub175</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>sub175_fu_655_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>tadder</implIndex>
<coreName>TAddSub</coreName>
<coreId>10</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>330</item>
<item>331</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.81</m_delay>
<m_topoIndex>27</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_49">
<Value>
<Obj>
<type>0</type>
<id>90</id>
<name>sext_ln101</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>101</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</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/coreConv/coreConv</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/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>101</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>sext_ln101_fu_661_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1953393013</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>332</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>28</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_50">
<Value>
<Obj>
<type>0</type>
<id>91</id>
<name>conv_inner_cnt_write_ln101</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>101</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>101</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1985</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>334</item>
<item>335</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.38</m_delay>
<m_topoIndex>6</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_51">
<Value>
<Obj>
<type>0</type>
<id>92</id>
<name>br_ln101</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>101</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>101</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>132</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>336</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>29</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_52">
<Value>
<Obj>
<type>0</type>
<id>94</id>
<name>empty_25</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>49</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>338</item>
<item>339</item>
<item>340</item>
<item>341</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>109</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_53">
<Value>
<Obj>
<type>0</type>
<id>95</id>
<name>empty_26</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>3681</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>342</item>
<item>343</item>
<item>344</item>
<item>345</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>110</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_54">
<Value>
<Obj>
<type>0</type>
<id>96</id>
<name>empty_27</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2398345688</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>346</item>
<item>347</item>
<item>348</item>
<item>349</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>111</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_55">
<Value>
<Obj>
<type>0</type>
<id>97</id>
<name>empty_28</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2398346312</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>350</item>
<item>351</item>
<item>352</item>
<item>353</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>112</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_56">
<Value>
<Obj>
<type>0</type>
<id>98</id>
<name>empty_29</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>4</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>354</item>
<item>355</item>
<item>356</item>
<item>357</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>113</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_57">
<Value>
<Obj>
<type>0</type>
<id>99</id>
<name>empty_30</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>lane_accum</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>49</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>358</item>
<item>359</item>
<item>360</item>
<item>361</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>114</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_58">
<Value>
<Obj>
<type>0</type>
<id>100</id>
<name>empty_31</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>362</item>
<item>363</item>
<item>364</item>
<item>365</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>115</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_59">
<Value>
<Obj>
<type>0</type>
<id>101</id>
<name>empty_32</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>49</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>366</item>
<item>367</item>
<item>368</item>
<item>369</item>
</oprand_edges>
<opcode>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>116</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_60">
<Value>
<Obj>
<type>0</type>
<id>102</id>
<name>empty_33</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>370</item>
<item>371</item>
<item>372</item>
<item>373</item>
</oprand_edges>
<opcode>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>117</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_61">
<Value>
<Obj>
<type>0</type>
<id>103</id>
<name>empty_34</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>49</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>374</item>
<item>375</item>
<item>376</item>
<item>377</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>118</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_62">
<Value>
<Obj>
<type>0</type>
<id>104</id>
<name>empty_35</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>285</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>378</item>
<item>379</item>
<item>380</item>
<item>381</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>119</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_63">
<Value>
<Obj>
<type>0</type>
<id>105</id>
<name>empty_36</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>lane_accum</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2398645864</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>382</item>
<item>383</item>
<item>384</item>
<item>385</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>120</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_64">
<Value>
<Obj>
<type>0</type>
<id>106</id>
<name>k</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>k</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>132</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>386</item>
<item>387</item>
<item>388</item>
<item>389</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>30</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_65">
<Value>
<Obj>
<type>0</type>
<id>107</id>
<name>k_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>101</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>101</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>k</originalName>
<rtlName>k_1_fu_665_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>390</item>
<item>391</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.88</m_delay>
<m_topoIndex>31</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_66">
<Value>
<Obj>
<type>0</type>
<id>109</id>
<name>icmp_ln101</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>101</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>101</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln101_fu_671_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>392</item>
<item>393</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>32</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_67">
<Value>
<Obj>
<type>0</type>
<id>110</id>
<name>br_ln101</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>101</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>101</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2398686665</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>394</item>
<item>395</item>
<item>396</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>33</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_68">
<Value>
<Obj>
<type>0</type>
<id>112</id>
<name>conv_inner_cnt_load</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>104</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>104</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2398768336</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>397</item>
<item>1221</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>34</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_69">
<Value>
<Obj>
<type>0</type>
<id>114</id>
<name>icmp_ln104</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>104</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>104</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln104_fu_679_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>398</item>
<item>399</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>35</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_70">
<Value>
<Obj>
<type>0</type>
<id>115</id>
<name>br_ln104</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>104</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>104</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>16</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>400</item>
<item>401</item>
<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>121</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_71">
<Value>
<Obj>
<type>0</type>
<id>117</id>
<name>empty_37</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/coreConv/coreConv</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>587</item>
<item>588</item>
<item>589</item>
<item>590</item>
<item>591</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>36</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_72">
<Value>
<Obj>
<type>0</type>
<id>118</id>
<name>bias_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/coreConv/coreConv</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>bias_in_tmp.data.V</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>240</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>592</item>
</oprand_edges>
<opcode>extractvalue</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>37</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_73">
<Value>
<Obj>
<type>0</type>
<id>119</id>
<name>bias_ch_out_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/coreConv/coreConv</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>bias_ch_out.lane</originalName>
<rtlName>bias_ch_out_lane_fu_689_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2398628264</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>593</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>38</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_74">
<Value>
<Obj>
<type>0</type>
<id>120</id>
<name>bias_ch_out_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/coreConv/coreConv</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>bias_ch_out.lane</originalName>
<rtlName>bias_1_fu_176</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>49</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>595</item>
<item>596</item>
<item>597</item>
<item>599</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>39</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_75">
<Value>
<Obj>
<type>0</type>
<id>121</id>
<name>bias_1_write_ln122</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>122</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>122</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2398663640</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>600</item>
<item>601</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>40</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_76">
<Value>
<Obj>
<type>0</type>
<id>122</id>
<name>bias_write_ln122</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>122</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>122</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>3681</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>602</item>
<item>603</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>41</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_77">
<Value>
<Obj>
<type>0</type>
<id>123</id>
<name>br_ln122</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>122</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>122</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2398304096</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>604</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>42</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_78">
<Value>
<Obj>
<type>0</type>
<id>125</id>
<name>empty_38</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>9</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>605</item>
<item>606</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>122</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_79">
<Value>
<Obj>
<type>0</type>
<id>126</id>
<name>empty_39</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>49</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>609</item>
<item>610</item>
<item>611</item>
<item>612</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>123</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_80">
<Value>
<Obj>
<type>0</type>
<id>127</id>
<name>empty_40</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2397763520</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>613</item>
<item>614</item>
<item>615</item>
<item>616</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>124</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_81">
<Value>
<Obj>
<type>0</type>
<id>128</id>
<name>empty_41</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>49</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>617</item>
<item>618</item>
<item>619</item>
<item>620</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>125</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_82">
<Value>
<Obj>
<type>0</type>
<id>129</id>
<name>empty_42</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2397501824</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>621</item>
<item>622</item>
<item>623</item>
<item>624</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>126</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_83">
<Value>
<Obj>
<type>0</type>
<id>130</id>
<name>empty_43</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>49</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>625</item>
<item>626</item>
<item>627</item>
<item>628</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>127</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_84">
<Value>
<Obj>
<type>0</type>
<id>131</id>
<name>empty_44</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2397501520</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>629</item>
<item>630</item>
<item>631</item>
<item>632</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>128</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_85">
<Value>
<Obj>
<type>0</type>
<id>132</id>
<name>empty_45</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2397503320</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>633</item>
<item>634</item>
<item>635</item>
<item>636</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>129</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_86">
<Value>
<Obj>
<type>0</type>
<id>133</id>
<name>empty_46</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2397503016</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>637</item>
<item>638</item>
<item>639</item>
<item>640</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>130</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_87">
<Value>
<Obj>
<type>0</type>
<id>134</id>
<name>empty_47</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>68</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>641</item>
<item>642</item>
<item>643</item>
<item>644</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>131</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_88">
<Value>
<Obj>
<type>0</type>
<id>135</id>
<name>empty_48</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>22001</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>645</item>
<item>646</item>
<item>647</item>
<item>648</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>132</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_89">
<Value>
<Obj>
<type>0</type>
<id>136</id>
<name>empty_49</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2397883952</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>649</item>
<item>650</item>
<item>651</item>
<item>652</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="_90">
<Value>
<Obj>
<type>0</type>
<id>137</id>
<name>conv_inner_cnt_load_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2397885144</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>653</item>
<item>1222</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="_91">
<Value>
<Obj>
<type>0</type>
<id>138</id>
<name>empty_50</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/coreConv/coreConv</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>81</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>655</item>
<item>656</item>
<item>657</item>
<item>658</item>
<item>659</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>44</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_92">
<Value>
<Obj>
<type>0</type>
<id>139</id>
<name>data_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/coreConv/coreConv</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>data_in_tmp.data.V</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>997420912</coreId>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>660</item>
</oprand_edges>
<opcode>extractvalue</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>45</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_93">
<Value>
<Obj>
<type>0</type>
<id>140</id>
<name>empty_51</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/coreConv/coreConv</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>81</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>661</item>
<item>662</item>
<item>663</item>
<item>664</item>
<item>665</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>46</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_94">
<Value>
<Obj>
<type>0</type>
<id>141</id>
<name>weight_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/coreConv/coreConv</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>weight_in_tmp.data.V</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>666</item>
</oprand_edges>
<opcode>extractvalue</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>47</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_95">
<Value>
<Obj>
<type>0</type>
<id>142</id>
<name>mac_data_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/coreConv/coreConv</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>mac_data.lane</originalName>
<rtlName>mac_data_lane_fu_724_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>667</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>48</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_96">
<Value>
<Obj>
<type>0</type>
<id>143</id>
<name>mac_weight_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/coreConv/coreConv</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>mac_weight.lane</originalName>
<rtlName>mac_weight_lane_fu_728_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>668</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>49</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_97">
<Value>
<Obj>
<type>0</type>
<id>144</id>
<name>mac_data_lane_1</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/coreConv/coreConv</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>mac_data.lane</originalName>
<rtlName>mac_data_lane_1_reg_1570</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1330405203</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>670</item>
<item>671</item>
<item>672</item>
<item>673</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>50</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_98">
<Value>
<Obj>
<type>0</type>
<id>145</id>
<name>mac_weight_lane_1</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/coreConv/coreConv</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>mac_weight.lane</originalName>
<rtlName>mac_weight_lane_1_reg_1575</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>793660995</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>674</item>
<item>675</item>
<item>676</item>
<item>677</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>51</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_99">
<Value>
<Obj>
<type>0</type>
<id>146</id>
<name>mac_data_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/coreConv/coreConv</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>mac_data.lane</originalName>
<rtlName>mac_data_lane_2_fu_752_p4</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>678</item>
<item>679</item>
<item>681</item>
<item>683</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>52</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_100">
<Value>
<Obj>
<type>0</type>
<id>147</id>
<name>mac_weight_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/coreConv/coreConv</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>mac_weight.lane</originalName>
<rtlName>mac_weight_lane_2_fu_762_p4</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>684</item>
<item>685</item>
<item>686</item>
<item>687</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>53</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_101">
<Value>
<Obj>
<type>0</type>
<id>148</id>
<name>mac_data_lane_3</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/coreConv/coreConv</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>mac_data.lane</originalName>
<rtlName>mac_data_lane_3_fu_772_p4</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>3892314240</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>688</item>
<item>689</item>
<item>691</item>
<item>692</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>54</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_102">
<Value>
<Obj>
<type>0</type>
<id>149</id>
<name>mac_weight_lane_3</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/coreConv/coreConv</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>mac_weight.lane</originalName>
<rtlName>mac_weight_lane_3_fu_782_p4</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>49</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>693</item>
<item>694</item>
<item>695</item>
<item>696</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>55</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_103">
<Value>
<Obj>
<type>0</type>
<id>150</id>
<name>mac_data_lane_4</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/coreConv/coreConv</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>mac_data.lane</originalName>
<rtlName>mac_data_lane_4_reg_1580</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>673199136</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>697</item>
<item>698</item>
<item>700</item>
<item>702</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>56</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_104">
<Value>
<Obj>
<type>0</type>
<id>151</id>
<name>mac_weight_lane_4</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/coreConv/coreConv</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>mac_weight.lane</originalName>
<rtlName>mac_weight_lane_4_reg_1585</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>703</item>
<item>704</item>
<item>705</item>
<item>706</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>57</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_105">
<Value>
<Obj>
<type>0</type>
<id>152</id>
<name>mac_data_lane_5</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/coreConv/coreConv</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>mac_data.lane</originalName>
<rtlName>mac_data_lane_5_reg_1590</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>3892314240</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>707</item>
<item>708</item>
<item>710</item>
<item>712</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>58</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_106">
<Value>
<Obj>
<type>0</type>
<id>153</id>
<name>mac_weight_lane_5</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/coreConv/coreConv</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>mac_weight.lane</originalName>
<rtlName>mac_weight_lane_5_reg_1595</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>49</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>713</item>
<item>714</item>
<item>715</item>
<item>716</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>59</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_107">
<Value>
<Obj>
<type>0</type>
<id>154</id>
<name>mac_data_lane_6</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/coreConv/coreConv</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>mac_data.lane</originalName>
<rtlName>mac_data_lane_6_fu_832_p4</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>717</item>
<item>718</item>
<item>720</item>
<item>722</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>60</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_108">
<Value>
<Obj>
<type>0</type>
<id>155</id>
<name>mac_weight_lane_6</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/coreConv/coreConv</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>mac_weight.lane</originalName>
<rtlName>mac_weight_lane_6_fu_842_p4</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>6</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>723</item>
<item>724</item>
<item>725</item>
<item>726</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>61</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_109">
<Value>
<Obj>
<type>0</type>
<id>156</id>
<name>mac_data_lane_7</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/coreConv/coreConv</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>mac_data.lane</originalName>
<rtlName>mac_data_lane_7_fu_852_p4</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>3892314240</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>727</item>
<item>728</item>
<item>730</item>
<item>732</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>62</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_110">
<Value>
<Obj>
<type>0</type>
<id>157</id>
<name>mac_weight_lane_7</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/coreConv/coreConv</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>mac_weight.lane</originalName>
<rtlName>mac_weight_lane_7_fu_862_p4</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>3892314240</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>733</item>
<item>734</item>
<item>735</item>
<item>736</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>63</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_111">
<Value>
<Obj>
<type>0</type>
<id>158</id>
<name>sext_ln55</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1397508191</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>737</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>85</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_112">
<Value>
<Obj>
<type>0</type>
<id>159</id>
<name>sext_ln55_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>132</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>738</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>86</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_113">
<Value>
<Obj>
<type>0</type>
<id>160</id>
<name>output</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>output</originalName>
<rtlName>mul_8s_8s_16_1_1_U2</rtlName>
<control/>
<opType>mul</opType>
<implIndex/>
<coreName/>
<coreId>2398922624</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>739</item>
<item>740</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>87</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_114">
<Value>
<Obj>
<type>0</type>
<id>161</id>
<name>sext_ln51</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>51</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2398923816</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>741</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>88</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_115">
<Value>
<Obj>
<type>0</type>
<id>162</id>
<name>sext_ln55_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2398925120</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>742</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>89</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_116">
<Value>
<Obj>
<type>0</type>
<id>163</id>
<name>sext_ln55_3</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2398926184</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>743</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>90</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_117">
<Value>
<Obj>
<type>0</type>
<id>164</id>
<name>mul_ln55</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>mul_8s_8s_16_1_1_U3</rtlName>
<control/>
<opType>mul</opType>
<implIndex/>
<coreName/>
<coreId>9</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>744</item>
<item>745</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>91</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_118">
<Value>
<Obj>
<type>0</type>
<id>165</id>
<name>sext_ln55_4</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>746</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>92</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_119">
<Value>
<Obj>
<type>0</type>
<id>166</id>
<name>sext_ln55_5</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2398929920</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>747</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>64</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_120">
<Value>
<Obj>
<type>0</type>
<id>167</id>
<name>sext_ln55_6</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2398930984</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>748</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>65</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_121">
<Value>
<Obj>
<type>0</type>
<id>168</id>
<name>mul_ln55_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>mac_muladd_8s_8s_16s_17_4_1_U6</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>dsp</implIndex>
<coreName>DSP48</coreName>
<coreId>127</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>749</item>
<item>750</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.99</m_delay>
<m_topoIndex>66</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_122">
<Value>
<Obj>
<type>0</type>
<id>169</id>
<name>sext_ln55_7</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>mac_muladd_8s_8s_16s_17_4_1_U6</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>dsp</implIndex>
<coreName>DSP48</coreName>
<coreId>127</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>751</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>93</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_123">
<Value>
<Obj>
<type>0</type>
<id>170</id>
<name>sext_ln55_8</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>132</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>752</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>67</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_124">
<Value>
<Obj>
<type>0</type>
<id>171</id>
<name>sext_ln55_9</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>753</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>68</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_125">
<Value>
<Obj>
<type>0</type>
<id>172</id>
<name>mul_ln55_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>mac_muladd_8s_8s_16s_17_4_1_U7</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>dsp</implIndex>
<coreName>DSP48</coreName>
<coreId>127</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>754</item>
<item>755</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.99</m_delay>
<m_topoIndex>69</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_126">
<Value>
<Obj>
<type>0</type>
<id>173</id>
<name>sext_ln144</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>mac_muladd_8s_8s_16s_17_4_1_U7</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>dsp</implIndex>
<coreName>DSP48</coreName>
<coreId>127</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>756</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>94</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_127">
<Value>
<Obj>
<type>0</type>
<id>174</id>
<name>add_ln144</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>mac_muladd_8s_8s_16s_17_4_1_U6</rtlName>
<control>auto</control>
<opType>add</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>757</item>
<item>758</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.64</m_delay>
<m_topoIndex>95</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_128">
<Value>
<Obj>
<type>0</type>
<id>175</id>
<name>sext_ln144_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>sext_ln144_1_fu_990_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1601463141</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>759</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>134</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_129">
<Value>
<Obj>
<type>0</type>
<id>176</id>
<name>add_ln144_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>mac_muladd_8s_8s_16s_17_4_1_U7</rtlName>
<control>auto</control>
<opType>add</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>760</item>
<item>761</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.64</m_delay>
<m_topoIndex>96</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_130">
<Value>
<Obj>
<type>0</type>
<id>177</id>
<name>sext_ln144_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>sext_ln144_2_fu_993_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1970235514</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>762</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>135</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_131">
<Value>
<Obj>
<type>0</type>
<id>178</id>
<name>add_ln144_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>add_ln144_2_fu_996_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>tadder</implIndex>
<coreName>TAddSub</coreName>
<coreId>10</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>763</item>
<item>764</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>136</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_132">
<Value>
<Obj>
<type>0</type>
<id>179</id>
<name>conv_acc</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>lane_accum</originalName>
<rtlName>conv_acc_fu_1002_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>tadder</implIndex>
<coreName>TAddSub</coreName>
<coreId>10</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>765</item>
<item>766</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>137</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_133">
<Value>
<Obj>
<type>0</type>
<id>180</id>
<name>sext_ln55_10</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>542329928</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>767</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>97</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_134">
<Value>
<Obj>
<type>0</type>
<id>181</id>
<name>sext_ln55_11</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>795173737</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>768</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>98</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_135">
<Value>
<Obj>
<type>0</type>
<id>182</id>
<name>output_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>output</originalName>
<rtlName>mul_8s_8s_16_1_1_U4</rtlName>
<control/>
<opType>mul</opType>
<implIndex/>
<coreName/>
<coreId>808661306</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>769</item>
<item>770</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>99</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_136">
<Value>
<Obj>
<type>0</type>
<id>183</id>
<name>sext_ln51_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>51</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1866687858</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>771</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>100</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_137">
<Value>
<Obj>
<type>0</type>
<id>184</id>
<name>sext_ln55_12</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1886413614</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>772</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>101</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_138">
<Value>
<Obj>
<type>0</type>
<id>185</id>
<name>sext_ln55_13</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1885432901</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>773</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>102</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_139">
<Value>
<Obj>
<type>0</type>
<id>186</id>
<name>mul_ln55_4</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>mul_8s_8s_16_1_1_U5</rtlName>
<control/>
<opType>mul</opType>
<implIndex/>
<coreName/>
<coreId>536894769</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>774</item>
<item>775</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>103</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_140">
<Value>
<Obj>
<type>0</type>
<id>187</id>
<name>sext_ln55_14</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1936290661</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>776</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>104</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_141">
<Value>
<Obj>
<type>0</type>
<id>188</id>
<name>sext_ln55_15</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>570456436</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>777</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>70</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_142">
<Value>
<Obj>
<type>0</type>
<id>189</id>
<name>sext_ln55_16</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1214</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>778</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>71</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_143">
<Value>
<Obj>
<type>0</type>
<id>190</id>
<name>mul_ln55_5</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>mac_muladd_8s_8s_16s_17_4_1_U8</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>dsp</implIndex>
<coreName>DSP48</coreName>
<coreId>127</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>779</item>
<item>780</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.99</m_delay>
<m_topoIndex>72</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_144">
<Value>
<Obj>
<type>0</type>
<id>191</id>
<name>sext_ln55_17</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>mac_muladd_8s_8s_16s_17_4_1_U8</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>dsp</implIndex>
<coreName>DSP48</coreName>
<coreId>127</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>781</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>105</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_145">
<Value>
<Obj>
<type>0</type>
<id>192</id>
<name>sext_ln55_18</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1025</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>782</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>73</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_146">
<Value>
<Obj>
<type>0</type>
<id>193</id>
<name>sext_ln55_19</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1339</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>783</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>74</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_147">
<Value>
<Obj>
<type>0</type>
<id>194</id>
<name>mul_ln55_6</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>mac_muladd_8s_8s_16s_17_4_1_U9</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>dsp</implIndex>
<coreName>DSP48</coreName>
<coreId>127</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>784</item>
<item>785</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.99</m_delay>
<m_topoIndex>75</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_148">
<Value>
<Obj>
<type>0</type>
<id>195</id>
<name>sext_ln144_3</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>mac_muladd_8s_8s_16s_17_4_1_U9</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>dsp</implIndex>
<coreName>DSP48</coreName>
<coreId>127</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>786</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>106</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_149">
<Value>
<Obj>
<type>0</type>
<id>196</id>
<name>add_ln144_4</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>mac_muladd_8s_8s_16s_17_4_1_U8</rtlName>
<control>auto</control>
<opType>add</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>787</item>
<item>788</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.64</m_delay>
<m_topoIndex>107</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_150">
<Value>
<Obj>
<type>0</type>
<id>197</id>
<name>sext_ln144_4</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>sext_ln144_4_fu_1008_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>789</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>138</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_151">
<Value>
<Obj>
<type>0</type>
<id>198</id>
<name>add_ln144_5</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>mac_muladd_8s_8s_16s_17_4_1_U9</rtlName>
<control>auto</control>
<opType>add</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>790</item>
<item>791</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.64</m_delay>
<m_topoIndex>108</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_152">
<Value>
<Obj>
<type>0</type>
<id>199</id>
<name>sext_ln144_5</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>sext_ln144_5_fu_1011_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>41889</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>792</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>139</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_153">
<Value>
<Obj>
<type>0</type>
<id>200</id>
<name>add_ln144_6</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>add_ln144_6_fu_1014_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>tadder</implIndex>
<coreName>TAddSub</coreName>
<coreId>10</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>793</item>
<item>794</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>140</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_154">
<Value>
<Obj>
<type>0</type>
<id>201</id>
<name>conv_acc_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>lane_accum</originalName>
<rtlName>conv_acc_2_fu_1020_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>tadder</implIndex>
<coreName>TAddSub</coreName>
<coreId>10</coreId>
</Obj>
<bitwidth>32</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.73</m_delay>
<m_topoIndex>141</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_155">
<Value>
<Obj>
<type>0</type>
<id>202</id>
<name>icmp_ln163</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln163_fu_904_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>797</item>
<item>798</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>76</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_156">
<Value>
<Obj>
<type>0</type>
<id>203</id>
<name>br_ln163</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>908</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>799</item>
<item>800</item>
<item>801</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="_157">
<Value>
<Obj>
<type>0</type>
<id>205</id>
<name>conv_inner_cnt_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>246</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>246</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_inner_cnt</originalName>
<rtlName>conv_inner_cnt_1_fu_909_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>580</item>
<item>581</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>78</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_158">
<Value>
<Obj>
<type>0</type>
<id>206</id>
<name>conv_inner_cnt_write_ln246</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>246</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>246</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>582</item>
<item>583</item>
<item>1224</item>
<item>1226</item>
<item>1230</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.38</m_delay>
<m_topoIndex>79</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_159">
<Value>
<Obj>
<type>0</type>
<id>207</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>584</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>80</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_160">
<Value>
<Obj>
<type>0</type>
<id>209</id>
<name>bias_load</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>3892314240</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>403</item>
<item>1228</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>83</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_161">
<Value>
<Obj>
<type>0</type>
<id>210</id>
<name>bias_1_load</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>404</item>
<item>1227</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>84</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_162">
<Value>
<Obj>
<type>0</type>
<id>211</id>
<name>add_ln170</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>170</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>170</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>add_ln170_fu_1050_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>405</item>
<item>406</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>146</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_163">
<Value>
<Obj>
<type>0</type>
<id>212</id>
<name>add_ln170_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>170</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>170</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>add_ln170_1_fu_1056_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>tadder</implIndex>
<coreName>TAddSub</coreName>
<coreId>10</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>407</item>
<item>408</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>147</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_164">
<Value>
<Obj>
<type>0</type>
<id>213</id>
<name>add_ln170_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>170</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>170</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>add_ln170_2_fu_1026_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>tadder</implIndex>
<coreName>TAddSub</coreName>
<coreId>10</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>409</item>
<item>410</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>142</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_165">
<Value>
<Obj>
<type>0</type>
<id>214</id>
<name>add_ln170_3</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>170</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>170</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>add_ln170_3_fu_1032_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>tadder</implIndex>
<coreName>TAddSub</coreName>
<coreId>10</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>411</item>
<item>412</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>143</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_166">
<Value>
<Obj>
<type>0</type>
<id>215</id>
<name>conv_acc_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>170</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>170</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_acc</originalName>
<rtlName>conv_acc_1_fu_1062_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>tadder</implIndex>
<coreName>TAddSub</coreName>
<coreId>10</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>413</item>
<item>414</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>148</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_167">
<Value>
<Obj>
<type>0</type>
<id>216</id>
<name>tmp_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>175</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>175</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_1_reg_1699</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2399079280</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>416</item>
<item>417</item>
<item>419</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>149</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_168">
<Value>
<Obj>
<type>0</type>
<id>217</id>
<name>conv_sign_exten</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>176</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>176</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_sign_exten</originalName>
<rtlName>conv_sign_exten_fu_1100_p3</rtlName>
<control>auto</control>
<opType>select</opType>
<implIndex>auto_sel</implIndex>
<coreName>Sel</coreName>
<coreId>73</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>420</item>
<item>421</item>
<item>422</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>154</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_169">
<Value>
<Obj>
<type>0</type>
<id>218</id>
<name>ashr_ln181</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>ashr_ln181_fu_1106_p2</rtlName>
<control>auto</control>
<opType>ashr</opType>
<implIndex>auto_pipe</implIndex>
<coreName>Shifter</coreName>
<coreId>75</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>423</item>
<item>424</item>
</oprand_edges>
<opcode>ashr</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>155</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_170">
<Value>
<Obj>
<type>0</type>
<id>219</id>
<name>trunc_ln181</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>trunc_ln181_fu_1110_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2399082952</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>425</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>156</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_171">
<Value>
<Obj>
<type>0</type>
<id>220</id>
<name>trunc_ln181_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>trunc_ln181_1_fu_1114_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>426</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>157</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_172">
<Value>
<Obj>
<type>0</type>
<id>221</id>
<name>or_ln181</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>or_ln181_fu_1118_p2</rtlName>
<control/>
<opType>or</opType>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>427</item>
<item>428</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>158</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_173">
<Value>
<Obj>
<type>0</type>
<id>222</id>
<name>or_ln181_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>or_ln181_2_fu_1124_p2</rtlName>
<control/>
<opType>or</opType>
<implIndex/>
<coreName/>
<coreId>132</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>429</item>
<item>430</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>159</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_174">
<Value>
<Obj>
<type>0</type>
<id>223</id>
<name>conv_with_rnd_bit</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_with_rnd_bit</originalName>
<rtlName>conv_with_rnd_bit_fu_1130_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>431</item>
<item>432</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>160</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_175">
<Value>
<Obj>
<type>0</type>
<id>224</id>
<name>add_ln94</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>94</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>94</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>add_ln94_fu_1136_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>433</item>
<item>435</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.71</m_delay>
<m_topoIndex>161</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_176">
<Value>
<Obj>
<type>0</type>
<id>225</id>
<name>tmp_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>184</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_2_reg_1724</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>24</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>437</item>
<item>438</item>
<item>440</item>
<item>441</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>162</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_177">
<Value>
<Obj>
<type>0</type>
<id>226</id>
<name>icmp_ln184</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>184</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln184_fu_1204_p2</rtlName>
<control/>
<opType>icmp</opType>
<implIndex/>
<coreName/>
<coreId>209</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>442</item>
<item>444</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.76</m_delay>
<m_topoIndex>172</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_178">
<Value>
<Obj>
<type>0</type>
<id>227</id>
<name>icmp_ln186</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln186_fu_1209_p2</rtlName>
<control/>
<opType>icmp</opType>
<implIndex/>
<coreName/>
<coreId>75</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>445</item>
<item>447</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>173</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_179">
<Value>
<Obj>
<type>0</type>
<id>228</id>
<name>sext_ln101cast</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>sext_ln101cast_fu_1214_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2399095464</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>448</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>174</m_topoIndex>
<m_clusterGroupNumber>4</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_180">
<Value>
<Obj>
<type>0</type>
<id>229</id>
<name>ashr_ln192</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>ashr_ln192_fu_1217_p2</rtlName>
<control>auto</control>
<opType>ashr</opType>
<implIndex>auto_pipe</implIndex>
<coreName>Shifter</coreName>
<coreId>75</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>449</item>
<item>450</item>
</oprand_edges>
<opcode>ashr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>175</m_topoIndex>
<m_clusterGroupNumber>4</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_181">
<Value>
<Obj>
<type>0</type>
<id>230</id>
<name>sext_ln192_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>sext_ln192_2_fu_1222_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>451</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>4</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_182">
<Value>
<Obj>
<type>0</type>
<id>231</id>
<name>or_ln192</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>or_ln192_fu_1226_p2</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>3892314240</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>452</item>
<item>453</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>177</m_topoIndex>
<m_clusterGroupNumber>4</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_183">
<Value>
<Obj>
<type>0</type>
<id>232</id>
<name>conv_sum_bias</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_sum_bias</originalName>
<rtlName>conv_sum_bias_fu_1231_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>454</item>
<item>455</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.71</m_delay>
<m_topoIndex>178</m_topoIndex>
<m_clusterGroupNumber>4</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_184">
<Value>
<Obj>
<type>0</type>
<id>233</id>
<name>phitmp2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>phitmp2_fu_1237_p4</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>3892314240</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>457</item>
<item>458</item>
<item>459</item>
<item>460</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>179</m_topoIndex>
<m_clusterGroupNumber>5</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_185">
<Value>
<Obj>
<type>0</type>
<id>234</id>
<name>xor_ln184</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>184</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>xor_ln184_fu_1247_p2</rtlName>
<control/>
<opType>xor</opType>
<implIndex/>
<coreName/>
<coreId>132</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>461</item>
<item>463</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>180</m_topoIndex>
<m_clusterGroupNumber>6</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_186">
<Value>
<Obj>
<type>0</type>
<id>235</id>
<name>and_ln186</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>and_ln186_fu_1253_p2</rtlName>
<control/>
<opType>and</opType>
<implIndex/>
<coreName/>
<coreId>49</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>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>181</m_topoIndex>
<m_clusterGroupNumber>6</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_187">
<Value>
<Obj>
<type>0</type>
<id>236</id>
<name>select_ln186</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>select_ln186_fu_1259_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>466</item>
<item>468</item>
<item>470</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>182</m_topoIndex>
<m_clusterGroupNumber>5</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_188">
<Value>
<Obj>
<type>0</type>
<id>237</id>
<name>or_ln186</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>or_ln186_fu_1267_p2</rtlName>
<control/>
<opType>or</opType>
<implIndex/>
<coreName/>
<coreId>4294967295</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>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>183</m_topoIndex>
<m_clusterGroupNumber>5</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_189">
<Value>
<Obj>
<type>0</type>
<id>238</id>
<name>conv_final</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_final</originalName>
<rtlName>conv_final_fu_1273_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>473</item>
<item>474</item>
<item>475</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>184</m_topoIndex>
<m_clusterGroupNumber>5</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_190">
<Value>
<Obj>
<type>0</type>
<id>239</id>
<name>trunc_ln96</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>96</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>96</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>trunc_ln96_fu_1281_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>476</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>185</m_topoIndex>
<m_clusterGroupNumber>7</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_191">
<Value>
<Obj>
<type>0</type>
<id>240</id>
<name>tmp_3</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>221</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>221</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_3_fu_1285_p3</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>478</item>
<item>479</item>
<item>481</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>186</m_topoIndex>
<m_clusterGroupNumber>7</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_192">
<Value>
<Obj>
<type>0</type>
<id>241</id>
<name>conv_ch_in_lane</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>222</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>222</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_ch_in.lane</originalName>
<rtlName>conv_ch_in_lane_fu_1293_p3</rtlName>
<control>auto</control>
<opType>select</opType>
<implIndex>auto_sel</implIndex>
<coreName>Sel</coreName>
<coreId>73</coreId>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>482</item>
<item>484</item>
<item>485</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>187</m_topoIndex>
<m_clusterGroupNumber>7</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_193">
<Value>
<Obj>
<type>0</type>
<id>242</id>
<name>zext_ln82</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>82</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>82</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>zext_ln82_fu_1301_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>486</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>188</m_topoIndex>
<m_clusterGroupNumber>7</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_194">
<Value>
<Obj>
<type>0</type>
<id>243</id>
<name>conv_ch_in_lane_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>82</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>82</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_ch_in.lane</originalName>
<rtlName>conv_ch_in_lane_1_fu_1305_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>487</item>
<item>488</item>
<item>489</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>7</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_195">
<Value>
<Obj>
<type>0</type>
<id>244</id>
<name>add_ln170_5</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>170</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>170</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>add_ln170_5_fu_1075_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>490</item>
<item>491</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>150</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_196">
<Value>
<Obj>
<type>0</type>
<id>245</id>
<name>add_ln170_6</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>170</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>170</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>add_ln170_6_fu_1081_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>tadder</implIndex>
<coreName>TAddSub</coreName>
<coreId>10</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>492</item>
<item>493</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>151</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_197">
<Value>
<Obj>
<type>0</type>
<id>246</id>
<name>add_ln170_7</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>170</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>170</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>add_ln170_7_fu_1038_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>tadder</implIndex>
<coreName>TAddSub</coreName>
<coreId>10</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>494</item>
<item>495</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>144</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_198">
<Value>
<Obj>
<type>0</type>
<id>247</id>
<name>add_ln170_8</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>170</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>170</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>add_ln170_8_fu_1044_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>tadder</implIndex>
<coreName>TAddSub</coreName>
<coreId>10</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>496</item>
<item>497</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>145</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_199">
<Value>
<Obj>
<type>0</type>
<id>248</id>
<name>conv_acc_3</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>170</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>170</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_acc</originalName>
<rtlName>conv_acc_3_fu_1087_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>tadder</implIndex>
<coreName>TAddSub</coreName>
<coreId>10</coreId>
</Obj>
<bitwidth>32</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.73</m_delay>
<m_topoIndex>152</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_200">
<Value>
<Obj>
<type>0</type>
<id>249</id>
<name>tmp_4</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>175</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>175</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_4_reg_1709</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>500</item>
<item>501</item>
<item>502</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>153</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_201">
<Value>
<Obj>
<type>0</type>
<id>250</id>
<name>conv_sign_exten_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>176</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>176</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_sign_exten</originalName>
<rtlName>conv_sign_exten_1_fu_1152_p3</rtlName>
<control>auto</control>
<opType>select</opType>
<implIndex>auto_sel</implIndex>
<coreName>Sel</coreName>
<coreId>73</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>503</item>
<item>504</item>
<item>505</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>163</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_202">
<Value>
<Obj>
<type>0</type>
<id>251</id>
<name>ashr_ln181_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>ashr_ln181_1_fu_1158_p2</rtlName>
<control>auto</control>
<opType>ashr</opType>
<implIndex>auto_pipe</implIndex>
<coreName>Shifter</coreName>
<coreId>75</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>506</item>
<item>507</item>
</oprand_edges>
<opcode>ashr</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>164</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_203">
<Value>
<Obj>
<type>0</type>
<id>252</id>
<name>trunc_ln181_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>trunc_ln181_2_fu_1162_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>508</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>165</m_topoIndex>
<m_clusterGroupNumber>8</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_204">
<Value>
<Obj>
<type>0</type>
<id>253</id>
<name>trunc_ln181_3</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>trunc_ln181_3_fu_1166_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>509</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>166</m_topoIndex>
<m_clusterGroupNumber>8</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_205">
<Value>
<Obj>
<type>0</type>
<id>254</id>
<name>or_ln181_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>or_ln181_1_fu_1170_p2</rtlName>
<control/>
<opType>or</opType>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>510</item>
<item>511</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>167</m_topoIndex>
<m_clusterGroupNumber>9</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_206">
<Value>
<Obj>
<type>0</type>
<id>255</id>
<name>or_ln181_3</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>or_ln181_3_fu_1176_p2</rtlName>
<control/>
<opType>or</opType>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>512</item>
<item>513</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>168</m_topoIndex>
<m_clusterGroupNumber>8</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_207">
<Value>
<Obj>
<type>0</type>
<id>256</id>
<name>conv_with_rnd_bit_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_with_rnd_bit</originalName>
<rtlName>conv_with_rnd_bit_1_fu_1182_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>514</item>
<item>515</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>169</m_topoIndex>
<m_clusterGroupNumber>9</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_208">
<Value>
<Obj>
<type>0</type>
<id>257</id>
<name>add_ln94_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>94</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>94</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>add_ln94_1_fu_1188_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>516</item>
<item>517</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.71</m_delay>
<m_topoIndex>170</m_topoIndex>
<m_clusterGroupNumber>8</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_209">
<Value>
<Obj>
<type>0</type>
<id>258</id>
<name>tmp_5</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>184</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_5_reg_1739</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>24</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>518</item>
<item>519</item>
<item>520</item>
<item>521</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>171</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_210">
<Value>
<Obj>
<type>0</type>
<id>259</id>
<name>icmp_ln184_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>184</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln184_1_fu_1312_p2</rtlName>
<control/>
<opType>icmp</opType>
<implIndex/>
<coreName/>
<coreId>2399209352</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>522</item>
<item>523</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.76</m_delay>
<m_topoIndex>190</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_211">
<Value>
<Obj>
<type>0</type>
<id>260</id>
<name>icmp_ln186_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln186_1_fu_1317_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>524</item>
<item>525</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>191</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_212">
<Value>
<Obj>
<type>0</type>
<id>261</id>
<name>sext_ln101cast34</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>sext_ln101cast34_fu_1322_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>526</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>192</m_topoIndex>
<m_clusterGroupNumber>10</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_213">
<Value>
<Obj>
<type>0</type>
<id>262</id>
<name>ashr_ln192_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>ashr_ln192_1_fu_1325_p2</rtlName>
<control>auto</control>
<opType>ashr</opType>
<implIndex>auto_pipe</implIndex>
<coreName>Shifter</coreName>
<coreId>75</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>527</item>
<item>528</item>
</oprand_edges>
<opcode>ashr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>193</m_topoIndex>
<m_clusterGroupNumber>10</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_214">
<Value>
<Obj>
<type>0</type>
<id>263</id>
<name>sext_ln192_3</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>sext_ln192_3_fu_1330_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>529</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>194</m_topoIndex>
<m_clusterGroupNumber>10</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_215">
<Value>
<Obj>
<type>0</type>
<id>264</id>
<name>or_ln192_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>or_ln192_1_fu_1334_p2</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>530</item>
<item>531</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>195</m_topoIndex>
<m_clusterGroupNumber>10</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_216">
<Value>
<Obj>
<type>0</type>
<id>265</id>
<name>conv_sum_bias_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_sum_bias</originalName>
<rtlName>conv_sum_bias_1_fu_1339_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>532</item>
<item>533</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.71</m_delay>
<m_topoIndex>196</m_topoIndex>
<m_clusterGroupNumber>10</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_217">
<Value>
<Obj>
<type>0</type>
<id>266</id>
<name>phitmp3</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>phitmp3_fu_1345_p4</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>534</item>
<item>535</item>
<item>536</item>
<item>537</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>197</m_topoIndex>
<m_clusterGroupNumber>11</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_218">
<Value>
<Obj>
<type>0</type>
<id>267</id>
<name>xor_ln184_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>184</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>xor_ln184_1_fu_1355_p2</rtlName>
<control/>
<opType>xor</opType>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>538</item>
<item>539</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>198</m_topoIndex>
<m_clusterGroupNumber>12</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_219">
<Value>
<Obj>
<type>0</type>
<id>268</id>
<name>and_ln186_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>and_ln186_1_fu_1361_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>540</item>
<item>541</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>199</m_topoIndex>
<m_clusterGroupNumber>12</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_220">
<Value>
<Obj>
<type>0</type>
<id>269</id>
<name>select_ln186_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>select_ln186_2_fu_1367_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>542</item>
<item>543</item>
<item>544</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>200</m_topoIndex>
<m_clusterGroupNumber>11</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_221">
<Value>
<Obj>
<type>0</type>
<id>270</id>
<name>or_ln186_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>or_ln186_1_fu_1375_p2</rtlName>
<control/>
<opType>or</opType>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>545</item>
<item>546</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>201</m_topoIndex>
<m_clusterGroupNumber>11</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_222">
<Value>
<Obj>
<type>0</type>
<id>271</id>
<name>conv_final_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_final</originalName>
<rtlName>conv_final_1_fu_1381_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>547</item>
<item>548</item>
<item>549</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>202</m_topoIndex>
<m_clusterGroupNumber>11</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_223">
<Value>
<Obj>
<type>0</type>
<id>272</id>
<name>trunc_ln96_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>96</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>96</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>trunc_ln96_1_fu_1389_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>565</coreId>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>550</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>203</m_topoIndex>
<m_clusterGroupNumber>13</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_224">
<Value>
<Obj>
<type>0</type>
<id>273</id>
<name>tmp_6</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>221</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>221</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_6_fu_1393_p3</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>502</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>551</item>
<item>552</item>
<item>553</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>204</m_topoIndex>
<m_clusterGroupNumber>13</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_225">
<Value>
<Obj>
<type>0</type>
<id>274</id>
<name>conv_ch_in_lane_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>222</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>222</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_ch_in.lane</originalName>
<rtlName>conv_ch_in_lane_2_fu_1401_p3</rtlName>
<control>auto</control>
<opType>select</opType>
<implIndex>auto_sel</implIndex>
<coreName>Sel</coreName>
<coreId>73</coreId>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>554</item>
<item>555</item>
<item>556</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>205</m_topoIndex>
<m_clusterGroupNumber>13</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_226">
<Value>
<Obj>
<type>0</type>
<id>275</id>
<name>zext_ln82_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>82</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>82</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>zext_ln82_1_fu_1409_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>557</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>206</m_topoIndex>
<m_clusterGroupNumber>13</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_227">
<Value>
<Obj>
<type>0</type>
<id>276</id>
<name>conv_ch_in_lane_3</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>82</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>82</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_ch_in.lane</originalName>
<rtlName>conv_ch_in_lane_3_fu_1413_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>558</item>
<item>559</item>
<item>560</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>207</m_topoIndex>
<m_clusterGroupNumber>13</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_228">
<Value>
<Obj>
<type>0</type>
<id>277</id>
<name>p_Result_s</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>386</lineNumber>
<contextFuncName>operator=</contextFuncName>
<contextNormFuncName>operator_assign</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</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>operator=</second>
</first>
<second>386</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName>conv_out_TDATA_int_regslice</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>16</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>208</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_229">
<Value>
<Obj>
<type>0</type>
<id>278</id>
<name>conv_out_V_data_V_write_ln304</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_axi_sdata.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>304</lineNumber>
<contextFuncName>write</contextFuncName>
<contextNormFuncName>write</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</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>write</second>
</first>
<second>304</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control>auto</control>
<opType>adapter</opType>
<implIndex>axi4stream</implIndex>
<coreName>axis</coreName>
<coreId>123</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>9</count>
<item_version>0</item_version>
<item>566</item>
<item>567</item>
<item>568</item>
<item>569</item>
<item>570</item>
<item>571</item>
<item>573</item>
<item>574</item>
<item>576</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>0.00</m_delay>
<m_topoIndex>209</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_230">
<Value>
<Obj>
<type>0</type>
<id>279</id>
<name>conv_inner_cnt_write_ln244</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>244</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>244</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>577</item>
<item>578</item>
<item>1223</item>
<item>1225</item>
<item>1229</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.38</m_delay>
<m_topoIndex>81</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_231">
<Value>
<Obj>
<type>0</type>
<id>280</id>
<name>br_ln244</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>244</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>244</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>579</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>210</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_232">
<Value>
<Obj>
<type>0</type>
<id>282</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>585</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="_233">
<Value>
<Obj>
<type>0</type>
<id>284</id>
<name>_ln251</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>251</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>251</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>211</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>29</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_234">
<Value>
<Obj>
<type>2</type>
<id>286</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="_235">
<Value>
<Obj>
<type>2</type>
<id>308</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>4294967295</content>
</item>
<item class_id_reference="16" object_id="_236">
<Value>
<Obj>
<type>2</type>
<id>316</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="_237">
<Value>
<Obj>
<type>2</type>
<id>333</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="_238">
<Value>
<Obj>
<type>2</type>
<id>337</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>7</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>5</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_239">
<Value>
<Obj>
<type>2</type>
<id>418</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>47</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>31</content>
</item>
<item class_id_reference="16" object_id="_240">
<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>28263</coreId>
</Obj>
<bitwidth>9</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>439</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="_242">
<Value>
<Obj>
<type>2</type>
<id>443</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>1</coreId>
</Obj>
<bitwidth>24</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_243">
<Value>
<Obj>
<type>2</type>
<id>446</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>97</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>4294967040</content>
</item>
<item class_id_reference="16" object_id="_244">
<Value>
<Obj>
<type>2</type>
<id>462</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>888</coreId>
</Obj>
<bitwidth>1</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>467</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>507</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>0</const_type>
<content>128</content>
</item>
<item class_id_reference="16" object_id="_246">
<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>8</bitwidth>
</Value>
<const_type>0</const_type>
<content>127</content>
</item>
<item class_id_reference="16" object_id="_247">
<Value>
<Obj>
<type>2</type>
<id>480</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>733</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>7</content>
</item>
<item class_id_reference="16" object_id="_248">
<Value>
<Obj>
<type>2</type>
<id>483</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>81</coreId>
</Obj>
<bitwidth>7</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>572</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>411</coreId>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_250">
<Value>
<Obj>
<type>2</type>
<id>575</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="_251">
<Value>
<Obj>
<type>2</type>
<id>598</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>2399249536</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>15</content>
</item>
<item class_id_reference="16" object_id="_252">
<Value>
<Obj>
<type>2</type>
<id>680</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="_253">
<Value>
<Obj>
<type>2</type>
<id>682</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>23</content>
</item>
<item class_id_reference="16" object_id="_254">
<Value>
<Obj>
<type>2</type>
<id>690</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>24</content>
</item>
<item class_id_reference="16" object_id="_255">
<Value>
<Obj>
<type>2</type>
<id>699</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>32</content>
</item>
<item class_id_reference="16" object_id="_256">
<Value>
<Obj>
<type>2</type>
<id>701</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>39</content>
</item>
<item class_id_reference="16" object_id="_257">
<Value>
<Obj>
<type>2</type>
<id>709</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>40</content>
</item>
<item class_id_reference="16" object_id="_258">
<Value>
<Obj>
<type>2</type>
<id>711</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>47</content>
</item>
<item class_id_reference="16" object_id="_259">
<Value>
<Obj>
<type>2</type>
<id>719</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>2399271216</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>48</content>
</item>
<item class_id_reference="16" object_id="_260">
<Value>
<Obj>
<type>2</type>
<id>721</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>4294967295</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>55</content>
</item>
<item class_id_reference="16" object_id="_261">
<Value>
<Obj>
<type>2</type>
<id>729</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>4294967295</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>56</content>
</item>
<item class_id_reference="16" object_id="_262">
<Value>
<Obj>
<type>2</type>
<id>731</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>4294967295</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>63</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="_263">
<Obj>
<type>3</type>
<id>93</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>0</coreId>
</Obj>
<node_objs>
<count>29</count>
<item_version>0</item_version>
<item>23</item>
<item>24</item>
<item>25</item>
<item>26</item>
<item>27</item>
<item>28</item>
<item>29</item>
<item>30</item>
<item>31</item>
<item>32</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>
</node_objs>
</item>
<item class_id_reference="18" object_id="_264">
<Obj>
<type>3</type>
<id>111</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>1633973087</coreId>
</Obj>
<node_objs>
<count>16</count>
<item_version>0</item_version>
<item>94</item>
<item>95</item>
<item>96</item>
<item>97</item>
<item>98</item>
<item>99</item>
<item>100</item>
<item>101</item>
<item>102</item>
<item>103</item>
<item>104</item>
<item>105</item>
<item>106</item>
<item>107</item>
<item>109</item>
<item>110</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_265">
<Obj>
<type>3</type>
<id>116</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>49</coreId>
</Obj>
<node_objs>
<count>3</count>
<item_version>0</item_version>
<item>112</item>
<item>114</item>
<item>115</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_266">
<Obj>
<type>3</type>
<id>124</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>132</coreId>
</Obj>
<node_objs>
<count>7</count>
<item_version>0</item_version>
<item>117</item>
<item>118</item>
<item>119</item>
<item>120</item>
<item>121</item>
<item>122</item>
<item>123</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_267">
<Obj>
<type>3</type>
<id>204</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>0</coreId>
</Obj>
<node_objs>
<count>79</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>
<item>132</item>
<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>
<item>150</item>
<item>151</item>
<item>152</item>
<item>153</item>
<item>154</item>
<item>155</item>
<item>156</item>
<item>157</item>
<item>158</item>
<item>159</item>
<item>160</item>
<item>161</item>
<item>162</item>
<item>163</item>
<item>164</item>
<item>165</item>
<item>166</item>
<item>167</item>
<item>168</item>
<item>169</item>
<item>170</item>
<item>171</item>
<item>172</item>
<item>173</item>
<item>174</item>
<item>175</item>
<item>176</item>
<item>177</item>
<item>178</item>
<item>179</item>
<item>180</item>
<item>181</item>
<item>182</item>
<item>183</item>
<item>184</item>
<item>185</item>
<item>186</item>
<item>187</item>
<item>188</item>
<item>189</item>
<item>190</item>
<item>191</item>
<item>192</item>
<item>193</item>
<item>194</item>
<item>195</item>
<item>196</item>
<item>197</item>
<item>198</item>
<item>199</item>
<item>200</item>
<item>201</item>
<item>202</item>
<item>203</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_268">
<Obj>
<type>3</type>
<id>208</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>1</coreId>
</Obj>
<node_objs>
<count>3</count>
<item_version>0</item_version>
<item>205</item>
<item>206</item>
<item>207</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_269">
<Obj>
<type>3</type>
<id>281</id>
<name>_ifconv</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>72</count>
<item_version>0</item_version>
<item>209</item>
<item>210</item>
<item>211</item>
<item>212</item>
<item>213</item>
<item>214</item>
<item>215</item>
<item>216</item>
<item>217</item>
<item>218</item>
<item>219</item>
<item>220</item>
<item>221</item>
<item>222</item>
<item>223</item>
<item>224</item>
<item>225</item>
<item>226</item>
<item>227</item>
<item>228</item>
<item>229</item>
<item>230</item>
<item>231</item>
<item>232</item>
<item>233</item>
<item>234</item>
<item>235</item>
<item>236</item>
<item>237</item>
<item>238</item>
<item>239</item>
<item>240</item>
<item>241</item>
<item>242</item>
<item>243</item>
<item>244</item>
<item>245</item>
<item>246</item>
<item>247</item>
<item>248</item>
<item>249</item>
<item>250</item>
<item>251</item>
<item>252</item>
<item>253</item>
<item>254</item>
<item>255</item>
<item>256</item>
<item>257</item>
<item>258</item>
<item>259</item>
<item>260</item>
<item>261</item>
<item>262</item>
<item>263</item>
<item>264</item>
<item>265</item>
<item>266</item>
<item>267</item>
<item>268</item>
<item>269</item>
<item>270</item>
<item>271</item>
<item>272</item>
<item>273</item>
<item>274</item>
<item>275</item>
<item>276</item>
<item>277</item>
<item>278</item>
<item>279</item>
<item>280</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_270">
<Obj>
<type>3</type>
<id>283</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>1</count>
<item_version>0</item_version>
<item>282</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_271">
<Obj>
<type>3</type>
<id>285</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>284</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>462</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_272">
<id>287</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_273">
<id>288</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>24</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_274">
<id>289</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_275">
<id>292</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>26</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_276">
<id>294</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>27</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_277">
<id>296</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>28</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_278">
<id>299</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>29</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_279">
<id>301</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>30</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_280">
<id>303</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>31</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_281">
<id>304</id>
<edge_type>1</edge_type>
<source_obj>29</source_obj>
<sink_obj>32</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_282">
<id>305</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_283">
<id>306</id>
<edge_type>1</edge_type>
<source_obj>31</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_284">
<id>307</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_285">
<id>309</id>
<edge_type>1</edge_type>
<source_obj>308</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_286">
<id>310</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>76</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_287">
<id>311</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>77</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_288">
<id>312</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>78</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_289">
<id>313</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_290">
<id>314</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>80</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_291">
<id>315</id>
<edge_type>1</edge_type>
<source_obj>78</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_292">
<id>317</id>
<edge_type>1</edge_type>
<source_obj>316</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_293">
<id>318</id>
<edge_type>1</edge_type>
<source_obj>81</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_294">
<id>319</id>
<edge_type>1</edge_type>
<source_obj>82</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_295">
<id>320</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_296">
<id>321</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="_297">
<id>322</id>
<edge_type>1</edge_type>
<source_obj>80</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_298">
<id>323</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="_299">
<id>324</id>
<edge_type>1</edge_type>
<source_obj>308</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_300">
<id>325</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_301">
<id>326</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="_302">
<id>327</id>
<edge_type>1</edge_type>
<source_obj>308</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_303">
<id>328</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_304">
<id>329</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_305">
<id>330</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="_306">
<id>331</id>
<edge_type>1</edge_type>
<source_obj>316</source_obj>
<sink_obj>89</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_307">
<id>332</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="_308">
<id>334</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>91</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_309">
<id>335</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>91</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_310">
<id>336</id>
<edge_type>2</edge_type>
<source_obj>111</source_obj>
<sink_obj>92</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_311">
<id>338</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>94</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_312">
<id>339</id>
<edge_type>2</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="_313">
<id>340</id>
<edge_type>1</edge_type>
<source_obj>126</source_obj>
<sink_obj>94</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_314">
<id>341</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>94</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_315">
<id>342</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_316">
<id>343</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_317">
<id>344</id>
<edge_type>1</edge_type>
<source_obj>127</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_318">
<id>345</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_319">
<id>346</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_320">
<id>347</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_321">
<id>348</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_322">
<id>349</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_323">
<id>350</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>97</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_324">
<id>351</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>97</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_325">
<id>352</id>
<edge_type>1</edge_type>
<source_obj>129</source_obj>
<sink_obj>97</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_326">
<id>353</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>97</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_327">
<id>354</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_328">
<id>355</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_329">
<id>356</id>
<edge_type>1</edge_type>
<source_obj>130</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_330">
<id>357</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_331">
<id>358</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_332">
<id>359</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_333">
<id>360</id>
<edge_type>1</edge_type>
<source_obj>201</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_334">
<id>361</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_335">
<id>362</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_336">
<id>363</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>100</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>132</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_338">
<id>365</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_339">
<id>366</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_340">
<id>367</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_341">
<id>368</id>
<edge_type>1</edge_type>
<source_obj>133</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_342">
<id>369</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_343">
<id>370</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_344">
<id>371</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_345">
<id>372</id>
<edge_type>1</edge_type>
<source_obj>134</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_346">
<id>373</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_347">
<id>374</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_348">
<id>375</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_349">
<id>376</id>
<edge_type>1</edge_type>
<source_obj>135</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_350">
<id>377</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_351">
<id>378</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_352">
<id>379</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_353">
<id>380</id>
<edge_type>1</edge_type>
<source_obj>136</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_354">
<id>381</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_355">
<id>382</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_356">
<id>383</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_357">
<id>384</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_358">
<id>385</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_359">
<id>386</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_360">
<id>387</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_361">
<id>388</id>
<edge_type>1</edge_type>
<source_obj>107</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_362">
<id>389</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_363">
<id>390</id>
<edge_type>1</edge_type>
<source_obj>106</source_obj>
<sink_obj>107</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_364">
<id>391</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>107</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_365">
<id>392</id>
<edge_type>1</edge_type>
<source_obj>106</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_366">
<id>393</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_367">
<id>394</id>
<edge_type>1</edge_type>
<source_obj>109</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_368">
<id>395</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_369">
<id>396</id>
<edge_type>2</edge_type>
<source_obj>285</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_370">
<id>397</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>112</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_371">
<id>398</id>
<edge_type>1</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="_372">
<id>399</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>114</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_373">
<id>400</id>
<edge_type>1</edge_type>
<source_obj>114</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_374">
<id>401</id>
<edge_type>2</edge_type>
<source_obj>204</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_375">
<id>402</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_376">
<id>403</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>209</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_377">
<id>404</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>210</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_378">
<id>405</id>
<edge_type>1</edge_type>
<source_obj>136</source_obj>
<sink_obj>211</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_379">
<id>406</id>
<edge_type>1</edge_type>
<source_obj>134</source_obj>
<sink_obj>211</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_380">
<id>407</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="_381">
<id>408</id>
<edge_type>1</edge_type>
<source_obj>135</source_obj>
<sink_obj>212</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_382">
<id>409</id>
<edge_type>1</edge_type>
<source_obj>133</source_obj>
<sink_obj>213</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_383">
<id>410</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>213</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_384">
<id>411</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="_385">
<id>412</id>
<edge_type>1</edge_type>
<source_obj>132</source_obj>
<sink_obj>214</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_386">
<id>413</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="_387">
<id>414</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="_388">
<id>417</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="_389">
<id>419</id>
<edge_type>1</edge_type>
<source_obj>418</source_obj>
<sink_obj>216</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_390">
<id>420</id>
<edge_type>1</edge_type>
<source_obj>216</source_obj>
<sink_obj>217</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_391">
<id>421</id>
<edge_type>1</edge_type>
<source_obj>87</source_obj>
<sink_obj>217</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_392">
<id>422</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>217</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_393">
<id>423</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="_394">
<id>424</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>218</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_395">
<id>425</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>219</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_396">
<id>426</id>
<edge_type>1</edge_type>
<source_obj>217</source_obj>
<sink_obj>220</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_397">
<id>427</id>
<edge_type>1</edge_type>
<source_obj>217</source_obj>
<sink_obj>221</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_398">
<id>428</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>221</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_399">
<id>429</id>
<edge_type>1</edge_type>
<source_obj>220</source_obj>
<sink_obj>222</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_400">
<id>430</id>
<edge_type>1</edge_type>
<source_obj>219</source_obj>
<sink_obj>222</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_401">
<id>431</id>
<edge_type>1</edge_type>
<source_obj>221</source_obj>
<sink_obj>223</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_402">
<id>432</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>223</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_403">
<id>433</id>
<edge_type>1</edge_type>
<source_obj>222</source_obj>
<sink_obj>224</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_404">
<id>435</id>
<edge_type>1</edge_type>
<source_obj>434</source_obj>
<sink_obj>224</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_405">
<id>438</id>
<edge_type>1</edge_type>
<source_obj>223</source_obj>
<sink_obj>225</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_406">
<id>440</id>
<edge_type>1</edge_type>
<source_obj>439</source_obj>
<sink_obj>225</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_407">
<id>441</id>
<edge_type>1</edge_type>
<source_obj>418</source_obj>
<sink_obj>225</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_408">
<id>442</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="_409">
<id>444</id>
<edge_type>1</edge_type>
<source_obj>443</source_obj>
<sink_obj>226</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_410">
<id>445</id>
<edge_type>1</edge_type>
<source_obj>223</source_obj>
<sink_obj>227</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_411">
<id>447</id>
<edge_type>1</edge_type>
<source_obj>446</source_obj>
<sink_obj>227</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_412">
<id>448</id>
<edge_type>1</edge_type>
<source_obj>90</source_obj>
<sink_obj>228</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_413">
<id>449</id>
<edge_type>1</edge_type>
<source_obj>209</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_414">
<id>450</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="_415">
<id>451</id>
<edge_type>1</edge_type>
<source_obj>229</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_416">
<id>452</id>
<edge_type>1</edge_type>
<source_obj>224</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_417">
<id>453</id>
<edge_type>1</edge_type>
<source_obj>434</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_418">
<id>454</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="_419">
<id>455</id>
<edge_type>1</edge_type>
<source_obj>230</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_420">
<id>458</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="_421">
<id>459</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>233</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_422">
<id>460</id>
<edge_type>1</edge_type>
<source_obj>439</source_obj>
<sink_obj>233</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_423">
<id>461</id>
<edge_type>1</edge_type>
<source_obj>226</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_424">
<id>463</id>
<edge_type>1</edge_type>
<source_obj>462</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_425">
<id>464</id>
<edge_type>1</edge_type>
<source_obj>227</source_obj>
<sink_obj>235</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_426">
<id>465</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="_427">
<id>466</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="_428">
<id>468</id>
<edge_type>1</edge_type>
<source_obj>467</source_obj>
<sink_obj>236</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_429">
<id>470</id>
<edge_type>1</edge_type>
<source_obj>469</source_obj>
<sink_obj>236</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_430">
<id>471</id>
<edge_type>1</edge_type>
<source_obj>235</source_obj>
<sink_obj>237</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_431">
<id>472</id>
<edge_type>1</edge_type>
<source_obj>226</source_obj>
<sink_obj>237</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_432">
<id>473</id>
<edge_type>1</edge_type>
<source_obj>237</source_obj>
<sink_obj>238</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_433">
<id>474</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="_434">
<id>475</id>
<edge_type>1</edge_type>
<source_obj>233</source_obj>
<sink_obj>238</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_435">
<id>476</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="_436">
<id>479</id>
<edge_type>1</edge_type>
<source_obj>238</source_obj>
<sink_obj>240</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_437">
<id>481</id>
<edge_type>1</edge_type>
<source_obj>480</source_obj>
<sink_obj>240</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_438">
<id>482</id>
<edge_type>1</edge_type>
<source_obj>240</source_obj>
<sink_obj>241</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_439">
<id>484</id>
<edge_type>1</edge_type>
<source_obj>483</source_obj>
<sink_obj>241</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_440">
<id>485</id>
<edge_type>1</edge_type>
<source_obj>239</source_obj>
<sink_obj>241</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_441">
<id>486</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="_442">
<id>487</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>243</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_443">
<id>488</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="_444">
<id>489</id>
<edge_type>1</edge_type>
<source_obj>238</source_obj>
<sink_obj>243</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_445">
<id>490</id>
<edge_type>1</edge_type>
<source_obj>130</source_obj>
<sink_obj>244</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_446">
<id>491</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>244</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_447">
<id>492</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="_448">
<id>493</id>
<edge_type>1</edge_type>
<source_obj>129</source_obj>
<sink_obj>245</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_449">
<id>494</id>
<edge_type>1</edge_type>
<source_obj>127</source_obj>
<sink_obj>246</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_450">
<id>495</id>
<edge_type>1</edge_type>
<source_obj>201</source_obj>
<sink_obj>246</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_451">
<id>496</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="_452">
<id>497</id>
<edge_type>1</edge_type>
<source_obj>126</source_obj>
<sink_obj>247</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_453">
<id>498</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="_454">
<id>499</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>248</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_455">
<id>501</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="_456">
<id>502</id>
<edge_type>1</edge_type>
<source_obj>418</source_obj>
<sink_obj>249</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_457">
<id>503</id>
<edge_type>1</edge_type>
<source_obj>249</source_obj>
<sink_obj>250</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_458">
<id>504</id>
<edge_type>1</edge_type>
<source_obj>87</source_obj>
<sink_obj>250</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_459">
<id>505</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>250</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_460">
<id>506</id>
<edge_type>1</edge_type>
<source_obj>248</source_obj>
<sink_obj>251</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_461">
<id>507</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>251</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_462">
<id>508</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="_463">
<id>509</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="_464">
<id>510</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>254</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_465">
<id>511</id>
<edge_type>1</edge_type>
<source_obj>251</source_obj>
<sink_obj>254</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_466">
<id>512</id>
<edge_type>1</edge_type>
<source_obj>253</source_obj>
<sink_obj>255</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_467">
<id>513</id>
<edge_type>1</edge_type>
<source_obj>252</source_obj>
<sink_obj>255</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_468">
<id>514</id>
<edge_type>1</edge_type>
<source_obj>254</source_obj>
<sink_obj>256</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_469">
<id>515</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>256</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_470">
<id>516</id>
<edge_type>1</edge_type>
<source_obj>255</source_obj>
<sink_obj>257</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_471">
<id>517</id>
<edge_type>1</edge_type>
<source_obj>434</source_obj>
<sink_obj>257</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_472">
<id>519</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="_473">
<id>520</id>
<edge_type>1</edge_type>
<source_obj>439</source_obj>
<sink_obj>258</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_474">
<id>521</id>
<edge_type>1</edge_type>
<source_obj>418</source_obj>
<sink_obj>258</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_475">
<id>522</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="_476">
<id>523</id>
<edge_type>1</edge_type>
<source_obj>443</source_obj>
<sink_obj>259</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_477">
<id>524</id>
<edge_type>1</edge_type>
<source_obj>256</source_obj>
<sink_obj>260</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_478">
<id>525</id>
<edge_type>1</edge_type>
<source_obj>446</source_obj>
<sink_obj>260</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_479">
<id>526</id>
<edge_type>1</edge_type>
<source_obj>90</source_obj>
<sink_obj>261</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_480">
<id>527</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="_481">
<id>528</id>
<edge_type>1</edge_type>
<source_obj>261</source_obj>
<sink_obj>262</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_482">
<id>529</id>
<edge_type>1</edge_type>
<source_obj>262</source_obj>
<sink_obj>263</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_483">
<id>530</id>
<edge_type>1</edge_type>
<source_obj>257</source_obj>
<sink_obj>264</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_484">
<id>531</id>
<edge_type>1</edge_type>
<source_obj>434</source_obj>
<sink_obj>264</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_485">
<id>532</id>
<edge_type>1</edge_type>
<source_obj>264</source_obj>
<sink_obj>265</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_486">
<id>533</id>
<edge_type>1</edge_type>
<source_obj>263</source_obj>
<sink_obj>265</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_487">
<id>535</id>
<edge_type>1</edge_type>
<source_obj>265</source_obj>
<sink_obj>266</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_488">
<id>536</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>266</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_489">
<id>537</id>
<edge_type>1</edge_type>
<source_obj>439</source_obj>
<sink_obj>266</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_490">
<id>538</id>
<edge_type>1</edge_type>
<source_obj>259</source_obj>
<sink_obj>267</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_491">
<id>539</id>
<edge_type>1</edge_type>
<source_obj>462</source_obj>
<sink_obj>267</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_492">
<id>540</id>
<edge_type>1</edge_type>
<source_obj>260</source_obj>
<sink_obj>268</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_493">
<id>541</id>
<edge_type>1</edge_type>
<source_obj>267</source_obj>
<sink_obj>268</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_494">
<id>542</id>
<edge_type>1</edge_type>
<source_obj>268</source_obj>
<sink_obj>269</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_495">
<id>543</id>
<edge_type>1</edge_type>
<source_obj>467</source_obj>
<sink_obj>269</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_496">
<id>544</id>
<edge_type>1</edge_type>
<source_obj>469</source_obj>
<sink_obj>269</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_497">
<id>545</id>
<edge_type>1</edge_type>
<source_obj>268</source_obj>
<sink_obj>270</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_498">
<id>546</id>
<edge_type>1</edge_type>
<source_obj>259</source_obj>
<sink_obj>270</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_499">
<id>547</id>
<edge_type>1</edge_type>
<source_obj>270</source_obj>
<sink_obj>271</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_500">
<id>548</id>
<edge_type>1</edge_type>
<source_obj>269</source_obj>
<sink_obj>271</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_501">
<id>549</id>
<edge_type>1</edge_type>
<source_obj>266</source_obj>
<sink_obj>271</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_502">
<id>550</id>
<edge_type>1</edge_type>
<source_obj>271</source_obj>
<sink_obj>272</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_503">
<id>552</id>
<edge_type>1</edge_type>
<source_obj>271</source_obj>
<sink_obj>273</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_504">
<id>553</id>
<edge_type>1</edge_type>
<source_obj>480</source_obj>
<sink_obj>273</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_505">
<id>554</id>
<edge_type>1</edge_type>
<source_obj>273</source_obj>
<sink_obj>274</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_506">
<id>555</id>
<edge_type>1</edge_type>
<source_obj>483</source_obj>
<sink_obj>274</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_507">
<id>556</id>
<edge_type>1</edge_type>
<source_obj>272</source_obj>
<sink_obj>274</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_508">
<id>557</id>
<edge_type>1</edge_type>
<source_obj>274</source_obj>
<sink_obj>275</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_509">
<id>558</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>276</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_510">
<id>559</id>
<edge_type>1</edge_type>
<source_obj>275</source_obj>
<sink_obj>276</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_511">
<id>560</id>
<edge_type>1</edge_type>
<source_obj>271</source_obj>
<sink_obj>276</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_512">
<id>563</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="_513">
<id>564</id>
<edge_type>1</edge_type>
<source_obj>243</source_obj>
<sink_obj>277</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_514">
<id>567</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>278</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_515">
<id>568</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>278</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_516">
<id>569</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>278</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_517">
<id>570</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>278</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_518">
<id>571</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="_519">
<id>573</id>
<edge_type>1</edge_type>
<source_obj>572</source_obj>
<sink_obj>278</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_520">
<id>574</id>
<edge_type>1</edge_type>
<source_obj>572</source_obj>
<sink_obj>278</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_521">
<id>576</id>
<edge_type>1</edge_type>
<source_obj>575</source_obj>
<sink_obj>278</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_522">
<id>577</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>279</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_523">
<id>578</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>279</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_524">
<id>579</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>280</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_525">
<id>580</id>
<edge_type>1</edge_type>
<source_obj>137</source_obj>
<sink_obj>205</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_526">
<id>581</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>205</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_527">
<id>582</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="_528">
<id>583</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>206</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_529">
<id>584</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>207</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_530">
<id>585</id>
<edge_type>2</edge_type>
<source_obj>111</source_obj>
<sink_obj>282</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_531">
<id>588</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>117</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_532">
<id>589</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>117</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_533">
<id>590</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>117</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_534">
<id>591</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>117</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_535">
<id>592</id>
<edge_type>1</edge_type>
<source_obj>117</source_obj>
<sink_obj>118</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_536">
<id>593</id>
<edge_type>1</edge_type>
<source_obj>118</source_obj>
<sink_obj>119</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_537">
<id>596</id>
<edge_type>1</edge_type>
<source_obj>118</source_obj>
<sink_obj>120</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_538">
<id>597</id>
<edge_type>1</edge_type>
<source_obj>439</source_obj>
<sink_obj>120</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_539">
<id>599</id>
<edge_type>1</edge_type>
<source_obj>598</source_obj>
<sink_obj>120</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_540">
<id>600</id>
<edge_type>1</edge_type>
<source_obj>120</source_obj>
<sink_obj>121</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_541">
<id>601</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>121</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_542">
<id>602</id>
<edge_type>1</edge_type>
<source_obj>119</source_obj>
<sink_obj>122</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_543">
<id>603</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>122</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_544">
<id>604</id>
<edge_type>2</edge_type>
<source_obj>204</source_obj>
<sink_obj>123</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_545">
<id>605</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_546">
<id>606</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_547">
<id>607</id>
<edge_type>1</edge_type>
<source_obj>94</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_548">
<id>608</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_549">
<id>609</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>126</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_550">
<id>610</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>126</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_551">
<id>611</id>
<edge_type>1</edge_type>
<source_obj>95</source_obj>
<sink_obj>126</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_552">
<id>612</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>126</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_553">
<id>613</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>127</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_554">
<id>614</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>127</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_555">
<id>615</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>127</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_556">
<id>616</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>127</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_557">
<id>617</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>128</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_558">
<id>618</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>128</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_559">
<id>619</id>
<edge_type>1</edge_type>
<source_obj>97</source_obj>
<sink_obj>128</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_560">
<id>620</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>128</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_561">
<id>621</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>129</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_562">
<id>622</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>129</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_563">
<id>623</id>
<edge_type>1</edge_type>
<source_obj>98</source_obj>
<sink_obj>129</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_564">
<id>624</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>129</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_565">
<id>625</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>130</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_566">
<id>626</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>130</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_567">
<id>627</id>
<edge_type>1</edge_type>
<source_obj>99</source_obj>
<sink_obj>130</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_568">
<id>628</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>130</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_569">
<id>629</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>131</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_570">
<id>630</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>131</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_571">
<id>631</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>131</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_572">
<id>632</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>131</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_573">
<id>633</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_574">
<id>634</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="_575">
<id>635</id>
<edge_type>1</edge_type>
<source_obj>101</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_576">
<id>636</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_577">
<id>637</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_578">
<id>638</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_579">
<id>639</id>
<edge_type>1</edge_type>
<source_obj>102</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_580">
<id>640</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_581">
<id>641</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_582">
<id>642</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_583">
<id>643</id>
<edge_type>1</edge_type>
<source_obj>103</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_584">
<id>644</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_585">
<id>645</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>135</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_586">
<id>646</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>135</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_587">
<id>647</id>
<edge_type>1</edge_type>
<source_obj>104</source_obj>
<sink_obj>135</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_588">
<id>648</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>135</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_589">
<id>649</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>136</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_590">
<id>650</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>136</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_591">
<id>651</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>136</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_592">
<id>652</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>136</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_593">
<id>653</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>137</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_594">
<id>656</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>138</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_595">
<id>657</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>138</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_596">
<id>658</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>138</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_597">
<id>659</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>138</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_598">
<id>660</id>
<edge_type>1</edge_type>
<source_obj>138</source_obj>
<sink_obj>139</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_599">
<id>662</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>140</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_600">
<id>663</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>140</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_601">
<id>664</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>140</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_602">
<id>665</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>140</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_603">
<id>666</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="_604">
<id>667</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="_605">
<id>668</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_606">
<id>671</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>144</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_607">
<id>672</id>
<edge_type>1</edge_type>
<source_obj>439</source_obj>
<sink_obj>144</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_608">
<id>673</id>
<edge_type>1</edge_type>
<source_obj>598</source_obj>
<sink_obj>144</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_609">
<id>675</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>145</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_610">
<id>676</id>
<edge_type>1</edge_type>
<source_obj>439</source_obj>
<sink_obj>145</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_611">
<id>677</id>
<edge_type>1</edge_type>
<source_obj>598</source_obj>
<sink_obj>145</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_612">
<id>679</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>146</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_613">
<id>681</id>
<edge_type>1</edge_type>
<source_obj>680</source_obj>
<sink_obj>146</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_614">
<id>683</id>
<edge_type>1</edge_type>
<source_obj>682</source_obj>
<sink_obj>146</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_615">
<id>685</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>147</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_616">
<id>686</id>
<edge_type>1</edge_type>
<source_obj>680</source_obj>
<sink_obj>147</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_617">
<id>687</id>
<edge_type>1</edge_type>
<source_obj>682</source_obj>
<sink_obj>147</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_618">
<id>689</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>148</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_619">
<id>691</id>
<edge_type>1</edge_type>
<source_obj>690</source_obj>
<sink_obj>148</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_620">
<id>692</id>
<edge_type>1</edge_type>
<source_obj>418</source_obj>
<sink_obj>148</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_621">
<id>694</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>149</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_622">
<id>695</id>
<edge_type>1</edge_type>
<source_obj>690</source_obj>
<sink_obj>149</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_623">
<id>696</id>
<edge_type>1</edge_type>
<source_obj>418</source_obj>
<sink_obj>149</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_624">
<id>698</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_625">
<id>700</id>
<edge_type>1</edge_type>
<source_obj>699</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_626">
<id>702</id>
<edge_type>1</edge_type>
<source_obj>701</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_627">
<id>704</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_628">
<id>705</id>
<edge_type>1</edge_type>
<source_obj>699</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_629">
<id>706</id>
<edge_type>1</edge_type>
<source_obj>701</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_630">
<id>708</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_631">
<id>710</id>
<edge_type>1</edge_type>
<source_obj>709</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_632">
<id>712</id>
<edge_type>1</edge_type>
<source_obj>711</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_633">
<id>714</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>153</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_634">
<id>715</id>
<edge_type>1</edge_type>
<source_obj>709</source_obj>
<sink_obj>153</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_635">
<id>716</id>
<edge_type>1</edge_type>
<source_obj>711</source_obj>
<sink_obj>153</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_636">
<id>718</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>154</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_637">
<id>720</id>
<edge_type>1</edge_type>
<source_obj>719</source_obj>
<sink_obj>154</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_638">
<id>722</id>
<edge_type>1</edge_type>
<source_obj>721</source_obj>
<sink_obj>154</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_639">
<id>724</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>155</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_640">
<id>725</id>
<edge_type>1</edge_type>
<source_obj>719</source_obj>
<sink_obj>155</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_641">
<id>726</id>
<edge_type>1</edge_type>
<source_obj>721</source_obj>
<sink_obj>155</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_642">
<id>728</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>156</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_643">
<id>730</id>
<edge_type>1</edge_type>
<source_obj>729</source_obj>
<sink_obj>156</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_644">
<id>732</id>
<edge_type>1</edge_type>
<source_obj>731</source_obj>
<sink_obj>156</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_645">
<id>734</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>157</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_646">
<id>735</id>
<edge_type>1</edge_type>
<source_obj>729</source_obj>
<sink_obj>157</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_647">
<id>736</id>
<edge_type>1</edge_type>
<source_obj>731</source_obj>
<sink_obj>157</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_648">
<id>737</id>
<edge_type>1</edge_type>
<source_obj>142</source_obj>
<sink_obj>158</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_649">
<id>738</id>
<edge_type>1</edge_type>
<source_obj>143</source_obj>
<sink_obj>159</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_650">
<id>739</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="_651">
<id>740</id>
<edge_type>1</edge_type>
<source_obj>158</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_652">
<id>741</id>
<edge_type>1</edge_type>
<source_obj>160</source_obj>
<sink_obj>161</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_653">
<id>742</id>
<edge_type>1</edge_type>
<source_obj>144</source_obj>
<sink_obj>162</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_654">
<id>743</id>
<edge_type>1</edge_type>
<source_obj>145</source_obj>
<sink_obj>163</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_655">
<id>744</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="_656">
<id>745</id>
<edge_type>1</edge_type>
<source_obj>162</source_obj>
<sink_obj>164</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_657">
<id>746</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="_658">
<id>747</id>
<edge_type>1</edge_type>
<source_obj>146</source_obj>
<sink_obj>166</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_659">
<id>748</id>
<edge_type>1</edge_type>
<source_obj>147</source_obj>
<sink_obj>167</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_660">
<id>749</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="_661">
<id>750</id>
<edge_type>1</edge_type>
<source_obj>166</source_obj>
<sink_obj>168</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_662">
<id>751</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="_663">
<id>752</id>
<edge_type>1</edge_type>
<source_obj>148</source_obj>
<sink_obj>170</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_664">
<id>753</id>
<edge_type>1</edge_type>
<source_obj>149</source_obj>
<sink_obj>171</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_665">
<id>754</id>
<edge_type>1</edge_type>
<source_obj>171</source_obj>
<sink_obj>172</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_666">
<id>755</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>172</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_667">
<id>756</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="_668">
<id>757</id>
<edge_type>1</edge_type>
<source_obj>165</source_obj>
<sink_obj>174</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_669">
<id>758</id>
<edge_type>1</edge_type>
<source_obj>169</source_obj>
<sink_obj>174</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_670">
<id>759</id>
<edge_type>1</edge_type>
<source_obj>174</source_obj>
<sink_obj>175</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_671">
<id>760</id>
<edge_type>1</edge_type>
<source_obj>161</source_obj>
<sink_obj>176</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_672">
<id>761</id>
<edge_type>1</edge_type>
<source_obj>173</source_obj>
<sink_obj>176</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_673">
<id>762</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="_674">
<id>763</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="_675">
<id>764</id>
<edge_type>1</edge_type>
<source_obj>131</source_obj>
<sink_obj>178</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_676">
<id>765</id>
<edge_type>1</edge_type>
<source_obj>178</source_obj>
<sink_obj>179</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_677">
<id>766</id>
<edge_type>1</edge_type>
<source_obj>175</source_obj>
<sink_obj>179</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_678">
<id>767</id>
<edge_type>1</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="_679">
<id>768</id>
<edge_type>1</edge_type>
<source_obj>151</source_obj>
<sink_obj>181</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_680">
<id>769</id>
<edge_type>1</edge_type>
<source_obj>181</source_obj>
<sink_obj>182</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_681">
<id>770</id>
<edge_type>1</edge_type>
<source_obj>180</source_obj>
<sink_obj>182</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_682">
<id>771</id>
<edge_type>1</edge_type>
<source_obj>182</source_obj>
<sink_obj>183</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_683">
<id>772</id>
<edge_type>1</edge_type>
<source_obj>152</source_obj>
<sink_obj>184</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_684">
<id>773</id>
<edge_type>1</edge_type>
<source_obj>153</source_obj>
<sink_obj>185</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_685">
<id>774</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="_686">
<id>775</id>
<edge_type>1</edge_type>
<source_obj>184</source_obj>
<sink_obj>186</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_687">
<id>776</id>
<edge_type>1</edge_type>
<source_obj>186</source_obj>
<sink_obj>187</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_688">
<id>777</id>
<edge_type>1</edge_type>
<source_obj>154</source_obj>
<sink_obj>188</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_689">
<id>778</id>
<edge_type>1</edge_type>
<source_obj>155</source_obj>
<sink_obj>189</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_690">
<id>779</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="_691">
<id>780</id>
<edge_type>1</edge_type>
<source_obj>188</source_obj>
<sink_obj>190</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_692">
<id>781</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="_693">
<id>782</id>
<edge_type>1</edge_type>
<source_obj>156</source_obj>
<sink_obj>192</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_694">
<id>783</id>
<edge_type>1</edge_type>
<source_obj>157</source_obj>
<sink_obj>193</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_695">
<id>784</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="_696">
<id>785</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="_697">
<id>786</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="_698">
<id>787</id>
<edge_type>1</edge_type>
<source_obj>187</source_obj>
<sink_obj>196</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_699">
<id>788</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="_700">
<id>789</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="_701">
<id>790</id>
<edge_type>1</edge_type>
<source_obj>183</source_obj>
<sink_obj>198</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_702">
<id>791</id>
<edge_type>1</edge_type>
<source_obj>195</source_obj>
<sink_obj>198</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_703">
<id>792</id>
<edge_type>1</edge_type>
<source_obj>198</source_obj>
<sink_obj>199</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_704">
<id>793</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="_705">
<id>794</id>
<edge_type>1</edge_type>
<source_obj>125</source_obj>
<sink_obj>200</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_706">
<id>795</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="_707">
<id>796</id>
<edge_type>1</edge_type>
<source_obj>197</source_obj>
<sink_obj>201</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_708">
<id>797</id>
<edge_type>1</edge_type>
<source_obj>137</source_obj>
<sink_obj>202</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_709">
<id>798</id>
<edge_type>1</edge_type>
<source_obj>75</source_obj>
<sink_obj>202</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_710">
<id>799</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>203</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_711">
<id>800</id>
<edge_type>2</edge_type>
<source_obj>208</source_obj>
<sink_obj>203</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_712">
<id>801</id>
<edge_type>2</edge_type>
<source_obj>281</source_obj>
<sink_obj>203</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_713">
<id>1210</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>111</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_714">
<id>1211</id>
<edge_type>2</edge_type>
<source_obj>111</source_obj>
<sink_obj>285</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_715">
<id>1212</id>
<edge_type>2</edge_type>
<source_obj>111</source_obj>
<sink_obj>116</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_716">
<id>1213</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_717">
<id>1214</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>204</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_718">
<id>1215</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>204</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_719">
<id>1216</id>
<edge_type>2</edge_type>
<source_obj>204</source_obj>
<sink_obj>281</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_720">
<id>1217</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="_721">
<id>1218</id>
<edge_type>2</edge_type>
<source_obj>208</source_obj>
<sink_obj>283</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_722">
<id>1219</id>
<edge_type>2</edge_type>
<source_obj>281</source_obj>
<sink_obj>283</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_723">
<id>1220</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>111</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_724">
<id>1221</id>
<edge_type>4</edge_type>
<source_obj>91</source_obj>
<sink_obj>112</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_725">
<id>1222</id>
<edge_type>4</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="_726">
<id>1223</id>
<edge_type>4</edge_type>
<source_obj>91</source_obj>
<sink_obj>279</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_727">
<id>1224</id>
<edge_type>4</edge_type>
<source_obj>91</source_obj>
<sink_obj>206</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_728">
<id>1225</id>
<edge_type>4</edge_type>
<source_obj>112</source_obj>
<sink_obj>279</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_729">
<id>1226</id>
<edge_type>4</edge_type>
<source_obj>112</source_obj>
<sink_obj>206</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_730">
<id>1227</id>
<edge_type>4</edge_type>
<source_obj>121</source_obj>
<sink_obj>210</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_731">
<id>1228</id>
<edge_type>4</edge_type>
<source_obj>122</source_obj>
<sink_obj>209</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_732">
<id>1229</id>
<edge_type>4</edge_type>
<source_obj>137</source_obj>
<sink_obj>279</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_733">
<id>1230</id>
<edge_type>4</edge_type>
<source_obj>137</source_obj>
<sink_obj>206</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="_734">
<mId>1</mId>
<mTag>coreConv</mTag>
<mNormTag>coreConv</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="_735">
<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>93</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>2</mMinLatency>
<mMaxLatency>2</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_736">
<mId>3</mId>
<mTag>VITIS_LOOP_101_1</mTag>
<mNormTag>VITIS_LOOP_101_1</mNormTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>7</count>
<item_version>0</item_version>
<item>111</item>
<item>116</item>
<item>124</item>
<item>204</item>
<item>208</item>
<item>281</item>
<item>283</item>
</basic_blocks>
<mII>1</mII>
<mDepth>8</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="_737">
<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>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"/>
</item>
</cdfg_regions>
<fsm class_id="24" tracking_level="1" version="0" object_id="_738">
<states class_id="25" tracking_level="0" version="0">
<count>12</count>
<item_version>0</item_version>
<item class_id="26" tracking_level="1" version="0" object_id="_739">
<id>1</id>
<operations class_id="27" tracking_level="0" version="0">
<count>6</count>
<item_version>0</item_version>
<item class_id="28" tracking_level="1" version="0" object_id="_740">
<id>23</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_741">
<id>24</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_742">
<id>25</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_743">
<id>30</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_744">
<id>31</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_745">
<id>91</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_746">
<id>2</id>
<operations>
<count>4</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_747">
<id>26</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_748">
<id>27</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_749">
<id>28</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_750">
<id>74</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_751">
<id>3</id>
<operations>
<count>61</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_752">
<id>29</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_753">
<id>32</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_754">
<id>33</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_755">
<id>34</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_756">
<id>35</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_757">
<id>36</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_758">
<id>37</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_759">
<id>38</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_760">
<id>39</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_761">
<id>40</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_762">
<id>41</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_763">
<id>42</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_764">
<id>43</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_765">
<id>44</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_766">
<id>45</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_767">
<id>46</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_768">
<id>47</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_769">
<id>48</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_770">
<id>49</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_771">
<id>50</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_772">
<id>51</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_773">
<id>52</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_774">
<id>53</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_775">
<id>54</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_776">
<id>55</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_777">
<id>56</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_778">
<id>57</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_779">
<id>58</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_780">
<id>59</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_781">
<id>60</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_782">
<id>61</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_783">
<id>62</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_784">
<id>63</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_785">
<id>64</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_786">
<id>65</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_787">
<id>66</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_788">
<id>67</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_789">
<id>68</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_790">
<id>69</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_791">
<id>70</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_792">
<id>71</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_793">
<id>72</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_794">
<id>73</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_795">
<id>74</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_796">
<id>75</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_797">
<id>76</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_798">
<id>77</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_799">
<id>78</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_800">
<id>79</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_801">
<id>80</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_802">
<id>81</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_803">
<id>82</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_804">
<id>83</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_805">
<id>84</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_806">
<id>85</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_807">
<id>86</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_808">
<id>87</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_809">
<id>88</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_810">
<id>89</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_811">
<id>90</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_812">
<id>92</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_813">
<id>4</id>
<operations>
<count>53</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_814">
<id>106</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_815">
<id>107</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_816">
<id>109</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_817">
<id>110</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_818">
<id>112</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_819">
<id>114</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_820">
<id>117</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_821">
<id>118</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_822">
<id>119</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_823">
<id>120</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_824">
<id>121</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_825">
<id>122</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_826">
<id>123</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_827">
<id>137</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_828">
<id>138</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_829">
<id>139</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_830">
<id>140</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_831">
<id>141</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_832">
<id>142</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_833">
<id>143</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_834">
<id>144</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_835">
<id>145</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_836">
<id>146</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_837">
<id>147</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_838">
<id>148</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_839">
<id>149</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_840">
<id>150</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_841">
<id>151</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_842">
<id>152</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_843">
<id>153</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_844">
<id>154</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_845">
<id>155</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_846">
<id>156</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_847">
<id>157</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_848">
<id>166</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_849">
<id>167</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_850">
<id>168</id>
<stage>3</stage>
<latency>3</latency>
</item>
<item class_id_reference="28" object_id="_851">
<id>170</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_852">
<id>171</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_853">
<id>172</id>
<stage>3</stage>
<latency>3</latency>
</item>
<item class_id_reference="28" object_id="_854">
<id>188</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_855">
<id>189</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_856">
<id>190</id>
<stage>3</stage>
<latency>3</latency>
</item>
<item class_id_reference="28" object_id="_857">
<id>192</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_858">
<id>193</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_859">
<id>194</id>
<stage>3</stage>
<latency>3</latency>
</item>
<item class_id_reference="28" object_id="_860">
<id>202</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_861">
<id>203</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_862">
<id>205</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_863">
<id>206</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_864">
<id>207</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_865">
<id>279</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_866">
<id>282</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_867">
<id>5</id>
<operations>
<count>6</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_868">
<id>168</id>
<stage>2</stage>
<latency>3</latency>
</item>
<item class_id_reference="28" object_id="_869">
<id>172</id>
<stage>2</stage>
<latency>3</latency>
</item>
<item class_id_reference="28" object_id="_870">
<id>190</id>
<stage>2</stage>
<latency>3</latency>
</item>
<item class_id_reference="28" object_id="_871">
<id>194</id>
<stage>2</stage>
<latency>3</latency>
</item>
<item class_id_reference="28" object_id="_872">
<id>209</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_873">
<id>210</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_874">
<id>6</id>
<operations>
<count>28</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_875">
<id>158</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_876">
<id>159</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_877">
<id>160</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_878">
<id>161</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_879">
<id>162</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_880">
<id>163</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_881">
<id>164</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_882">
<id>165</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_883">
<id>168</id>
<stage>1</stage>
<latency>3</latency>
</item>
<item class_id_reference="28" object_id="_884">
<id>169</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_885">
<id>172</id>
<stage>1</stage>
<latency>3</latency>
</item>
<item class_id_reference="28" object_id="_886">
<id>173</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_887">
<id>174</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_888">
<id>176</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_889">
<id>180</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_890">
<id>181</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_891">
<id>182</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_892">
<id>183</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_893">
<id>184</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_894">
<id>185</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_895">
<id>186</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_896">
<id>187</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_897">
<id>190</id>
<stage>1</stage>
<latency>3</latency>
</item>
<item class_id_reference="28" object_id="_898">
<id>191</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_899">
<id>194</id>
<stage>1</stage>
<latency>3</latency>
</item>
<item class_id_reference="28" object_id="_900">
<id>195</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_901">
<id>196</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_902">
<id>198</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_903">
<id>7</id>
<operations>
<count>43</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_904">
<id>94</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_905">
<id>95</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_906">
<id>96</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_907">
<id>97</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_908">
<id>98</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_909">
<id>99</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_910">
<id>100</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_911">
<id>101</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_912">
<id>102</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_913">
<id>103</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_914">
<id>104</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_915">
<id>105</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_916">
<id>108</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_917">
<id>113</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_918">
<id>115</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_919">
<id>125</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_920">
<id>126</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_921">
<id>127</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_922">
<id>128</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_923">
<id>129</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_924">
<id>130</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_925">
<id>131</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_926">
<id>132</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_927">
<id>133</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_928">
<id>134</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_929">
<id>135</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_930">
<id>136</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_931">
<id>174</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_932">
<id>175</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_933">
<id>176</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_934">
<id>177</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_935">
<id>178</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_936">
<id>179</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_937">
<id>196</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_938">
<id>197</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_939">
<id>198</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_940">
<id>199</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_941">
<id>200</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_942">
<id>201</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_943">
<id>213</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_944">
<id>214</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_945">
<id>246</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_946">
<id>247</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_947">
<id>8</id>
<operations>
<count>8</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_948">
<id>211</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_949">
<id>212</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_950">
<id>215</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_951">
<id>216</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_952">
<id>244</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_953">
<id>245</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_954">
<id>248</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_955">
<id>249</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_956">
<id>9</id>
<operations>
<count>18</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_957">
<id>217</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_958">
<id>218</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_959">
<id>219</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_960">
<id>220</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_961">
<id>221</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_962">
<id>222</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_963">
<id>223</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_964">
<id>224</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_965">
<id>225</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_966">
<id>250</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_967">
<id>251</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_968">
<id>252</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_969">
<id>253</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_970">
<id>254</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_971">
<id>255</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_972">
<id>256</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_973">
<id>257</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_974">
<id>258</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_975">
<id>10</id>
<operations>
<count>38</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_976">
<id>226</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_977">
<id>227</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_978">
<id>228</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_979">
<id>229</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_980">
<id>230</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_981">
<id>231</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_982">
<id>232</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_983">
<id>233</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_984">
<id>234</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_985">
<id>235</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_986">
<id>236</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_987">
<id>237</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_988">
<id>238</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_989">
<id>239</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_990">
<id>240</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_991">
<id>241</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_992">
<id>242</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_993">
<id>243</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_994">
<id>259</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_995">
<id>260</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_996">
<id>261</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_997">
<id>262</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_998">
<id>263</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_999">
<id>264</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1000">
<id>265</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1001">
<id>266</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1002">
<id>267</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1003">
<id>268</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1004">
<id>269</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1005">
<id>270</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1006">
<id>271</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1007">
<id>272</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1008">
<id>273</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1009">
<id>274</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1010">
<id>275</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1011">
<id>276</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1012">
<id>277</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1013">
<id>278</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1014">
<id>11</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1015">
<id>278</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_1016">
<id>280</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1017">
<id>12</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1018">
<id>284</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="29" tracking_level="0" version="0">
<count>12</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="1" version="0" object_id="_1019">
<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="_1020">
<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="_1021">
<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="_1022">
<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="_1023">
<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="_1024">
<inState>6</inState>
<outState>7</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="_1025">
<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="_1026">
<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="_1027">
<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="_1028">
<inState>11</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="_1029">
<inState>7</inState>
<outState>12</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>109</first>
<second>0</second>
</first>
<second>0</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_1030">
<inState>7</inState>
<outState>8</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>109</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="_1031">
<dp_component_resource class_id="37" tracking_level="0" version="0">
<count>22</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>192</second>
</item>
<item>
<first>LUT</first>
<second>280</second>
</item>
</second>
</item>
<item>
<first>mul_32s_32s_32_2_1_U1 (mul_32s_32s_32_2_1)</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>DSP</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>165</second>
</item>
<item>
<first>LUT</first>
<second>49</second>
</item>
</second>
</item>
<item>
<first>mul_8s_8s_16_1_1_U2 (mul_8s_8s_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_8s_8s_16_1_1_U3 (mul_8s_8s_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_8s_8s_16_1_1_U4 (mul_8s_8s_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_8s_8s_16_1_1_U5 (mul_8s_8s_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_bias_in_V_data_V_U (coreConv_regslice_both)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_bias_in_V_keep_V_U (coreConv_regslice_both)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_bias_in_V_last_V_U (coreConv_regslice_both)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_bias_in_V_strb_V_U (coreConv_regslice_both)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_conv_out_V_data_V_U (coreConv_regslice_both)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_conv_out_V_keep_V_U (coreConv_regslice_both)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_conv_out_V_last_V_U (coreConv_regslice_both)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_conv_out_V_strb_V_U (coreConv_regslice_both)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_data_in_V_data_V_U (coreConv_regslice_both)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_data_in_V_keep_V_U (coreConv_regslice_both)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_data_in_V_last_V_U (coreConv_regslice_both)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_data_in_V_strb_V_U (coreConv_regslice_both)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_weight_in_V_data_V_U (coreConv_regslice_both)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_weight_in_V_keep_V_U (coreConv_regslice_both)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_weight_in_V_last_V_U (coreConv_regslice_both)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_weight_in_V_strb_V_U (coreConv_regslice_both)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
</dp_component_resource>
<dp_expression_resource>
<count>76</count>
<item_version>0</item_version>
<item>
<first>add_ln144_2_fu_996_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>18</second>
</item>
</second>
</item>
<item>
<first>add_ln144_6_fu_1014_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>18</second>
</item>
</second>
</item>
<item>
<first>add_ln170_1_fu_1056_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>18</second>
</item>
</second>
</item>
<item>
<first>add_ln170_2_fu_1026_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>18</second>
</item>
</second>
</item>
<item>
<first>add_ln170_3_fu_1032_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>18</second>
</item>
</second>
</item>
<item>
<first>add_ln170_5_fu_1075_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>add_ln170_6_fu_1081_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>18</second>
</item>
</second>
</item>
<item>
<first>add_ln170_7_fu_1038_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>18</second>
</item>
</second>
</item>
<item>
<first>add_ln170_8_fu_1044_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>18</second>
</item>
</second>
</item>
<item>
<first>add_ln170_fu_1050_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>add_ln94_1_fu_1188_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>9</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>add_ln94_fu_1136_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>9</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>and_ln186_1_fu_1361_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_1253_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_state10_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_state11_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_state4_pp0_stage0_iter0 ( 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_condition_258 ( 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_ext_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_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_op90_read_state4 ( 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>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_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>ashr_ln181_1_fu_1158_p2 ( ashr ) </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>92</second>
</item>
</second>
</item>
<item>
<first>ashr_ln181_fu_1106_p2 ( ashr ) </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>92</second>
</item>
</second>
</item>
<item>
<first>ashr_ln192_1_fu_1325_p2 ( ashr ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>8</second>
</item>
<item>
<first>(1P1)</first>
<second>8</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>ashr_ln192_fu_1217_p2 ( ashr ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>8</second>
</item>
<item>
<first>(1P1)</first>
<second>8</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>conv_acc_1_fu_1062_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>18</second>
</item>
</second>
</item>
<item>
<first>conv_acc_2_fu_1020_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>18</second>
</item>
</second>
</item>
<item>
<first>conv_acc_3_fu_1087_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>18</second>
</item>
</second>
</item>
<item>
<first>conv_acc_fu_1002_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>18</second>
</item>
</second>
</item>
<item>
<first>conv_ch_in_lane_1_fu_1305_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>conv_ch_in_lane_2_fu_1401_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>7</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>7</second>
</item>
</second>
</item>
<item>
<first>conv_ch_in_lane_3_fu_1413_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>conv_ch_in_lane_fu_1293_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>7</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>7</second>
</item>
</second>
</item>
<item>
<first>conv_final_1_fu_1381_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>conv_final_fu_1273_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>conv_inner_cnt_1_fu_909_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>conv_sign_exten_1_fu_1152_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>32</second>
</item>
<item>
<first>(2P2)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>32</second>
</item>
</second>
</item>
<item>
<first>conv_sign_exten_fu_1100_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>32</second>
</item>
<item>
<first>(2P2)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>32</second>
</item>
</second>
</item>
<item>
<first>conv_sum_bias_1_fu_1339_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>9</second>
</item>
<item>
<first>(1P1)</first>
<second>9</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>conv_sum_bias_fu_1231_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>9</second>
</item>
<item>
<first>(1P1)</first>
<second>9</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>conv_with_rnd_bit_1_fu_1182_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>conv_with_rnd_bit_fu_1130_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_ln101_fu_671_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>icmp_ln104_fu_679_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>32</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>20</second>
</item>
</second>
</item>
<item>
<first>icmp_ln163_fu_904_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>icmp_ln184_1_fu_1312_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>24</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>icmp_ln184_fu_1204_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>24</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>icmp_ln186_1_fu_1317_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>10</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>20</second>
</item>
</second>
</item>
<item>
<first>icmp_ln186_fu_1209_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>10</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>20</second>
</item>
</second>
</item>
<item>
<first>k_1_fu_665_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>neg_fu_643_p2 ( xor ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>32</second>
</item>
<item>
<first>(1P1)</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>32</second>
</item>
</second>
</item>
<item>
<first>or_ln181_1_fu_1170_p2 ( or ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>32</second>
</item>
<item>
<first>(1P1)</first>
<second>32</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>32</second>
</item>
</second>
</item>
<item>
<first>or_ln181_2_fu_1124_p2 ( or ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>9</second>
</item>
<item>
<first>(1P1)</first>
<second>9</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>or_ln181_3_fu_1176_p2 ( or ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>9</second>
</item>
<item>
<first>(1P1)</first>
<second>9</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>or_ln181_fu_1118_p2 ( or ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>32</second>
</item>
<item>
<first>(1P1)</first>
<second>32</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>32</second>
</item>
</second>
</item>
<item>
<first>or_ln186_1_fu_1375_p2 ( 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>or_ln186_fu_1267_p2 ( 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>or_ln192_1_fu_1334_p2 ( or ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>9</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>or_ln192_fu_1226_p2 ( or ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>9</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>select_ln186_2_fu_1367_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>9</second>
</item>
<item>
<first>(2P2)</first>
<second>7</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>select_ln186_fu_1259_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>9</second>
</item>
<item>
<first>(2P2)</first>
<second>7</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>shr_fu_637_p2 ( lshr ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>2</second>
</item>
<item>
<first>(1P1)</first>
<second>32</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>92</second>
</item>
</second>
</item>
<item>
<first>sub113_fu_591_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>32</second>
</item>
<item>
<first>(1P1)</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>39</second>
</item>
</second>
</item>
<item>
<first>sub150_fu_621_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>10</second>
</item>
<item>
<first>(1P1)</first>
<second>10</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>18</second>
</item>
</second>
</item>
<item>
<first>sub151_fu_627_p2 ( - ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>10</second>
</item>
<item>
<first>(1P1)</first>
<second>10</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>18</second>
</item>
</second>
</item>
<item>
<first>sub174_fu_649_p2 ( - ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>9</second>
</item>
<item>
<first>(1P1)</first>
<second>9</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>18</second>
</item>
</second>
</item>
<item>
<first>sub175_fu_655_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>18</second>
</item>
</second>
</item>
<item>
<first>tmp_fu_611_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>xor_ln184_1_fu_1355_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>
<item>
<first>xor_ln184_fu_1247_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>38</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>6</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>6</second>
</item>
<item>
<first>LUT</first>
<second>31</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_iter4</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_iter7</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_empty_38_phi_fu_418_p4</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>ap_phi_mux_empty_39_phi_fu_431_p4</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>ap_phi_mux_empty_40_phi_fu_445_p4</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>ap_phi_mux_empty_44_phi_fu_500_p4</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>ap_phi_mux_empty_45_phi_fu_513_p4</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>ap_phi_mux_empty_46_phi_fu_527_p4</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>ap_phi_reg_pp0_iter1_empty_38_reg_414</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>ap_phi_reg_pp0_iter1_empty_39_reg_426</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>ap_phi_reg_pp0_iter1_empty_40_reg_440</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>ap_phi_reg_pp0_iter1_empty_41_reg_454</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>ap_phi_reg_pp0_iter1_empty_42_reg_468</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>ap_phi_reg_pp0_iter1_empty_43_reg_482</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>ap_phi_reg_pp0_iter1_empty_44_reg_496</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>ap_phi_reg_pp0_iter1_empty_45_reg_508</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>ap_phi_reg_pp0_iter1_empty_46_reg_522</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>ap_phi_reg_pp0_iter1_empty_47_reg_536</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>ap_phi_reg_pp0_iter1_empty_48_reg_550</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>ap_phi_reg_pp0_iter1_empty_49_reg_564</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>bias_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>conv_inner_cnt_fu_168</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>conv_out_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>data_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>empty_39_reg_426</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>empty_40_reg_440</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>empty_41_reg_454</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>empty_42_reg_468</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>empty_43_reg_482</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>empty_45_reg_508</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>empty_46_reg_522</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>empty_47_reg_536</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>empty_48_reg_550</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>empty_49_reg_564</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>k_reg_271</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>weight_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>
</dp_multiplexer_resource>
<dp_register_resource>
<count>107</count>
<item_version>0</item_version>
<item>
<first>add_ln170_3_reg_1684</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>add_ln170_8_reg_1689</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>add_ln94_1_reg_1734</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>9</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>add_ln94_reg_1719</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>9</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ap_CS_fsm</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>5</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>5</second>
</item>
</second>
</item>
<item>
<first>ap_done_reg</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>ap_enable_reg_pp0_iter0</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>ap_enable_reg_pp0_iter1</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>ap_enable_reg_pp0_iter2</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>ap_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_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_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_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_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_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>1</second>
</item>
<item>
<first>FF</first>
<second>0</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_empty_38_reg_414</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_iter1_empty_39_reg_426</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_iter1_empty_40_reg_440</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_iter1_empty_41_reg_454</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_iter1_empty_42_reg_468</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_iter1_empty_43_reg_482</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_iter1_empty_44_reg_496</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_iter1_empty_45_reg_508</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_iter1_empty_46_reg_522</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_iter1_empty_47_reg_536</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_iter1_empty_48_reg_550</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_iter1_empty_49_reg_564</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_empty_38_reg_414</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_empty_39_reg_426</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_empty_40_reg_440</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_empty_41_reg_454</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_empty_42_reg_468</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_empty_43_reg_482</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_empty_44_reg_496</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_empty_45_reg_508</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_empty_46_reg_522</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_empty_47_reg_536</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_empty_48_reg_550</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_empty_49_reg_564</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_empty_38_reg_414</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_empty_39_reg_426</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_empty_40_reg_440</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_empty_41_reg_454</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_empty_42_reg_468</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_empty_43_reg_482</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_empty_44_reg_496</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_empty_45_reg_508</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_empty_46_reg_522</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_empty_47_reg_536</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_empty_48_reg_550</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_empty_49_reg_564</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>bias_1_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>bias_1_load_reg_1649</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>bias_fu_172</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>bias_load_reg_1644</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>conv_acc_1_reg_1694</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>conv_acc_2_reg_1679</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>conv_acc_3_reg_1704</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>conv_acc_reg_1674</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>conv_inner_cnt_fu_168</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>conv_with_rnd_bit_1_reg_1729</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>conv_with_rnd_bit_reg_1714</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>empty_39_reg_426</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>empty_40_reg_440</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>empty_41_reg_454</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>empty_42_reg_468</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>empty_43_reg_482</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>empty_45_reg_508</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>empty_46_reg_522</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>empty_47_reg_536</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>empty_48_reg_550</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>empty_49_reg_564</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>empty_reg_1513</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>icmp_ln101_reg_1552</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>icmp_ln104_reg_1556</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>icmp_ln163_reg_1640</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>k_reg_271</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>mac_data_lane_1_reg_1570</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>mac_data_lane_1_reg_1570_pp0_iter1_reg</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>mac_data_lane_4_reg_1580</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>mac_data_lane_4_reg_1580_pp0_iter1_reg</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>mac_data_lane_5_reg_1590</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>mac_data_lane_5_reg_1590_pp0_iter1_reg</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>mac_data_lane_reg_1560</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>mac_data_lane_reg_1560_pp0_iter1_reg</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>mac_weight_lane_1_reg_1575</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>mac_weight_lane_1_reg_1575_pp0_iter1_reg</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>mac_weight_lane_4_reg_1585</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>mac_weight_lane_4_reg_1585_pp0_iter1_reg</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>mac_weight_lane_5_reg_1595</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>mac_weight_lane_5_reg_1595_pp0_iter1_reg</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>mac_weight_lane_reg_1565</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>mac_weight_lane_reg_1565_pp0_iter1_reg</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>mul_reg_1519</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>neg_reg_1535</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>sext_ln101_reg_1541</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>sub113_reg_1524</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>sub151_cast_reg_1529</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>tmp_1_reg_1699</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>tmp_2_reg_1724</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>24</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>24</second>
</item>
</second>
</item>
<item>
<first>tmp_4_reg_1709</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>tmp_5_reg_1739</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>24</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>24</second>
</item>
</second>
</item>
</dp_register_resource>
<dp_dsp_resource>
<count>26</count>
<item_version>0</item_version>
<item>
<first>control_s_axi_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>mac_muladd_8s_8s_16s_17_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>mac_muladd_8s_8s_16s_17_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>mac_muladd_8s_8s_16s_17_4_1_U8</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>DSP</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>mac_muladd_8s_8s_16s_17_4_1_U9</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>DSP</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>mul_32s_32s_32_2_1_U1</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>mul_8s_8s_16_1_1_U2</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>mul_8s_8s_16_1_1_U3</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>mul_8s_8s_16_1_1_U4</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>mul_8s_8s_16_1_1_U5</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_bias_in_V_data_V_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_bias_in_V_keep_V_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_bias_in_V_last_V_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_bias_in_V_strb_V_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_conv_out_V_data_V_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_conv_out_V_keep_V_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_conv_out_V_last_V_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_conv_out_V_strb_V_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_data_in_V_data_V_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_data_in_V_keep_V_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_data_in_V_last_V_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_data_in_V_strb_V_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_weight_in_V_data_V_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_weight_in_V_keep_V_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_weight_in_V_last_V_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_weight_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_32s_32s_32_2_1_U1 (mul_32s_32s_32_2_1)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>mul_8s_8s_16_1_1_U2 (mul_8s_8s_16_1_1)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>160</item>
</second>
</item>
<item>
<first>mul_8s_8s_16_1_1_U3 (mul_8s_8s_16_1_1)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>164</item>
</second>
</item>
<item>
<first>mul_8s_8s_16_1_1_U4 (mul_8s_8s_16_1_1)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>182</item>
</second>
</item>
<item>
<first>mul_8s_8s_16_1_1_U5 (mul_8s_8s_16_1_1)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>186</item>
</second>
</item>
</dp_component_map>
<dp_expression_map>
<count>63</count>
<item_version>0</item_version>
<item>
<first>add_ln144_2_fu_996_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>178</item>
</second>
</item>
<item>
<first>add_ln144_6_fu_1014_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>200</item>
</second>
</item>
<item>
<first>add_ln170_1_fu_1056_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>212</item>
</second>
</item>
<item>
<first>add_ln170_2_fu_1026_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>213</item>
</second>
</item>
<item>
<first>add_ln170_3_fu_1032_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>214</item>
</second>
</item>
<item>
<first>add_ln170_5_fu_1075_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>244</item>
</second>
</item>
<item>
<first>add_ln170_6_fu_1081_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>245</item>
</second>
</item>
<item>
<first>add_ln170_7_fu_1038_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>246</item>
</second>
</item>
<item>
<first>add_ln170_8_fu_1044_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>247</item>
</second>
</item>
<item>
<first>add_ln170_fu_1050_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>211</item>
</second>
</item>
<item>
<first>add_ln94_1_fu_1188_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>257</item>
</second>
</item>
<item>
<first>add_ln94_fu_1136_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>224</item>
</second>
</item>
<item>
<first>and_ln186_1_fu_1361_p2 ( and ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>268</item>
</second>
</item>
<item>
<first>and_ln186_fu_1253_p2 ( and ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>235</item>
</second>
</item>
<item>
<first>ashr_ln181_1_fu_1158_p2 ( ashr ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>251</item>
</second>
</item>
<item>
<first>ashr_ln181_fu_1106_p2 ( ashr ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>218</item>
</second>
</item>
<item>
<first>ashr_ln192_1_fu_1325_p2 ( ashr ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>262</item>
</second>
</item>
<item>
<first>ashr_ln192_fu_1217_p2 ( ashr ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>229</item>
</second>
</item>
<item>
<first>conv_acc_1_fu_1062_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>215</item>
</second>
</item>
<item>
<first>conv_acc_2_fu_1020_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>201</item>
</second>
</item>
<item>
<first>conv_acc_3_fu_1087_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>248</item>
</second>
</item>
<item>
<first>conv_acc_fu_1002_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>179</item>
</second>
</item>
<item>
<first>conv_ch_in_lane_1_fu_1305_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>243</item>
</second>
</item>
<item>
<first>conv_ch_in_lane_2_fu_1401_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>274</item>
</second>
</item>
<item>
<first>conv_ch_in_lane_3_fu_1413_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>276</item>
</second>
</item>
<item>
<first>conv_ch_in_lane_fu_1293_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>241</item>
</second>
</item>
<item>
<first>conv_final_1_fu_1381_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>271</item>
</second>
</item>
<item>
<first>conv_final_fu_1273_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>238</item>
</second>
</item>
<item>
<first>conv_inner_cnt_1_fu_909_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>205</item>
</second>
</item>
<item>
<first>conv_sign_exten_1_fu_1152_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>250</item>
</second>
</item>
<item>
<first>conv_sign_exten_fu_1100_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>217</item>
</second>
</item>
<item>
<first>conv_sum_bias_1_fu_1339_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>265</item>
</second>
</item>
<item>
<first>conv_sum_bias_fu_1231_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>232</item>
</second>
</item>
<item>
<first>conv_with_rnd_bit_1_fu_1182_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>256</item>
</second>
</item>
<item>
<first>conv_with_rnd_bit_fu_1130_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>223</item>
</second>
</item>
<item>
<first>icmp_ln101_fu_671_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>icmp_ln104_fu_679_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</second>
</item>
<item>
<first>icmp_ln163_fu_904_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>202</item>
</second>
</item>
<item>
<first>icmp_ln184_1_fu_1312_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>259</item>
</second>
</item>
<item>
<first>icmp_ln184_fu_1204_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>226</item>
</second>
</item>
<item>
<first>icmp_ln186_1_fu_1317_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>260</item>
</second>
</item>
<item>
<first>icmp_ln186_fu_1209_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>227</item>
</second>
</item>
<item>
<first>k_1_fu_665_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>107</item>
</second>
</item>
<item>
<first>neg_fu_643_p2 ( xor ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>or_ln181_1_fu_1170_p2 ( or ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>254</item>
</second>
</item>
<item>
<first>or_ln181_2_fu_1124_p2 ( or ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>222</item>
</second>
</item>
<item>
<first>or_ln181_3_fu_1176_p2 ( or ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>255</item>
</second>
</item>
<item>
<first>or_ln181_fu_1118_p2 ( or ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>221</item>
</second>
</item>
<item>
<first>or_ln186_1_fu_1375_p2 ( or ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>270</item>
</second>
</item>
<item>
<first>or_ln186_fu_1267_p2 ( or ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>237</item>
</second>
</item>
<item>
<first>or_ln192_1_fu_1334_p2 ( or ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>264</item>
</second>
</item>
<item>
<first>or_ln192_fu_1226_p2 ( or ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>231</item>
</second>
</item>
<item>
<first>select_ln186_2_fu_1367_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>269</item>
</second>
</item>
<item>
<first>select_ln186_fu_1259_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>236</item>
</second>
</item>
<item>
<first>shr_fu_637_p2 ( lshr ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>86</item>
</second>
</item>
<item>
<first>sub113_fu_591_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>sub150_fu_621_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>sub151_fu_627_p2 ( - ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>sub174_fu_649_p2 ( - ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>88</item>
</second>
</item>
<item>
<first>sub175_fu_655_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
<item>
<first>tmp_fu_611_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>xor_ln184_1_fu_1355_p2 ( xor ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>267</item>
</second>
</item>
<item>
<first>xor_ln184_fu_1247_p2 ( xor ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>234</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>211</count>
<item_version>0</item_version>
<item class_id="44" tracking_level="0" version="0">
<first>23</first>
<second class_id="45" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>24</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>25</first>
<second>
<first>0</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>1</first>
<second>0</second>
</second>
</item>
<item>
<first>28</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>29</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>30</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>31</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>32</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>74</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>75</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>76</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>77</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>78</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>79</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>80</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>81</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>82</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>83</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>84</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>85</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>86</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>87</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>88</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>89</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>90</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>91</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>92</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>94</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>95</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>96</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>97</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>98</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>99</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>100</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>101</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>102</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>103</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>104</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>105</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>106</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>107</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>109</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>110</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>112</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>114</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>115</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>117</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>118</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>119</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>120</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>121</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>122</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>123</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>125</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>126</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>127</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>128</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>129</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>130</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>131</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>132</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>133</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>134</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>135</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>136</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>137</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>138</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>139</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>140</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>141</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>142</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>143</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>144</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>145</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>146</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>147</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>148</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>149</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>150</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>151</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>152</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>153</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>154</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>155</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>156</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>157</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>158</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>159</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>160</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>161</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>162</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>163</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>164</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>165</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>166</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>167</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>168</first>
<second>
<first>3</first>
<second>2</second>
</second>
</item>
<item>
<first>169</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>170</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>171</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>172</first>
<second>
<first>3</first>
<second>2</second>
</second>
</item>
<item>
<first>173</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>174</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>175</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>176</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>177</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>178</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>179</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>180</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>181</first>
<second>
<first>5</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>187</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>188</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>189</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>190</first>
<second>
<first>3</first>
<second>2</second>
</second>
</item>
<item>
<first>191</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>192</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>193</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>194</first>
<second>
<first>3</first>
<second>2</second>
</second>
</item>
<item>
<first>195</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>196</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>197</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>198</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>199</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>200</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>201</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>202</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>203</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>205</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>206</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>207</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>209</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>210</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>211</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>212</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>213</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>214</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>215</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>216</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>217</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>218</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>219</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>220</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>221</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>222</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>223</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>224</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>225</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>226</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>227</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>228</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>229</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>230</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>231</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>232</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>233</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>234</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>235</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>236</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>237</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>238</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>239</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>240</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>241</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>242</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>243</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>244</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>245</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>246</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>247</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>248</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>249</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>250</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>251</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>252</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>253</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>254</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>255</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>256</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>257</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>258</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>259</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>260</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>261</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>262</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>263</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>264</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>265</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>266</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>267</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>268</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>269</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>270</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>271</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>272</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>273</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>274</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>275</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>276</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>277</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>278</first>
<second>
<first>9</first>
<second>1</second>
</second>
</item>
<item>
<first>279</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>280</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>282</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>284</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="46" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="47" tracking_level="0" version="0">
<first>93</first>
<second class_id="48" tracking_level="0" version="0">
<first>0</first>
<second>2</second>
</second>
</item>
<item>
<first>111</first>
<second>
<first>3</first>
<second>6</second>
</second>
</item>
<item>
<first>116</first>
<second>
<first>3</first>
<second>6</second>
</second>
</item>
<item>
<first>124</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>204</first>
<second>
<first>3</first>
<second>6</second>
</second>
</item>
<item>
<first>208</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>281</first>
<second>
<first>3</first>
<second>10</second>
</second>
</item>
<item>
<first>283</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>285</first>
<second>
<first>7</first>
<second>7</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="_1032">
<region_name>VITIS_LOOP_101_1</region_name>
<basic_blocks>
<count>7</count>
<item_version>0</item_version>
<item>111</item>
<item>116</item>
<item>124</item>
<item>204</item>
<item>208</item>
<item>281</item>
<item>283</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>8</pipe_depth>
</item>
</regions>
<dp_fu_nodes class_id="51" tracking_level="0" version="0">
<count>193</count>
<item_version>0</item_version>
<item class_id="52" tracking_level="0" version="0">
<first>168</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>172</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>176</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>180</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>186</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</second>
</item>
<item>
<first>192</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>198</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
<item>
<first>204</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>210</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
<item>
<first>216</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>117</item>
</second>
</item>
<item>
<first>228</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>138</item>
</second>
</item>
<item>
<first>240</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>140</item>
</second>
</item>
<item>
<first>252</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>278</item>
<item>278</item>
</second>
</item>
<item>
<first>275</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>286</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>297</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>308</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>96</item>
</second>
</item>
<item>
<first>319</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>330</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>341</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>352</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>363</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>101</item>
</second>
</item>
<item>
<first>374</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>385</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>396</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>407</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>418</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>125</item>
</second>
</item>
<item>
<first>431</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>126</item>
</second>
</item>
<item>
<first>445</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>127</item>
</second>
</item>
<item>
<first>459</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>128</item>
</second>
</item>
<item>
<first>473</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>129</item>
</second>
</item>
<item>
<first>487</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>130</item>
</second>
</item>
<item>
<first>500</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>131</item>
</second>
</item>
<item>
<first>513</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>132</item>
</second>
</item>
<item>
<first>527</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>133</item>
</second>
</item>
<item>
<first>541</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>134</item>
</second>
</item>
<item>
<first>555</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>135</item>
</second>
</item>
<item>
<first>569</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>136</item>
</second>
</item>
<item>
<first>578</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>91</item>
<item>279</item>
</second>
</item>
<item>
<first>583</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>74</item>
<item>74</item>
</second>
</item>
<item>
<first>587</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>591</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>596</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>599</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>602</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>605</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
<item>
<first>608</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>611</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>617</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>621</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>627</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>633</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>637</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>86</item>
</second>
</item>
<item>
<first>643</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>649</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>88</item>
</second>
</item>
<item>
<first>655</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
<item>
<first>661</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>665</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>107</item>
</second>
</item>
<item>
<first>671</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>676</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>679</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</second>
</item>
<item>
<first>685</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>118</item>
</second>
</item>
<item>
<first>689</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>119</item>
</second>
</item>
<item>
<first>693</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>120</item>
</second>
</item>
<item>
<first>703</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</second>
</item>
<item>
<first>708</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>122</item>
</second>
</item>
<item>
<first>713</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>137</item>
</second>
</item>
<item>
<first>716</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>139</item>
</second>
</item>
<item>
<first>720</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>141</item>
</second>
</item>
<item>
<first>724</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>142</item>
</second>
</item>
<item>
<first>728</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>143</item>
</second>
</item>
<item>
<first>732</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>144</item>
</second>
</item>
<item>
<first>742</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>145</item>
</second>
</item>
<item>
<first>752</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>146</item>
</second>
</item>
<item>
<first>762</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>147</item>
</second>
</item>
<item>
<first>772</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>148</item>
</second>
</item>
<item>
<first>782</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>149</item>
</second>
</item>
<item>
<first>792</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>150</item>
</second>
</item>
<item>
<first>802</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>151</item>
</second>
</item>
<item>
<first>812</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>152</item>
</second>
</item>
<item>
<first>822</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>153</item>
</second>
</item>
<item>
<first>832</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>154</item>
</second>
</item>
<item>
<first>842</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>155</item>
</second>
</item>
<item>
<first>852</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>156</item>
</second>
</item>
<item>
<first>862</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>157</item>
</second>
</item>
<item>
<first>872</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>166</item>
</second>
</item>
<item>
<first>876</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>167</item>
</second>
</item>
<item>
<first>880</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>170</item>
</second>
</item>
<item>
<first>884</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>171</item>
</second>
</item>
<item>
<first>888</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>188</item>
</second>
</item>
<item>
<first>892</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>189</item>
</second>
</item>
<item>
<first>896</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>192</item>
</second>
</item>
<item>
<first>900</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>193</item>
</second>
</item>
<item>
<first>904</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>202</item>
</second>
</item>
<item>
<first>909</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>205</item>
</second>
</item>
<item>
<first>915</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>206</item>
</second>
</item>
<item>
<first>920</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>209</item>
</second>
</item>
<item>
<first>923</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>210</item>
</second>
</item>
<item>
<first>926</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>158</item>
</second>
</item>
<item>
<first>929</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>159</item>
</second>
</item>
<item>
<first>932</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>160</item>
</second>
</item>
<item>
<first>938</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>161</item>
</second>
</item>
<item>
<first>942</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>162</item>
</second>
</item>
<item>
<first>945</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>163</item>
</second>
</item>
<item>
<first>948</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>164</item>
</second>
</item>
<item>
<first>954</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>165</item>
</second>
</item>
<item>
<first>958</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>180</item>
</second>
</item>
<item>
<first>961</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>181</item>
</second>
</item>
<item>
<first>964</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>182</item>
</second>
</item>
<item>
<first>970</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>183</item>
</second>
</item>
<item>
<first>974</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>184</item>
</second>
</item>
<item>
<first>977</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>185</item>
</second>
</item>
<item>
<first>980</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>186</item>
</second>
</item>
<item>
<first>986</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>187</item>
</second>
</item>
<item>
<first>990</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>175</item>
</second>
</item>
<item>
<first>993</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>177</item>
</second>
</item>
<item>
<first>996</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>178</item>
</second>
</item>
<item>
<first>1002</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>179</item>
</second>
</item>
<item>
<first>1008</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>197</item>
</second>
</item>
<item>
<first>1011</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>199</item>
</second>
</item>
<item>
<first>1014</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>200</item>
</second>
</item>
<item>
<first>1020</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>201</item>
</second>
</item>
<item>
<first>1026</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>213</item>
</second>
</item>
<item>
<first>1032</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>214</item>
</second>
</item>
<item>
<first>1038</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>246</item>
</second>
</item>
<item>
<first>1044</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>247</item>
</second>
</item>
<item>
<first>1050</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>211</item>
</second>
</item>
<item>
<first>1056</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>212</item>
</second>
</item>
<item>
<first>1062</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>215</item>
</second>
</item>
<item>
<first>1067</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>216</item>
</second>
</item>
<item>
<first>1075</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>244</item>
</second>
</item>
<item>
<first>1081</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>245</item>
</second>
</item>
<item>
<first>1087</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>248</item>
</second>
</item>
<item>
<first>1092</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>249</item>
</second>
</item>
<item>
<first>1100</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>217</item>
</second>
</item>
<item>
<first>1106</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>218</item>
</second>
</item>
<item>
<first>1110</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>219</item>
</second>
</item>
<item>
<first>1114</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>220</item>
</second>
</item>
<item>
<first>1118</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>221</item>
</second>
</item>
<item>
<first>1124</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>222</item>
</second>
</item>
<item>
<first>1130</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>223</item>
</second>
</item>
<item>
<first>1136</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>224</item>
</second>
</item>
<item>
<first>1142</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>225</item>
</second>
</item>
<item>
<first>1152</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>250</item>
</second>
</item>
<item>
<first>1158</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>251</item>
</second>
</item>
<item>
<first>1162</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>252</item>
</second>
</item>
<item>
<first>1166</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>253</item>
</second>
</item>
<item>
<first>1170</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>254</item>
</second>
</item>
<item>
<first>1176</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>255</item>
</second>
</item>
<item>
<first>1182</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>256</item>
</second>
</item>
<item>
<first>1188</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>257</item>
</second>
</item>
<item>
<first>1194</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>258</item>
</second>
</item>
<item>
<first>1204</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>226</item>
</second>
</item>
<item>
<first>1209</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>227</item>
</second>
</item>
<item>
<first>1214</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>228</item>
</second>
</item>
<item>
<first>1217</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>229</item>
</second>
</item>
<item>
<first>1222</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>230</item>
</second>
</item>
<item>
<first>1226</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>231</item>
</second>
</item>
<item>
<first>1231</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>232</item>
</second>
</item>
<item>
<first>1237</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>233</item>
</second>
</item>
<item>
<first>1247</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>234</item>
</second>
</item>
<item>
<first>1253</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>235</item>
</second>
</item>
<item>
<first>1259</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>236</item>
</second>
</item>
<item>
<first>1267</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>237</item>
</second>
</item>
<item>
<first>1273</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>238</item>
</second>
</item>
<item>
<first>1281</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>239</item>
</second>
</item>
<item>
<first>1285</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>240</item>
</second>
</item>
<item>
<first>1293</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>241</item>
</second>
</item>
<item>
<first>1301</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>242</item>
</second>
</item>
<item>
<first>1305</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>243</item>
</second>
</item>
<item>
<first>1312</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>259</item>
</second>
</item>
<item>
<first>1317</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>260</item>
</second>
</item>
<item>
<first>1322</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>261</item>
</second>
</item>
<item>
<first>1325</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>262</item>
</second>
</item>
<item>
<first>1330</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>263</item>
</second>
</item>
<item>
<first>1334</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>264</item>
</second>
</item>
<item>
<first>1339</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>265</item>
</second>
</item>
<item>
<first>1345</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>266</item>
</second>
</item>
<item>
<first>1355</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>267</item>
</second>
</item>
<item>
<first>1361</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>268</item>
</second>
</item>
<item>
<first>1367</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>269</item>
</second>
</item>
<item>
<first>1375</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>270</item>
</second>
</item>
<item>
<first>1381</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>271</item>
</second>
</item>
<item>
<first>1389</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>272</item>
</second>
</item>
<item>
<first>1393</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>273</item>
</second>
</item>
<item>
<first>1401</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>274</item>
</second>
</item>
<item>
<first>1409</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>275</item>
</second>
</item>
<item>
<first>1413</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>276</item>
</second>
</item>
<item>
<first>1420</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>277</item>
</second>
</item>
<item>
<first>1429</first>
<second>
<count>6</count>
<item_version>0</item_version>
<item>168</item>
<item>168</item>
<item>168</item>
<item>169</item>
<item>174</item>
<item>174</item>
</second>
</item>
<item>
<first>1438</first>
<second>
<count>6</count>
<item_version>0</item_version>
<item>172</item>
<item>172</item>
<item>172</item>
<item>173</item>
<item>176</item>
<item>176</item>
</second>
</item>
<item>
<first>1447</first>
<second>
<count>6</count>
<item_version>0</item_version>
<item>190</item>
<item>190</item>
<item>190</item>
<item>191</item>
<item>196</item>
<item>196</item>
</second>
</item>
<item>
<first>1456</first>
<second>
<count>6</count>
<item_version>0</item_version>
<item>194</item>
<item>194</item>
<item>194</item>
<item>195</item>
<item>198</item>
<item>198</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="54" tracking_level="0" version="0">
<count>170</count>
<item_version>0</item_version>
<item class_id="55" tracking_level="0" version="0">
<first>add_ln144_2_fu_996</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>178</item>
</second>
</item>
<item>
<first>add_ln144_6_fu_1014</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>200</item>
</second>
</item>
<item>
<first>add_ln170_1_fu_1056</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>212</item>
</second>
</item>
<item>
<first>add_ln170_2_fu_1026</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>213</item>
</second>
</item>
<item>
<first>add_ln170_3_fu_1032</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>214</item>
</second>
</item>
<item>
<first>add_ln170_5_fu_1075</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>244</item>
</second>
</item>
<item>
<first>add_ln170_6_fu_1081</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>245</item>
</second>
</item>
<item>
<first>add_ln170_7_fu_1038</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>246</item>
</second>
</item>
<item>
<first>add_ln170_8_fu_1044</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>247</item>
</second>
</item>
<item>
<first>add_ln170_fu_1050</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>211</item>
</second>
</item>
<item>
<first>add_ln94_1_fu_1188</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>257</item>
</second>
</item>
<item>
<first>add_ln94_fu_1136</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>224</item>
</second>
</item>
<item>
<first>and_ln186_1_fu_1361</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>268</item>
</second>
</item>
<item>
<first>and_ln186_fu_1253</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>235</item>
</second>
</item>
<item>
<first>ashr_ln181_1_fu_1158</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>251</item>
</second>
</item>
<item>
<first>ashr_ln181_fu_1106</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>218</item>
</second>
</item>
<item>
<first>ashr_ln192_1_fu_1325</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>262</item>
</second>
</item>
<item>
<first>ashr_ln192_fu_1217</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>229</item>
</second>
</item>
<item>
<first>bias_1_fu_176</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>bias_ch_out_lane_2_fu_693</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>120</item>
</second>
</item>
<item>
<first>bias_ch_out_lane_fu_689</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>119</item>
</second>
</item>
<item>
<first>bias_fu_172</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>bias_in_tmp_data_V_fu_685</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>118</item>
</second>
</item>
<item>
<first>conv_acc_1_fu_1062</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>215</item>
</second>
</item>
<item>
<first>conv_acc_2_fu_1020</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>201</item>
</second>
</item>
<item>
<first>conv_acc_3_fu_1087</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>248</item>
</second>
</item>
<item>
<first>conv_acc_fu_1002</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>179</item>
</second>
</item>
<item>
<first>conv_ch_in_lane_1_fu_1305</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>243</item>
</second>
</item>
<item>
<first>conv_ch_in_lane_2_fu_1401</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>274</item>
</second>
</item>
<item>
<first>conv_ch_in_lane_3_fu_1413</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>276</item>
</second>
</item>
<item>
<first>conv_ch_in_lane_fu_1293</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>241</item>
</second>
</item>
<item>
<first>conv_final_1_fu_1381</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>271</item>
</second>
</item>
<item>
<first>conv_final_fu_1273</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>238</item>
</second>
</item>
<item>
<first>conv_inner_cnt_1_fu_909</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>205</item>
</second>
</item>
<item>
<first>conv_inner_cnt_fu_168</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>conv_sign_exten_1_fu_1152</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>250</item>
</second>
</item>
<item>
<first>conv_sign_exten_fu_1100</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>217</item>
</second>
</item>
<item>
<first>conv_sum_bias_1_fu_1339</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>265</item>
</second>
</item>
<item>
<first>conv_sum_bias_fu_1231</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>232</item>
</second>
</item>
<item>
<first>conv_with_rnd_bit_1_fu_1182</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>256</item>
</second>
</item>
<item>
<first>conv_with_rnd_bit_fu_1130</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>223</item>
</second>
</item>
<item>
<first>data_in_tmp_data_V_fu_716</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>139</item>
</second>
</item>
<item>
<first>empty_25_phi_fu_286</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>empty_26_phi_fu_297</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>empty_27_phi_fu_308</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>96</item>
</second>
</item>
<item>
<first>empty_28_phi_fu_319</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>empty_29_phi_fu_330</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>empty_30_phi_fu_341</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>empty_31_phi_fu_352</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>empty_32_phi_fu_363</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>101</item>
</second>
</item>
<item>
<first>empty_33_phi_fu_374</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>empty_34_phi_fu_385</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>empty_35_phi_fu_396</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>empty_36_phi_fu_407</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>empty_38_phi_fu_418</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>125</item>
</second>
</item>
<item>
<first>empty_39_phi_fu_431</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>126</item>
</second>
</item>
<item>
<first>empty_40_phi_fu_445</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>127</item>
</second>
</item>
<item>
<first>empty_41_phi_fu_459</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>128</item>
</second>
</item>
<item>
<first>empty_42_phi_fu_473</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>129</item>
</second>
</item>
<item>
<first>empty_43_phi_fu_487</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>130</item>
</second>
</item>
<item>
<first>empty_44_phi_fu_500</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>131</item>
</second>
</item>
<item>
<first>empty_45_phi_fu_513</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>132</item>
</second>
</item>
<item>
<first>empty_46_phi_fu_527</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>133</item>
</second>
</item>
<item>
<first>empty_47_phi_fu_541</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>134</item>
</second>
</item>
<item>
<first>empty_48_phi_fu_555</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>135</item>
</second>
</item>
<item>
<first>empty_49_phi_fu_569</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>136</item>
</second>
</item>
<item>
<first>empty_fu_587</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>frac_din_cast_fu_602</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>frac_dout_cast39_fu_605</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
<item>
<first>frac_dout_cast_fu_608</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>frac_w_cast38_fu_596</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>frac_w_cast_fu_599</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>icmp_ln101_fu_671</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>icmp_ln104_fu_679</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</second>
</item>
<item>
<first>icmp_ln163_fu_904</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>202</item>
</second>
</item>
<item>
<first>icmp_ln184_1_fu_1312</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>259</item>
</second>
</item>
<item>
<first>icmp_ln184_fu_1204</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>226</item>
</second>
</item>
<item>
<first>icmp_ln186_1_fu_1317</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>260</item>
</second>
</item>
<item>
<first>icmp_ln186_fu_1209</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>227</item>
</second>
</item>
<item>
<first>k_1_fu_665</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>107</item>
</second>
</item>
<item>
<first>k_phi_fu_275</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>mac_data_lane_1_fu_732</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>144</item>
</second>
</item>
<item>
<first>mac_data_lane_2_fu_752</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>146</item>
</second>
</item>
<item>
<first>mac_data_lane_3_fu_772</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>148</item>
</second>
</item>
<item>
<first>mac_data_lane_4_fu_792</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>150</item>
</second>
</item>
<item>
<first>mac_data_lane_5_fu_812</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>152</item>
</second>
</item>
<item>
<first>mac_data_lane_6_fu_832</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>154</item>
</second>
</item>
<item>
<first>mac_data_lane_7_fu_852</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>156</item>
</second>
</item>
<item>
<first>mac_data_lane_fu_724</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>142</item>
</second>
</item>
<item>
<first>mac_weight_lane_1_fu_742</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>145</item>
</second>
</item>
<item>
<first>mac_weight_lane_2_fu_762</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>147</item>
</second>
</item>
<item>
<first>mac_weight_lane_3_fu_782</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>149</item>
</second>
</item>
<item>
<first>mac_weight_lane_4_fu_802</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>151</item>
</second>
</item>
<item>
<first>mac_weight_lane_5_fu_822</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>153</item>
</second>
</item>
<item>
<first>mac_weight_lane_6_fu_842</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>155</item>
</second>
</item>
<item>
<first>mac_weight_lane_7_fu_862</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>157</item>
</second>
</item>
<item>
<first>mac_weight_lane_fu_728</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>143</item>
</second>
</item>
<item>
<first>mul_ln55_4_fu_980</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>186</item>
</second>
</item>
<item>
<first>mul_ln55_fu_948</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>164</item>
</second>
</item>
<item>
<first>neg_fu_643</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>or_ln181_1_fu_1170</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>254</item>
</second>
</item>
<item>
<first>or_ln181_2_fu_1124</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>222</item>
</second>
</item>
<item>
<first>or_ln181_3_fu_1176</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>255</item>
</second>
</item>
<item>
<first>or_ln181_fu_1118</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>221</item>
</second>
</item>
<item>
<first>or_ln186_1_fu_1375</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>270</item>
</second>
</item>
<item>
<first>or_ln186_fu_1267</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>237</item>
</second>
</item>
<item>
<first>or_ln192_1_fu_1334</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>264</item>
</second>
</item>
<item>
<first>or_ln192_fu_1226</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>231</item>
</second>
</item>
<item>
<first>output_1_fu_964</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>182</item>
</second>
</item>
<item>
<first>output_fu_932</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>160</item>
</second>
</item>
<item>
<first>p_Result_s_fu_1420</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>277</item>
</second>
</item>
<item>
<first>phitmp2_fu_1237</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>233</item>
</second>
</item>
<item>
<first>phitmp3_fu_1345</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>266</item>
</second>
</item>
<item>
<first>select_ln186_2_fu_1367</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>269</item>
</second>
</item>
<item>
<first>select_ln186_fu_1259</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>236</item>
</second>
</item>
<item>
<first>sext_ln101_fu_661</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>sext_ln101cast34_fu_1322</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>261</item>
</second>
</item>
<item>
<first>sext_ln101cast_fu_1214</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>228</item>
</second>
</item>
<item>
<first>sext_ln144_1_fu_990</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>175</item>
</second>
</item>
<item>
<first>sext_ln144_2_fu_993</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>177</item>
</second>
</item>
<item>
<first>sext_ln144_4_fu_1008</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>197</item>
</second>
</item>
<item>
<first>sext_ln144_5_fu_1011</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>199</item>
</second>
</item>
<item>
<first>sext_ln192_2_fu_1222</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>230</item>
</second>
</item>
<item>
<first>sext_ln192_3_fu_1330</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>263</item>
</second>
</item>
<item>
<first>sext_ln51_1_fu_970</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>183</item>
</second>
</item>
<item>
<first>sext_ln51_fu_938</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>161</item>
</second>
</item>
<item>
<first>sext_ln55_10_fu_958</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>180</item>
</second>
</item>
<item>
<first>sext_ln55_11_fu_961</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>181</item>
</second>
</item>
<item>
<first>sext_ln55_12_fu_974</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>184</item>
</second>
</item>
<item>
<first>sext_ln55_13_fu_977</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>185</item>
</second>
</item>
<item>
<first>sext_ln55_14_fu_986</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>187</item>
</second>
</item>
<item>
<first>sext_ln55_15_fu_888</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>188</item>
</second>
</item>
<item>
<first>sext_ln55_16_fu_892</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>189</item>
</second>
</item>
<item>
<first>sext_ln55_18_fu_896</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>192</item>
</second>
</item>
<item>
<first>sext_ln55_19_fu_900</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>193</item>
</second>
</item>
<item>
<first>sext_ln55_1_fu_929</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>159</item>
</second>
</item>
<item>
<first>sext_ln55_2_fu_942</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>162</item>
</second>
</item>
<item>
<first>sext_ln55_3_fu_945</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>163</item>
</second>
</item>
<item>
<first>sext_ln55_4_fu_954</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>165</item>
</second>
</item>
<item>
<first>sext_ln55_5_fu_872</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>166</item>
</second>
</item>
<item>
<first>sext_ln55_6_fu_876</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>167</item>
</second>
</item>
<item>
<first>sext_ln55_8_fu_880</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>170</item>
</second>
</item>
<item>
<first>sext_ln55_9_fu_884</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>171</item>
</second>
</item>
<item>
<first>sext_ln55_fu_926</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>158</item>
</second>
</item>
<item>
<first>shr_fu_637</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>86</item>
</second>
</item>
<item>
<first>sub113_fu_591</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>sub150_fu_621</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>sub151_cast_fu_633</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>sub151_fu_627</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>sub174_fu_649</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>88</item>
</second>
</item>
<item>
<first>sub175_fu_655</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
<item>
<first>tmp_1_fu_1067</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>216</item>
</second>
</item>
<item>
<first>tmp_2_fu_1142</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>225</item>
</second>
</item>
<item>
<first>tmp_3_fu_1285</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>240</item>
</second>
</item>
<item>
<first>tmp_4_fu_1092</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>249</item>
</second>
</item>
<item>
<first>tmp_5_fu_1194</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>258</item>
</second>
</item>
<item>
<first>tmp_6_fu_1393</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>273</item>
</second>
</item>
<item>
<first>tmp_cast_fu_617</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>tmp_fu_611</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>trunc_ln181_1_fu_1114</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>220</item>
</second>
</item>
<item>
<first>trunc_ln181_2_fu_1162</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>252</item>
</second>
</item>
<item>
<first>trunc_ln181_3_fu_1166</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>253</item>
</second>
</item>
<item>
<first>trunc_ln181_fu_1110</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>219</item>
</second>
</item>
<item>
<first>trunc_ln96_1_fu_1389</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>272</item>
</second>
</item>
<item>
<first>trunc_ln96_fu_1281</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>239</item>
</second>
</item>
<item>
<first>weight_in_tmp_data_V_fu_720</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>141</item>
</second>
</item>
<item>
<first>xor_ln184_1_fu_1355</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>267</item>
</second>
</item>
<item>
<first>xor_ln184_fu_1247</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>234</item>
</second>
</item>
<item>
<first>zext_ln82_1_fu_1409</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>275</item>
</second>
</item>
<item>
<first>zext_ln82_fu_1301</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>242</item>
</second>
</item>
</dp_fu_nodes_expression>
<dp_fu_nodes_module>
<count>5</count>
<item_version>0</item_version>
<item>
<first>grp_fu_1429</first>
<second>
<count>6</count>
<item_version>0</item_version>
<item>168</item>
<item>168</item>
<item>168</item>
<item>169</item>
<item>174</item>
<item>174</item>
</second>
</item>
<item>
<first>grp_fu_1438</first>
<second>
<count>6</count>
<item_version>0</item_version>
<item>172</item>
<item>172</item>
<item>172</item>
<item>173</item>
<item>176</item>
<item>176</item>
</second>
</item>
<item>
<first>grp_fu_1447</first>
<second>
<count>6</count>
<item_version>0</item_version>
<item>190</item>
<item>190</item>
<item>190</item>
<item>191</item>
<item>196</item>
<item>196</item>
</second>
</item>
<item>
<first>grp_fu_1456</first>
<second>
<count>6</count>
<item_version>0</item_version>
<item>194</item>
<item>194</item>
<item>194</item>
<item>195</item>
<item>198</item>
<item>198</item>
</second>
</item>
<item>
<first>grp_fu_583</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>74</item>
<item>74</item>
</second>
</item>
</dp_fu_nodes_module>
<dp_fu_nodes_io>
<count>18</count>
<item_version>0</item_version>
<item>
<first>bias_1_load_load_fu_923</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>210</item>
</second>
</item>
<item>
<first>bias_load_load_fu_920</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>209</item>
</second>
</item>
<item>
<first>contol_read_read_fu_210</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
<item>
<first>conv_inner_cnt_load_1_load_fu_713</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>137</item>
</second>
</item>
<item>
<first>conv_inner_cnt_load_load_fu_676</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>conv_loop_cnt_read_read_fu_180</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>empty_37_read_fu_216</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>117</item>
</second>
</item>
<item>
<first>empty_50_read_fu_228</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>138</item>
</second>
</item>
<item>
<first>empty_51_read_fu_240</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>140</item>
</second>
</item>
<item>
<first>frac_din_read_read_fu_198</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
<item>
<first>frac_dout_read_read_fu_192</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>frac_w_read_read_fu_204</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>grp_store_fu_578</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>91</item>
<item>279</item>
</second>
</item>
<item>
<first>grp_write_fu_252</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>278</item>
<item>278</item>
</second>
</item>
<item>
<first>output_num_read_read_fu_186</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</second>
</item>
<item>
<first>store_ln122_store_fu_703</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</second>
</item>
<item>
<first>store_ln122_store_fu_708</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>122</item>
</second>
</item>
<item>
<first>store_ln246_store_fu_915</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>206</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>80</count>
<item_version>0</item_version>
<item>
<first>271</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>282</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>293</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>304</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>96</item>
</second>
</item>
<item>
<first>315</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>326</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>337</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>348</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>359</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>101</item>
</second>
</item>
<item>
<first>370</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>381</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>392</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>403</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>414</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>125</item>
</second>
</item>
<item>
<first>426</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>126</item>
</second>
</item>
<item>
<first>440</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>127</item>
</second>
</item>
<item>
<first>454</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>128</item>
</second>
</item>
<item>
<first>468</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>129</item>
</second>
</item>
<item>
<first>482</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>130</item>
</second>
</item>
<item>
<first>496</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>131</item>
</second>
</item>
<item>
<first>508</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>132</item>
</second>
</item>
<item>
<first>522</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>133</item>
</second>
</item>
<item>
<first>536</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>134</item>
</second>
</item>
<item>
<first>550</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>135</item>
</second>
</item>
<item>
<first>564</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>136</item>
</second>
</item>
<item>
<first>1465</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>1473</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>1479</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>1485</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>1491</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</second>
</item>
<item>
<first>1496</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>1502</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
<item>
<first>1507</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>1513</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>1519</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>1524</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>1529</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>1535</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>1541</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>1547</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>107</item>
</second>
</item>
<item>
<first>1552</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>1556</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</second>
</item>
<item>
<first>1560</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>142</item>
</second>
</item>
<item>
<first>1565</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>143</item>
</second>
</item>
<item>
<first>1570</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>144</item>
</second>
</item>
<item>
<first>1575</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>145</item>
</second>
</item>
<item>
<first>1580</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>150</item>
</second>
</item>
<item>
<first>1585</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>151</item>
</second>
</item>
<item>
<first>1590</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>152</item>
</second>
</item>
<item>
<first>1595</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>153</item>
</second>
</item>
<item>
<first>1600</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>166</item>
</second>
</item>
<item>
<first>1605</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>167</item>
</second>
</item>
<item>
<first>1610</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>170</item>
</second>
</item>
<item>
<first>1615</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>171</item>
</second>
</item>
<item>
<first>1620</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>188</item>
</second>
</item>
<item>
<first>1625</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>189</item>
</second>
</item>
<item>
<first>1630</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>192</item>
</second>
</item>
<item>
<first>1635</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>193</item>
</second>
</item>
<item>
<first>1640</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>202</item>
</second>
</item>
<item>
<first>1644</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>209</item>
</second>
</item>
<item>
<first>1649</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>210</item>
</second>
</item>
<item>
<first>1654</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>161</item>
</second>
</item>
<item>
<first>1659</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>165</item>
</second>
</item>
<item>
<first>1664</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>183</item>
</second>
</item>
<item>
<first>1669</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>187</item>
</second>
</item>
<item>
<first>1674</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>179</item>
</second>
</item>
<item>
<first>1679</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>201</item>
</second>
</item>
<item>
<first>1684</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>214</item>
</second>
</item>
<item>
<first>1689</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>247</item>
</second>
</item>
<item>
<first>1694</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>215</item>
</second>
</item>
<item>
<first>1699</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>216</item>
</second>
</item>
<item>
<first>1704</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>248</item>
</second>
</item>
<item>
<first>1709</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>249</item>
</second>
</item>
<item>
<first>1714</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>223</item>
</second>
</item>
<item>
<first>1719</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>224</item>
</second>
</item>
<item>
<first>1724</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>225</item>
</second>
</item>
<item>
<first>1729</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>256</item>
</second>
</item>
<item>
<first>1734</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>257</item>
</second>
</item>
<item>
<first>1739</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>258</item>
</second>
</item>
<item>
<first>1744</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>277</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>80</count>
<item_version>0</item_version>
<item>
<first>add_ln170_3_reg_1684</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>214</item>
</second>
</item>
<item>
<first>add_ln170_8_reg_1689</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>247</item>
</second>
</item>
<item>
<first>add_ln94_1_reg_1734</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>257</item>
</second>
</item>
<item>
<first>add_ln94_reg_1719</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>224</item>
</second>
</item>
<item>
<first>bias_1_load_reg_1649</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>210</item>
</second>
</item>
<item>
<first>bias_1_reg_1479</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>bias_load_reg_1644</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>209</item>
</second>
</item>
<item>
<first>bias_reg_1473</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>conv_acc_1_reg_1694</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>215</item>
</second>
</item>
<item>
<first>conv_acc_2_reg_1679</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>201</item>
</second>
</item>
<item>
<first>conv_acc_3_reg_1704</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>248</item>
</second>
</item>
<item>
<first>conv_acc_reg_1674</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>179</item>
</second>
</item>
<item>
<first>conv_inner_cnt_reg_1465</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>conv_loop_cnt_read_reg_1485</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>conv_with_rnd_bit_1_reg_1729</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>256</item>
</second>
</item>
<item>
<first>conv_with_rnd_bit_reg_1714</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>223</item>
</second>
</item>
<item>
<first>empty_25_reg_282</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>empty_26_reg_293</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>empty_27_reg_304</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>96</item>
</second>
</item>
<item>
<first>empty_28_reg_315</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>empty_29_reg_326</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>empty_30_reg_337</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>empty_31_reg_348</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>empty_32_reg_359</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>101</item>
</second>
</item>
<item>
<first>empty_33_reg_370</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>empty_34_reg_381</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>empty_35_reg_392</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>empty_36_reg_403</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>empty_38_reg_414</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>125</item>
</second>
</item>
<item>
<first>empty_39_reg_426</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>126</item>
</second>
</item>
<item>
<first>empty_40_reg_440</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>127</item>
</second>
</item>
<item>
<first>empty_41_reg_454</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>128</item>
</second>
</item>
<item>
<first>empty_42_reg_468</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>129</item>
</second>
</item>
<item>
<first>empty_43_reg_482</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>130</item>
</second>
</item>
<item>
<first>empty_44_reg_496</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>131</item>
</second>
</item>
<item>
<first>empty_45_reg_508</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>132</item>
</second>
</item>
<item>
<first>empty_46_reg_522</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>133</item>
</second>
</item>
<item>
<first>empty_47_reg_536</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>134</item>
</second>
</item>
<item>
<first>empty_48_reg_550</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>135</item>
</second>
</item>
<item>
<first>empty_49_reg_564</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>136</item>
</second>
</item>
<item>
<first>empty_reg_1513</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>frac_din_read_reg_1502</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
<item>
<first>frac_dout_read_reg_1496</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>frac_w_read_reg_1507</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>icmp_ln101_reg_1552</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>icmp_ln104_reg_1556</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</second>
</item>
<item>
<first>icmp_ln163_reg_1640</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>202</item>
</second>
</item>
<item>
<first>k_1_reg_1547</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>107</item>
</second>
</item>
<item>
<first>k_reg_271</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>mac_data_lane_1_reg_1570</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>144</item>
</second>
</item>
<item>
<first>mac_data_lane_4_reg_1580</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>150</item>
</second>
</item>
<item>
<first>mac_data_lane_5_reg_1590</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>152</item>
</second>
</item>
<item>
<first>mac_data_lane_reg_1560</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>142</item>
</second>
</item>
<item>
<first>mac_weight_lane_1_reg_1575</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>145</item>
</second>
</item>
<item>
<first>mac_weight_lane_4_reg_1585</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>151</item>
</second>
</item>
<item>
<first>mac_weight_lane_5_reg_1595</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>153</item>
</second>
</item>
<item>
<first>mac_weight_lane_reg_1565</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>143</item>
</second>
</item>
<item>
<first>mul_reg_1519</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>neg_reg_1535</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>output_num_read_reg_1491</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</second>
</item>
<item>
<first>p_Result_s_reg_1744</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>277</item>
</second>
</item>
<item>
<first>sext_ln101_reg_1541</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>sext_ln51_1_reg_1664</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>183</item>
</second>
</item>
<item>
<first>sext_ln51_reg_1654</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>161</item>
</second>
</item>
<item>
<first>sext_ln55_14_reg_1669</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>187</item>
</second>
</item>
<item>
<first>sext_ln55_15_reg_1620</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>188</item>
</second>
</item>
<item>
<first>sext_ln55_16_reg_1625</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>189</item>
</second>
</item>
<item>
<first>sext_ln55_18_reg_1630</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>192</item>
</second>
</item>
<item>
<first>sext_ln55_19_reg_1635</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>193</item>
</second>
</item>
<item>
<first>sext_ln55_4_reg_1659</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>165</item>
</second>
</item>
<item>
<first>sext_ln55_5_reg_1600</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>166</item>
</second>
</item>
<item>
<first>sext_ln55_6_reg_1605</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>167</item>
</second>
</item>
<item>
<first>sext_ln55_8_reg_1610</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>170</item>
</second>
</item>
<item>
<first>sext_ln55_9_reg_1615</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>171</item>
</second>
</item>
<item>
<first>sub113_reg_1524</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>sub151_cast_reg_1529</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>tmp_1_reg_1699</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>216</item>
</second>
</item>
<item>
<first>tmp_2_reg_1724</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>225</item>
</second>
</item>
<item>
<first>tmp_4_reg_1709</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>249</item>
</second>
</item>
<item>
<first>tmp_5_reg_1739</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>258</item>
</second>
</item>
</dp_regname_nodes>
<dp_reg_phi>
<count>25</count>
<item_version>0</item_version>
<item>
<first>271</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>282</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>293</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>304</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>96</item>
</second>
</item>
<item>
<first>315</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>326</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>337</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>348</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>359</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>101</item>
</second>
</item>
<item>
<first>370</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>381</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>392</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>403</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>414</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>125</item>
</second>
</item>
<item>
<first>426</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>126</item>
</second>
</item>
<item>
<first>440</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>127</item>
</second>
</item>
<item>
<first>454</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>128</item>
</second>
</item>
<item>
<first>468</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>129</item>
</second>
</item>
<item>
<first>482</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>130</item>
</second>
</item>
<item>
<first>496</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>131</item>
</second>
</item>
<item>
<first>508</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>132</item>
</second>
</item>
<item>
<first>522</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>133</item>
</second>
</item>
<item>
<first>536</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>134</item>
</second>
</item>
<item>
<first>550</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>135</item>
</second>
</item>
<item>
<first>564</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>136</item>
</second>
</item>
</dp_reg_phi>
<dp_regname_phi>
<count>25</count>
<item_version>0</item_version>
<item>
<first>empty_25_reg_282</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>empty_26_reg_293</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>empty_27_reg_304</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>96</item>
</second>
</item>
<item>
<first>empty_28_reg_315</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>empty_29_reg_326</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>empty_30_reg_337</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>empty_31_reg_348</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>empty_32_reg_359</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>101</item>
</second>
</item>
<item>
<first>empty_33_reg_370</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>empty_34_reg_381</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>empty_35_reg_392</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>empty_36_reg_403</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>empty_38_reg_414</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>125</item>
</second>
</item>
<item>
<first>empty_39_reg_426</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>126</item>
</second>
</item>
<item>
<first>empty_40_reg_440</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>127</item>
</second>
</item>
<item>
<first>empty_41_reg_454</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>128</item>
</second>
</item>
<item>
<first>empty_42_reg_468</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>129</item>
</second>
</item>
<item>
<first>empty_43_reg_482</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>130</item>
</second>
</item>
<item>
<first>empty_44_reg_496</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>131</item>
</second>
</item>
<item>
<first>empty_45_reg_508</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>132</item>
</second>
</item>
<item>
<first>empty_46_reg_522</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>133</item>
</second>
</item>
<item>
<first>empty_47_reg_536</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>134</item>
</second>
</item>
<item>
<first>empty_48_reg_550</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>135</item>
</second>
</item>
<item>
<first>empty_49_reg_564</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>136</item>
</second>
</item>
<item>
<first>k_reg_271</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
</dp_regname_phi>
<dp_port_io_nodes class_id="57" tracking_level="0" version="0">
<count>22</count>
<item_version>0</item_version>
<item class_id="58" tracking_level="0" version="0">
<first>bias_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>117</item>
</second>
</item>
</second>
</item>
<item>
<first>bias_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>117</item>
</second>
</item>
</second>
</item>
<item>
<first>bias_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>117</item>
</second>
</item>
</second>
</item>
<item>
<first>bias_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>117</item>
</second>
</item>
</second>
</item>
<item>
<first>contol</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
</second>
</item>
<item>
<first>conv_loop_cnt</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
</second>
</item>
<item>
<first>conv_out_V_data_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>278</item>
</second>
</item>
</second>
</item>
<item>
<first>conv_out_V_keep_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>278</item>
</second>
</item>
</second>
</item>
<item>
<first>conv_out_V_last_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>278</item>
</second>
</item>
</second>
</item>
<item>
<first>conv_out_V_strb_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>278</item>
</second>
</item>
</second>
</item>
<item>
<first>data_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>138</item>
</second>
</item>
</second>
</item>
<item>
<first>data_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>138</item>
</second>
</item>
</second>
</item>
<item>
<first>data_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>138</item>
</second>
</item>
</second>
</item>
<item>
<first>data_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>138</item>
</second>
</item>
</second>
</item>
<item>
<first>frac_din</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
</second>
</item>
<item>
<first>frac_dout</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
</second>
</item>
<item>
<first>frac_w</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
</second>
</item>
<item>
<first>output_num</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</second>
</item>
</second>
</item>
<item>
<first>weight_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>140</item>
</second>
</item>
</second>
</item>
<item>
<first>weight_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>140</item>
</second>
</item>
</second>
</item>
<item>
<first>weight_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>140</item>
</second>
</item>
</second>
</item>
<item>
<first>weight_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>140</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core>
<count>0</count>
<item_version>0</item_version>
</port2core>
<node2core>
<count>88</count>
<item_version>0</item_version>
<item>
<first>26</first>
<second>
<first>1150</first>
<second>155</second>
</second>
</item>
<item>
<first>27</first>
<second>
<first>1150</first>
<second>155</second>
</second>
</item>
<item>
<first>28</first>
<second>
<first>1150</first>
<second>155</second>
</second>
</item>
<item>
<first>29</first>
<second>
<first>1150</first>
<second>155</second>
</second>
</item>
<item>
<first>30</first>
<second>
<first>1150</first>
<second>155</second>
</second>
</item>
<item>
<first>31</first>
<second>
<first>1150</first>
<second>155</second>
</second>
</item>
<item>
<first>74</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>75</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>81</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>83</first>
<second>
<first>8</first>
<second>156</second>
</second>
</item>
<item>
<first>84</first>
<second>
<first>8</first>
<second>156</second>
</second>
</item>
<item>
<first>86</first>
<second>
<first>21</first>
<second>2</second>
</second>
</item>
<item>
<first>87</first>
<second>
<first>25</first>
<second>0</second>
</second>
</item>
<item>
<first>88</first>
<second>
<first>8</first>
<second>156</second>
</second>
</item>
<item>
<first>89</first>
<second>
<first>8</first>
<second>156</second>
</second>
</item>
<item>
<first>107</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>109</first>
<second>
<first>45</first>
<second>0</second>
</second>
</item>
<item>
<first>114</first>
<second>
<first>45</first>
<second>0</second>
</second>
</item>
<item>
<first>117</first>
<second>
<first>888</first>
<second>111</second>
</second>
</item>
<item>
<first>138</first>
<second>
<first>888</first>
<second>111</second>
</second>
</item>
<item>
<first>140</first>
<second>
<first>888</first>
<second>111</second>
</second>
</item>
<item>
<first>160</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>164</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>168</first>
<second>
<first>8</first>
<second>3</second>
</second>
</item>
<item>
<first>169</first>
<second>
<first>8</first>
<second>3</second>
</second>
</item>
<item>
<first>172</first>
<second>
<first>8</first>
<second>3</second>
</second>
</item>
<item>
<first>173</first>
<second>
<first>8</first>
<second>3</second>
</second>
</item>
<item>
<first>174</first>
<second>
<first>8</first>
<second>3</second>
</second>
</item>
<item>
<first>176</first>
<second>
<first>8</first>
<second>3</second>
</second>
</item>
<item>
<first>178</first>
<second>
<first>8</first>
<second>156</second>
</second>
</item>
<item>
<first>179</first>
<second>
<first>8</first>
<second>156</second>
</second>
</item>
<item>
<first>182</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>186</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>190</first>
<second>
<first>8</first>
<second>3</second>
</second>
</item>
<item>
<first>191</first>
<second>
<first>8</first>
<second>3</second>
</second>
</item>
<item>
<first>194</first>
<second>
<first>8</first>
<second>3</second>
</second>
</item>
<item>
<first>195</first>
<second>
<first>8</first>
<second>3</second>
</second>
</item>
<item>
<first>196</first>
<second>
<first>8</first>
<second>3</second>
</second>
</item>
<item>
<first>198</first>
<second>
<first>8</first>
<second>3</second>
</second>
</item>
<item>
<first>200</first>
<second>
<first>8</first>
<second>156</second>
</second>
</item>
<item>
<first>201</first>
<second>
<first>8</first>
<second>156</second>
</second>
</item>
<item>
<first>202</first>
<second>
<first>45</first>
<second>0</second>
</second>
</item>
<item>
<first>205</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>211</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>212</first>
<second>
<first>8</first>
<second>156</second>
</second>
</item>
<item>
<first>213</first>
<second>
<first>8</first>
<second>156</second>
</second>
</item>
<item>
<first>214</first>
<second>
<first>8</first>
<second>156</second>
</second>
</item>
<item>
<first>215</first>
<second>
<first>8</first>
<second>156</second>
</second>
</item>
<item>
<first>217</first>
<second>
<first>49</first>
<second>107</second>
</second>
</item>
<item>
<first>218</first>
<second>
<first>22</first>
<second>2</second>
</second>
</item>
<item>
<first>221</first>
<second>
<first>24</first>
<second>0</second>
</second>
</item>
<item>
<first>222</first>
<second>
<first>24</first>
<second>0</second>
</second>
</item>
<item>
<first>223</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>224</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>226</first>
<second>
<first>45</first>
<second>0</second>
</second>
</item>
<item>
<first>227</first>
<second>
<first>45</first>
<second>0</second>
</second>
</item>
<item>
<first>229</first>
<second>
<first>22</first>
<second>2</second>
</second>
</item>
<item>
<first>232</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>234</first>
<second>
<first>25</first>
<second>0</second>
</second>
</item>
<item>
<first>235</first>
<second>
<first>23</first>
<second>0</second>
</second>
</item>
<item>
<first>236</first>
<second>
<first>49</first>
<second>107</second>
</second>
</item>
<item>
<first>237</first>
<second>
<first>24</first>
<second>0</second>
</second>
</item>
<item>
<first>238</first>
<second>
<first>49</first>
<second>107</second>
</second>
</item>
<item>
<first>241</first>
<second>
<first>49</first>
<second>107</second>
</second>
</item>
<item>
<first>243</first>
<second>
<first>49</first>
<second>107</second>
</second>
</item>
<item>
<first>244</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>245</first>
<second>
<first>8</first>
<second>156</second>
</second>
</item>
<item>
<first>246</first>
<second>
<first>8</first>
<second>156</second>
</second>
</item>
<item>
<first>247</first>
<second>
<first>8</first>
<second>156</second>
</second>
</item>
<item>
<first>248</first>
<second>
<first>8</first>
<second>156</second>
</second>
</item>
<item>
<first>250</first>
<second>
<first>49</first>
<second>107</second>
</second>
</item>
<item>
<first>251</first>
<second>
<first>22</first>
<second>2</second>
</second>
</item>
<item>
<first>254</first>
<second>
<first>24</first>
<second>0</second>
</second>
</item>
<item>
<first>255</first>
<second>
<first>24</first>
<second>0</second>
</second>
</item>
<item>
<first>256</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>257</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>259</first>
<second>
<first>45</first>
<second>0</second>
</second>
</item>
<item>
<first>260</first>
<second>
<first>45</first>
<second>0</second>
</second>
</item>
<item>
<first>262</first>
<second>
<first>22</first>
<second>2</second>
</second>
</item>
<item>
<first>265</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>267</first>
<second>
<first>25</first>
<second>0</second>
</second>
</item>
<item>
<first>268</first>
<second>
<first>23</first>
<second>0</second>
</second>
</item>
<item>
<first>269</first>
<second>
<first>49</first>
<second>107</second>
</second>
</item>
<item>
<first>270</first>
<second>
<first>24</first>
<second>0</second>
</second>
</item>
<item>
<first>271</first>
<second>
<first>49</first>
<second>107</second>
</second>
</item>
<item>
<first>274</first>
<second>
<first>49</first>
<second>107</second>
</second>
</item>
<item>
<first>276</first>
<second>
<first>49</first>
<second>107</second>
</second>
</item>
<item>
<first>278</first>
<second>
<first>888</first>
<second>111</second>
</second>
</item>
</node2core>
</syndb>
</boost_serialization>
|
with Ada.Text_IO; use Ada.Text_IO;
procedure Oups is
V : Integer := 0;
begin
if 1 / V = 1 then New_Line; end if;
end;
|
with Ada.Execution_Time,
Ada.Exceptions,
Ada.Long_Long_Integer_Text_IO,
Ada.Real_Time,
Ada.Text_IO;
with Utils;
procedure Main is
use Ada.Execution_Time,
Ada.Real_Time,
Ada.Text_IO;
use Utils;
type Lanternfish_Life_Span is range -1 .. 8;
subtype Long_Long_Natural is Long_Long_Integer range 0 .. Long_Long_Integer'Last;
type Lanternfishes_School is array (Lanternfish_Life_Span) of Long_Long_Natural;
package Lanternfish_Life_Span_IO is new Ada.Text_IO.Integer_IO (Lanternfish_Life_Span);
use Lanternfish_Life_Span_IO;
File : File_Type;
Start_Time, End_Time : CPU_Time;
Execution_Duration : Time_Span;
Lanternfishes : Lanternfishes_School := (others => Long_Long_Natural'First);
Nb_Lanternfishes : Long_Long_Natural := Long_Long_Natural'First;
begin
Get_File (File);
if End_Of_File (File) then
raise Program_Error with "Empty file";
end if;
-- Get all Lanternfishes
while not End_Of_File (File) loop
declare
Line : constant String := Get_Line (File);
First : Positive := Line'First;
Last : Positive := Line'First;
Last_Index : Positive := Line'First;
Value : Lanternfish_Life_Span;
begin
while Last <= Line'Last loop
if Line (Last) not in '0' .. '9' then
if Line (First .. Last - 1) /= "" then
Get (Line (First .. Last - 1), Value, Last_Index);
Lanternfishes (Value) := Lanternfishes (Value) + 1;
end if;
First := Last + 1;
Last := First;
elsif Last = Line'Last then
Get (Line (First .. Line'Last), Value, Last_Index);
Lanternfishes (Value) := Lanternfishes (Value) + 1;
Last := Last + 1;
else
Last := Last + 1;
end if;
end loop;
end;
end loop;
Start_Time := Ada.Execution_Time.Clock;
Solve_Puzzle : declare
begin
for Day in 1 .. 256 loop
for Index in 0 .. Lanternfishes_School'Last loop
Lanternfishes (Index - 1) := Lanternfishes (Index);
end loop;
Lanternfishes (Lanternfishes_School'Last) := Lanternfishes (Lanternfishes_School'First);
Lanternfishes (6) := Lanternfishes (Lanternfishes_School'First) + Lanternfishes (6);
Lanternfishes (Lanternfishes_School'First) := Long_Long_Natural'First;
end loop;
for Nb of Lanternfishes loop
Nb_Lanternfishes := Nb_Lanternfishes + Nb;
end loop;
end Solve_Puzzle;
End_Time := Ada.Execution_Time.Clock;
Execution_Duration := End_Time - Start_Time;
Put ("Result: ");
Ada.Long_Long_Integer_Text_IO.Put (Nb_Lanternfishes, Width => 0);
New_Line;
Put_Line ("(Took " & Duration'Image (To_Duration (Execution_Duration) * 1_000_000) & "µs)");
Close_If_Open (File);
exception
when Occur : others =>
Put_Line ("Error: " & Ada.Exceptions.Exception_Message (Occur));
Close_If_Open (File);
end Main;
|
-- Lumen.Binary.IO -- Read and write streams of binary data from external
-- files.
--
-- Chip Richards, NiEstu, Phoenix AZ, Summer 2010
-- This code is covered by the ISC License:
--
-- Copyright © 2010, NiEstu
--
-- Permission to use, copy, modify, and/or distribute this software for any
-- purpose with or without fee is hereby granted, provided that the above
-- copyright notice and this permission notice appear in all copies.
--
-- The software is provided "as is" and the author disclaims all warranties
-- with regard to this software including all implied warranties of
-- merchantability and fitness. In no event shall the author be liable for any
-- special, direct, indirect, or consequential damages or any damages
-- whatsoever resulting from loss of use, data or profits, whether in an
-- action of contract, negligence or other tortious action, arising out of or
-- in connection with the use or performance of this software.
-- Environment
with System.Address_To_Access_Conversions;
package body Lumen.Binary.IO is
---------------------------------------------------------------------------
-- Useful constant for our short I/O routines
Bytes_Per_Short : constant := Short'Size / Ada.Streams.Stream_Element'Size;
Bytes_Per_Word : constant := Word'Size / Ada.Streams.Stream_Element'Size;
---------------------------------------------------------------------------
-- Open a file for reading
procedure Open (File : in out File_Type;
Pathname : in String) is
begin -- Open
-- Just regular stream open, for reading
Ada.Streams.Stream_IO.Open (File => File,
Mode => Ada.Streams.Stream_IO.In_File,
Name => Pathname);
exception
when Ada.Streams.Stream_IO.Name_Error =>
raise Nonexistent_File;
when Ada.Streams.Stream_IO.Use_Error =>
raise Unreadable_File;
when Ada.Streams.Stream_IO.Device_Error =>
raise Access_Failed;
when others =>
raise Unknown_Error;
end Open;
---------------------------------------------------------------------------
-- Create a file for writing
procedure Create (File : in out File_Type;
Pathname : in String) is
begin -- Create
-- Just regular stream create, for writing
Ada.Streams.Stream_IO.Create (File => File,
Mode => Ada.Streams.Stream_IO.Out_File,
Name => Pathname);
exception
when Ada.Streams.Stream_IO.Name_Error =>
raise Malformed_Name;
when Ada.Streams.Stream_IO.Use_Error =>
raise Unwriteable_File;
when Ada.Streams.Stream_IO.Device_Error =>
raise Access_Failed;
when others =>
raise Unknown_Error;
end Create;
---------------------------------------------------------------------------
-- Close open file
procedure Close (File : in out File_Type) is
begin -- Close
Ada.Streams.Stream_IO.Close (File);
end Close;
---------------------------------------------------------------------------
-- Read and return a stream of bytes up to the given length
function Read (File : File_Type;
Length : Positive)
return Byte_String is
use Ada.Streams;
-- Pointer-fumbling routines used to read data without copying it
subtype SEA is Stream_Element_Array (1 .. Stream_Element_Offset (Length));
package SEA_Addr is new System.Address_To_Access_Conversions (SEA);
Into : Byte_String (1 .. Length);
Item : constant SEA_Addr.Object_Pointer :=
SEA_Addr.To_Pointer (Into'Address);
Got : Stream_Element_Offset;
begin -- Read
Stream_IO.Read (File, Item.all, Got);
return Into (Into'First .. Natural (Got));
exception
when others =>
raise Read_Error;
end Read;
---------------------------------------------------------------------------
-- Read and return a stream of bytes up to the length of the given buffer
procedure Read (File : in File_Type;
Item : out Byte_String;
Last : out Natural) is
use Ada.Streams;
-- Pointer-fumbling routines used to read data without copying it
subtype SEA is Stream_Element_Array (Stream_Element_Offset (Item'First) ..
Stream_Element_Offset (Item'Last));
package SEA_Addr is new System.Address_To_Access_Conversions (SEA);
Into : constant SEA_Addr.Object_Pointer :=
SEA_Addr.To_Pointer (Item'Address);
Got : Stream_Element_Offset;
begin -- Read
Stream_IO.Read (File, Into.all, Got);
Last := Natural (Got);
exception
when others =>
raise Read_Error;
end Read;
---------------------------------------------------------------------------
-- Read and return a stream of shorts up to the given length
function Read (File : File_Type;
Length : Positive)
return Short_String is
use Ada.Streams;
-- Pointer-fumbling routines used to read data without copying it
subtype SEA is Stream_Element_Array
(1 .. Stream_Element_Offset (Length * Bytes_Per_Short));
package SEA_Addr is new System.Address_To_Access_Conversions (SEA);
Into : Short_String (1 .. Length);
Item : constant SEA_Addr.Object_Pointer :=
SEA_Addr.To_Pointer (Into'Address);
Got : Stream_Element_Offset;
begin -- Read
Stream_IO.Read (File, Item.all, Got);
return Into (Into'First .. Natural (Got / Bytes_Per_Short));
exception
when others =>
raise Read_Error;
end Read;
---------------------------------------------------------------------------
-- Read and return a stream of shorts up to the length of the given buffer
procedure Read (File : in File_Type;
Item : out Short_String;
Last : out Natural) is
use Ada.Streams;
-- Pointer-fumbling routines used to read data without copying it
subtype SEA is Stream_Element_Array
(1 .. Stream_Element_Offset (Item'Length * Bytes_Per_Short));
package SEA_Addr is new System.Address_To_Access_Conversions (SEA);
Into : constant SEA_Addr.Object_Pointer :=
SEA_Addr.To_Pointer (Item'Address);
Got : Stream_Element_Offset;
begin -- Read
Stream_IO.Read (File, Into.all, Got);
Last := Natural (Got);
exception
when others =>
raise Read_Error;
end Read;
---------------------------------------------------------------------------
-- Read and return a stream of words up to the given length
function Read (File : File_Type;
Length : Positive)
return Word_String is
use Ada.Streams;
-- Pointer-fumbling routines used to read data without copying it
subtype SEA is Stream_Element_Array
(1 .. Stream_Element_Offset (Length * Bytes_Per_Word));
package SEA_Addr is new System.Address_To_Access_Conversions (SEA);
Into : Word_String (1 .. Length);
Item : constant SEA_Addr.Object_Pointer :=
SEA_Addr.To_Pointer (Into'Address);
Got : Stream_Element_Offset;
begin -- Read
Stream_IO.Read (File, Item.all, Got);
return Into (Into'First .. Natural (Got / Bytes_Per_Word));
exception
when others =>
raise Read_Error;
end Read;
---------------------------------------------------------------------------
-- Read and return a stream of words up to the length of the given buffer
procedure Read (File : in File_Type;
Item : out Word_String;
Last : out Natural) is
use Ada.Streams;
-- Pointer-fumbling routines used to read data without copying it
subtype SEA is Stream_Element_Array
(1 .. Stream_Element_Offset (Item'Length * Bytes_Per_Word));
package SEA_Addr is new System.Address_To_Access_Conversions (SEA);
Into : constant SEA_Addr.Object_Pointer :=
SEA_Addr.To_Pointer (Item'Address);
Got : Stream_Element_Offset;
begin -- Read
Stream_IO.Read (File, Into.all, Got);
Last := Natural (Got);
exception
when others =>
raise Read_Error;
end Read;
---------------------------------------------------------------------------
-- Write a stream of bytes
procedure Write (File : in File_Type;
Item : in Byte_String) is
use Ada.Streams;
-- Pointer-fumbling routines used to write data without copying it
subtype SEA is Stream_Element_Array (Stream_Element_Offset (Item'First) ..
Stream_Element_Offset (Item'Last));
package SEA_Addr is new System.Address_To_Access_Conversions (SEA);
From : constant SEA_Addr.Object_Pointer :=
SEA_Addr.To_Pointer (Item'Address);
begin -- Write
Stream_IO.Write (File, From.all);
exception
when others =>
raise Write_Error;
end Write;
---------------------------------------------------------------------------
end Lumen.Binary.IO;
|
-- from ACATS 2.6 tests
package Switches is -- Switches
type Toggle is tagged private; ---------------------------------- Toggle
procedure Flip ( It : in out Toggle );
private
type Toggle is tagged record
On : Boolean := False;
end record;
end Switches;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . H T A B L E --
-- --
-- S p e c --
-- --
-- Copyright (C) 1995-2019, AdaCore --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- Hash table searching routines
-- This package contains two separate packages. The Simple_HTable package
-- provides a very simple abstraction that associates one element to one
-- key value and takes care of all allocations automatically using the heap.
-- The Static_HTable package provides a more complex interface that allows
-- complete control over allocation.
pragma Compiler_Unit_Warning;
package System.HTable is
pragma Preelaborate;
-------------------
-- Simple_HTable --
-------------------
-- A simple hash table abstraction, easy to instantiate, easy to use.
-- The table associates one element to one key with the procedure Set.
-- Get retrieves the Element stored for a given Key. The efficiency of
-- retrieval is function of the size of the Table parameterized by
-- Header_Num and the hashing function Hash.
generic
type Header_Num is range <>;
-- An integer type indicating the number and range of hash headers
type Element is private;
-- The type of element to be stored
No_Element : Element;
-- The object that is returned by Get when no element has been set for
-- a given key.
type Key is private;
with function Hash (F : Key) return Header_Num;
with function Equal (F1, F2 : Key) return Boolean;
package Simple_HTable is
procedure Set (K : Key; E : Element);
-- Associates an element with a given key. Overrides any previously
-- associated element.
procedure Reset;
-- Removes and frees all elements in the table
function Get (K : Key) return Element;
-- Returns the Element associated with a key or No_Element if the
-- given key has no associated element.
procedure Remove (K : Key);
-- Removes the latest inserted element pointer associated with the
-- given key if any, does nothing if none.
function Get_First return Element;
-- Returns No_Element if the HTable is empty, otherwise returns one
-- non specified element. There is no guarantee that two calls to this
-- function will return the same element.
function Get_Next return Element;
-- Returns a non-specified element that has not been returned by the
-- same function since the last call to Get_First or No_Element if
-- there is no such element. If there is no call to Set in between
-- Get_Next calls, all the elements of the HTable will be traversed.
procedure Get_First (K : in out Key; E : out Element);
-- This version of the iterator returns a key/element pair. A non-
-- specified entry is returned, and there is no guarantee that two
-- calls to this procedure will return the same element. If the table
-- is empty, E is set to No_Element, and K is unchanged, otherwise
-- K and E are set to the first returned entry.
procedure Get_Next (K : in out Key; E : out Element);
-- This version of the iterator returns a key/element pair. It returns
-- a non-specified element that has not been returned since the last
-- call to Get_First. If there is no remaining element, then E is set
-- to No_Element, and the value in K is unchanged, otherwise K and E
-- are set to the next entry. If there is no call to Set in between
-- Get_Next calls, all the elements of the HTable will be traversed.
end Simple_HTable;
-------------------
-- Static_HTable --
-------------------
-- A low-level Hash-Table abstraction, not as easy to instantiate as
-- Simple_HTable but designed to allow complete control over the
-- allocation of necessary data structures. Particularly useful when
-- dynamic allocation is not desired. The model is that each Element
-- contains its own Key that can be retrieved by Get_Key. Furthermore,
-- Element provides a link that can be used by the HTable for linking
-- elements with same hash codes:
-- Element
-- +-------------------+
-- | Key |
-- +-------------------+
-- : other data :
-- +-------------------+
-- | Next Elmt |
-- +-------------------+
generic
type Header_Num is range <>;
-- An integer type indicating the number and range of hash headers
type Element (<>) is limited private;
-- The type of element to be stored. This is historically part of the
-- interface, even though it is not used at all in the operations of
-- the package.
pragma Warnings (Off, Element);
-- We have to kill warnings here, because Element is and always
-- has been unreferenced, but we cannot remove it at this stage,
-- since this unit is in wide use, and it certainly seems harmless.
type Elmt_Ptr is private;
-- The type used to reference an element (will usually be an access
-- type, but could be some other form of type such as an integer type).
Null_Ptr : Elmt_Ptr;
-- The null value of the Elmt_Ptr type
with procedure Set_Next (E : Elmt_Ptr; Next : Elmt_Ptr);
with function Next (E : Elmt_Ptr) return Elmt_Ptr;
-- The type must provide an internal link for the sake of the
-- staticness of the HTable.
type Key is limited private;
with function Get_Key (E : Elmt_Ptr) return Key;
with function Hash (F : Key) return Header_Num;
with function Equal (F1, F2 : Key) return Boolean;
package Static_HTable is
procedure Reset;
-- Resets the hash table by setting all its elements to Null_Ptr. The
-- effect is to clear the hash table so that it can be reused. For the
-- most common case where Elmt_Ptr is an access type, and Null_Ptr is
-- null, this is only needed if the same table is reused in a new
-- context. If Elmt_Ptr is other than an access type, or Null_Ptr is
-- other than null, then Reset must be called before the first use
-- of the hash table.
procedure Set (E : Elmt_Ptr);
-- Insert the element pointer in the HTable
function Get (K : Key) return Elmt_Ptr;
-- Returns the latest inserted element pointer with the given Key
-- or null if none.
function Present (K : Key) return Boolean;
-- True if an element whose Get_Key is K is in the table
function Set_If_Not_Present (E : Elmt_Ptr) return Boolean;
-- If Present (Get_Key (E)), returns False. Otherwise, does Set (E), and
-- then returns True. Present (Get_Key (E)) is always True afterward,
-- and the result True indicates E is newly Set.
procedure Remove (K : Key);
-- Removes the latest inserted element pointer associated with the
-- given key if any, does nothing if none.
function Get_First return Elmt_Ptr;
-- Returns Null_Ptr if the HTable is empty, otherwise returns one
-- non specified element. There is no guarantee that two calls to this
-- function will return the same element.
function Get_Next return Elmt_Ptr;
-- Returns a non-specified element that has not been returned by the
-- same function since the last call to Get_First or Null_Ptr if
-- there is no such element or Get_First has never been called. If
-- there is no call to 'Set' in between Get_Next calls, all the
-- elements of the HTable will be traversed.
end Static_HTable;
----------
-- Hash --
----------
-- A generic hashing function working on String keys
generic
type Header_Num is range <>;
function Hash (Key : String) return Header_Num;
end System.HTable;
|
-- Lumen.Binary.Endian.Shorts -- Byte re-ordering routines for "short"
-- (16-bit) values
--
--
-- Chip Richards, NiEstu, Phoenix AZ, Summer 2010
-- This code is covered by the ISC License:
--
-- Copyright © 2010, NiEstu
--
-- Permission to use, copy, modify, and/or distribute this software for any
-- purpose with or without fee is hereby granted, provided that the above
-- copyright notice and this permission notice appear in all copies.
--
-- The software is provided "as is" and the author disclaims all warranties
-- with regard to this software including all implied warranties of
-- merchantability and fitness. In no event shall the author be liable for any
-- special, direct, indirect, or consequential damages or any damages
-- whatsoever resulting from loss of use, data or profits, whether in an
-- action of contract, negligence or other tortious action, arising out of or
-- in connection with the use or performance of this software.
generic
type Short_Type is (<>);
package Lumen.Binary.Endian.Shorts is
---------------------------------------------------------------------------
-- Swap the bytes, no matter the host ordering
function Swap_Bytes (Value : Short_Type) return Short_Type;
-- Swap bytes if host is little-endian, or no-op if it's big-endian
function To_Big (Value : Short_Type) return Short_Type;
-- Swap bytes if host is big-endian, or no-op if it's little-endian
function To_Little (Value : Short_Type) return Short_Type;
-- Swap bytes if host is little-endian, or no-op if it's big-endian
function From_Big (Value : Short_Type) return Short_Type renames To_Big;
-- Swap bytes if host is big-endian, or no-op if it's little-endian
function From_Little (Value : Short_Type) return Short_Type
renames To_Little;
---------------------------------------------------------------------------
-- Swap the bytes in place, no matter the host ordering
procedure Swap_Bytes (Value : in out Short_Type);
-- Swap bytes in place if host is little-endian, or no-op if it's big-endian
procedure To_Big (Value : in out Short_Type);
-- Swap bytes in place if host is big-endian, or no-op if it's little-endian
procedure To_Little (Value : in out Short_Type);
-- Swap bytes in place if host is little-endian, or no-op if it's big-endian
procedure From_Big (Value : in out Short_Type) renames To_Big;
-- Swap bytes in place if host is big-endian, or no-op if it's little-endian
procedure From_Little (Value : in out Short_Type) renames To_Little;
---------------------------------------------------------------------------
pragma Inline (Swap_Bytes, To_Big, To_Little, From_Big, From_Little);
---------------------------------------------------------------------------
end Lumen.Binary.Endian.Shorts;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Localization, Internationalization, Globalization for Ada --
-- --
-- Tools Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2013, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- This program generates timezone information from TZDATA.
------------------------------------------------------------------------------
with Ada.Characters.Wide_Wide_Latin_1;
with Ada.Containers.Vectors;
with Ada.Strings.Wide_Wide_Fixed;
with Ada.Unchecked_Deallocation;
with Ada.Wide_Wide_Text_IO;
with League.Application;
with League.Strings;
with Matreshka.Internals.Calendars.Gregorian;
with Matreshka.Internals.Calendars.Times;
procedure Gen_TZ is
use Matreshka.Internals.Calendars;
use Matreshka.Internals.Calendars.Gregorian;
use Matreshka.Internals.Calendars.Times;
type Time_Kinds is (Wall, Standard, UTC);
type Day_Kinds is (Number, Last_Sunday, Last_Saturday);
type TZ_Zone_Record is record
GMT_Offset : Relative_Time;
Rules : League.Strings.Universal_String;
Year : Year_Number;
Month : Month_Number := 1;
Day_Kind : Day_Kinds := Number;
Day : Day_Number := 1;
Hour : Hour_Number := 0;
Minute : Minute_Number := 0;
Second : Second_Number := 0;
Time_Kind : Time_Kinds := Wall;
end record;
type Time_Zone_Access is access all Internal_Time_Zone;
package TZ_Zone_Vectors is
new Ada.Containers.Vectors (Positive, TZ_Zone_Record);
type TZ_Zone_Info is record
Name : League.Strings.Universal_String;
Records : TZ_Zone_Vectors.Vector;
end record;
X_Open_Epoch : constant := 2_299_161;
Ticks_In_Day : constant := 24 * 60 * 60 * 10_000_000;
Ticks_In_Hour : constant := 60 * 60 * 10_000_000;
Ticks_In_Minute : constant := 60 * 10_000_000;
Ticks_In_Second : constant := 10_000_000;
procedure Load_TZ_File (File_Name : League.Strings.Universal_String);
function To_Absolute_Time
(Year : Year_Number;
Month : Month_Number;
Day : Day_Number;
Hour : Hour_Number;
Minute : Minute_Number;
Second : Second_Number) return Absolute_Time;
function To_Relative_Time
(Hour : Hour_Number;
Minute : Minute_Number;
Second : Second_Number) return Relative_Time;
function Image (Item : Absolute_Time) return Wide_Wide_String;
function Image (Item : Relative_Time) return Wide_Wide_String;
TZ : TZ_Zone_Info;
procedure Prepend
(Item : in out Time_Zone_Access;
Value : Zone_Record);
-----------
-- Image --
-----------
function Image (Item : Absolute_Time) return Wide_Wide_String is
Digit : constant
array (Absolute_Time range 0 .. 9) of Wide_Wide_Character
:= "0123456789";
Image : Wide_Wide_String := "000_000_000_000_0000000";
First : Natural := Image'Last + 1;
Aux : Absolute_Time := Item;
begin
while Aux /= 0 loop
First := First - 1;
if Image (First) = '_' then
First := First - 1;
end if;
Image (First) := Digit (Aux mod 10);
Aux := Aux / 10;
end loop;
return Image;
end Image;
-----------
-- Image --
-----------
function Image (Item : Relative_Time) return Wide_Wide_String is
Digit : constant
array (Relative_Time range 0 .. 9) of Wide_Wide_Character
:= "0123456789";
Image : Wide_Wide_String := "000_000_000_000_0000000";
First : Natural := Image'Last + 1;
Aux : Relative_Time := Item;
begin
while Aux /= 0 loop
First := First - 1;
if Image (First) = '_' then
First := First - 1;
end if;
Image (First) := Digit (Aux mod 10);
Aux := Aux / 10;
end loop;
return Image;
end Image;
------------------
-- Load_TZ_File --
------------------
procedure Load_TZ_File (File_Name : League.Strings.Universal_String) is
File : Ada.Wide_Wide_Text_IO.File_Type;
Buffer : Wide_Wide_String (1 .. 1024);
First : Positive;
Last : Natural;
Field_First : Positive;
Field_Last : Natural;
procedure Parse_Field;
-- Parses field. Sets Field_First and Field_Last to the first and last
-- characters of the field, excluding heading and traling spaces. Update
-- First to track current position.
procedure Parse_GMTOFF (Value : out Relative_Time);
-- Parses GMTOFF field of Zone record.
procedure Parse_Month (Value : out Month_Number);
-- Parses month name.
procedure Parse_Time
(Hour : out Hour_Number;
Minute : out Minute_Number;
Second : out Second_Number;
Kind : out Time_Kinds);
-- Parses time component with modifiers ('s').
procedure Parse_Zone_Common (Value : in out TZ_Zone_Record);
-- Parses common fields of Zone record.
-----------------
-- Parse_Field --
-----------------
procedure Parse_Field is
begin
-- Skip leading whitespaces.
for J in First .. Last loop
First := J;
exit when Buffer (J) /= ' '
and Buffer (J) /= Ada.Characters.Wide_Wide_Latin_1.HT;
end loop;
Field_First := First;
if Buffer (Field_First) = '"' then
-- Use of quatation mark is not supported.
raise Program_Error;
end if;
for J in First .. Last loop
if Buffer (J) = ' '
or Buffer (J) = Ada.Characters.Wide_Wide_Latin_1.HT
then
Field_Last := J - 1;
First := J + 1;
exit;
elsif J = Last then
Field_Last := Last;
First := Last + 1;
end if;
end loop;
Ada.Wide_Wide_Text_IO.Put_Line
(''' & Buffer (Field_First .. Field_Last) & ''');
end Parse_Field;
------------------
-- Parse_GMTOFF --
------------------
procedure Parse_GMTOFF (Value : out Relative_Time) is
Hour : Hour_Number := 0;
Minute : Minute_Number := 0;
Second : Second_Number := 0;
First : Positive := Field_First;
Last : Natural := Field_Last;
Minus : Boolean := False;
begin
-- Look for minus sign.
if Buffer (First) = '-' then
Minus := True;
First := First + 1;
end if;
-- Lookup for hour separator.
for J in First .. Field_Last loop
if Buffer (J) = ':' then
Last := J - 1;
exit;
end if;
end loop;
if First <= Last then
Hour := Hour_Number'Wide_Wide_Value (Buffer (First .. Last));
First := Last + 2;
Last := Field_Last;
end if;
-- Lookup for minute separator.
for J in First .. Field_Last loop
if Buffer (J) = ':' then
Last := J - 1;
exit;
end if;
end loop;
if First <= Last then
Minute := Minute_Number'Wide_Wide_Value (Buffer (First .. Last));
First := Last + 2;
Last := Field_Last;
end if;
-- Process second if any.
if First <= Last then
Second := Second_Number'Wide_Wide_Value (Buffer (First .. Last));
end if;
Value := To_Relative_Time (Hour, Minute, Second);
if Minus then
Value := -Value;
end if;
end Parse_GMTOFF;
-----------------
-- Parse_Month --
-----------------
procedure Parse_Month (Value : out Month_Number) is
Image : constant Wide_Wide_String
:= Buffer (Field_First .. Field_Last);
begin
if Image = "Jan" then
Value := 1;
elsif Image = "Feb" then
Value := 2;
elsif Image = "Mar" then
Value := 3;
elsif Image = "Apr" then
Value := 4;
elsif Image = "May" then
Value := 5;
elsif Image = "Jun" then
Value := 6;
elsif Image = "Jul" then
Value := 7;
elsif Image = "Aug" then
Value := 8;
elsif Image = "Sep" then
Value := 9;
elsif Image = "Oct" then
Value := 10;
elsif Image = "Nov" then
Value := 11;
elsif Image = "Dec" then
Value := 12;
else
raise Constraint_Error;
end if;
end Parse_Month;
----------------
-- Parse_Time --
----------------
procedure Parse_Time
(Hour : out Hour_Number;
Minute : out Minute_Number;
Second : out Second_Number;
Kind : out Time_Kinds)
is
First : Positive := Field_First;
Last : Natural := Field_Last;
begin
-- Set default values.
Hour := 0;
Minute := 0;
Second := 0;
Kind := Wall;
-- Lookup for hour separator.
for J in First .. Last loop
if Buffer (J) not in '0' .. '9' then
Last := J - 1;
exit;
end if;
end loop;
if First <= Last then
Hour := Hour_Number'Wide_Wide_Value (Buffer (First .. Last));
if Last = Field_Last then
First := Field_Last + 1;
elsif Buffer (Last + 1) = ':' then
First := Last + 2;
else
First := Last + 1;
end if;
end if;
-- Lookup for minute separator.
Last := Field_Last;
for J in First .. Field_Last loop
if Buffer (J) not in '0' .. '9' then
Last := J - 1;
exit;
end if;
end loop;
if First <= Last then
Minute := Minute_Number'Wide_Wide_Value (Buffer (First .. Last));
if Last = Field_Last then
First := Field_Last + 1;
elsif Buffer (Last + 1) = ':' then
First := Last + 2;
else
First := Last + 1;
end if;
end if;
-- Lookup for second separator.
Last := Field_Last;
for J in First .. Field_Last loop
if Buffer (J) not in '0' .. '9' then
Last := J - 1;
exit;
end if;
end loop;
if First <= Last then
Second := Second_Number'Wide_Wide_Value (Buffer (First .. Last));
if Last = Field_Last then
First := Field_Last + 1;
elsif Buffer (Last + 1) = ':' then
First := Last + 2;
else
First := Last + 1;
end if;
end if;
Last := Field_Last;
-- Parse modifier if any.
if First <= Last then
if Buffer (First .. Last) = "s" then
Kind := Standard;
elsif Buffer (First .. Last) = "u" then
Kind := UTC;
else
raise Constraint_Error;
end if;
end if;
end Parse_Time;
------------------------
-- Parse_Zone_Commmon --
------------------------
procedure Parse_Zone_Common (Value : in out TZ_Zone_Record) is
begin
-- Parse GMTOFF field.
Parse_Field;
Parse_GMTOFF (Value.GMT_Offset);
-- Process RULES field.
Parse_Field;
if Buffer (Field_First .. Field_Last) /= "-" then
Value.Rules :=
League.Strings.To_Universal_String
(Buffer (Field_First .. Field_Last));
end if;
-- Skip FORMAT field.
Parse_Field;
-- Process components of [UNTIL] field.
-- Year component.
Parse_Field;
if Field_First <= Field_Last then
Value.Year :=
Year_Number'Wide_Wide_Value
(Buffer (Field_First .. Field_Last));
else
Ada.Wide_Wide_Text_IO.Put_Line (">>> END OF TIME <<<");
Value.Year := Year_Number'Last;
end if;
-- Month component.
Parse_Field;
if Field_First <= Field_Last then
Parse_Month (Value.Month);
end if;
-- Day component.
Parse_Field;
if Field_First <= Field_Last then
-- Special values.
if Buffer (Field_First .. Field_Last) = "lastSun" then
Value.Day_Kind := Last_Sunday;
elsif Buffer (Field_First .. Field_Last) = "lastSat" then
Value.Day_Kind := Last_Saturday;
-- Simple numeric value.
else
Value.Day :=
Day_Number'Wide_Wide_Value
(Buffer (Field_First .. Field_Last));
end if;
end if;
-- Time component.
Parse_Field;
if Field_First <= Field_Last then
Parse_Time
(Value.Hour, Value.Minute, Value.Second, Value.Time_Kind);
end if;
end Parse_Zone_Common;
begin
Ada.Wide_Wide_Text_IO.Open
(File,
Ada.Wide_Wide_Text_IO.In_File,
File_Name.To_UTF_8_String,
"wcem=8");
while not Ada.Wide_Wide_Text_IO.End_Of_File (File) loop
Ada.Wide_Wide_Text_IO.Get_Line (File, Buffer, Last);
-- Remove comments
for J in Buffer'First .. Last loop
if Buffer (J) = '#' then
Last := J - 1;
-- Remove trailing spaces and horizontal tabulations.
for J in reverse Buffer'First .. Last loop
exit when Buffer (J) /= ' '
and Buffer (J) /= Ada.Characters.Wide_Wide_Latin_1.HT;
Last := J - 1;
end loop;
exit;
end if;
end loop;
-- Process non-empty line.
if Last >= Buffer'First then
First := Buffer'First;
if Buffer (1 .. 4) = "Rule" then
-- Rule line.
null;
elsif Buffer (1 .. 4) = "Link" then
Ada.Wide_Wide_Text_IO.Put_Line (Buffer (First .. Last));
elsif Buffer (1 .. 4) = "Zone" then
Ada.Wide_Wide_Text_IO.Put_Line (Buffer (First .. Last));
-- Zone primary line.
declare
D : TZ_Zone_Record;
begin
-- Skip record kind.
Parse_Field;
-- Parse name of timezone.
Parse_Field;
TZ.Name :=
League.Strings.To_Universal_String
(Buffer (Field_First .. Field_Last));
-- Parse common fields.
Parse_Zone_Common (D);
TZ.Records.Append (D);
end;
else
Ada.Wide_Wide_Text_IO.Put_Line (Buffer (First .. Last));
-- Zone continuation line.
declare
D : TZ_Zone_Record;
begin
-- Parse common fields.
Parse_Zone_Common (D);
TZ.Records.Append (D);
end;
end if;
end if;
end loop;
Ada.Wide_Wide_Text_IO.Close (File);
end Load_TZ_File;
-------------
-- Prepend --
-------------
procedure Prepend
(Item : in out Time_Zone_Access;
Value : Zone_Record)
is
procedure Free is
new Ada.Unchecked_Deallocation (Internal_Time_Zone, Time_Zone_Access);
Aux : Time_Zone_Access := Item;
begin
if Aux = null then
Item := new Internal_Time_Zone (1);
else
Item := new Internal_Time_Zone (Aux.Length + 1);
Item.Data (Aux.Data'First + 1 .. Aux.Data'Last + 1) := Aux.Data;
end if;
Item.Data (Item.Data'First) := Value;
Free (Aux);
end Prepend;
----------------------
-- To_Absolute_Time --
----------------------
function To_Absolute_Time
(Year : Year_Number;
Month : Month_Number;
Day : Day_Number;
Hour : Hour_Number;
Minute : Minute_Number;
Second : Second_Number) return Absolute_Time is
begin
return
Absolute_Time (Julian_Day (Year, Month, Day) - X_Open_Epoch)
* Ticks_In_Day
+ Absolute_Time (Hour) * Ticks_In_Hour
+ Absolute_Time (Minute) * Ticks_In_Minute
+ Absolute_Time (Second) * Ticks_In_Second;
end To_Absolute_Time;
----------------------
-- To_Relative_Time --
----------------------
function To_Relative_Time
(Hour : Hour_Number;
Minute : Minute_Number;
Second : Second_Number) return Relative_Time is
begin
return
Relative_Time (Hour) * Ticks_In_Hour
+ Relative_Time (Minute) * Ticks_In_Minute
+ Relative_Time (Second) * Ticks_In_Second;
end To_Relative_Time;
procedure Test
(Z : not null Time_Zone_Access;
Y : Year_Number;
M : Month_Number;
D : Day_Number;
H : Hour_Number;
N : Minute_Number;
S : Second_Number)
is
Year : Year_Number;
Month : Month_Number;
Day : Day_Number;
Hour : Hour_Number;
Minute : Minute_Number;
Second : Second_Number;
Fraction : Nano_Second_100_Number;
JDay : Julian_Day_Number;
Stamp : Absolute_Time;
begin
Stamp := Create (UTC_Time_Zone'Access, Julian_Day (Y, M, D), H, N, S, 0);
Split (UTC_Time_Zone'Access, Stamp, JDay, Hour, Minute, Second, Fraction);
Split (JDay, Year, Month, Day);
Ada.Wide_Wide_Text_IO.Put
(Ada.Strings.Wide_Wide_Fixed.Trim
(Year_Number'Wide_Wide_Image (Year), Ada.Strings.Both)
& "-"
& Ada.Strings.Wide_Wide_Fixed.Trim
(Month_Number'Wide_Wide_Image (Month), Ada.Strings.Both)
& "-"
& Ada.Strings.Wide_Wide_Fixed.Trim
(Day_Number'Wide_Wide_Image (Day), Ada.Strings.Both)
& " "
& Ada.Strings.Wide_Wide_Fixed.Trim
(Hour_Number'Wide_Wide_Image (Hour), Ada.Strings.Both)
& ":"
& Ada.Strings.Wide_Wide_Fixed.Trim
(Minute_Number'Wide_Wide_Image (Minute), Ada.Strings.Both)
& ":"
& Ada.Strings.Wide_Wide_Fixed.Trim
(Second_Number'Wide_Wide_Image (Second), Ada.Strings.Both)
& " => ");
Split (Z.all'Unchecked_Access, Stamp, JDay, Hour, Minute, Second, Fraction);
Split (JDay, Year, Month, Day);
Ada.Wide_Wide_Text_IO.Put_Line
(Ada.Strings.Wide_Wide_Fixed.Trim
(Year_Number'Wide_Wide_Image (Year), Ada.Strings.Both)
& "-"
& Ada.Strings.Wide_Wide_Fixed.Trim
(Month_Number'Wide_Wide_Image (Month), Ada.Strings.Both)
& "-"
& Ada.Strings.Wide_Wide_Fixed.Trim
(Day_Number'Wide_Wide_Image (Day), Ada.Strings.Both)
& " "
& Ada.Strings.Wide_Wide_Fixed.Trim
(Hour_Number'Wide_Wide_Image (Hour), Ada.Strings.Both)
& ":"
& Ada.Strings.Wide_Wide_Fixed.Trim
(Minute_Number'Wide_Wide_Image (Minute), Ada.Strings.Both)
& ":"
& Ada.Strings.Wide_Wide_Fixed.Trim
(Second_Number'Wide_Wide_Image (Second), Ada.Strings.Both));
end Test;
From : Absolute_Time := 0;
Z : Time_Zone_Access;
begin
Load_TZ_File (League.Application.Arguments.Element (1));
-- Generate zone information.
for R of TZ.Records loop
Prepend (Z, (From, R.GMT_Offset));
Ada.Wide_Wide_Text_IO.Put_Line
(Image (From)
& ", "
& Image (R.GMT_Offset));
if R.Year /= Year_Number'Last then
From :=
To_Absolute_Time
(R.Year, R.Month, R.Day, R.Hour, R.Minute, R.Second);
case R.Time_Kind is
when Wall =>
From := From - Absolute_Time (R.GMT_Offset);
-- XXX Note: this time must be corrected according to modifier.
when Standard =>
From := From - Absolute_Time (R.GMT_Offset);
when UTC =>
null;
end case;
else
From := Absolute_Time'Last;
end if;
end loop;
-- Some tests.
Test (Z, 1879, 12, 31, 21, 29, 39);
Test (Z, 1879, 12, 31, 21, 29, 40);
Test (Z, 1916, 7, 2, 21, 29, 59);
Test (Z, 1916, 7, 2, 21, 30, 00);
Test (Z, 1917, 7, 1, 20, 29, 11);
Test (Z, 1917, 7, 1, 20, 29, 12);
Test (Z, 2011, 3, 26, 22, 59, 59);
Test (Z, 2011, 3, 26, 23, 0, 0);
end Gen_TZ;
|
-----------------------------------------------------------------------
-- AWA.Jobs.Models -- AWA.Jobs.Models
-----------------------------------------------------------------------
-- File generated by ada-gen DO NOT MODIFY
-- Template used: templates/model/package-spec.xhtml
-- Ada Generator: https://ada-gen.googlecode.com/svn/trunk Revision 1095
-----------------------------------------------------------------------
-- Copyright (C) 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.Calendar;
with Ada.Containers.Vectors;
with Ada.Strings.Unbounded;
with Util.Beans.Objects;
with Util.Beans.Objects.Enums;
with Util.Beans.Basic.Lists;
with AWA.Events.Models;
with AWA.Users.Models;
pragma Warnings (On);
package AWA.Jobs.Models is
pragma Style_Checks ("-mr");
type Job_Status_Type is (SCHEDULED, RUNNING, CANCELED, FAILED, TERMINATED);
for Job_Status_Type use (SCHEDULED => 0, RUNNING => 1, CANCELED => 2, FAILED => 3, TERMINATED => 4);
package Job_Status_Type_Objects is
new Util.Beans.Objects.Enums (Job_Status_Type);
type Nullable_Job_Status_Type is record
Is_Null : Boolean := True;
Value : Job_Status_Type;
end record;
type Job_Ref is new ADO.Objects.Object_Ref with null record;
-- --------------------
-- The job is associated with a dispatching queue.
-- --------------------
-- Create an object key for Job.
function Job_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key;
-- Create an object key for Job from a string.
-- Raises Constraint_Error if the string cannot be converted into the object key.
function Job_Key (Id : in String) return ADO.Objects.Object_Key;
Null_Job : constant Job_Ref;
function "=" (Left, Right : Job_Ref'Class) return Boolean;
-- Set the job identifier
procedure Set_Id (Object : in out Job_Ref;
Value : in ADO.Identifier);
-- Get the job identifier
function Get_Id (Object : in Job_Ref)
return ADO.Identifier;
-- Set the job status
procedure Set_Status (Object : in out Job_Ref;
Value : in AWA.Jobs.Models.Job_Status_Type);
-- Get the job status
function Get_Status (Object : in Job_Ref)
return AWA.Jobs.Models.Job_Status_Type;
-- Set the job name
procedure Set_Name (Object : in out Job_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Name (Object : in out Job_Ref;
Value : in String);
-- Get the job name
function Get_Name (Object : in Job_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Name (Object : in Job_Ref)
return String;
-- Set the job start date
procedure Set_Start_Date (Object : in out Job_Ref;
Value : in ADO.Nullable_Time);
-- Get the job start date
function Get_Start_Date (Object : in Job_Ref)
return ADO.Nullable_Time;
-- Set the job creation date
procedure Set_Create_Date (Object : in out Job_Ref;
Value : in Ada.Calendar.Time);
-- Get the job creation date
function Get_Create_Date (Object : in Job_Ref)
return Ada.Calendar.Time;
-- Set the job finish date
procedure Set_Finish_Date (Object : in out Job_Ref;
Value : in ADO.Nullable_Time);
-- Get the job finish date
function Get_Finish_Date (Object : in Job_Ref)
return ADO.Nullable_Time;
-- Set the job progress indicator
procedure Set_Progress (Object : in out Job_Ref;
Value : in Integer);
-- Get the job progress indicator
function Get_Progress (Object : in Job_Ref)
return Integer;
-- Set the job parameters
procedure Set_Parameters (Object : in out Job_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Parameters (Object : in out Job_Ref;
Value : in String);
-- Get the job parameters
function Get_Parameters (Object : in Job_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Parameters (Object : in Job_Ref)
return String;
-- Set the job result
procedure Set_Results (Object : in out Job_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Results (Object : in out Job_Ref;
Value : in String);
-- Get the job result
function Get_Results (Object : in Job_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Results (Object : in Job_Ref)
return String;
--
function Get_Version (Object : in Job_Ref)
return Integer;
-- Set the job priority
procedure Set_Priority (Object : in out Job_Ref;
Value : in Integer);
-- Get the job priority
function Get_Priority (Object : in Job_Ref)
return Integer;
--
procedure Set_User (Object : in out Job_Ref;
Value : in AWA.Users.Models.User_Ref'Class);
--
function Get_User (Object : in Job_Ref)
return AWA.Users.Models.User_Ref'Class;
--
procedure Set_Event (Object : in out Job_Ref;
Value : in AWA.Events.Models.Message_Ref'Class);
--
function Get_Event (Object : in Job_Ref)
return AWA.Events.Models.Message_Ref'Class;
--
procedure Set_Session (Object : in out Job_Ref;
Value : in AWA.Users.Models.Session_Ref'Class);
--
function Get_Session (Object : in Job_Ref)
return AWA.Users.Models.Session_Ref'Class;
-- Load the entity identified by 'Id'.
-- Raises the NOT_FOUND exception if it does not exist.
procedure Load (Object : in out Job_Ref;
Session : in out ADO.Sessions.Session'Class;
Id : in ADO.Identifier);
-- Load the entity identified by 'Id'.
-- Returns True in <b>Found</b> if the object was found and False if it does not exist.
procedure Load (Object : in out Job_Ref;
Session : in out ADO.Sessions.Session'Class;
Id : in ADO.Identifier;
Found : out Boolean);
-- Find and load the entity.
overriding
procedure Find (Object : in out Job_Ref;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class;
Found : out Boolean);
-- Save the entity. If the entity does not have an identifier, an identifier is allocated
-- and it is inserted in the table. Otherwise, only data fields which have been changed
-- are updated.
overriding
procedure Save (Object : in out Job_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
-- Delete the entity.
overriding
procedure Delete (Object : in out Job_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
function Get_Value (From : in Job_Ref;
Name : in String) return Util.Beans.Objects.Object;
-- Table definition
JOB_TABLE : constant ADO.Schemas.Class_Mapping_Access;
-- Internal method to allocate the Object_Record instance
overriding
procedure Allocate (Object : in out Job_Ref);
-- Copy of the object.
procedure Copy (Object : in Job_Ref;
Into : in out Job_Ref);
private
JOB_NAME : aliased constant String := "awa_job";
COL_0_1_NAME : aliased constant String := "id";
COL_1_1_NAME : aliased constant String := "status";
COL_2_1_NAME : aliased constant String := "name";
COL_3_1_NAME : aliased constant String := "start_date";
COL_4_1_NAME : aliased constant String := "create_date";
COL_5_1_NAME : aliased constant String := "finish_date";
COL_6_1_NAME : aliased constant String := "progress";
COL_7_1_NAME : aliased constant String := "parameters";
COL_8_1_NAME : aliased constant String := "results";
COL_9_1_NAME : aliased constant String := "version";
COL_10_1_NAME : aliased constant String := "priority";
COL_11_1_NAME : aliased constant String := "user_id";
COL_12_1_NAME : aliased constant String := "event_id";
COL_13_1_NAME : aliased constant String := "session_id";
JOB_DEF : aliased constant ADO.Schemas.Class_Mapping :=
(Count => 14,
Table => JOB_NAME'Access,
Members => (
1 => COL_0_1_NAME'Access,
2 => COL_1_1_NAME'Access,
3 => COL_2_1_NAME'Access,
4 => COL_3_1_NAME'Access,
5 => COL_4_1_NAME'Access,
6 => COL_5_1_NAME'Access,
7 => COL_6_1_NAME'Access,
8 => COL_7_1_NAME'Access,
9 => COL_8_1_NAME'Access,
10 => COL_9_1_NAME'Access,
11 => COL_10_1_NAME'Access,
12 => COL_11_1_NAME'Access,
13 => COL_12_1_NAME'Access,
14 => COL_13_1_NAME'Access)
);
JOB_TABLE : constant ADO.Schemas.Class_Mapping_Access
:= JOB_DEF'Access;
Null_Job : constant Job_Ref
:= Job_Ref'(ADO.Objects.Object_Ref with null record);
type Job_Impl is
new ADO.Objects.Object_Record (Key_Type => ADO.Objects.KEY_INTEGER,
Of_Class => JOB_DEF'Access)
with record
Status : AWA.Jobs.Models.Job_Status_Type;
Name : Ada.Strings.Unbounded.Unbounded_String;
Start_Date : ADO.Nullable_Time;
Create_Date : Ada.Calendar.Time;
Finish_Date : ADO.Nullable_Time;
Progress : Integer;
Parameters : Ada.Strings.Unbounded.Unbounded_String;
Results : Ada.Strings.Unbounded.Unbounded_String;
Version : Integer;
Priority : Integer;
User : AWA.Users.Models.User_Ref;
Event : AWA.Events.Models.Message_Ref;
Session : AWA.Users.Models.Session_Ref;
end record;
type Job_Access is access all Job_Impl;
overriding
procedure Destroy (Object : access Job_Impl);
overriding
procedure Find (Object : in out Job_Impl;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class;
Found : out Boolean);
overriding
procedure Load (Object : in out Job_Impl;
Session : in out ADO.Sessions.Session'Class);
procedure Load (Object : in out Job_Impl;
Stmt : in out ADO.Statements.Query_Statement'Class;
Session : in out ADO.Sessions.Session'Class);
overriding
procedure Save (Object : in out Job_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Create (Object : in out Job_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
procedure Delete (Object : in out Job_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Set_Field (Object : in out Job_Ref'Class;
Impl : out Job_Access);
end AWA.Jobs.Models;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . C H A R A C T E R S --
-- --
-- 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. --
-- --
------------------------------------------------------------------------------
package Ada.Characters is
pragma Pure;
end Ada.Characters;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . L O N G _ L O N G _ I N T E G E R _ T E X T _ 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.Text_IO;
package Ada.Long_Long_Integer_Text_IO is
new Ada.Text_IO.Integer_IO (Long_Long_Integer);
|
------------------------------------------------------------------------------
-- Copyright (c) 2006-2013, Maxim Reznik
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the following conditions are met:
--
-- * Redistributions of source code must retain the above copyright notice,
-- this list of conditions and the following disclaimer.
-- * Redistributions in binary form must reproduce the above copyright
-- notice, this list of conditions and the following disclaimer in the
-- documentation and/or other materials provided with the distribution.
-- * Neither the name of the Maxim Reznik, IE nor the names of its
-- contributors may be used to endorse or promote products derived from
-- this software without specific prior written permission.
--
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-- POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
package body Asis.Gela.Elements.Expr is
function New_Box_Expression_Node
(The_Context : ASIS.Context)
return Box_Expression_Ptr
is
Result : Box_Expression_Ptr :=
new Box_Expression_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_Box_Expression_Node;
function Expression_Kind (Element : Box_Expression_Node)
return Asis.Expression_Kinds is
begin
return A_Box_Expression;
end;
function Clone
(Element : Box_Expression_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant Box_Expression_Ptr := new Box_Expression_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
return Asis.Element (Result);
end Clone;
function Value_Image
(Element : Base_Literal_Node) return Wide_String is
begin
return W.To_Wide_String (Element.Value_Image);
end Value_Image;
procedure Set_Value_Image
(Element : in out Base_Literal_Node;
Value : in Wide_String) is
begin
Element.Value_Image := W.To_Unbounded_Wide_String (Value);
end Set_Value_Image;
function New_Integer_Literal_Node
(The_Context : ASIS.Context)
return Integer_Literal_Ptr
is
Result : Integer_Literal_Ptr :=
new Integer_Literal_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_Integer_Literal_Node;
function Expression_Kind (Element : Integer_Literal_Node)
return Asis.Expression_Kinds is
begin
return An_Integer_Literal;
end;
function Clone
(Element : Integer_Literal_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant Integer_Literal_Ptr := new Integer_Literal_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
Result.Value_Image := Element.Value_Image;
return Asis.Element (Result);
end Clone;
function New_Real_Literal_Node
(The_Context : ASIS.Context)
return Real_Literal_Ptr
is
Result : Real_Literal_Ptr :=
new Real_Literal_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_Real_Literal_Node;
function Expression_Kind (Element : Real_Literal_Node)
return Asis.Expression_Kinds is
begin
return A_Real_Literal;
end;
function Clone
(Element : Real_Literal_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant Real_Literal_Ptr := new Real_Literal_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
Result.Value_Image := Element.Value_Image;
return Asis.Element (Result);
end Clone;
function New_String_Literal_Node
(The_Context : ASIS.Context)
return String_Literal_Ptr
is
Result : String_Literal_Ptr :=
new String_Literal_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_String_Literal_Node;
function Expression_Kind (Element : String_Literal_Node)
return Asis.Expression_Kinds is
begin
return A_String_Literal;
end;
function Clone
(Element : String_Literal_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant String_Literal_Ptr := new String_Literal_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
Result.Value_Image := Element.Value_Image;
return Asis.Element (Result);
end Clone;
function Name_Image
(Element : Base_Identifier_Node) return Wide_String is
begin
return W.To_Wide_String (Element.Name_Image);
end Name_Image;
procedure Set_Name_Image
(Element : in out Base_Identifier_Node;
Value : in Wide_String) is
begin
Element.Name_Image := W.To_Unbounded_Wide_String (Value);
end Set_Name_Image;
function Corresponding_Name_Declaration
(Element : Base_Identifier_Node) return Asis.Declaration is
begin
return Element.Corresponding_Name_Declaration;
end Corresponding_Name_Declaration;
procedure Set_Corresponding_Name_Declaration
(Element : in out Base_Identifier_Node;
Value : in Asis.Declaration) is
begin
Element.Corresponding_Name_Declaration := Value;
end Set_Corresponding_Name_Declaration;
function Corresponding_Name_Definition_List
(Element : Base_Identifier_Node;
Include_Pragmas : in Boolean := False) return Asis.Element_List is
begin
return Secondary_Definition_Lists.To_Element_List
(Element.Corresponding_Name_Definition_List, Include_Pragmas);
end Corresponding_Name_Definition_List;
procedure Add_To_Corresponding_Name_Definition_List
(Element : in out Base_Identifier_Node;
Item : in Asis.Element) is
begin
Secondary_Definition_Lists.Add (Element.Corresponding_Name_Definition_List, Item);
end Add_To_Corresponding_Name_Definition_List;
function Corresponding_Generic_Element
(Element : Base_Identifier_Node) return Asis.Defining_Name is
begin
return Element.Corresponding_Generic_Element;
end Corresponding_Generic_Element;
procedure Set_Corresponding_Generic_Element
(Element : in out Base_Identifier_Node;
Value : in Asis.Defining_Name) is
begin
Element.Corresponding_Generic_Element := Value;
end Set_Corresponding_Generic_Element;
function New_Identifier_Node
(The_Context : ASIS.Context)
return Identifier_Ptr
is
Result : Identifier_Ptr :=
new Identifier_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_Identifier_Node;
function Expression_Kind (Element : Identifier_Node)
return Asis.Expression_Kinds is
begin
return An_Identifier;
end;
function Clone
(Element : Identifier_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant Identifier_Ptr := new Identifier_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
Result.Name_Image := Element.Name_Image;
Result.Corresponding_Name_Declaration := Element.Corresponding_Name_Declaration;
null;
Result.Corresponding_Generic_Element := Element.Corresponding_Generic_Element;
return Asis.Element (Result);
end Clone;
function Operator_Kind
(Element : Operator_Symbol_Node) return Asis.Operator_Kinds is
begin
return Element.Operator_Kind;
end Operator_Kind;
procedure Set_Operator_Kind
(Element : in out Operator_Symbol_Node;
Value : in Asis.Operator_Kinds) is
begin
Element.Operator_Kind := Value;
end Set_Operator_Kind;
function New_Operator_Symbol_Node
(The_Context : ASIS.Context)
return Operator_Symbol_Ptr
is
Result : Operator_Symbol_Ptr :=
new Operator_Symbol_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_Operator_Symbol_Node;
function Expression_Kind (Element : Operator_Symbol_Node)
return Asis.Expression_Kinds is
begin
return An_Operator_Symbol;
end;
function Clone
(Element : Operator_Symbol_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant Operator_Symbol_Ptr := new Operator_Symbol_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
Result.Name_Image := Element.Name_Image;
Result.Corresponding_Name_Declaration := Element.Corresponding_Name_Declaration;
null;
Result.Corresponding_Generic_Element := Element.Corresponding_Generic_Element;
Result.Operator_Kind := Element.Operator_Kind;
return Asis.Element (Result);
end Clone;
function New_Character_Literal_Node
(The_Context : ASIS.Context)
return Character_Literal_Ptr
is
Result : Character_Literal_Ptr :=
new Character_Literal_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_Character_Literal_Node;
function Expression_Kind (Element : Character_Literal_Node)
return Asis.Expression_Kinds is
begin
return A_Character_Literal;
end;
function Clone
(Element : Character_Literal_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant Character_Literal_Ptr := new Character_Literal_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
Result.Name_Image := Element.Name_Image;
Result.Corresponding_Name_Declaration := Element.Corresponding_Name_Declaration;
null;
Result.Corresponding_Generic_Element := Element.Corresponding_Generic_Element;
return Asis.Element (Result);
end Clone;
function New_Enumeration_Literal_Node
(The_Context : ASIS.Context)
return Enumeration_Literal_Ptr
is
Result : Enumeration_Literal_Ptr :=
new Enumeration_Literal_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_Enumeration_Literal_Node;
function Expression_Kind (Element : Enumeration_Literal_Node)
return Asis.Expression_Kinds is
begin
return An_Enumeration_Literal;
end;
function Clone
(Element : Enumeration_Literal_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant Enumeration_Literal_Ptr := new Enumeration_Literal_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
Result.Name_Image := Element.Name_Image;
Result.Corresponding_Name_Declaration := Element.Corresponding_Name_Declaration;
null;
Result.Corresponding_Generic_Element := Element.Corresponding_Generic_Element;
return Asis.Element (Result);
end Clone;
function Prefix
(Element : Explicit_Dereference_Node) return Asis.Expression is
begin
return Element.Prefix;
end Prefix;
procedure Set_Prefix
(Element : in out Explicit_Dereference_Node;
Value : in Asis.Expression) is
begin
Element.Prefix := Value;
end Set_Prefix;
function New_Explicit_Dereference_Node
(The_Context : ASIS.Context)
return Explicit_Dereference_Ptr
is
Result : Explicit_Dereference_Ptr :=
new Explicit_Dereference_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_Explicit_Dereference_Node;
function Expression_Kind (Element : Explicit_Dereference_Node)
return Asis.Expression_Kinds is
begin
return An_Explicit_Dereference;
end;
function Children (Element : access Explicit_Dereference_Node)
return Traverse_List is
begin
return (1 => (False, Element.Prefix'Access));
end Children;
function Clone
(Element : Explicit_Dereference_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant Explicit_Dereference_Ptr := new Explicit_Dereference_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
return Asis.Element (Result);
end Clone;
procedure Copy
(Source : in Asis.Element;
Target : access Explicit_Dereference_Node;
Cloner : in Cloner_Class;
Parent : in Asis.Element)
is
begin
Target.Prefix :=
Copy (Cloner, Prefix (Source.all), Asis.Element (Target));
end Copy;
function Prefix
(Element : Function_Call_Node) return Asis.Expression is
begin
return Element.Prefix;
end Prefix;
procedure Set_Prefix
(Element : in out Function_Call_Node;
Value : in Asis.Expression) is
begin
Element.Prefix := Value;
end Set_Prefix;
function Is_Prefix_Call
(Element : Function_Call_Node) return Boolean is
begin
return Element.Is_Prefix_Call;
end Is_Prefix_Call;
procedure Set_Is_Prefix_Call
(Element : in out Function_Call_Node;
Value : in Boolean) is
begin
Element.Is_Prefix_Call := Value;
end Set_Is_Prefix_Call;
function Is_Dispatching_Call
(Element : Function_Call_Node) return Boolean is
begin
return Element.Is_Dispatching_Call;
end Is_Dispatching_Call;
procedure Set_Is_Dispatching_Call
(Element : in out Function_Call_Node;
Value : in Boolean) is
begin
Element.Is_Dispatching_Call := Value;
end Set_Is_Dispatching_Call;
function Corresponding_Called_Function
(Element : Function_Call_Node) return Asis.Declaration is
begin
return Element.Corresponding_Called_Function;
end Corresponding_Called_Function;
procedure Set_Corresponding_Called_Function
(Element : in out Function_Call_Node;
Value : in Asis.Declaration) is
begin
Element.Corresponding_Called_Function := Value;
end Set_Corresponding_Called_Function;
function Function_Call_Parameters
(Element : Function_Call_Node;
Include_Pragmas : in Boolean := False) return Asis.Element_List is
begin
return Primary_Association_Lists.To_Element_List
(Element.Function_Call_Parameters, Include_Pragmas);
end Function_Call_Parameters;
procedure Set_Function_Call_Parameters
(Element : in out Function_Call_Node;
Value : in Asis.Element) is
begin
Element.Function_Call_Parameters := Primary_Association_Lists.List (Value);
end Set_Function_Call_Parameters;
function Function_Call_Parameters_List
(Element : Function_Call_Node) return Asis.Element is
begin
return Asis.Element (Element.Function_Call_Parameters);
end Function_Call_Parameters_List;
function Normalized_Function_Call_Parameters
(Element : Function_Call_Node;
Include_Pragmas : in Boolean := False) return Asis.Element_List is
begin
return Secondary_Association_Lists.To_Element_List
(Element.Normalized_Function_Call_Parameters, Include_Pragmas);
end Normalized_Function_Call_Parameters;
procedure Add_To_Normalized_Function_Call_Parameters
(Element : in out Function_Call_Node;
Item : in Asis.Element) is
begin
Secondary_Association_Lists.Add (Element.Normalized_Function_Call_Parameters, Item);
end Add_To_Normalized_Function_Call_Parameters;
function Is_Call_On_Dispatching_Operation
(Element : Function_Call_Node) return Boolean is
begin
return Element.Is_Call_On_Dispatching_Operation;
end Is_Call_On_Dispatching_Operation;
procedure Set_Is_Call_On_Dispatching_Operation
(Element : in out Function_Call_Node;
Value : in Boolean) is
begin
Element.Is_Call_On_Dispatching_Operation := Value;
end Set_Is_Call_On_Dispatching_Operation;
function Record_Aggregate
(Element : Function_Call_Node) return Asis.Element is
begin
return Element.Record_Aggregate;
end Record_Aggregate;
procedure Set_Record_Aggregate
(Element : in out Function_Call_Node;
Value : in Asis.Element) is
begin
Element.Record_Aggregate := Value;
end Set_Record_Aggregate;
function New_Function_Call_Node
(The_Context : ASIS.Context)
return Function_Call_Ptr
is
Result : Function_Call_Ptr :=
new Function_Call_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_Function_Call_Node;
function Expression_Kind (Element : Function_Call_Node)
return Asis.Expression_Kinds is
begin
return A_Function_Call;
end;
function Children (Element : access Function_Call_Node)
return Traverse_List is
begin
return ((False, Element.Prefix'Access),
(True, Asis.Element (Element.Function_Call_Parameters)));
end Children;
function Clone
(Element : Function_Call_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant Function_Call_Ptr := new Function_Call_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
Result.Is_Prefix_Call := Element.Is_Prefix_Call;
Result.Is_Dispatching_Call := Element.Is_Dispatching_Call;
Result.Corresponding_Called_Function := Element.Corresponding_Called_Function;
null;
Result.Is_Call_On_Dispatching_Operation := Element.Is_Call_On_Dispatching_Operation;
Result.Record_Aggregate := Element.Record_Aggregate;
return Asis.Element (Result);
end Clone;
procedure Copy
(Source : in Asis.Element;
Target : access Function_Call_Node;
Cloner : in Cloner_Class;
Parent : in Asis.Element)
is
begin
Target.Prefix :=
Copy (Cloner, Prefix (Source.all), Asis.Element (Target));
Set_Function_Call_Parameters
(Target.all,
Primary_Association_Lists.Deep_Copy
(Function_Call_Parameters (Source.all), Cloner, Asis.Element (Target)));
end Copy;
function Prefix
(Element : Indexed_Component_Node) return Asis.Expression is
begin
return Element.Prefix;
end Prefix;
procedure Set_Prefix
(Element : in out Indexed_Component_Node;
Value : in Asis.Expression) is
begin
Element.Prefix := Value;
end Set_Prefix;
function Index_Expressions
(Element : Indexed_Component_Node;
Include_Pragmas : in Boolean := False) return Asis.Element_List is
begin
return Primary_Expression_Lists.To_Element_List
(Element.Index_Expressions, Include_Pragmas);
end Index_Expressions;
procedure Set_Index_Expressions
(Element : in out Indexed_Component_Node;
Value : in Asis.Element) is
begin
Element.Index_Expressions := Primary_Expression_Lists.List (Value);
end Set_Index_Expressions;
function Index_Expressions_List
(Element : Indexed_Component_Node) return Asis.Element is
begin
return Asis.Element (Element.Index_Expressions);
end Index_Expressions_List;
function New_Indexed_Component_Node
(The_Context : ASIS.Context)
return Indexed_Component_Ptr
is
Result : Indexed_Component_Ptr :=
new Indexed_Component_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_Indexed_Component_Node;
function Expression_Kind (Element : Indexed_Component_Node)
return Asis.Expression_Kinds is
begin
return An_Indexed_Component;
end;
function Children (Element : access Indexed_Component_Node)
return Traverse_List is
begin
return ((False, Element.Prefix'Access),
(True, Asis.Element (Element.Index_Expressions)));
end Children;
function Clone
(Element : Indexed_Component_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant Indexed_Component_Ptr := new Indexed_Component_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
return Asis.Element (Result);
end Clone;
procedure Copy
(Source : in Asis.Element;
Target : access Indexed_Component_Node;
Cloner : in Cloner_Class;
Parent : in Asis.Element)
is
begin
Target.Prefix :=
Copy (Cloner, Prefix (Source.all), Asis.Element (Target));
Set_Index_Expressions
(Target.all,
Primary_Expression_Lists.Deep_Copy
(Index_Expressions (Source.all), Cloner, Asis.Element (Target)));
end Copy;
function Prefix
(Element : Slice_Node) return Asis.Expression is
begin
return Element.Prefix;
end Prefix;
procedure Set_Prefix
(Element : in out Slice_Node;
Value : in Asis.Expression) is
begin
Element.Prefix := Value;
end Set_Prefix;
function Slice_Range
(Element : Slice_Node) return Asis.Discrete_Range is
begin
return Element.Slice_Range;
end Slice_Range;
procedure Set_Slice_Range
(Element : in out Slice_Node;
Value : in Asis.Discrete_Range) is
begin
Element.Slice_Range := Value;
end Set_Slice_Range;
function New_Slice_Node
(The_Context : ASIS.Context)
return Slice_Ptr
is
Result : Slice_Ptr :=
new Slice_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_Slice_Node;
function Expression_Kind (Element : Slice_Node)
return Asis.Expression_Kinds is
begin
return A_Slice;
end;
function Children (Element : access Slice_Node)
return Traverse_List is
begin
return ((False, Element.Prefix'Access),
(False, Element.Slice_Range'Access));
end Children;
function Clone
(Element : Slice_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant Slice_Ptr := new Slice_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
return Asis.Element (Result);
end Clone;
procedure Copy
(Source : in Asis.Element;
Target : access Slice_Node;
Cloner : in Cloner_Class;
Parent : in Asis.Element)
is
begin
Target.Prefix :=
Copy (Cloner, Prefix (Source.all), Asis.Element (Target));
Target.Slice_Range :=
Copy (Cloner, Slice_Range (Source.all), Asis.Element (Target));
end Copy;
function Prefix
(Element : Selected_Component_Node) return Asis.Expression is
begin
return Element.Prefix;
end Prefix;
procedure Set_Prefix
(Element : in out Selected_Component_Node;
Value : in Asis.Expression) is
begin
Element.Prefix := Value;
end Set_Prefix;
function Selector
(Element : Selected_Component_Node) return Asis.Expression is
begin
return Element.Selector;
end Selector;
procedure Set_Selector
(Element : in out Selected_Component_Node;
Value : in Asis.Expression) is
begin
Element.Selector := Value;
end Set_Selector;
function New_Selected_Component_Node
(The_Context : ASIS.Context)
return Selected_Component_Ptr
is
Result : Selected_Component_Ptr :=
new Selected_Component_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_Selected_Component_Node;
function Expression_Kind (Element : Selected_Component_Node)
return Asis.Expression_Kinds is
begin
return A_Selected_Component;
end;
function Children (Element : access Selected_Component_Node)
return Traverse_List is
begin
return ((False, Element.Prefix'Access),
(False, Element.Selector'Access));
end Children;
function Clone
(Element : Selected_Component_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant Selected_Component_Ptr := new Selected_Component_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
return Asis.Element (Result);
end Clone;
procedure Copy
(Source : in Asis.Element;
Target : access Selected_Component_Node;
Cloner : in Cloner_Class;
Parent : in Asis.Element)
is
begin
Target.Prefix :=
Copy (Cloner, Prefix (Source.all), Asis.Element (Target));
Target.Selector :=
Copy (Cloner, Selector (Source.all), Asis.Element (Target));
end Copy;
function Prefix
(Element : Attribute_Reference_Node) return Asis.Expression is
begin
return Element.Prefix;
end Prefix;
procedure Set_Prefix
(Element : in out Attribute_Reference_Node;
Value : in Asis.Expression) is
begin
Element.Prefix := Value;
end Set_Prefix;
function Attribute_Kind
(Element : Attribute_Reference_Node) return Asis.Attribute_Kinds is
begin
return Element.Attribute_Kind;
end Attribute_Kind;
procedure Set_Attribute_Kind
(Element : in out Attribute_Reference_Node;
Value : in Asis.Attribute_Kinds) is
begin
Element.Attribute_Kind := Value;
end Set_Attribute_Kind;
function Attribute_Designator_Identifier
(Element : Attribute_Reference_Node) return Asis.Expression is
begin
return Element.Attribute_Designator_Identifier;
end Attribute_Designator_Identifier;
procedure Set_Attribute_Designator_Identifier
(Element : in out Attribute_Reference_Node;
Value : in Asis.Expression) is
begin
Element.Attribute_Designator_Identifier := Value;
end Set_Attribute_Designator_Identifier;
function Attribute_Designator_Expressions
(Element : Attribute_Reference_Node;
Include_Pragmas : in Boolean := False) return Asis.Element_List is
begin
return Primary_Expression_Lists.To_Element_List
(Element.Attribute_Designator_Expressions, Include_Pragmas);
end Attribute_Designator_Expressions;
procedure Set_Attribute_Designator_Expressions
(Element : in out Attribute_Reference_Node;
Value : in Asis.Element) is
begin
Element.Attribute_Designator_Expressions := Primary_Expression_Lists.List (Value);
end Set_Attribute_Designator_Expressions;
function Attribute_Designator_Expressions_List
(Element : Attribute_Reference_Node) return Asis.Element is
begin
return Asis.Element (Element.Attribute_Designator_Expressions);
end Attribute_Designator_Expressions_List;
function New_Attribute_Reference_Node
(The_Context : ASIS.Context)
return Attribute_Reference_Ptr
is
Result : Attribute_Reference_Ptr :=
new Attribute_Reference_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_Attribute_Reference_Node;
function Expression_Kind (Element : Attribute_Reference_Node)
return Asis.Expression_Kinds is
begin
return An_Attribute_Reference;
end;
function Children (Element : access Attribute_Reference_Node)
return Traverse_List is
begin
return ((False, Element.Prefix'Access),
(False, Element.Attribute_Designator_Identifier'Access),
(True, Asis.Element (Element.Attribute_Designator_Expressions)));
end Children;
function Clone
(Element : Attribute_Reference_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant Attribute_Reference_Ptr := new Attribute_Reference_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
Result.Attribute_Kind := Element.Attribute_Kind;
return Asis.Element (Result);
end Clone;
procedure Copy
(Source : in Asis.Element;
Target : access Attribute_Reference_Node;
Cloner : in Cloner_Class;
Parent : in Asis.Element)
is
begin
Target.Prefix :=
Copy (Cloner, Prefix (Source.all), Asis.Element (Target));
Target.Attribute_Designator_Identifier :=
Copy (Cloner, Attribute_Designator_Identifier (Source.all), Asis.Element (Target));
Set_Attribute_Designator_Expressions
(Target.all,
Primary_Expression_Lists.Deep_Copy
(Attribute_Designator_Expressions (Source.all), Cloner, Asis.Element (Target)));
end Copy;
function Record_Component_Associations
(Element : Base_Record_Aggregate_Node;
Include_Pragmas : in Boolean := False) return Asis.Element_List is
begin
return Primary_Association_Lists.To_Element_List
(Element.Record_Component_Associations, Include_Pragmas);
end Record_Component_Associations;
procedure Set_Record_Component_Associations
(Element : in out Base_Record_Aggregate_Node;
Value : in Asis.Element) is
begin
Element.Record_Component_Associations := Primary_Association_Lists.List (Value);
end Set_Record_Component_Associations;
function Record_Component_Associations_List
(Element : Base_Record_Aggregate_Node) return Asis.Element is
begin
return Asis.Element (Element.Record_Component_Associations);
end Record_Component_Associations_List;
function Normalized_Record_Component_Associations
(Element : Base_Record_Aggregate_Node;
Include_Pragmas : in Boolean := False) return Asis.Element_List is
begin
return Secondary_Association_Lists.To_Element_List
(Element.Normalized_Record_Component_Associations, Include_Pragmas);
end Normalized_Record_Component_Associations;
procedure Add_To_Normalized_Record_Component_Associations
(Element : in out Base_Record_Aggregate_Node;
Item : in Asis.Element) is
begin
Secondary_Association_Lists.Add (Element.Normalized_Record_Component_Associations, Item);
end Add_To_Normalized_Record_Component_Associations;
function Children (Element : access Base_Record_Aggregate_Node)
return Traverse_List is
begin
return (1 => (True, Asis.Element (Element.Record_Component_Associations)));
end Children;
function New_Record_Aggregate_Node
(The_Context : ASIS.Context)
return Record_Aggregate_Ptr
is
Result : Record_Aggregate_Ptr :=
new Record_Aggregate_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_Record_Aggregate_Node;
function Expression_Kind (Element : Record_Aggregate_Node)
return Asis.Expression_Kinds is
begin
return A_Record_Aggregate;
end;
function Clone
(Element : Record_Aggregate_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant Record_Aggregate_Ptr := new Record_Aggregate_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
null;
return Asis.Element (Result);
end Clone;
procedure Copy
(Source : in Asis.Element;
Target : access Record_Aggregate_Node;
Cloner : in Cloner_Class;
Parent : in Asis.Element)
is
begin
Set_Record_Component_Associations
(Target.all,
Primary_Association_Lists.Deep_Copy
(Record_Component_Associations (Source.all), Cloner, Asis.Element (Target)));
end Copy;
function Extension_Aggregate_Expression
(Element : Extension_Aggregate_Node) return Asis.Expression is
begin
return Element.Extension_Aggregate_Expression;
end Extension_Aggregate_Expression;
procedure Set_Extension_Aggregate_Expression
(Element : in out Extension_Aggregate_Node;
Value : in Asis.Expression) is
begin
Element.Extension_Aggregate_Expression := Value;
end Set_Extension_Aggregate_Expression;
function New_Extension_Aggregate_Node
(The_Context : ASIS.Context)
return Extension_Aggregate_Ptr
is
Result : Extension_Aggregate_Ptr :=
new Extension_Aggregate_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_Extension_Aggregate_Node;
function Expression_Kind (Element : Extension_Aggregate_Node)
return Asis.Expression_Kinds is
begin
return An_Extension_Aggregate;
end;
function Children (Element : access Extension_Aggregate_Node)
return Traverse_List is
begin
return ((False, Element.Extension_Aggregate_Expression'Access),
(True, Asis.Element (Element.Record_Component_Associations)));
end Children;
function Clone
(Element : Extension_Aggregate_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant Extension_Aggregate_Ptr := new Extension_Aggregate_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
null;
return Asis.Element (Result);
end Clone;
procedure Copy
(Source : in Asis.Element;
Target : access Extension_Aggregate_Node;
Cloner : in Cloner_Class;
Parent : in Asis.Element)
is
begin
Target.Extension_Aggregate_Expression :=
Copy (Cloner, Extension_Aggregate_Expression (Source.all), Asis.Element (Target));
Set_Record_Component_Associations
(Target.all,
Primary_Association_Lists.Deep_Copy
(Record_Component_Associations (Source.all), Cloner, Asis.Element (Target)));
end Copy;
function Array_Component_Associations
(Element : Base_Array_Aggregate_Node;
Include_Pragmas : in Boolean := False) return Asis.Element_List is
begin
return Primary_Association_Lists.To_Element_List
(Element.Array_Component_Associations, Include_Pragmas);
end Array_Component_Associations;
procedure Set_Array_Component_Associations
(Element : in out Base_Array_Aggregate_Node;
Value : in Asis.Element) is
begin
Element.Array_Component_Associations := Primary_Association_Lists.List (Value);
end Set_Array_Component_Associations;
function Array_Component_Associations_List
(Element : Base_Array_Aggregate_Node) return Asis.Element is
begin
return Asis.Element (Element.Array_Component_Associations);
end Array_Component_Associations_List;
function Children (Element : access Base_Array_Aggregate_Node)
return Traverse_List is
begin
return (1 => (True, Asis.Element (Element.Array_Component_Associations)));
end Children;
function New_Positional_Array_Aggregate_Node
(The_Context : ASIS.Context)
return Positional_Array_Aggregate_Ptr
is
Result : Positional_Array_Aggregate_Ptr :=
new Positional_Array_Aggregate_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_Positional_Array_Aggregate_Node;
function Expression_Kind (Element : Positional_Array_Aggregate_Node)
return Asis.Expression_Kinds is
begin
return A_Positional_Array_Aggregate;
end;
function Clone
(Element : Positional_Array_Aggregate_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant Positional_Array_Aggregate_Ptr := new Positional_Array_Aggregate_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
return Asis.Element (Result);
end Clone;
procedure Copy
(Source : in Asis.Element;
Target : access Positional_Array_Aggregate_Node;
Cloner : in Cloner_Class;
Parent : in Asis.Element)
is
begin
Set_Array_Component_Associations
(Target.all,
Primary_Association_Lists.Deep_Copy
(Array_Component_Associations (Source.all), Cloner, Asis.Element (Target)));
end Copy;
function New_Named_Array_Aggregate_Node
(The_Context : ASIS.Context)
return Named_Array_Aggregate_Ptr
is
Result : Named_Array_Aggregate_Ptr :=
new Named_Array_Aggregate_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_Named_Array_Aggregate_Node;
function Expression_Kind (Element : Named_Array_Aggregate_Node)
return Asis.Expression_Kinds is
begin
return A_Named_Array_Aggregate;
end;
function Clone
(Element : Named_Array_Aggregate_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant Named_Array_Aggregate_Ptr := new Named_Array_Aggregate_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
return Asis.Element (Result);
end Clone;
procedure Copy
(Source : in Asis.Element;
Target : access Named_Array_Aggregate_Node;
Cloner : in Cloner_Class;
Parent : in Asis.Element)
is
begin
Set_Array_Component_Associations
(Target.all,
Primary_Association_Lists.Deep_Copy
(Array_Component_Associations (Source.all), Cloner, Asis.Element (Target)));
end Copy;
function Short_Circuit_Operation_Left_Expression
(Element : Base_Short_Circuit_Node) return Asis.Expression is
begin
return Element.Short_Circuit_Operation_Left_Expression;
end Short_Circuit_Operation_Left_Expression;
procedure Set_Short_Circuit_Operation_Left_Expression
(Element : in out Base_Short_Circuit_Node;
Value : in Asis.Expression) is
begin
Element.Short_Circuit_Operation_Left_Expression := Value;
end Set_Short_Circuit_Operation_Left_Expression;
function Short_Circuit_Operation_Right_Expression
(Element : Base_Short_Circuit_Node) return Asis.Expression is
begin
return Element.Short_Circuit_Operation_Right_Expression;
end Short_Circuit_Operation_Right_Expression;
procedure Set_Short_Circuit_Operation_Right_Expression
(Element : in out Base_Short_Circuit_Node;
Value : in Asis.Expression) is
begin
Element.Short_Circuit_Operation_Right_Expression := Value;
end Set_Short_Circuit_Operation_Right_Expression;
function Children (Element : access Base_Short_Circuit_Node)
return Traverse_List is
begin
return ((False, Element.Short_Circuit_Operation_Left_Expression'Access),
(False, Element.Short_Circuit_Operation_Right_Expression'Access));
end Children;
function New_And_Then_Short_Circuit_Node
(The_Context : ASIS.Context)
return And_Then_Short_Circuit_Ptr
is
Result : And_Then_Short_Circuit_Ptr :=
new And_Then_Short_Circuit_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_And_Then_Short_Circuit_Node;
function Expression_Kind (Element : And_Then_Short_Circuit_Node)
return Asis.Expression_Kinds is
begin
return An_And_Then_Short_Circuit;
end;
function Clone
(Element : And_Then_Short_Circuit_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant And_Then_Short_Circuit_Ptr := new And_Then_Short_Circuit_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
return Asis.Element (Result);
end Clone;
procedure Copy
(Source : in Asis.Element;
Target : access And_Then_Short_Circuit_Node;
Cloner : in Cloner_Class;
Parent : in Asis.Element)
is
begin
Target.Short_Circuit_Operation_Left_Expression :=
Copy (Cloner, Short_Circuit_Operation_Left_Expression (Source.all), Asis.Element (Target));
Target.Short_Circuit_Operation_Right_Expression :=
Copy (Cloner, Short_Circuit_Operation_Right_Expression (Source.all), Asis.Element (Target));
end Copy;
function New_Or_Else_Short_Circuit_Node
(The_Context : ASIS.Context)
return Or_Else_Short_Circuit_Ptr
is
Result : Or_Else_Short_Circuit_Ptr :=
new Or_Else_Short_Circuit_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_Or_Else_Short_Circuit_Node;
function Expression_Kind (Element : Or_Else_Short_Circuit_Node)
return Asis.Expression_Kinds is
begin
return An_Or_Else_Short_Circuit;
end;
function Clone
(Element : Or_Else_Short_Circuit_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant Or_Else_Short_Circuit_Ptr := new Or_Else_Short_Circuit_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
return Asis.Element (Result);
end Clone;
procedure Copy
(Source : in Asis.Element;
Target : access Or_Else_Short_Circuit_Node;
Cloner : in Cloner_Class;
Parent : in Asis.Element)
is
begin
Target.Short_Circuit_Operation_Left_Expression :=
Copy (Cloner, Short_Circuit_Operation_Left_Expression (Source.all), Asis.Element (Target));
Target.Short_Circuit_Operation_Right_Expression :=
Copy (Cloner, Short_Circuit_Operation_Right_Expression (Source.all), Asis.Element (Target));
end Copy;
function Membership_Test_Expression
(Element : In_Range_Membership_Test_Node) return Asis.Expression is
begin
return Element.Membership_Test_Expression;
end Membership_Test_Expression;
procedure Set_Membership_Test_Expression
(Element : in out In_Range_Membership_Test_Node;
Value : in Asis.Expression) is
begin
Element.Membership_Test_Expression := Value;
end Set_Membership_Test_Expression;
function Membership_Test_Range
(Element : In_Range_Membership_Test_Node) return Asis.Range_Constraint is
begin
return Element.Membership_Test_Range;
end Membership_Test_Range;
procedure Set_Membership_Test_Range
(Element : in out In_Range_Membership_Test_Node;
Value : in Asis.Range_Constraint) is
begin
Element.Membership_Test_Range := Value;
end Set_Membership_Test_Range;
function New_In_Range_Membership_Test_Node
(The_Context : ASIS.Context)
return In_Range_Membership_Test_Ptr
is
Result : In_Range_Membership_Test_Ptr :=
new In_Range_Membership_Test_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_In_Range_Membership_Test_Node;
function Expression_Kind (Element : In_Range_Membership_Test_Node)
return Asis.Expression_Kinds is
begin
return An_In_Range_Membership_Test;
end;
function Children (Element : access In_Range_Membership_Test_Node)
return Traverse_List is
begin
return ((False, Element.Membership_Test_Expression'Access),
(False, Element.Membership_Test_Range'Access));
end Children;
function Clone
(Element : In_Range_Membership_Test_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant In_Range_Membership_Test_Ptr := new In_Range_Membership_Test_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
return Asis.Element (Result);
end Clone;
procedure Copy
(Source : in Asis.Element;
Target : access In_Range_Membership_Test_Node;
Cloner : in Cloner_Class;
Parent : in Asis.Element)
is
begin
Target.Membership_Test_Expression :=
Copy (Cloner, Membership_Test_Expression (Source.all), Asis.Element (Target));
Target.Membership_Test_Range :=
Copy (Cloner, Membership_Test_Range (Source.all), Asis.Element (Target));
end Copy;
function New_Not_In_Range_Membership_Test_Node
(The_Context : ASIS.Context)
return Not_In_Range_Membership_Test_Ptr
is
Result : Not_In_Range_Membership_Test_Ptr :=
new Not_In_Range_Membership_Test_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_Not_In_Range_Membership_Test_Node;
function Expression_Kind (Element : Not_In_Range_Membership_Test_Node)
return Asis.Expression_Kinds is
begin
return A_Not_In_Range_Membership_Test;
end;
function Clone
(Element : Not_In_Range_Membership_Test_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant Not_In_Range_Membership_Test_Ptr := new Not_In_Range_Membership_Test_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
return Asis.Element (Result);
end Clone;
procedure Copy
(Source : in Asis.Element;
Target : access Not_In_Range_Membership_Test_Node;
Cloner : in Cloner_Class;
Parent : in Asis.Element)
is
begin
Target.Membership_Test_Expression :=
Copy (Cloner, Membership_Test_Expression (Source.all), Asis.Element (Target));
Target.Membership_Test_Range :=
Copy (Cloner, Membership_Test_Range (Source.all), Asis.Element (Target));
end Copy;
function Membership_Test_Expression
(Element : In_Type_Membership_Test_Node) return Asis.Expression is
begin
return Element.Membership_Test_Expression;
end Membership_Test_Expression;
procedure Set_Membership_Test_Expression
(Element : in out In_Type_Membership_Test_Node;
Value : in Asis.Expression) is
begin
Element.Membership_Test_Expression := Value;
end Set_Membership_Test_Expression;
function Membership_Test_Subtype_Mark
(Element : In_Type_Membership_Test_Node) return Asis.Expression is
begin
return Element.Membership_Test_Subtype_Mark;
end Membership_Test_Subtype_Mark;
procedure Set_Membership_Test_Subtype_Mark
(Element : in out In_Type_Membership_Test_Node;
Value : in Asis.Expression) is
begin
Element.Membership_Test_Subtype_Mark := Value;
end Set_Membership_Test_Subtype_Mark;
function New_In_Type_Membership_Test_Node
(The_Context : ASIS.Context)
return In_Type_Membership_Test_Ptr
is
Result : In_Type_Membership_Test_Ptr :=
new In_Type_Membership_Test_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_In_Type_Membership_Test_Node;
function Expression_Kind (Element : In_Type_Membership_Test_Node)
return Asis.Expression_Kinds is
begin
return An_In_Type_Membership_Test;
end;
function Children (Element : access In_Type_Membership_Test_Node)
return Traverse_List is
begin
return ((False, Element.Membership_Test_Expression'Access),
(False, Element.Membership_Test_Subtype_Mark'Access));
end Children;
function Clone
(Element : In_Type_Membership_Test_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant In_Type_Membership_Test_Ptr := new In_Type_Membership_Test_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
return Asis.Element (Result);
end Clone;
procedure Copy
(Source : in Asis.Element;
Target : access In_Type_Membership_Test_Node;
Cloner : in Cloner_Class;
Parent : in Asis.Element)
is
begin
Target.Membership_Test_Expression :=
Copy (Cloner, Membership_Test_Expression (Source.all), Asis.Element (Target));
Target.Membership_Test_Subtype_Mark :=
Copy (Cloner, Membership_Test_Subtype_Mark (Source.all), Asis.Element (Target));
end Copy;
function New_Not_In_Type_Membership_Test_Node
(The_Context : ASIS.Context)
return Not_In_Type_Membership_Test_Ptr
is
Result : Not_In_Type_Membership_Test_Ptr :=
new Not_In_Type_Membership_Test_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_Not_In_Type_Membership_Test_Node;
function Expression_Kind (Element : Not_In_Type_Membership_Test_Node)
return Asis.Expression_Kinds is
begin
return A_Not_In_Type_Membership_Test;
end;
function Clone
(Element : Not_In_Type_Membership_Test_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant Not_In_Type_Membership_Test_Ptr := new Not_In_Type_Membership_Test_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
return Asis.Element (Result);
end Clone;
procedure Copy
(Source : in Asis.Element;
Target : access Not_In_Type_Membership_Test_Node;
Cloner : in Cloner_Class;
Parent : in Asis.Element)
is
begin
Target.Membership_Test_Expression :=
Copy (Cloner, Membership_Test_Expression (Source.all), Asis.Element (Target));
Target.Membership_Test_Subtype_Mark :=
Copy (Cloner, Membership_Test_Subtype_Mark (Source.all), Asis.Element (Target));
end Copy;
function New_Null_Literal_Node
(The_Context : ASIS.Context)
return Null_Literal_Ptr
is
Result : Null_Literal_Ptr :=
new Null_Literal_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_Null_Literal_Node;
function Expression_Kind (Element : Null_Literal_Node)
return Asis.Expression_Kinds is
begin
return A_Null_Literal;
end;
function Clone
(Element : Null_Literal_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant Null_Literal_Ptr := new Null_Literal_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
return Asis.Element (Result);
end Clone;
function Expression_Parenthesized
(Element : Parenthesized_Expression_Node) return Asis.Expression is
begin
return Element.Expression_Parenthesized;
end Expression_Parenthesized;
procedure Set_Expression_Parenthesized
(Element : in out Parenthesized_Expression_Node;
Value : in Asis.Expression) is
begin
Element.Expression_Parenthesized := Value;
end Set_Expression_Parenthesized;
function New_Parenthesized_Expression_Node
(The_Context : ASIS.Context)
return Parenthesized_Expression_Ptr
is
Result : Parenthesized_Expression_Ptr :=
new Parenthesized_Expression_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_Parenthesized_Expression_Node;
function Expression_Kind (Element : Parenthesized_Expression_Node)
return Asis.Expression_Kinds is
begin
return A_Parenthesized_Expression;
end;
function Children (Element : access Parenthesized_Expression_Node)
return Traverse_List is
begin
return (1 => (False, Element.Expression_Parenthesized'Access));
end Children;
function Clone
(Element : Parenthesized_Expression_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant Parenthesized_Expression_Ptr := new Parenthesized_Expression_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
return Asis.Element (Result);
end Clone;
procedure Copy
(Source : in Asis.Element;
Target : access Parenthesized_Expression_Node;
Cloner : in Cloner_Class;
Parent : in Asis.Element)
is
begin
Target.Expression_Parenthesized :=
Copy (Cloner, Expression_Parenthesized (Source.all), Asis.Element (Target));
end Copy;
function Converted_Or_Qualified_Subtype_Mark
(Element : Base_Conversion_Node) return Asis.Expression is
begin
return Element.Converted_Or_Qualified_Subtype_Mark;
end Converted_Or_Qualified_Subtype_Mark;
procedure Set_Converted_Or_Qualified_Subtype_Mark
(Element : in out Base_Conversion_Node;
Value : in Asis.Expression) is
begin
Element.Converted_Or_Qualified_Subtype_Mark := Value;
end Set_Converted_Or_Qualified_Subtype_Mark;
function Converted_Or_Qualified_Expression
(Element : Base_Conversion_Node) return Asis.Expression is
begin
return Element.Converted_Or_Qualified_Expression;
end Converted_Or_Qualified_Expression;
procedure Set_Converted_Or_Qualified_Expression
(Element : in out Base_Conversion_Node;
Value : in Asis.Expression) is
begin
Element.Converted_Or_Qualified_Expression := Value;
end Set_Converted_Or_Qualified_Expression;
function Children (Element : access Base_Conversion_Node)
return Traverse_List is
begin
return ((False, Element.Converted_Or_Qualified_Subtype_Mark'Access),
(False, Element.Converted_Or_Qualified_Expression'Access));
end Children;
function New_Type_Conversion_Node
(The_Context : ASIS.Context)
return Type_Conversion_Ptr
is
Result : Type_Conversion_Ptr :=
new Type_Conversion_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_Type_Conversion_Node;
function Expression_Kind (Element : Type_Conversion_Node)
return Asis.Expression_Kinds is
begin
return A_Type_Conversion;
end;
function Clone
(Element : Type_Conversion_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant Type_Conversion_Ptr := new Type_Conversion_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
return Asis.Element (Result);
end Clone;
procedure Copy
(Source : in Asis.Element;
Target : access Type_Conversion_Node;
Cloner : in Cloner_Class;
Parent : in Asis.Element)
is
begin
Target.Converted_Or_Qualified_Subtype_Mark :=
Copy (Cloner, Converted_Or_Qualified_Subtype_Mark (Source.all), Asis.Element (Target));
Target.Converted_Or_Qualified_Expression :=
Copy (Cloner, Converted_Or_Qualified_Expression (Source.all), Asis.Element (Target));
end Copy;
function New_Qualified_Expression_Node
(The_Context : ASIS.Context)
return Qualified_Expression_Ptr
is
Result : Qualified_Expression_Ptr :=
new Qualified_Expression_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_Qualified_Expression_Node;
function Expression_Kind (Element : Qualified_Expression_Node)
return Asis.Expression_Kinds is
begin
return A_Qualified_Expression;
end;
function Clone
(Element : Qualified_Expression_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant Qualified_Expression_Ptr := new Qualified_Expression_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
return Asis.Element (Result);
end Clone;
procedure Copy
(Source : in Asis.Element;
Target : access Qualified_Expression_Node;
Cloner : in Cloner_Class;
Parent : in Asis.Element)
is
begin
Target.Converted_Or_Qualified_Subtype_Mark :=
Copy (Cloner, Converted_Or_Qualified_Subtype_Mark (Source.all), Asis.Element (Target));
Target.Converted_Or_Qualified_Expression :=
Copy (Cloner, Converted_Or_Qualified_Expression (Source.all), Asis.Element (Target));
end Copy;
function Allocator_Subtype_Indication
(Element : Allocation_From_Subtype_Node) return Asis.Subtype_Indication is
begin
return Element.Allocator_Subtype_Indication;
end Allocator_Subtype_Indication;
procedure Set_Allocator_Subtype_Indication
(Element : in out Allocation_From_Subtype_Node;
Value : in Asis.Subtype_Indication) is
begin
Element.Allocator_Subtype_Indication := Value;
end Set_Allocator_Subtype_Indication;
function New_Allocation_From_Subtype_Node
(The_Context : ASIS.Context)
return Allocation_From_Subtype_Ptr
is
Result : Allocation_From_Subtype_Ptr :=
new Allocation_From_Subtype_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_Allocation_From_Subtype_Node;
function Expression_Kind (Element : Allocation_From_Subtype_Node)
return Asis.Expression_Kinds is
begin
return An_Allocation_From_Subtype;
end;
function Children (Element : access Allocation_From_Subtype_Node)
return Traverse_List is
begin
return (1 => (False, Element.Allocator_Subtype_Indication'Access));
end Children;
function Clone
(Element : Allocation_From_Subtype_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant Allocation_From_Subtype_Ptr := new Allocation_From_Subtype_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
return Asis.Element (Result);
end Clone;
procedure Copy
(Source : in Asis.Element;
Target : access Allocation_From_Subtype_Node;
Cloner : in Cloner_Class;
Parent : in Asis.Element)
is
begin
Target.Allocator_Subtype_Indication :=
Copy (Cloner, Allocator_Subtype_Indication (Source.all), Asis.Element (Target));
end Copy;
function Allocator_Qualified_Expression
(Element : Allocation_From_Qualified_Expression_Node) return Asis.Expression is
begin
return Element.Allocator_Qualified_Expression;
end Allocator_Qualified_Expression;
procedure Set_Allocator_Qualified_Expression
(Element : in out Allocation_From_Qualified_Expression_Node;
Value : in Asis.Expression) is
begin
Element.Allocator_Qualified_Expression := Value;
end Set_Allocator_Qualified_Expression;
function New_Allocation_From_Qualified_Expression_Node
(The_Context : ASIS.Context)
return Allocation_From_Qualified_Expression_Ptr
is
Result : Allocation_From_Qualified_Expression_Ptr :=
new Allocation_From_Qualified_Expression_Node;
begin
Set_Enclosing_Compilation_Unit
(Result.all, Current_Unit (The_Context.all));
return Result;
end New_Allocation_From_Qualified_Expression_Node;
function Expression_Kind (Element : Allocation_From_Qualified_Expression_Node)
return Asis.Expression_Kinds is
begin
return An_Allocation_From_Qualified_Expression;
end;
function Children (Element : access Allocation_From_Qualified_Expression_Node)
return Traverse_List is
begin
return (1 => (False, Element.Allocator_Qualified_Expression'Access));
end Children;
function Clone
(Element : Allocation_From_Qualified_Expression_Node;
Parent : Asis.Element)
return Asis.Element
is
Result : constant Allocation_From_Qualified_Expression_Ptr := new Allocation_From_Qualified_Expression_Node;
begin
Result.Enclosing_Element := Parent;
Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit;
Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited;
Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance;
Result.Start_Position := Element.Start_Position;
Result.End_Position := Element.End_Position;
Result.Enclosing_Compilation_Unit :=
Enclosing_Compilation_Unit (Parent.all);
Result.Hash := Element.Hash;
Result.Corresponding_Expression_Type := Element.Corresponding_Expression_Type;
Result.Is_Static_Expression := Element.Is_Static_Expression;
return Asis.Element (Result);
end Clone;
procedure Copy
(Source : in Asis.Element;
Target : access Allocation_From_Qualified_Expression_Node;
Cloner : in Cloner_Class;
Parent : in Asis.Element)
is
begin
Target.Allocator_Qualified_Expression :=
Copy (Cloner, Allocator_Qualified_Expression (Source.all), Asis.Element (Target));
end Copy;
end Asis.Gela.Elements.Expr;
|
-----------------------------------------------------------------------
-- ADO Statements -- Database statements
-- Copyright (C) 2009, 2010, 2011, 2012, 2013, 2015, 2018, 2019 Stephane Carrez
-- Written by Stephane Carrez (Stephane.Carrez@gmail.com)
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Ada.Calendar.Formatting;
with Util.Log;
with Util.Log.Loggers;
with System.Storage_Elements;
with Ada.Unchecked_Deallocation;
package body ADO.Statements is
use System.Storage_Elements;
Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("ADO.Statements");
function Get_Query (Query : Statement) return ADO.SQL.Query_Access is
begin
return Query.Query;
end Get_Query;
procedure Add_Parameter (Query : in out Statement;
Param : in ADO.Parameters.Parameter) is
begin
Query.Query.Add_Parameter (Param);
end Add_Parameter;
procedure Set_Parameters (Query : in out Statement;
From : in ADO.Parameters.Abstract_List'Class) is
begin
Query.Query.Set_Parameters (From);
end Set_Parameters;
-- ------------------------------
-- Return the number of parameters in the list.
-- ------------------------------
function Length (Query : in Statement) return Natural is
begin
return Query.Query.Length;
end Length;
-- ------------------------------
-- Return the parameter at the given position
-- ------------------------------
function Element (Query : in Statement;
Position : in Natural) return ADO.Parameters.Parameter is
begin
return Query.Query.Element (Position);
end Element;
-- ------------------------------
-- Execute the <b>Process</b> procedure with the given parameter as argument.
-- ------------------------------
procedure Query_Element (Query : in Statement;
Position : in Natural;
Process : not null access
procedure (Element : in ADO.Parameters.Parameter)) is
begin
Query.Query.Query_Element (Position, Process);
end Query_Element;
-- ------------------------------
-- Clear the list of parameters.
-- ------------------------------
procedure Clear (Query : in out Statement) is
begin
Query.Query.Clear;
end Clear;
procedure Add_Param (Params : in out Statement;
Value : in ADO.Objects.Object_Key) is
begin
case Value.Of_Type is
when ADO.Objects.KEY_INTEGER =>
declare
V : constant Identifier := Objects.Get_Value (Value);
begin
Params.Query.Add_Param (V);
end;
when ADO.Objects.KEY_STRING =>
declare
V : constant Unbounded_String := Objects.Get_Value (Value);
begin
Params.Query.Add_Param (V);
end;
end case;
end Add_Param;
-- ------------------------------
-- Add the parameter by using the primary key of the object.
-- Use null if the object is a null reference.
-- ------------------------------
procedure Add_Param (Params : in out Statement;
Value : in ADO.Objects.Object_Ref'Class) is
begin
if Value.Is_Null then
Params.Query.Add_Null_Param;
else
Params.Add_Param (Value.Get_Key);
end if;
end Add_Param;
procedure Append (Query : in out Statement; SQL : in String) is
begin
ADO.SQL.Append (Target => Query.Query.SQL, SQL => SQL);
end Append;
procedure Append (Query : in out Statement; Value : in Integer) is
begin
ADO.SQL.Append_Value (Target => Query.Query.SQL, Value => Long_Integer (Value));
end Append;
procedure Append (Query : in out Statement; Value : in Long_Integer) is
begin
ADO.SQL.Append_Value (Target => Query.Query.SQL, Value => Value);
end Append;
procedure Append (Query : in out Statement; SQL : in Unbounded_String) is
begin
ADO.SQL.Append_Value (Target => Query.Query.SQL, Value => To_String (SQL));
end Append;
procedure Set_Filter (Query : in out Statement;
Filter : in String) is
begin
Query.Query.Set_Filter (Filter);
end Set_Filter;
-- ------------------------------
-- Get the filter condition or the empty string
-- ------------------------------
-- function Get_Filter (Parameters : in Statement) return String is
-- begin
-- return Parameters.Query.Get_Filter;
-- end Get_Filter;
procedure Execute (Query : in out Statement;
SQL : in Unbounded_String;
Params : in ADO.Parameters.Abstract_List'Class) is
begin
null;
end Execute;
-- ------------------------------
-- Append the value to the SQL query string.
-- ------------------------------
procedure Append_Escape (Query : in out Statement; Value : in String) is
begin
ADO.SQL.Append_Value (Query.Query.SQL, Value);
end Append_Escape;
-- ------------------------------
-- Append the value to the SQL query string.
-- ------------------------------
procedure Append_Escape (Query : in out Statement; Value : in Unbounded_String) is
begin
ADO.SQL.Append_Value (Query.Query.SQL, To_String (Value));
end Append_Escape;
function "+" (Left : chars_ptr; Right : Size_T) return chars_ptr is
begin
return To_Chars_Ptr (To_Address (Left) + Storage_Offset (Right));
end "+";
-- ------------------------------
-- Get the query result as an integer
-- ------------------------------
function Get_Result_Integer (Query : Query_Statement) return Integer is
begin
if not Query_Statement'Class (Query).Has_Elements then
return 0;
end if;
if Query_Statement'Class (Query).Is_Null (0) then
return 0;
end if;
return Query_Statement'Class (Query).Get_Integer (0);
end Get_Result_Integer;
-- ------------------------------
-- Get the query result as a blob
-- ------------------------------
function Get_Result_Blob (Query : in Query_Statement) return ADO.Blob_Ref is
begin
if not Query_Statement'Class (Query).Has_Elements then
return Null_Blob;
end if;
return Query_Statement'Class (Query).Get_Blob (0);
end Get_Result_Blob;
-- ------------------------------
-- Get an unsigned 64-bit number from a C string terminated by \0
-- ------------------------------
function Get_Uint64 (Str : chars_ptr) return unsigned_long is
C : Character;
P : chars_ptr := Str;
Result : unsigned_long := 0;
begin
loop
C := P.all;
if C /= ' ' then
exit;
end if;
P := P + 1;
end loop;
while C >= '0' and C <= '9' loop
Result := Result * 10 + unsigned_long (Character'Pos (C) - Character'Pos ('0'));
P := P + 1;
C := P.all;
end loop;
if C /= ASCII.NUL then
raise Invalid_Type with "Invalid integer value";
end if;
return Result;
end Get_Uint64;
-- ------------------------------
-- Get a signed 64-bit number from a C string terminated by \0
-- ------------------------------
function Get_Int64 (Str : chars_ptr) return Int64 is
C : Character;
P : chars_ptr := Str;
begin
if P = null then
return 0;
end if;
loop
C := P.all;
if C /= ' ' then
exit;
end if;
P := P + 1;
end loop;
if C = '+' then
P := P + 1;
return Int64 (Get_Uint64 (P));
elsif C = '-' then
P := P + 1;
return -Int64 (Get_Uint64 (P));
else
return Int64 (Get_Uint64 (P));
end if;
end Get_Int64;
-- ------------------------------
-- Get a double number from a C string terminated by \0
-- ------------------------------
function Get_Double (Str : chars_ptr) return Long_Float is
C : Character;
P : chars_ptr := Str;
begin
if P = null then
return 0.0;
end if;
loop
C := P.all;
if C /= ' ' then
exit;
end if;
P := P + 1;
end loop;
declare
S : String (1 .. 100);
begin
for I in S'Range loop
C := P.all;
S (I) := C;
if C = ASCII.NUL then
return Long_Float'Value (S (S'First .. I - 1));
end if;
P := P + 1;
end loop;
raise Invalid_Type with "Invalid floating point value";
end;
end Get_Double;
-- ------------------------------
-- Get a time from the C string passed in <b>Value</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
-- ------------------------------
function Get_Time (Value : in chars_ptr) return Ada.Calendar.Time is
use Ada.Calendar;
Year : Year_Number := Year_Number'First;
Month : Month_Number := Month_Number'First;
Day : Day_Number := Day_Number'First;
Hours : Natural := 0;
Mins : Natural := 0;
Secs : Natural := 0;
Dt : Duration := 0.0;
Field : chars_ptr := Value;
function Get_Number (P : in chars_ptr;
Nb_Digits : in Positive) return Natural;
-- ------------------------------
-- Get a number composed of N digits
-- ------------------------------
function Get_Number (P : in chars_ptr;
Nb_Digits : in Positive) return Natural is
Ptr : chars_ptr := P;
Result : Natural := 0;
C : Character;
begin
for I in 1 .. Nb_Digits loop
C := Ptr.all;
if not (C >= '0' and C <= '9') then
raise Invalid_Type with "Invalid date format";
end if;
Result := Result * 10 + Character'Pos (C) - Character'Pos ('0');
Ptr := Ptr + 1;
end loop;
return Result;
end Get_Number;
begin
if Field /= null then
declare
C : Character;
N : Natural;
begin
N := Get_Number (Field, 4);
if N /= 0 then
Year := Year_Number (N);
end if;
Field := Field + 4;
C := Field.all;
if C /= '-' then
raise Invalid_Type with "Invalid date format";
end if;
Field := Field + 1;
N := Get_Number (Field, 2);
if N /= 0 then
Month := Month_Number (N);
end if;
Field := Field + 2;
C := Field.all;
if C /= '-' then
raise Invalid_Type with "Invalid date format";
end if;
Field := Field + 1;
N := Get_Number (Field, 2);
if N /= 0 then
Day := Day_Number (N);
end if;
Field := Field + 2;
C := Field.all;
if C /= ASCII.NUL then
if C /= ' ' then
raise Invalid_Type with "Invalid date format";
end if;
Field := Field + 1;
Hours := Get_Number (Field, 2);
Field := Field + 2;
C := Field.all;
if C /= ':' then
raise Invalid_Type with "Invalid date format";
end if;
Field := Field + 1;
Mins := Get_Number (Field, 2);
Field := Field + 2;
C := Field.all;
if C /= ':' then
raise Invalid_Type with "Invalid date format";
end if;
Field := Field + 1;
Secs := Get_Number (Field, 2);
Field := Field + 2;
C := Field.all;
if C /= '.' and C /= ASCII.NUL then
raise Invalid_Type with "Invalid date format";
end if;
Dt := Duration (Hours * 3600) + Duration (Mins * 60) + Duration (Secs);
end if;
end;
end if;
return Ada.Calendar.Formatting.Time_Of (Year, Month, Day, Dt, False, 0);
end Get_Time;
-- ------------------------------
-- Create a blob initialized with the given data buffer pointed to by <b>Data</b>
-- and which contains <b>Size</b> bytes.
-- ------------------------------
function Get_Blob (Data : in chars_ptr;
Size : in Natural) return Blob_Ref is
use Util.Refs;
use Ada.Streams;
B : constant Blob_Access := new Blob '(Ref_Entity with
Len => Stream_Element_Offset (Size),
others => <>);
P : chars_ptr := Data;
begin
for I in 1 .. Stream_Element_Offset (Size) loop
B.Data (I) := Character'Pos (P.all);
P := P + 1;
end loop;
return Blob_References.Create (B);
end Get_Blob;
-- ------------------------------
-- Execute the query
-- ------------------------------
overriding
procedure Execute (Query : in out Query_Statement) is
begin
if Query.Proxy = null then
raise Invalid_Statement with "Query statement is not initialized";
end if;
Query.Proxy.Execute;
end Execute;
-- ------------------------------
-- Get the number of rows returned by the query
-- ------------------------------
function Get_Row_Count (Query : in Query_Statement) return Natural is
begin
if Query.Proxy = null then
return 0;
else
return Query.Proxy.Get_Row_Count;
end if;
end Get_Row_Count;
-- ------------------------------
-- Returns True if there is more data (row) to fetch
-- ------------------------------
function Has_Elements (Query : in Query_Statement) return Boolean is
begin
if Query.Proxy = null then
return False;
else
return Query.Proxy.Has_Elements;
end if;
end Has_Elements;
-- ------------------------------
-- Fetch the next row
-- ------------------------------
procedure Next (Query : in out Query_Statement) is
begin
if Query.Proxy = null then
raise Invalid_Statement with "Query statement is not initialized";
end if;
Query.Proxy.Next;
end Next;
-- ------------------------------
-- Returns true if the column <b>Column</b> is null.
-- ------------------------------
function Is_Null (Query : in Query_Statement;
Column : in Natural) return Boolean is
begin
if Query.Proxy = null then
raise Invalid_Statement with "Query statement is not initialized";
end if;
return Query.Proxy.Is_Null (Column);
end Is_Null;
-- ------------------------------
-- Get the column value at position <b>Column</b> and
-- return it as an <b>Int64</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
-- ------------------------------
function Get_Int64 (Query : Query_Statement;
Column : Natural) return Int64 is
begin
if Query.Proxy = null then
raise Invalid_Statement with "Int64 is not supported by database driver";
end if;
return Query.Proxy.Get_Int64 (Column);
end Get_Int64;
-- ------------------------------
-- Get the column value at position <b>Column</b> and
-- return it as an <b>Integer</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
-- ------------------------------
function Get_Integer (Query : Query_Statement;
Column : Natural) return Integer is
begin
if Query.Proxy = null then
return Integer (Query_Statement'Class (Query).Get_Int64 (Column));
else
return Query.Proxy.Get_Integer (Column);
end if;
end Get_Integer;
-- ------------------------------
-- Get the column value at position <b>Column</b> and
-- return it as an <b>Integer</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
-- ------------------------------
function Get_Natural (Query : in Query_Statement;
Column : in Natural) return Natural is
begin
return Natural (Query.Get_Integer (Column));
end Get_Natural;
-- ------------------------------
-- Get the column value at position <b>Column</b> and
-- return it as an <b>Nullable_Integer</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
-- ------------------------------
function Get_Nullable_Integer (Query : Query_Statement;
Column : Natural) return Nullable_Integer is
begin
if Query.Proxy = null then
return Result : Nullable_Integer do
Result.Is_Null := Query_Statement'Class (Query).Is_Null (Column);
if not Result.Is_Null then
Result.Value := Integer (Query_Statement'Class (Query).Get_Int64 (Column));
end if;
end return;
else
return Query.Proxy.Get_Nullable_Integer (Column);
end if;
end Get_Nullable_Integer;
-- ------------------------------
-- Get the column value at position <b>Column</b> and
-- return it as an <b>Float</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
-- ------------------------------
function Get_Float (Query : Query_Statement;
Column : Natural) return Float is
begin
if Query.Proxy = null then
return Float (Query_Statement'Class (Query).Get_Double (Column));
else
return Query.Proxy.Get_Float (Column);
end if;
end Get_Float;
-- ------------------------------
-- Get the column value at position <b>Column</b> and
-- return it as an <b>Long_Float</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
-- ------------------------------
function Get_Double (Query : Query_Statement;
Column : Natural) return Long_Float is
begin
if Query.Proxy = null then
raise Invalid_Statement with "Double is not supported by database driver";
else
return Query.Proxy.Get_Double (Column);
end if;
end Get_Double;
-- ------------------------------
-- Get the column value at position <b>Column</b> and
-- return it as an <b>Boolean</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
-- ------------------------------
function Get_Boolean (Query : Query_Statement;
Column : Natural) return Boolean is
begin
if Query.Proxy = null then
return Query_Statement'Class (Query).Get_Integer (Column) /= 0;
else
return Query.Proxy.Get_Boolean (Column);
end if;
end Get_Boolean;
-- ------------------------------
-- Get the column value at position <b>Column</b> and
-- return it as a <b>Nullable_Boolean</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
-- ------------------------------
function Get_Nullable_Boolean (Query : Query_Statement;
Column : Natural) return Nullable_Boolean is
begin
if Query.Proxy = null then
if Query_Statement'Class (Query).Is_Null (Column) then
return ADO.Null_Boolean;
else
return (Is_Null => False,
Value => Query_Statement'Class (Query).Get_Boolean (Column));
end if;
else
if Query.Is_Null (Column) then
return ADO.Null_Boolean;
end if;
return (Is_Null => False,
Value => Query.Proxy.Get_Boolean (Column));
end if;
end Get_Nullable_Boolean;
-- ------------------------------
-- Get the column value at position <b>Column</b> and
-- return it as an <b>Identifier</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
-- ------------------------------
function Get_Identifier (Query : Query_Statement;
Column : Natural) return Identifier is
begin
if Query.Proxy = null then
if Query_Statement'Class (Query).Is_Null (Column) then
return ADO.NO_IDENTIFIER;
else
return Identifier (Query_Statement'Class (Query).Get_Int64 (Column));
end if;
else
if Query.Is_Null (Column) then
return ADO.NO_IDENTIFIER;
end if;
return Query.Proxy.Get_Identifier (Column);
end if;
end Get_Identifier;
-- ------------------------------
-- Get the column value at position <b>Column</b> and
-- return it as an <b>Unbounded_String</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
-- ------------------------------
function Get_Unbounded_String (Query : Query_Statement;
Column : Natural) return Unbounded_String is
begin
if Query.Proxy = null then
raise Invalid_Statement with "Query statement is not initialized";
end if;
return Query.Proxy.Get_Unbounded_String (Column);
end Get_Unbounded_String;
-- ------------------------------
-- Get the column value at position <b>Column</b> and
-- return it as an <b>Nullable_String</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
-- ------------------------------
function Get_Nullable_String (Query : Query_Statement;
Column : Natural) return Nullable_String is
begin
if Query.Proxy = null then
return Result : Nullable_String do
Result.Is_Null := Query_Statement'Class (Query).Is_Null (Column);
if not Result.Is_Null then
Result.Value := Query_Statement'Class (Query).Get_Unbounded_String (Column);
end if;
end return;
else
return Query.Proxy.Get_Nullable_String (Column);
end if;
end Get_Nullable_String;
-- ------------------------------
-- Get the column value at position <b>Column</b> and
-- return it as an <b>Unbounded_String</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
-- ------------------------------
function Get_String (Query : Query_Statement;
Column : Natural) return String is
begin
if Query.Proxy = null then
return To_String (Query_Statement'Class (Query).Get_Unbounded_String (Column));
else
return Query.Proxy.Get_String (Column);
end if;
end Get_String;
-- ------------------------------
-- Get the column value at position <b>Column</b> and
-- return it as a <b>Blob</b> reference.
-- ------------------------------
function Get_Blob (Query : in Query_Statement;
Column : in Natural) return ADO.Blob_Ref is
begin
if Query.Proxy = null then
return Empty : ADO.Blob_Ref;
else
return Query.Proxy.Get_Blob (Column);
end if;
end Get_Blob;
-- ------------------------------
-- Get the column value at position <b>Column</b> and
-- return it as an <b>Time</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
-- ------------------------------
function Get_Time (Query : Query_Statement;
Column : Natural) return Ada.Calendar.Time is
begin
if Query.Proxy = null then
raise Invalid_Statement with "Query statement is not initialized";
end if;
return Query.Proxy.all.Get_Time (Column);
end Get_Time;
-- ------------------------------
-- Get the column value at position <b>Column</b> and
-- return it as a <b>Nullable_Time</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
-- ------------------------------
function Get_Nullable_Time (Query : in Query_Statement;
Column : in Natural) return Nullable_Time is
begin
if Query.Proxy = null then
return Result : Nullable_Time do
Result.Is_Null := Query_Statement'Class (Query).Is_Null (Column);
if not Result.Is_Null then
Result.Value := Query_Statement'Class (Query).Get_Time (Column);
end if;
end return;
end if;
return Query.Proxy.all.Get_Nullable_Time (Column);
end Get_Nullable_Time;
-- ------------------------------
-- Get the column value at position <b>Column</b> and
-- return it as an <b>Nullable_Entity_Type</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
-- ------------------------------
function Get_Nullable_Entity_Type (Query : Query_Statement;
Column : Natural) return Nullable_Entity_Type is
begin
if Query.Proxy = null then
return Result : Nullable_Entity_Type do
Result.Is_Null := Query_Statement'Class (Query).Is_Null (Column);
if not Result.Is_Null then
Result.Value := Entity_Type (Query_Statement'Class (Query).Get_Integer (Column));
end if;
end return;
end if;
return Query.Proxy.all.Get_Nullable_Entity_Type (Column);
end Get_Nullable_Entity_Type;
-- ------------------------------
-- Get the column type
-- Raises <b>Invalid_Column</b> if the column does not exist.
-- ------------------------------
function Get_Column_Type (Query : Query_Statement;
Column : Natural)
return ADO.Schemas.Column_Type is
begin
if Query.Proxy = null then
raise Invalid_Statement with "Query statement is not initialized";
end if;
return Query.Proxy.Get_Column_Type (Column);
end Get_Column_Type;
-- ------------------------------
-- Get the column name.
-- Raises <b>Invalid_Column</b> if the column does not exist.
-- ------------------------------
function Get_Column_Name (Query : in Query_Statement;
Column : in Natural)
return String is
begin
if Query.Proxy = null then
raise Invalid_Statement with "Query statement is not initialized";
end if;
return Query.Proxy.Get_Column_Name (Column);
end Get_Column_Name;
-- ------------------------------
-- Get the number of columns in the result.
-- ------------------------------
function Get_Column_Count (Query : in Query_Statement)
return Natural is
begin
if Query.Proxy = null then
raise Invalid_Statement with "Query statement is not initialized";
end if;
return Query.Proxy.Get_Column_Count;
end Get_Column_Count;
overriding
procedure Adjust (Stmt : in out Query_Statement) is
begin
if Stmt.Proxy /= null then
Stmt.Proxy.Ref_Counter := Stmt.Proxy.Ref_Counter + 1;
end if;
end Adjust;
overriding
procedure Finalize (Stmt : in out Query_Statement) is
procedure Free is new
Ada.Unchecked_Deallocation (Object => Query_Statement'Class,
Name => Query_Statement_Access);
begin
if Stmt.Proxy /= null then
Stmt.Proxy.Ref_Counter := Stmt.Proxy.Ref_Counter - 1;
if Stmt.Proxy.Ref_Counter = 0 then
Free (Stmt.Proxy);
end if;
end if;
end Finalize;
-- Execute the delete query.
overriding
procedure Execute (Query : in out Delete_Statement) is
Result : Natural;
begin
Log.Info ("Delete statement");
if Query.Proxy = null then
raise Invalid_Statement with "Delete statement not initialized";
end if;
Query.Proxy.Execute (Result);
end Execute;
-- ------------------------------
-- Execute the query
-- Returns the number of rows deleted.
-- ------------------------------
procedure Execute (Query : in out Delete_Statement;
Result : out Natural) is
begin
Log.Info ("Delete statement");
if Query.Proxy = null then
raise Invalid_Statement with "Delete statement not initialized";
end if;
Query.Proxy.Execute (Result);
end Execute;
-- ------------------------------
-- Get the update query object associated with this update statement.
-- ------------------------------
function Get_Update_Query (Update : in Update_Statement)
return ADO.SQL.Update_Query_Access is
begin
return Update.Update;
end Get_Update_Query;
-- ------------------------------
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
-- ------------------------------
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in Boolean) is
begin
Update.Update.Save_Field (Name => Name, Value => Value);
end Save_Field;
-- ------------------------------
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
-- ------------------------------
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in Nullable_Boolean) is
begin
if Value.Is_Null then
Update.Save_Null_Field (Name);
else
Update.Update.Save_Field (Name => Name, Value => Value.Value);
end if;
end Save_Field;
-- ------------------------------
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
-- ------------------------------
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in Integer) is
begin
Update.Update.Save_Field (Name => Name, Value => Value);
end Save_Field;
-- ------------------------------
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
-- ------------------------------
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in Nullable_Integer) is
begin
if Value.Is_Null then
Update.Save_Null_Field (Name);
else
Update.Update.Save_Field (Name => Name, Value => Value.Value);
end if;
end Save_Field;
-- ------------------------------
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
-- ------------------------------
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in Long_Long_Integer) is
begin
Update.Update.Save_Field (Name => Name, Value => Value);
end Save_Field;
-- ------------------------------
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
-- ------------------------------
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in Float) is
begin
Update.Update.Save_Field (Name => Name, Value => Long_Float (Value));
end Save_Field;
-- ------------------------------
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
-- ------------------------------
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in Long_Float) is
begin
Update.Update.Save_Field (Name => Name, Value => Value);
end Save_Field;
-- ------------------------------
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
-- ------------------------------
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in Identifier) is
begin
Update.Update.Save_Field (Name => Name, Value => Value);
end Save_Field;
-- ------------------------------
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
-- ------------------------------
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in Entity_Type) is
begin
Update.Update.Save_Field (Name => Name, Value => Value);
end Save_Field;
-- ------------------------------
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
-- ------------------------------
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in Nullable_Entity_Type) is
begin
if Value.Is_Null then
Update.Save_Null_Field (Name);
else
Update.Update.Save_Field (Name => Name, Value => Value.Value);
end if;
end Save_Field;
-- ------------------------------
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
-- ------------------------------
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in Ada.Calendar.Time) is
begin
Update.Update.Save_Field (Name => Name, Value => Value);
end Save_Field;
-- ------------------------------
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
-- ------------------------------
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in Nullable_Time) is
begin
if Value.Is_Null then
Update.Save_Null_Field (Name);
else
Update.Save_Field (Name, Value.Value);
end if;
end Save_Field;
-- ------------------------------
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
-- ------------------------------
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in String) is
begin
Update.Update.Save_Field (Name => Name, Value => Value);
end Save_Field;
-- ------------------------------
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
-- ------------------------------
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in Unbounded_String) is
begin
Update.Update.Save_Field (Name => Name, Value => Value);
end Save_Field;
-- ------------------------------
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
-- ------------------------------
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in Nullable_String) is
begin
if Value.Is_Null then
Update.Save_Null_Field (Name);
else
Update.Save_Field (Name, Value.Value);
end if;
end Save_Field;
-- ------------------------------
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
-- ------------------------------
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in ADO.Objects.Object_Key) is
begin
case Value.Of_Type is
when ADO.Objects.KEY_INTEGER =>
declare
V : constant Identifier := Objects.Get_Value (Value);
begin
Update.Update.Save_Field (Name => Name, Value => V);
end;
when ADO.Objects.KEY_STRING =>
declare
V : constant Unbounded_String := Objects.Get_Value (Value);
begin
Update.Update.Save_Field (Name => Name, Value => V);
end;
end case;
end Save_Field;
-- ------------------------------
-- Prepare the update/insert query to save the table field.
-- identified by <b>Name</b> and set it to the identifier key held by <b>Value</b>.
-- ------------------------------
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in ADO.Objects.Object_Ref'Class) is
begin
if Value.Is_Null then
Update.Save_Null_Field (Name);
else
Update.Save_Field (Name, Value.Get_Key);
end if;
end Save_Field;
-- ------------------------------
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
-- ------------------------------
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in ADO.Blob_Ref) is
begin
if Value.Is_Null then
Update.Save_Null_Field (Name);
else
Update.Update.Save_Field (Name, Value);
end if;
end Save_Field;
-- ------------------------------
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to NULL.
-- ------------------------------
procedure Save_Null_Field (Update : in out Update_Statement;
Name : in String) is
begin
Update.Update.Save_Null_Field (Name);
end Save_Null_Field;
-- ------------------------------
-- Check if the update/insert query has some fields to update.
-- ------------------------------
function Has_Save_Fields (Update : in Update_Statement) return Boolean is
begin
return Update.Update.Has_Save_Fields;
end Has_Save_Fields;
-- ------------------------------
-- Execute the query
-- ------------------------------
overriding
procedure Execute (Query : in out Update_Statement) is
begin
if Query.Proxy = null then
raise Invalid_Statement with "Update statement not initialized";
end if;
Query.Proxy.Execute;
end Execute;
-- ------------------------------
-- Execute the query
-- ------------------------------
overriding
procedure Execute (Query : in out Insert_Statement) is
begin
if Query.Proxy = null then
raise Invalid_Statement with "Insert statement not initialized";
end if;
Query.Proxy.Execute;
end Execute;
-- ------------------------------
-- Execute the query
-- ------------------------------
procedure Execute (Query : in out Update_Statement;
Result : out Integer) is
begin
if Query.Proxy = null then
raise Invalid_Statement with "Update statement not initialized";
end if;
Query.Proxy.Execute (Result);
end Execute;
overriding
procedure Adjust (Stmt : in out Delete_Statement) is
begin
if Stmt.Proxy /= null then
Stmt.Proxy.Ref_Counter := Stmt.Proxy.Ref_Counter + 1;
end if;
end Adjust;
overriding
procedure Finalize (Stmt : in out Delete_Statement) is
procedure Free is new
Ada.Unchecked_Deallocation (Object => Delete_Statement'Class,
Name => Delete_Statement_Access);
begin
if Stmt.Proxy /= null then
Stmt.Proxy.Ref_Counter := Stmt.Proxy.Ref_Counter - 1;
if Stmt.Proxy.Ref_Counter = 0 then
Free (Stmt.Proxy);
end if;
end if;
end Finalize;
overriding
procedure Adjust (Stmt : in out Update_Statement) is
begin
if Stmt.Proxy /= null then
Stmt.Proxy.Ref_Counter := Stmt.Proxy.Ref_Counter + 1;
end if;
end Adjust;
overriding
procedure Finalize (Stmt : in out Update_Statement) is
procedure Free is new
Ada.Unchecked_Deallocation (Object => Update_Statement'Class,
Name => Update_Statement_Access);
begin
if Stmt.Proxy /= null then
Stmt.Proxy.Ref_Counter := Stmt.Proxy.Ref_Counter - 1;
if Stmt.Proxy.Ref_Counter = 0 then
Free (Stmt.Proxy);
end if;
end if;
end Finalize;
end ADO.Statements;
|
-- This spec has been automatically generated from STM32F105xx.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
with System;
package STM32.FLASH is
pragma Preelaborate;
---------------
-- Registers --
---------------
------------------
-- ACR_Register --
------------------
subtype ACR_LATENCY_Field is STM32.UInt3;
subtype ACR_HLFCYA_Field is STM32.Bit;
subtype ACR_PRFTBE_Field is STM32.Bit;
subtype ACR_PRFTBS_Field is STM32.Bit;
-- Flash access control register
type ACR_Register is record
-- Latency
LATENCY : ACR_LATENCY_Field := 16#0#;
-- Flash half cycle access enable
HLFCYA : ACR_HLFCYA_Field := 16#0#;
-- Prefetch buffer enable
PRFTBE : ACR_PRFTBE_Field := 16#1#;
-- Read-only. Prefetch buffer status
PRFTBS : ACR_PRFTBS_Field := 16#1#;
-- unspecified
Reserved_6_31 : STM32.UInt26 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for ACR_Register use record
LATENCY at 0 range 0 .. 2;
HLFCYA at 0 range 3 .. 3;
PRFTBE at 0 range 4 .. 4;
PRFTBS at 0 range 5 .. 5;
Reserved_6_31 at 0 range 6 .. 31;
end record;
-----------------
-- SR_Register --
-----------------
subtype SR_BSY_Field is STM32.Bit;
subtype SR_PGERR_Field is STM32.Bit;
subtype SR_WRPRTERR_Field is STM32.Bit;
subtype SR_EOP_Field is STM32.Bit;
-- Status register
type SR_Register is record
-- Read-only. Busy
BSY : SR_BSY_Field := 16#0#;
-- unspecified
Reserved_1_1 : STM32.Bit := 16#0#;
-- Programming error
PGERR : SR_PGERR_Field := 16#0#;
-- unspecified
Reserved_3_3 : STM32.Bit := 16#0#;
-- Write protection error
WRPRTERR : SR_WRPRTERR_Field := 16#0#;
-- End of operation
EOP : SR_EOP_Field := 16#0#;
-- unspecified
Reserved_6_31 : STM32.UInt26 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SR_Register use record
BSY at 0 range 0 .. 0;
Reserved_1_1 at 0 range 1 .. 1;
PGERR at 0 range 2 .. 2;
Reserved_3_3 at 0 range 3 .. 3;
WRPRTERR at 0 range 4 .. 4;
EOP at 0 range 5 .. 5;
Reserved_6_31 at 0 range 6 .. 31;
end record;
-----------------
-- CR_Register --
-----------------
subtype CR_PG_Field is STM32.Bit;
subtype CR_PER_Field is STM32.Bit;
subtype CR_MER_Field is STM32.Bit;
subtype CR_OPTPG_Field is STM32.Bit;
subtype CR_OPTER_Field is STM32.Bit;
subtype CR_STRT_Field is STM32.Bit;
subtype CR_LOCK_Field is STM32.Bit;
subtype CR_OPTWRE_Field is STM32.Bit;
subtype CR_ERRIE_Field is STM32.Bit;
subtype CR_EOPIE_Field is STM32.Bit;
-- Control register
type CR_Register is record
-- Programming
PG : CR_PG_Field := 16#0#;
-- Page Erase
PER : CR_PER_Field := 16#0#;
-- Mass Erase
MER : CR_MER_Field := 16#0#;
-- unspecified
Reserved_3_3 : STM32.Bit := 16#0#;
-- Option byte programming
OPTPG : CR_OPTPG_Field := 16#0#;
-- Option byte erase
OPTER : CR_OPTER_Field := 16#0#;
-- Start
STRT : CR_STRT_Field := 16#0#;
-- Lock
LOCK : CR_LOCK_Field := 16#1#;
-- unspecified
Reserved_8_8 : STM32.Bit := 16#0#;
-- Option bytes write enable
OPTWRE : CR_OPTWRE_Field := 16#0#;
-- Error interrupt enable
ERRIE : CR_ERRIE_Field := 16#0#;
-- unspecified
Reserved_11_11 : STM32.Bit := 16#0#;
-- End of operation interrupt enable
EOPIE : CR_EOPIE_Field := 16#0#;
-- unspecified
Reserved_13_31 : STM32.UInt19 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CR_Register use record
PG at 0 range 0 .. 0;
PER at 0 range 1 .. 1;
MER at 0 range 2 .. 2;
Reserved_3_3 at 0 range 3 .. 3;
OPTPG at 0 range 4 .. 4;
OPTER at 0 range 5 .. 5;
STRT at 0 range 6 .. 6;
LOCK at 0 range 7 .. 7;
Reserved_8_8 at 0 range 8 .. 8;
OPTWRE at 0 range 9 .. 9;
ERRIE at 0 range 10 .. 10;
Reserved_11_11 at 0 range 11 .. 11;
EOPIE at 0 range 12 .. 12;
Reserved_13_31 at 0 range 13 .. 31;
end record;
------------------
-- OBR_Register --
------------------
subtype OBR_OPTERR_Field is STM32.Bit;
subtype OBR_RDPRT_Field is STM32.Bit;
subtype OBR_WDG_SW_Field is STM32.Bit;
subtype OBR_nRST_STOP_Field is STM32.Bit;
subtype OBR_nRST_STDBY_Field is STM32.Bit;
--------------
-- OBR.Data --
--------------
-- OBR_Data array element
subtype OBR_Data_Element is STM32.Byte;
-- OBR_Data array
type OBR_Data_Field_Array is array (0 .. 1) of OBR_Data_Element
with Component_Size => 8, Size => 16;
-- Type definition for OBR_Data
type OBR_Data_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- Data as a value
Val : STM32.Short;
when True =>
-- Data as an array
Arr : OBR_Data_Field_Array;
end case;
end record
with Unchecked_Union, Size => 16;
for OBR_Data_Field use record
Val at 0 range 0 .. 15;
Arr at 0 range 0 .. 15;
end record;
-- Option byte register
type OBR_Register is record
-- Read-only. Option byte error
OPTERR : OBR_OPTERR_Field;
-- Read-only. Read protection
RDPRT : OBR_RDPRT_Field;
-- Read-only. WDG_SW
WDG_SW : OBR_WDG_SW_Field;
-- Read-only. nRST_STOP
nRST_STOP : OBR_nRST_STOP_Field;
-- Read-only. nRST_STDBY
nRST_STDBY : OBR_nRST_STDBY_Field;
-- unspecified
Reserved_5_9 : STM32.UInt5;
-- Read-only. Data0
Data : OBR_Data_Field;
-- unspecified
Reserved_26_31 : STM32.UInt6;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for OBR_Register use record
OPTERR at 0 range 0 .. 0;
RDPRT at 0 range 1 .. 1;
WDG_SW at 0 range 2 .. 2;
nRST_STOP at 0 range 3 .. 3;
nRST_STDBY at 0 range 4 .. 4;
Reserved_5_9 at 0 range 5 .. 9;
Data at 0 range 10 .. 25;
Reserved_26_31 at 0 range 26 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- FLASH
type FLASH_Peripheral is record
-- Flash access control register
ACR : ACR_Register;
-- Flash key register
KEYR : STM32.Word;
-- Flash option key register
OPTKEYR : STM32.Word;
-- Status register
SR : SR_Register;
-- Control register
CR : CR_Register;
-- Flash address register
AR : STM32.Word;
-- Option byte register
OBR : OBR_Register;
-- Write protection register
WRPR : STM32.Word;
end record
with Volatile;
for FLASH_Peripheral use record
ACR at 0 range 0 .. 31;
KEYR at 4 range 0 .. 31;
OPTKEYR at 8 range 0 .. 31;
SR at 12 range 0 .. 31;
CR at 16 range 0 .. 31;
AR at 20 range 0 .. 31;
OBR at 28 range 0 .. 31;
WRPR at 32 range 0 .. 31;
end record;
-- FLASH
FLASH_Periph : aliased FLASH_Peripheral
with Import, Address => FLASH_Base;
end STM32.FLASH;
|
------------------------------------------------------------------------------
-- --
-- Internet Protocol Suite Package --
-- --
-- ------------------------------------------------------------------------ --
-- --
-- Copyright (C) 2020, ANNEXI-STRAYLINE Trans-Human Ltd. --
-- All rights reserved. --
-- --
-- Original Contributors: --
-- * Richard Wai (ANNEXI-STRAYLINE) --
-- --
-- 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 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 --
-- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT --
-- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, --
-- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY --
-- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT --
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE --
-- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
with Ada.Streams; use Ada.Streams;
with INET.IP;
private with Interfaces.C;
private with INET.Internal.UNIX_Sockets;
package INET.TCP is
TCP_Timeout : exception;
TCP_Lookup_Failed : exception;
TCP_Buffer_Full : exception;
TCP_Connection_Reset : exception;
TCP_Connection_Refused : exception;
TCP_Host_Unreachable : exception;
TCP_Net_Unreachable : exception;
TCP_System_Error : exception;
TCP_Bind_Unauthorized : exception;
TCP_Bind_Occupied : exception;
TCP_Listener_Not_Bound : exception;
type TCP_Port is range 0 .. 2**16 - 1;
-- IETF RFC 793/STD 7, Section 3.1
--------------------
-- TCP_Connection --
--------------------
type TCP_Connection is limited new Root_Stream_Type with private;
-- TCP_Connection objects are NOT task-safe.
-- Stream Properties --
-----------------------
overriding
procedure Read (Stream: in out TCP_Connection;
Item : out Stream_Element_Array;
Last : out Stream_Element_Offset);
-- Read attempts to read the entire Item buffer from the connection. If
-- an error occurs, an exception is propegated any any partially read data
-- is lost. This was done to provide more useful error information during
-- stream reads, since simply "ending the stream" by setting Last to less
-- than Item'Last would not give an indication as to what happened, and in
-- most cases the read data would be lost anyways in such a case.
procedure Read_Immediate (Stream: in out TCP_Connection;
Item : out Stream_Element_Array;
Last : out Stream_Element_Offset);
-- Attempts to receive as much of Item as is currently available in the
-- operating system's buffer.
--
-- Read_Immediate does not block, and does not raise any TCP_ series
-- exceptions.
overriding
procedure Write (Stream: in out TCP_Connection;
Item : in Stream_Element_Array);
-- If a timeout occurs due to Set_Read_Timeout being set, Write will raise
-- TCP_Timeout. It is possible that some of Item will have been transmitted.
procedure Write_Immediate (Stream: in out TCP_Connection;
Item : in Stream_Element_Array;
Last : out Stream_Element_Offset);
-- Attempts to write as much of Item as can be placed in the operating
-- system's buffer.
--
-- Write_Immediate does not block, and does not raise TCP_ series exceptions.
-- Connection Properties --
---------------------------
function Destination_Address (Connection: TCP_Connection)
return IP.IP_Address;
function Destination_Port (Connection: TCP_Connection)
return TCP_Port;
-- For accepted connections, these will be for the client
-- Timeout Properties --
------------------------
procedure Read_Timeout (Connection: in out TCP_Connection;
Timeout : in Duration);
procedure Read_Never_Timeout (Connection: in out TCP_Connection);
procedure Write_Timeout (Connection: in out TCP_Connection;
Timeout : in Duration);
procedure Write_Never_Timeout (Connection: in out TCP_Connection);
-- This setting is specific to the TCP_Connection object, and persists
-- across connections.
--
-- If Read/Write_Timeout are set to 0.0, calls to Read/Write will be
-- equivalent to Read/Write_Immediate. For Ada stream 'Read invocations,
-- this means that insufficient data will result in an End_Error exception,
-- and the data will be lost. In the case of 'Write invocations, a
-- TCP_Buffer_Full exception is explicitly raised if the write was not
-- completed.
--
-- The internal implementation of TCP_Connection timeouts is designed to be
-- resistent to "Slowloris" attacks, particularily when reading Strings or
-- to simple buffers directly. The timeout is absolute for each call to Read
-- resp Write. The timer is NOT reset upon receipt of data, but instead sets
-- a bound to the total duration of a Read resp Write operation.
-- Connection_Management --
---------------------------
procedure Connect (Connection: in out TCP_Connection;
Address : in IP.IP_Address;
Port : in TCP_Port);
procedure Connect (Connection: in out TCP_Connection;
Host_Name : in String;
Port : in TCP_Port)
with Pre'Class => Host_Name'Length > 0;
procedure Connect (Connection : in out TCP_Connection;
Host_Name : in String;
Port : in TCP_Port;
Version : in IP.IP_Version)
with Pre'Class => Host_Name'Length > 0;
-- Attempts to connect a TCP_Connection object to the specified endpoint.
--
-- If Connection is already connected, Shutdown is invoked, and the
-- existing connection is destroyed. This happens regardless of the outcome
-- of the subsequent connection attempt.
--
-- When obtaining the address vi a Host_Name, if Version is specified,
-- only address of that IP version will be used to complete the connection.
-- Otherwise, the first address returned by the lookup is used.
--
-- If the connection fails, the appropriate TCP_ exception is raised.
procedure Shutdown (Connection: in out TCP_Connection);
procedure Shutdown_Read (Connection: in out TCP_Connection);
procedure Shutdown_Write (Connection: in out TCP_Connection);
-- See man page shutdown(2)
------------------
-- TCP_Listener --
------------------
type TCP_Listener (Queue_Size: Positive) is tagged limited private;
-- TCP_Listener objects ARE task-safe
--
-- Queue_Size is the number of connections that can be pending Dequeue
-- on the listener. This is often known as the "backlog".
function Is_Bound (Listener: TCP_Listener) return Boolean;
-- Returns True iff the Listener is currently bound to an address
-- or socket
procedure Bind (Listener: in out TCP_Listener;
Address : in IP.IP_Address;
Port : in TCP_Port)
with Pre'Class => not Listener.Is_Bound;
-- Attempts to bind a listener to the provided Address and Port.
--
-- The Bind Address determins the IP version of the listener, and thus
-- can only be executed once. A listener cannot be unbound.
--
-- -- All Possible Exceptions --
-- * Program_Error : Listener is already bound.
-- * TCP_Bind_Unauthorized: The operating system did not permit binding to
-- the specified address/port
-- * TCP_Bind_Occupied : A different listener is already bound to the
-- specified address/port
-- * TCP_System_Error : An unexpected error occured
procedure Dequeue (Listener : in out TCP_Listener;
Connection: in out TCP_Connection'Class)
with Pre'Class => Listener.Is_Bound;
function Dequeue (Listener: in out TCP_Listener) return TCP_Connection'Class
with Pre'Class => Listener.Is_Bound;
-- Waits for a connection to become available on Listener.
--
-- If the Precondition is not held, TCP_Listener_Not_Bound is raised,
-- otherwise, unexpected errors result in 1TCP_System_Error.
--
-- If Connection is already connected, Shutdown is invoked and the
-- connection is destroyed immediately on entry into Dequeue, before
-- waiting.
--
-- It might not be wise to have multiple tasks waiting on the Dequeue of a
-- single TCP_Listener. Due to the underlying system call, this should work
-- fine, but the behaviour might not be reliable. It is probably better to
-- dequeue from one task and then dispatch the connections to a queue of
-- form.
private
package UNIX_Sockets renames Internal.UNIX_Sockets;
use type UNIX_Sockets.Transport_Protocol;
type TCP_Connection is limited new Root_Stream_Type with
record
Socket : UNIX_Sockets.UNIX_Socket (UNIX_Sockets.TCP);
Destination_Address: IP.IP_Address;
Destination_Port : TCP_Port;
Read_Does_Timeout : Boolean := False;
Write_Does_Timeout: Boolean := False;
-- True means there is a timeout
Read_Timeout : Duration := 0.0;
Write_Timeout: Duration := 0.0;
-- A value of 0.0 when Read/Write_Does_Timeout is False means
-- that Read/Write are analogous to calls to Read/Write_Immediate
end record;
-- Some generic, TCP_Connection-specific implementations of Read/Write.
-- These are provided so that child extension packages, such as TLS, can
-- override Read/Write to use alternate calls for the actual read/write
-- operation, while re-using the code for polling and checking for timeout
generic
type Connection_Type is limited new TCP_Connection with private;
with procedure Connection_Receive_Immediate
(Connection: in out Connection_Type;
Buffer : out Stream_Element_Array;
Last : out Stream_Element_Offset;
Status : out UNIX_Sockets.Operation_Status;
Errno : out Interfaces.C.int);
procedure Generic_Read (Stream: in out Connection_Type;
Item : out Stream_Element_Array;
Last : out Stream_Element_Offset);
generic
type Connection_Type is limited new TCP_Connection with private;
with procedure Connection_Send_Immediate
(Connection: in out Connection_Type;
Buffer : in Stream_Element_Array;
Last : out Stream_Element_Offset;
Status : out UNIX_Sockets.Operation_Status;
Errno : out Interfaces.C.int);
procedure Generic_Write (Stream: in out Connection_Type;
Item : in Stream_Element_Array);
protected type Listener_Bound_Flag is
procedure Set_Bound;
function Is_Bound return Boolean;
private
Bound_Flag: Boolean := False;
end Listener_Bound_Flag;
type TCP_Listener (Queue_Size: Positive) is tagged limited
record
Bound_Flag: Listener_Bound_Flag;
Socket : UNIX_Sockets.UNIX_Socket (UNIX_Sockets.TCP);
end record;
end INET.TCP;
|
package Tkmrpc.Operation_Handlers.Cfg is
end Tkmrpc.Operation_Handlers.Cfg;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S E M _ C A T --
-- --
-- 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. --
-- --
------------------------------------------------------------------------------
with Atree; use Atree;
with Debug; use Debug;
with Einfo; use Einfo;
with Elists; use Elists;
with Errout; use Errout;
with Exp_Disp; use Exp_Disp;
with Fname; use Fname;
with Lib; use Lib;
with Namet; use Namet;
with Nlists; use Nlists;
with Opt; use Opt;
with Sem; use Sem;
with Sem_Attr; use Sem_Attr;
with Sem_Aux; use Sem_Aux;
with Sem_Dist; use Sem_Dist;
with Sem_Eval; use Sem_Eval;
with Sem_Util; use Sem_Util;
with Sinfo; use Sinfo;
with Snames; use Snames;
with Stand; use Stand;
package body Sem_Cat is
-----------------------
-- Local Subprograms --
-----------------------
procedure Check_Categorization_Dependencies
(Unit_Entity : Entity_Id;
Depended_Entity : Entity_Id;
Info_Node : Node_Id;
Is_Subunit : Boolean);
-- This procedure checks that the categorization of a lib unit and that
-- of the depended unit satisfy dependency restrictions.
-- The depended_entity can be the entity in a with_clause item, in which
-- case Info_Node denotes that item. The depended_entity can also be the
-- parent unit of a child unit, in which case Info_Node is the declaration
-- of the child unit. The error message is posted on Info_Node, and is
-- specialized if Is_Subunit is true.
procedure Check_Non_Static_Default_Expr
(Type_Def : Node_Id;
Obj_Decl : Node_Id);
-- Iterate through the component list of a record definition, check
-- that no component is declared with a nonstatic default value.
-- If a nonstatic default exists, report an error on Obj_Decl.
function Has_Read_Write_Attributes (E : Entity_Id) return Boolean;
-- Return True if entity has attribute definition clauses for Read and
-- Write attributes that are visible at some place.
function Is_Non_Remote_Access_Type (E : Entity_Id) return Boolean;
-- Returns true if the entity is a type whose full view is a non-remote
-- access type, for the purpose of enforcing E.2.2(8) rules.
function Has_Non_Remote_Access (Typ : Entity_Id) return Boolean;
-- Return true if Typ or the type of any of its subcomponents is a non
-- remote access type and doesn't have user-defined stream attributes.
function No_External_Streaming (E : Entity_Id) return Boolean;
-- Return True if the entity or one of its subcomponents does not support
-- external streaming.
function In_RCI_Declaration return Boolean;
function In_RT_Declaration return Boolean;
-- Determine if current scope is within the declaration of a Remote Call
-- Interface or Remote Types unit, for semantic checking purposes.
function In_Package_Declaration return Boolean;
-- Shared supporting routine for In_RCI_Declaration and In_RT_Declaration
function In_Shared_Passive_Unit return Boolean;
-- Determines if current scope is within a Shared Passive compilation unit
function Static_Discriminant_Expr (L : List_Id) return Boolean;
-- Iterate through the list of discriminants to check if any of them
-- contains non-static default expression, which is a violation in
-- a preelaborated library unit.
procedure Validate_Remote_Access_Object_Type_Declaration (T : Entity_Id);
-- Check validity of declaration if RCI or RT unit. It should not contain
-- the declaration of an access-to-object type unless it is a general
-- access type that designates a class-wide limited private type. There are
-- also constraints about the primitive subprograms of the class-wide type.
-- RM E.2 (9, 13, 14)
procedure Validate_RACW_Primitive
(Subp : Entity_Id;
RACW : Entity_Id);
-- Check legality of the declaration of primitive Subp of the designated
-- type of the given RACW type.
---------------------------------------
-- Check_Categorization_Dependencies --
---------------------------------------
procedure Check_Categorization_Dependencies
(Unit_Entity : Entity_Id;
Depended_Entity : Entity_Id;
Info_Node : Node_Id;
Is_Subunit : Boolean)
is
N : constant Node_Id := Info_Node;
Err : Boolean;
-- Here we define an enumeration type to represent categorization types,
-- ordered so that a unit with a given categorization can only WITH
-- units with lower or equal categorization type.
type Categorization is
(Pure,
Shared_Passive,
Remote_Types,
Remote_Call_Interface,
Normal);
function Get_Categorization (E : Entity_Id) return Categorization;
-- Check categorization flags from entity, and return in the form
-- of the lowest value of the Categorization type that applies to E.
------------------------
-- Get_Categorization --
------------------------
function Get_Categorization (E : Entity_Id) return Categorization is
begin
-- Get the lowest categorization that corresponds to E. Note that
-- nothing prevents several (different) categorization pragmas
-- to apply to the same library unit, in which case the unit has
-- all associated categories, so we need to be careful here to
-- check pragmas in proper Categorization order in order to
-- return the lowest applicable value.
-- Ignore Pure specification if set by pragma Pure_Function
if Is_Pure (E)
and then not
(Has_Pragma_Pure_Function (E) and not Has_Pragma_Pure (E))
then
return Pure;
elsif Is_Shared_Passive (E) then
return Shared_Passive;
elsif Is_Remote_Types (E) then
return Remote_Types;
elsif Is_Remote_Call_Interface (E) then
return Remote_Call_Interface;
else
return Normal;
end if;
end Get_Categorization;
Unit_Category : Categorization;
With_Category : Categorization;
-- Start of processing for Check_Categorization_Dependencies
begin
-- Intrinsic subprograms are preelaborated, so do not impose any
-- categorization dependencies. Also, ignore categorization
-- dependencies when compilation switch -gnatdu is used.
if Is_Intrinsic_Subprogram (Depended_Entity) or else Debug_Flag_U then
return;
end if;
-- First check 10.2.1 (11/1) rules on preelaborate packages
if Is_Preelaborated (Unit_Entity)
and then not Is_Preelaborated (Depended_Entity)
and then not Is_Pure (Depended_Entity)
then
Err := True;
else
Err := False;
end if;
-- Check categorization rules of RM E.2(5)
Unit_Category := Get_Categorization (Unit_Entity);
With_Category := Get_Categorization (Depended_Entity);
if With_Category > Unit_Category then
-- Special case: Remote_Types and Remote_Call_Interface are allowed
-- to WITH anything in the package body, per (RM E.2(5)).
if (Unit_Category = Remote_Types
or else Unit_Category = Remote_Call_Interface)
and then In_Package_Body (Unit_Entity)
then
null;
-- Special case: Remote_Types and Remote_Call_Interface declarations
-- can depend on a preelaborated unit via a private with_clause, per
-- AI05-0206.
elsif (Unit_Category = Remote_Types
or else
Unit_Category = Remote_Call_Interface)
and then Nkind (N) = N_With_Clause
and then Private_Present (N)
and then Is_Preelaborated (Depended_Entity)
then
null;
-- All other cases, we do have an error
else
Err := True;
end if;
end if;
-- Here if we have an error
if Err then
-- These messages are warnings in GNAT mode or if the -gnateP switch
-- was set. Otherwise these are real errors for real illegalities.
-- The reason we suppress these errors in GNAT mode is that the run-
-- time has several instances of violations of the categorization
-- errors (e.g. Pure units withing Preelaborate units. All these
-- violations are harmless in the cases where we intend them, and
-- we suppress the warnings with Warnings (Off). In cases where we
-- do not intend the violation, warnings are errors in GNAT mode
-- anyway, so we will still get an error.
Error_Msg_Warn :=
Treat_Categorization_Errors_As_Warnings or GNAT_Mode;
-- Don't give error if main unit is not an internal unit, and the
-- unit generating the message is an internal unit. This is the
-- situation in which such messages would be ignored in any case,
-- so it is convenient not to generate them (since it causes
-- annoying interference with debugging).
if Is_Internal_File_Name (Unit_File_Name (Current_Sem_Unit))
and then not Is_Internal_File_Name (Unit_File_Name (Main_Unit))
then
return;
-- Dependence of Remote_Types or Remote_Call_Interface declaration
-- on a preelaborated unit with a normal with_clause.
elsif (Unit_Category = Remote_Types
or else
Unit_Category = Remote_Call_Interface)
and then Is_Preelaborated (Depended_Entity)
then
Error_Msg_NE
("<<must use private with clause for preelaborated unit& ",
N, Depended_Entity);
-- Subunit case
elsif Is_Subunit then
Error_Msg_NE
("<subunit cannot depend on& " &
"(parent has wrong categorization)", N, Depended_Entity);
-- Normal unit, not subunit
else
Error_Msg_NE
("<<cannot depend on& " &
"(wrong categorization)", N, Depended_Entity);
end if;
-- Add further explanation for Pure/Preelaborate common cases
if Unit_Category = Pure then
Error_Msg_NE
("\<<pure unit cannot depend on non-pure unit",
N, Depended_Entity);
elsif Is_Preelaborated (Unit_Entity)
and then not Is_Preelaborated (Depended_Entity)
and then not Is_Pure (Depended_Entity)
then
Error_Msg_NE
("\<<preelaborated unit cannot depend on "
& "non-preelaborated unit",
N, Depended_Entity);
end if;
end if;
end Check_Categorization_Dependencies;
-----------------------------------
-- Check_Non_Static_Default_Expr --
-----------------------------------
procedure Check_Non_Static_Default_Expr
(Type_Def : Node_Id;
Obj_Decl : Node_Id)
is
Recdef : Node_Id;
Component_Decl : Node_Id;
begin
if Nkind (Type_Def) = N_Derived_Type_Definition then
Recdef := Record_Extension_Part (Type_Def);
if No (Recdef) then
return;
end if;
else
Recdef := Type_Def;
end if;
-- Check that component declarations do not involve:
-- a. a non-static default expression, where the object is
-- declared to be default initialized.
-- b. a dynamic Itype (discriminants and constraints)
if Null_Present (Recdef) then
return;
else
Component_Decl := First (Component_Items (Component_List (Recdef)));
end if;
while Present (Component_Decl)
and then Nkind (Component_Decl) = N_Component_Declaration
loop
if Present (Expression (Component_Decl))
and then Nkind (Expression (Component_Decl)) /= N_Null
and then not Is_OK_Static_Expression (Expression (Component_Decl))
then
Error_Msg_Sloc := Sloc (Component_Decl);
Error_Msg_F
("object in preelaborated unit has non-static default#",
Obj_Decl);
-- Fix this later ???
-- elsif Has_Dynamic_Itype (Component_Decl) then
-- Error_Msg_N
-- ("dynamic type discriminant," &
-- " constraint in preelaborated unit",
-- Component_Decl);
end if;
Next (Component_Decl);
end loop;
end Check_Non_Static_Default_Expr;
---------------------------
-- Has_Non_Remote_Access --
---------------------------
function Has_Non_Remote_Access (Typ : Entity_Id) return Boolean is
Component : Entity_Id;
Comp_Type : Entity_Id;
U_Typ : constant Entity_Id := Underlying_Type (Typ);
begin
if No (U_Typ) then
return False;
elsif Has_Read_Write_Attributes (Typ)
or else Has_Read_Write_Attributes (U_Typ)
then
return False;
elsif Is_Non_Remote_Access_Type (U_Typ) then
return True;
end if;
if Is_Record_Type (U_Typ) then
Component := First_Entity (U_Typ);
while Present (Component) loop
if not Is_Tag (Component) then
Comp_Type := Etype (Component);
if Has_Non_Remote_Access (Comp_Type) then
return True;
end if;
end if;
Next_Entity (Component);
end loop;
elsif Is_Array_Type (U_Typ) then
return Has_Non_Remote_Access (Component_Type (U_Typ));
end if;
return False;
end Has_Non_Remote_Access;
-------------------------------
-- Has_Read_Write_Attributes --
-------------------------------
function Has_Read_Write_Attributes (E : Entity_Id) return Boolean is
begin
return True
and then Has_Stream_Attribute_Definition
(E, TSS_Stream_Read, At_Any_Place => True)
and then Has_Stream_Attribute_Definition
(E, TSS_Stream_Write, At_Any_Place => True);
end Has_Read_Write_Attributes;
-------------------------------------
-- Has_Stream_Attribute_Definition --
-------------------------------------
function Has_Stream_Attribute_Definition
(Typ : Entity_Id;
Nam : TSS_Name_Type;
At_Any_Place : Boolean := False) return Boolean
is
Rep_Item : Node_Id;
Real_Rep : Node_Id;
-- The stream operation may be specified by an attribute definition
-- clause in the source, or by an aspect that generates such an
-- attribute definition. For an aspect, the generated attribute
-- definition may be placed at the freeze point of the full view of
-- the type, but the aspect specification makes the operation visible
-- to a client wherever the partial view is visible.
begin
-- We start from the declaration node and then loop until the end of
-- the list until we find the requested attribute definition clause.
-- In Ada 2005 mode, clauses are ignored if they are not currently
-- visible (this is tested using the corresponding Entity, which is
-- inserted by the expander at the point where the clause occurs),
-- unless At_Any_Place is true.
Rep_Item := First_Rep_Item (Typ);
while Present (Rep_Item) loop
Real_Rep := Rep_Item;
-- If the representation item is an aspect specification, retrieve
-- the corresponding pragma or attribute definition.
if Nkind (Rep_Item) = N_Aspect_Specification then
Real_Rep := Aspect_Rep_Item (Rep_Item);
end if;
if Nkind (Real_Rep) = N_Attribute_Definition_Clause then
case Chars (Real_Rep) is
when Name_Read =>
exit when Nam = TSS_Stream_Read;
when Name_Write =>
exit when Nam = TSS_Stream_Write;
when Name_Input =>
exit when Nam = TSS_Stream_Input;
when Name_Output =>
exit when Nam = TSS_Stream_Output;
when others =>
null;
end case;
end if;
Next_Rep_Item (Rep_Item);
end loop;
-- If not found, and the type is derived from a private view, check
-- for a stream attribute inherited from parent. Any specified stream
-- attributes will be attached to the derived type's underlying type
-- rather the derived type entity itself (which is itself private).
if No (Rep_Item)
and then Is_Private_Type (Typ)
and then Is_Derived_Type (Typ)
and then Present (Full_View (Typ))
then
return Has_Stream_Attribute_Definition
(Underlying_Type (Typ), Nam, At_Any_Place);
-- Otherwise, if At_Any_Place is true, return True if the attribute is
-- available at any place; if it is false, return True only if the
-- attribute is currently visible.
else
return Present (Rep_Item)
and then (Ada_Version < Ada_2005
or else At_Any_Place
or else not Is_Hidden (Entity (Rep_Item)));
end if;
end Has_Stream_Attribute_Definition;
----------------------------
-- In_Package_Declaration --
----------------------------
function In_Package_Declaration return Boolean is
Unit_Kind : constant Node_Kind :=
Nkind (Unit (Cunit (Current_Sem_Unit)));
begin
-- There are no restrictions on the body of an RCI or RT unit
return Is_Package_Or_Generic_Package (Current_Scope)
and then Unit_Kind /= N_Package_Body
and then not In_Package_Body (Current_Scope)
and then not In_Instance;
end In_Package_Declaration;
---------------------------
-- In_Preelaborated_Unit --
---------------------------
function In_Preelaborated_Unit return Boolean is
Unit_Entity : Entity_Id := Current_Scope;
Unit_Kind : constant Node_Kind :=
Nkind (Unit (Cunit (Current_Sem_Unit)));
begin
-- If evaluating actuals for a child unit instantiation, then ignore
-- the preelaboration status of the parent; use the child instead.
if Is_Compilation_Unit (Unit_Entity)
and then Unit_Kind in N_Generic_Instantiation
and then not In_Same_Source_Unit (Unit_Entity,
Cunit (Current_Sem_Unit))
then
Unit_Entity := Cunit_Entity (Current_Sem_Unit);
end if;
-- There are no constraints on the body of Remote_Call_Interface or
-- Remote_Types packages.
return (Unit_Entity /= Standard_Standard)
and then (Is_Preelaborated (Unit_Entity)
or else Is_Pure (Unit_Entity)
or else Is_Shared_Passive (Unit_Entity)
or else
((Is_Remote_Types (Unit_Entity)
or else Is_Remote_Call_Interface (Unit_Entity))
and then Ekind (Unit_Entity) = E_Package
and then Unit_Kind /= N_Package_Body
and then not In_Package_Body (Unit_Entity)
and then not In_Instance));
end In_Preelaborated_Unit;
------------------
-- In_Pure_Unit --
------------------
function In_Pure_Unit return Boolean is
begin
return Is_Pure (Current_Scope);
end In_Pure_Unit;
------------------------
-- In_RCI_Declaration --
------------------------
function In_RCI_Declaration return Boolean is
begin
return Is_Remote_Call_Interface (Current_Scope)
and then In_Package_Declaration;
end In_RCI_Declaration;
-----------------------
-- In_RT_Declaration --
-----------------------
function In_RT_Declaration return Boolean is
begin
return Is_Remote_Types (Current_Scope) and then In_Package_Declaration;
end In_RT_Declaration;
----------------------------
-- In_Shared_Passive_Unit --
----------------------------
function In_Shared_Passive_Unit return Boolean is
Unit_Entity : constant Entity_Id := Current_Scope;
begin
return Is_Shared_Passive (Unit_Entity);
end In_Shared_Passive_Unit;
---------------------------------------
-- In_Subprogram_Task_Protected_Unit --
---------------------------------------
function In_Subprogram_Task_Protected_Unit return Boolean is
E : Entity_Id;
begin
-- The following is to verify that a declaration is inside
-- subprogram, generic subprogram, task unit, protected unit.
-- Used to validate if a lib. unit is Pure. RM 10.2.1(16).
-- Use scope chain to check successively outer scopes
E := Current_Scope;
loop
if Is_Subprogram_Or_Generic_Subprogram (E)
or else
Is_Concurrent_Type (E)
then
return True;
elsif E = Standard_Standard then
return False;
end if;
E := Scope (E);
end loop;
end In_Subprogram_Task_Protected_Unit;
-------------------------------
-- Is_Non_Remote_Access_Type --
-------------------------------
function Is_Non_Remote_Access_Type (E : Entity_Id) return Boolean is
U_E : constant Entity_Id := Underlying_Type (Base_Type (E));
-- Use full view of base type to handle subtypes properly.
begin
if No (U_E) then
-- This case arises for the case of a generic formal type, in which
-- case E.2.2(8) rules will be enforced at instantiation time.
return False;
end if;
return Is_Access_Type (U_E)
and then not Is_Remote_Access_To_Class_Wide_Type (U_E)
and then not Is_Remote_Access_To_Subprogram_Type (U_E);
end Is_Non_Remote_Access_Type;
---------------------------
-- No_External_Streaming --
---------------------------
function No_External_Streaming (E : Entity_Id) return Boolean is
U_E : constant Entity_Id := Underlying_Type (E);
begin
if No (U_E) then
return False;
elsif Has_Read_Write_Attributes (E) then
-- Note: availability of stream attributes is tested on E, not U_E.
-- There may be stream attributes defined on U_E that are not visible
-- at the place where support of external streaming is tested.
return False;
elsif Has_Non_Remote_Access (U_E) then
return True;
end if;
return Is_Limited_Type (E);
end No_External_Streaming;
-------------------------------------
-- Set_Categorization_From_Pragmas --
-------------------------------------
procedure Set_Categorization_From_Pragmas (N : Node_Id) is
P : constant Node_Id := Parent (N);
S : constant Entity_Id := Current_Scope;
procedure Set_Parents (Visibility : Boolean);
-- If this is a child instance, the parents are not immediately
-- visible during analysis. Make them momentarily visible so that
-- the argument of the pragma can be resolved properly, and reset
-- afterwards.
-----------------
-- Set_Parents --
-----------------
procedure Set_Parents (Visibility : Boolean) is
Par : Entity_Id;
begin
Par := Scope (S);
while Present (Par) and then Par /= Standard_Standard loop
Set_Is_Immediately_Visible (Par, Visibility);
Par := Scope (Par);
end loop;
end Set_Parents;
-- Start of processing for Set_Categorization_From_Pragmas
begin
-- Deal with categorization pragmas in Pragmas of Compilation_Unit.
-- The purpose is to set categorization flags before analyzing the
-- unit itself, so as to diagnose violations of categorization as
-- we process each declaration, even though the pragma appears after
-- the unit.
if Nkind (P) /= N_Compilation_Unit then
return;
end if;
declare
PN : Node_Id;
begin
if Is_Child_Unit (S) and then Is_Generic_Instance (S) then
Set_Parents (True);
end if;
PN := First (Pragmas_After (Aux_Decls_Node (P)));
while Present (PN) loop
-- Skip implicit types that may have been introduced by
-- previous analysis.
if Nkind (PN) = N_Pragma then
case Get_Pragma_Id (PN) is
when Pragma_All_Calls_Remote
| Pragma_Preelaborate
| Pragma_Pure
| Pragma_Remote_Call_Interface
| Pragma_Remote_Types
| Pragma_Shared_Passive
=>
Analyze (PN);
when others =>
null;
end case;
end if;
Next (PN);
end loop;
if Is_Child_Unit (S) and then Is_Generic_Instance (S) then
Set_Parents (False);
end if;
end;
end Set_Categorization_From_Pragmas;
-----------------------------------
-- Set_Categorization_From_Scope --
-----------------------------------
procedure Set_Categorization_From_Scope (E : Entity_Id; Scop : Entity_Id) is
Declaration : Node_Id := Empty;
Specification : Node_Id := Empty;
begin
-- Do not modify the purity of an internally generated entity if it has
-- been explicitly marked as pure for optimization purposes.
if not Has_Pragma_Pure_Function (E) then
Set_Is_Pure
(E, Is_Pure (Scop) and then Is_Library_Level_Entity (E));
end if;
if not Is_Remote_Call_Interface (E) then
if Ekind (E) in Subprogram_Kind then
Declaration := Unit_Declaration_Node (E);
if Nkind_In (Declaration, N_Subprogram_Body,
N_Subprogram_Renaming_Declaration)
then
Specification := Corresponding_Spec (Declaration);
end if;
end if;
-- A subprogram body or renaming-as-body is a remote call interface
-- if it serves as the completion of a subprogram declaration that
-- is a remote call interface.
if Nkind (Specification) in N_Entity then
Set_Is_Remote_Call_Interface
(E, Is_Remote_Call_Interface (Specification));
-- A subprogram declaration is a remote call interface when it is
-- declared within the visible part of, or declared by, a library
-- unit declaration that is a remote call interface.
else
Set_Is_Remote_Call_Interface
(E, Is_Remote_Call_Interface (Scop)
and then not (In_Private_Part (Scop)
or else In_Package_Body (Scop)));
end if;
end if;
Set_Is_Remote_Types
(E, Is_Remote_Types (Scop)
and then not (In_Private_Part (Scop)
or else In_Package_Body (Scop)));
end Set_Categorization_From_Scope;
------------------------------
-- Static_Discriminant_Expr --
------------------------------
-- We need to accommodate a Why_Not_Static call somehow here ???
function Static_Discriminant_Expr (L : List_Id) return Boolean is
Discriminant_Spec : Node_Id;
begin
Discriminant_Spec := First (L);
while Present (Discriminant_Spec) loop
if Present (Expression (Discriminant_Spec))
and then
not Is_OK_Static_Expression (Expression (Discriminant_Spec))
then
return False;
end if;
Next (Discriminant_Spec);
end loop;
return True;
end Static_Discriminant_Expr;
--------------------------------------
-- Validate_Access_Type_Declaration --
--------------------------------------
procedure Validate_Access_Type_Declaration (T : Entity_Id; N : Node_Id) is
Def : constant Node_Id := Type_Definition (N);
begin
case Nkind (Def) is
-- Access to subprogram case
when N_Access_To_Subprogram_Definition =>
-- A pure library_item must not contain the declaration of a
-- named access type, except within a subprogram, generic
-- subprogram, task unit, or protected unit (RM 10.2.1(16)).
-- This test is skipped in Ada 2005 (see AI-366)
if Ada_Version < Ada_2005
and then Comes_From_Source (T)
and then In_Pure_Unit
and then not In_Subprogram_Task_Protected_Unit
then
Error_Msg_N ("named access type not allowed in pure unit", T);
end if;
-- Access to object case
when N_Access_To_Object_Definition =>
if Comes_From_Source (T)
and then In_Pure_Unit
and then not In_Subprogram_Task_Protected_Unit
then
-- We can't give the message yet, since the type is not frozen
-- and in Ada 2005 mode, access types are allowed in pure units
-- if the type has no storage pool (see AI-366). So we set a
-- flag which will be checked at freeze time.
Set_Is_Pure_Unit_Access_Type (T);
end if;
-- Check for RCI or RT unit type declaration: declaration of an
-- access-to-object type is illegal unless it is a general access
-- type that designates a class-wide limited private type.
-- Note that constraints on the primitive subprograms of the
-- designated tagged type are not enforced here but in
-- Validate_RACW_Primitives, which is done separately because the
-- designated type might not be frozen (and therefore its
-- primitive operations might not be completely known) at the
-- point of the RACW declaration.
Validate_Remote_Access_Object_Type_Declaration (T);
-- Check for shared passive unit type declaration. It should
-- not contain the declaration of access to class wide type,
-- access to task type and access to protected type with entry.
Validate_SP_Access_Object_Type_Decl (T);
when others =>
null;
end case;
-- Set categorization flag from package on entity as well, to allow
-- easy checks later on for required validations of RCI or RT units.
-- This is only done for entities that are in the original source.
if Comes_From_Source (T)
and then not (In_Package_Body (Scope (T))
or else In_Private_Part (Scope (T)))
then
Set_Is_Remote_Call_Interface
(T, Is_Remote_Call_Interface (Scope (T)));
Set_Is_Remote_Types
(T, Is_Remote_Types (Scope (T)));
end if;
end Validate_Access_Type_Declaration;
----------------------------
-- Validate_Ancestor_Part --
----------------------------
procedure Validate_Ancestor_Part (N : Node_Id) is
A : constant Node_Id := Ancestor_Part (N);
T : constant Entity_Id := Entity (A);
begin
if In_Preelaborated_Unit
and then not In_Subprogram_Or_Concurrent_Unit
and then (not Inside_A_Generic
or else Present (Enclosing_Generic_Body (N)))
then
-- If the type is private, it must have the Ada 2005 pragma
-- Has_Preelaborable_Initialization.
-- The check is omitted within predefined units. This is probably
-- obsolete code to fix the Ada 95 weakness in this area ???
if Is_Private_Type (T)
and then not Has_Pragma_Preelab_Init (T)
and then not Is_Internal_File_Name
(Unit_File_Name (Get_Source_Unit (N)))
then
Error_Msg_N
("private ancestor type not allowed in preelaborated unit", A);
elsif Is_Record_Type (T) then
if Nkind (Parent (T)) = N_Full_Type_Declaration then
Check_Non_Static_Default_Expr
(Type_Definition (Parent (T)), A);
end if;
end if;
end if;
end Validate_Ancestor_Part;
----------------------------------------
-- Validate_Categorization_Dependency --
----------------------------------------
procedure Validate_Categorization_Dependency
(N : Node_Id;
E : Entity_Id)
is
K : constant Node_Kind := Nkind (N);
P : Node_Id := Parent (N);
U : Entity_Id := E;
Is_Subunit : constant Boolean := Nkind (P) = N_Subunit;
begin
-- Only validate library units and subunits. For subunits, checks
-- concerning withed units apply to the parent compilation unit.
if Is_Subunit then
P := Parent (P);
U := Scope (E);
while Present (U)
and then not Is_Compilation_Unit (U)
and then not Is_Child_Unit (U)
loop
U := Scope (U);
end loop;
end if;
if Nkind (P) /= N_Compilation_Unit then
return;
end if;
-- Body of RCI unit does not need validation
if Is_Remote_Call_Interface (E)
and then Nkind_In (N, N_Package_Body, N_Subprogram_Body)
then
return;
end if;
-- Ada 2005 (AI-50217): Process explicit non-limited with_clauses
declare
Item : Node_Id;
Entity_Of_Withed : Entity_Id;
begin
Item := First (Context_Items (P));
while Present (Item) loop
if Nkind (Item) = N_With_Clause
and then
not (Implicit_With (Item)
or else Limited_Present (Item)
-- Skip if error already posted on the WITH clause (in
-- which case the Name attribute may be invalid). In
-- particular, this fixes the problem of hanging in the
-- presence of a WITH clause on a child that is an
-- illegal generic instantiation.
or else Error_Posted (Item))
and then
not (Try_Semantics
-- Skip processing malformed trees
and then Nkind (Name (Item)) not in N_Has_Entity)
then
Entity_Of_Withed := Entity (Name (Item));
Check_Categorization_Dependencies
(U, Entity_Of_Withed, Item, Is_Subunit);
end if;
Next (Item);
end loop;
end;
-- Child depends on parent; therefore parent should also be categorized
-- and satisfy the dependency hierarchy.
-- Check if N is a child spec
if (K in N_Generic_Declaration or else
K in N_Generic_Instantiation or else
K in N_Generic_Renaming_Declaration or else
K = N_Package_Declaration or else
K = N_Package_Renaming_Declaration or else
K = N_Subprogram_Declaration or else
K = N_Subprogram_Renaming_Declaration)
and then Present (Parent_Spec (N))
then
Check_Categorization_Dependencies (E, Scope (E), N, False);
-- Verify that public child of an RCI library unit must also be an
-- RCI library unit (RM E.2.3(15)).
if Is_Remote_Call_Interface (Scope (E))
and then not Private_Present (P)
and then not Is_Remote_Call_Interface (E)
then
Error_Msg_N ("public child of rci unit must also be rci unit", N);
end if;
end if;
end Validate_Categorization_Dependency;
--------------------------------
-- Validate_Controlled_Object --
--------------------------------
procedure Validate_Controlled_Object (E : Entity_Id) is
begin
-- Don't need this check in Ada 2005 mode, where this is all taken
-- care of by the mechanism for Preelaborable Initialization.
if Ada_Version >= Ada_2005 then
return;
end if;
-- For now, never apply this check for internal GNAT units, since we
-- have a number of cases in the library where we are stuck with objects
-- of this type, and the RM requires Preelaborate.
-- For similar reasons, we only do this check for source entities, since
-- we generate entities of this type in some situations.
-- Note that the 10.2.1(9) restrictions are not relevant to us anyway.
-- We have to enforce them for RM compatibility, but we have no trouble
-- accepting these objects and doing the right thing. Note that there is
-- no requirement that Preelaborate not actually generate any code.
if In_Preelaborated_Unit
and then not Debug_Flag_PP
and then Comes_From_Source (E)
and then not
Is_Internal_File_Name (Unit_File_Name (Get_Source_Unit (E)))
and then (not Inside_A_Generic
or else Present (Enclosing_Generic_Body (E)))
and then not Is_Protected_Type (Etype (E))
then
Error_Msg_N
("library level controlled object not allowed in " &
"preelaborated unit", E);
end if;
end Validate_Controlled_Object;
--------------------------------------
-- Validate_Null_Statement_Sequence --
--------------------------------------
procedure Validate_Null_Statement_Sequence (N : Node_Id) is
Item : Node_Id;
begin
if In_Preelaborated_Unit then
Item := First (Statements (Handled_Statement_Sequence (N)));
while Present (Item) loop
if Nkind (Item) /= N_Label
and then Nkind (Item) /= N_Null_Statement
then
-- In GNAT mode, this is a warning, allowing the run-time
-- to judiciously bypass this error condition.
Error_Msg_Warn := GNAT_Mode;
Error_Msg_N
("<<statements not allowed in preelaborated unit", Item);
exit;
end if;
Next (Item);
end loop;
end if;
end Validate_Null_Statement_Sequence;
---------------------------------
-- Validate_Object_Declaration --
---------------------------------
procedure Validate_Object_Declaration (N : Node_Id) is
Id : constant Entity_Id := Defining_Identifier (N);
E : constant Node_Id := Expression (N);
Odf : constant Node_Id := Object_Definition (N);
T : constant Entity_Id := Etype (Id);
begin
-- Verify that any access to subprogram object does not have in its
-- subprogram profile access type parameters or limited parameters
-- without Read and Write attributes (E.2.3(13)).
Validate_RCI_Subprogram_Declaration (N);
-- Check that if we are in preelaborated elaboration code, then we
-- do not have an instance of a default initialized private, task or
-- protected object declaration which would violate (RM 10.2.1(9)).
-- Note that constants are never default initialized (and the test
-- below also filters out deferred constants). A variable is default
-- initialized if it does *not* have an initialization expression.
-- Filter out cases that are not declaration of a variable from source
if Nkind (N) /= N_Object_Declaration
or else Constant_Present (N)
or else not Comes_From_Source (Id)
then
return;
end if;
-- Exclude generic specs from the checks (this will get rechecked
-- on instantiations).
if Inside_A_Generic and then No (Enclosing_Generic_Body (Id)) then
return;
end if;
-- Required checks for declaration that is in a preelaborated package
-- and is not within some subprogram.
if In_Preelaborated_Unit
and then not In_Subprogram_Or_Concurrent_Unit
then
-- Check for default initialized variable case. Note that in
-- accordance with (RM B.1(24)) imported objects are not subject to
-- default initialization.
-- If the initialization does not come from source and is an
-- aggregate, it is a static initialization that replaces an
-- implicit call, and must be treated as such.
if Present (E)
and then (Comes_From_Source (E) or else Nkind (E) /= N_Aggregate)
then
null;
elsif Is_Imported (Id) then
null;
else
declare
Ent : Entity_Id := T;
begin
-- An array whose component type is a record with nonstatic
-- default expressions is a violation, so we get the array's
-- component type.
if Is_Array_Type (Ent) then
declare
Comp_Type : Entity_Id;
begin
Comp_Type := Component_Type (Ent);
while Is_Array_Type (Comp_Type) loop
Comp_Type := Component_Type (Comp_Type);
end loop;
Ent := Comp_Type;
end;
end if;
-- Object decl. that is of record type and has no default expr.
-- should check if there is any non-static default expression
-- in component decl. of the record type decl.
if Is_Record_Type (Ent) then
if Nkind (Parent (Ent)) = N_Full_Type_Declaration then
Check_Non_Static_Default_Expr
(Type_Definition (Parent (Ent)), N);
elsif Nkind (Odf) = N_Subtype_Indication
and then not Is_Array_Type (T)
and then not Is_Private_Type (T)
then
Check_Non_Static_Default_Expr (Type_Definition
(Parent (Entity (Subtype_Mark (Odf)))), N);
end if;
end if;
-- Check for invalid use of private object. Note that Ada 2005
-- AI-161 modifies the rules for Ada 2005, including the use of
-- the new pragma Preelaborable_Initialization.
if Is_Private_Type (Ent)
or else Depends_On_Private (Ent)
then
-- Case where type has preelaborable initialization which
-- means that a pragma Preelaborable_Initialization was
-- given for the private type.
if Relaxed_RM_Semantics then
-- In relaxed mode, do not issue these messages, this
-- is basically similar to the GNAT_Mode test below.
null;
elsif Has_Preelaborable_Initialization (Ent) then
-- But for the predefined units, we will ignore this
-- status unless we are in Ada 2005 mode since we want
-- Ada 95 compatible behavior, in which the entities
-- marked with this pragma in the predefined library are
-- not treated specially.
if Ada_Version < Ada_2005 then
Error_Msg_N
("private object not allowed in preelaborated unit",
N);
Error_Msg_N ("\(would be legal in Ada 2005 mode)", N);
end if;
-- Type does not have preelaborable initialization
else
-- We allow this when compiling in GNAT mode to make life
-- easier for some cases where it would otherwise be hard
-- to be exactly valid Ada.
if not GNAT_Mode then
Error_Msg_N
("private object not allowed in preelaborated unit",
N);
-- Add a message if it would help to provide a pragma
-- Preelaborable_Initialization on the type of the
-- object (which would make it legal in Ada 2005).
-- If the type has no full view (generic type, or
-- previous error), the warning does not apply.
if Is_Private_Type (Ent)
and then Present (Full_View (Ent))
and then
Has_Preelaborable_Initialization (Full_View (Ent))
then
Error_Msg_Sloc := Sloc (Ent);
if Ada_Version >= Ada_2005 then
Error_Msg_NE
("\would be legal if pragma Preelaborable_" &
"Initialization given for & #", N, Ent);
else
Error_Msg_NE
("\would be legal in Ada 2005 if pragma " &
"Preelaborable_Initialization given for & #",
N, Ent);
end if;
end if;
end if;
end if;
-- Access to Task or Protected type
elsif Is_Entity_Name (Odf)
and then Present (Etype (Odf))
and then Is_Access_Type (Etype (Odf))
then
Ent := Designated_Type (Etype (Odf));
elsif Is_Entity_Name (Odf) then
Ent := Entity (Odf);
elsif Nkind (Odf) = N_Subtype_Indication then
Ent := Etype (Subtype_Mark (Odf));
elsif Nkind (Odf) = N_Constrained_Array_Definition then
Ent := Component_Type (T);
end if;
if Is_Task_Type (Ent)
or else (Is_Protected_Type (Ent) and then Has_Entries (Ent))
then
Error_Msg_N
("concurrent object not allowed in preelaborated unit",
N);
return;
end if;
end;
end if;
-- Non-static discriminants not allowed in preelaborated unit.
-- Objects of a controlled type with a user-defined Initialize
-- are forbidden as well.
if Is_Record_Type (Etype (Id)) then
declare
ET : constant Entity_Id := Etype (Id);
EE : constant Entity_Id := Etype (Etype (Id));
PEE : Node_Id;
begin
if Has_Discriminants (ET) and then Present (EE) then
PEE := Parent (EE);
if Nkind (PEE) = N_Full_Type_Declaration
and then not Static_Discriminant_Expr
(Discriminant_Specifications (PEE))
then
Error_Msg_N
("non-static discriminant in preelaborated unit",
PEE);
end if;
end if;
-- For controlled type or type with controlled component, check
-- preelaboration flag, as there may be a non-null Initialize
-- primitive. For language versions earlier than Ada 2005,
-- there is no notion of preelaborable initialization, and
-- Validate_Controlled_Object is used to enforce rules for
-- controlled objects.
if (Is_Controlled (ET) or else Has_Controlled_Component (ET))
and then Ada_Version >= Ada_2005
and then not Has_Preelaborable_Initialization (ET)
then
Error_Msg_NE
("controlled type& does not have"
& " preelaborable initialization", N, ET);
end if;
end;
end if;
end if;
-- A pure library_item must not contain the declaration of any variable
-- except within a subprogram, generic subprogram, task unit, or
-- protected unit (RM 10.2.1(16)).
if In_Pure_Unit and then not In_Subprogram_Task_Protected_Unit then
Error_Msg_N ("declaration of variable not allowed in pure unit", N);
elsif not In_Private_Part (Id) then
-- The visible part of an RCI library unit must not contain the
-- declaration of a variable (RM E.1.3(9)).
if In_RCI_Declaration then
Error_Msg_N ("visible variable not allowed in 'R'C'I unit", N);
-- The visible part of a Shared Passive library unit must not contain
-- the declaration of a variable (RM E.2.2(7)).
elsif In_RT_Declaration then
Error_Msg_N
("visible variable not allowed in remote types unit", N);
end if;
end if;
end Validate_Object_Declaration;
-----------------------------
-- Validate_RACW_Primitive --
-----------------------------
procedure Validate_RACW_Primitive
(Subp : Entity_Id;
RACW : Entity_Id)
is
procedure Illegal_Remote_Subp (Msg : String; N : Node_Id);
-- Diagnose illegality on N. If RACW is present, report the error on it
-- rather than on N.
-------------------------
-- Illegal_Remote_Subp --
-------------------------
procedure Illegal_Remote_Subp (Msg : String; N : Node_Id) is
begin
if Present (RACW) then
if not Error_Posted (RACW) then
Error_Msg_N
("illegal remote access to class-wide type&", RACW);
end if;
Error_Msg_Sloc := Sloc (N);
Error_Msg_NE ("\\" & Msg & " in primitive& #", RACW, Subp);
else
Error_Msg_NE (Msg & " in remote subprogram&", N, Subp);
end if;
end Illegal_Remote_Subp;
Rtyp : Entity_Id;
Param : Node_Id;
Param_Spec : Node_Id;
Param_Type : Entity_Id;
-- Start of processing for Validate_RACW_Primitive
begin
-- Check return type
if Ekind (Subp) = E_Function then
Rtyp := Etype (Subp);
-- AI05-0101 (Binding Interpretation): The result type of a remote
-- function must either support external streaming or be a
-- controlling access result type.
if Has_Controlling_Result (Subp) then
null;
elsif Ekind (Rtyp) = E_Anonymous_Access_Type then
Illegal_Remote_Subp ("anonymous access result", Rtyp);
elsif Is_Limited_Type (Rtyp) then
if No (TSS (Rtyp, TSS_Stream_Read))
or else
No (TSS (Rtyp, TSS_Stream_Write))
then
Illegal_Remote_Subp
("limited return type must have Read and Write attributes",
Parent (Subp));
Explain_Limited_Type (Rtyp, Parent (Subp));
end if;
-- Check that the return type supports external streaming
elsif No_External_Streaming (Rtyp)
and then not Error_Posted (Rtyp)
then
Illegal_Remote_Subp ("return type containing non-remote access "
& "must have Read and Write attributes",
Parent (Subp));
end if;
end if;
Param := First_Formal (Subp);
while Present (Param) loop
-- Now find out if this parameter is a controlling parameter
Param_Spec := Parent (Param);
Param_Type := Etype (Param);
if Is_Controlling_Formal (Param) then
-- It is a controlling parameter, so specific checks below do not
-- apply.
null;
elsif Ekind_In (Param_Type, E_Anonymous_Access_Type,
E_Anonymous_Access_Subprogram_Type)
then
-- From RM E.2.2(14), no anonymous access parameter other than
-- controlling ones may be used (because an anonymous access
-- type never supports external streaming).
Illegal_Remote_Subp
("non-controlling access parameter", Param_Spec);
elsif No_External_Streaming (Param_Type)
and then not Error_Posted (Param_Type)
then
Illegal_Remote_Subp ("formal parameter in remote subprogram must "
& "support external streaming", Param_Spec);
end if;
-- Check next parameter in this subprogram
Next_Formal (Param);
end loop;
end Validate_RACW_Primitive;
------------------------------
-- Validate_RACW_Primitives --
------------------------------
procedure Validate_RACW_Primitives (T : Entity_Id) is
Desig_Type : Entity_Id;
Primitive_Subprograms : Elist_Id;
Subprogram_Elmt : Elmt_Id;
Subprogram : Entity_Id;
begin
Desig_Type := Etype (Designated_Type (T));
-- No action needed for concurrent types
if Is_Concurrent_Type (Desig_Type) then
return;
end if;
Primitive_Subprograms := Primitive_Operations (Desig_Type);
Subprogram_Elmt := First_Elmt (Primitive_Subprograms);
while Subprogram_Elmt /= No_Elmt loop
Subprogram := Node (Subprogram_Elmt);
if Is_Predefined_Dispatching_Operation (Subprogram)
or else Is_Hidden (Subprogram)
then
goto Next_Subprogram;
end if;
Validate_RACW_Primitive (Subp => Subprogram, RACW => T);
<<Next_Subprogram>>
Next_Elmt (Subprogram_Elmt);
end loop;
end Validate_RACW_Primitives;
-------------------------------
-- Validate_RCI_Declarations --
-------------------------------
procedure Validate_RCI_Declarations (P : Entity_Id) is
E : Entity_Id;
begin
E := First_Entity (P);
while Present (E) loop
if Comes_From_Source (E) then
if Is_Limited_Type (E) then
Error_Msg_N
("limited type not allowed in rci unit", Parent (E));
Explain_Limited_Type (E, Parent (E));
elsif Ekind_In (E, E_Generic_Function,
E_Generic_Package,
E_Generic_Procedure)
then
Error_Msg_N ("generic declaration not allowed in rci unit",
Parent (E));
elsif (Ekind (E) = E_Function or else Ekind (E) = E_Procedure)
and then Has_Pragma_Inline (E)
then
Error_Msg_N
("inlined subprogram not allowed in rci unit", Parent (E));
-- Inner packages that are renamings need not be checked. Generic
-- RCI packages are subject to the checks, but entities that come
-- from formal packages are not part of the visible declarations
-- of the package and are not checked.
elsif Ekind (E) = E_Package then
if Present (Renamed_Entity (E)) then
null;
elsif Ekind (P) /= E_Generic_Package
or else List_Containing (Unit_Declaration_Node (E)) /=
Generic_Formal_Declarations
(Unit_Declaration_Node (P))
then
Validate_RCI_Declarations (E);
end if;
end if;
end if;
Next_Entity (E);
end loop;
end Validate_RCI_Declarations;
-----------------------------------------
-- Validate_RCI_Subprogram_Declaration --
-----------------------------------------
procedure Validate_RCI_Subprogram_Declaration (N : Node_Id) is
K : constant Node_Kind := Nkind (N);
Profile : List_Id;
Id : constant Entity_Id := Defining_Entity (N);
Param_Spec : Node_Id;
Param_Type : Entity_Id;
Error_Node : Node_Id := N;
begin
-- This procedure enforces rules on subprogram and access to subprogram
-- declarations in RCI units. These rules do not apply to expander
-- generated routines, which are not remote subprograms. It is called:
-- 1. from Analyze_Subprogram_Declaration.
-- 2. from Validate_Object_Declaration (access to subprogram).
if not (Comes_From_Source (N)
and then In_RCI_Declaration
and then not In_Private_Part (Scope (Id)))
then
return;
end if;
if K = N_Subprogram_Declaration then
Profile := Parameter_Specifications (Specification (N));
else
pragma Assert (K = N_Object_Declaration);
-- The above assertion is dubious, the visible declarations of an
-- RCI unit never contain an object declaration, this should be an
-- ACCESS-to-object declaration???
if Nkind (Id) = N_Defining_Identifier
and then Nkind (Parent (Etype (Id))) = N_Full_Type_Declaration
and then Ekind (Etype (Id)) = E_Access_Subprogram_Type
then
Profile :=
Parameter_Specifications (Type_Definition (Parent (Etype (Id))));
else
return;
end if;
end if;
-- Iterate through the parameter specification list, checking that
-- no access parameter and no limited type parameter in the list.
-- RM E.2.3(14).
if Present (Profile) then
Param_Spec := First (Profile);
while Present (Param_Spec) loop
Param_Type := Etype (Defining_Identifier (Param_Spec));
if Ekind (Param_Type) = E_Anonymous_Access_Type then
if K = N_Subprogram_Declaration then
Error_Node := Param_Spec;
end if;
-- Report error only if declaration is in source program
if Comes_From_Source (Id) then
Error_Msg_N
("subprogram in 'R'C'I unit cannot have access parameter",
Error_Node);
end if;
-- For a limited private type parameter, we check only the private
-- declaration and ignore full type declaration, unless this is
-- the only declaration for the type, e.g., as a limited record.
elsif No_External_Streaming (Param_Type) then
if K = N_Subprogram_Declaration then
Error_Node := Param_Spec;
end if;
Error_Msg_NE
("formal of remote subprogram& "
& "must support external streaming",
Error_Node, Id);
if Is_Limited_Type (Param_Type) then
Explain_Limited_Type (Param_Type, Error_Node);
end if;
end if;
Next (Param_Spec);
end loop;
end if;
if Ekind (Id) = E_Function
and then Ekind (Etype (Id)) = E_Anonymous_Access_Type
and then Comes_From_Source (Id)
then
Error_Msg_N
("function in 'R'C'I unit cannot have access result",
Error_Node);
end if;
end Validate_RCI_Subprogram_Declaration;
----------------------------------------------------
-- Validate_Remote_Access_Object_Type_Declaration --
----------------------------------------------------
procedure Validate_Remote_Access_Object_Type_Declaration (T : Entity_Id) is
Direct_Designated_Type : Entity_Id;
Desig_Type : Entity_Id;
begin
-- We are called from Analyze_Full_Type_Declaration, and the Nkind of
-- the given node is N_Access_To_Object_Definition.
if not Comes_From_Source (T)
or else (not In_RCI_Declaration and then not In_RT_Declaration)
then
return;
end if;
-- An access definition in the private part of a package is not a
-- remote access type. Restrictions related to external streaming
-- support for non-remote access types are enforced elsewhere. Note
-- that In_Private_Part is never set on type entities: check flag
-- on enclosing scope.
if In_Private_Part (Scope (T)) then
return;
end if;
-- Check RCI or RT unit type declaration. It may not contain the
-- declaration of an access-to-object type unless it is a general access
-- type that designates a class-wide limited private type or subtype.
-- There are also constraints on the primitive subprograms of the
-- class-wide type (RM E.2.2(14), see Validate_RACW_Primitives).
if Ekind (T) /= E_General_Access_Type
or else not Is_Class_Wide_Type (Designated_Type (T))
then
if In_RCI_Declaration then
Error_Msg_N
("error in access type in Remote_Call_Interface unit", T);
else
Error_Msg_N
("error in access type in Remote_Types unit", T);
end if;
Error_Msg_N ("\must be general access to class-wide type", T);
return;
end if;
Direct_Designated_Type := Designated_Type (T);
Desig_Type := Etype (Direct_Designated_Type);
-- Why is this check not in Validate_Remote_Access_To_Class_Wide_Type???
if not Is_Valid_Remote_Object_Type (Desig_Type) then
Error_Msg_N
("error in designated type of remote access to class-wide type", T);
Error_Msg_N
("\must be tagged limited private or private extension", T);
return;
end if;
end Validate_Remote_Access_Object_Type_Declaration;
-----------------------------------------------
-- Validate_Remote_Access_To_Class_Wide_Type --
-----------------------------------------------
procedure Validate_Remote_Access_To_Class_Wide_Type (N : Node_Id) is
K : constant Node_Kind := Nkind (N);
PK : constant Node_Kind := Nkind (Parent (N));
E : Entity_Id;
begin
-- This subprogram enforces the checks in (RM E.2.2(8)) for certain uses
-- of class-wide limited private types.
-- Storage_Pool and Storage_Size are not defined for such types
--
-- The expected type of allocator must not be such a type.
-- The actual parameter of generic instantiation must not be such a
-- type if the formal parameter is of an access type.
-- On entry, there are several cases:
-- 1. called from sem_attr Analyze_Attribute where attribute name is
-- either Storage_Pool or Storage_Size.
-- 2. called from exp_ch4 Expand_N_Allocator
-- 3. called from sem_ch4 Analyze_Explicit_Dereference
-- 4. called from sem_res Resolve_Actuals
if K = N_Attribute_Reference then
E := Etype (Prefix (N));
if Is_Remote_Access_To_Class_Wide_Type (E) then
Error_Msg_N ("incorrect attribute of remote operand", N);
return;
end if;
elsif K = N_Allocator then
E := Etype (N);
if Is_Remote_Access_To_Class_Wide_Type (E) then
Error_Msg_N ("incorrect expected remote type of allocator", N);
return;
end if;
-- This subprogram also enforces the checks in E.2.2(13). A value of
-- such type must not be dereferenced unless as controlling operand of
-- a dispatching call. Explicit dereferences not coming from source are
-- exempted from this checking because the expander produces them in
-- some cases (such as for tag checks on dispatching calls with multiple
-- controlling operands). However we do check in the case of an implicit
-- dereference that is expanded to an explicit dereference (hence the
-- test of whether Original_Node (N) comes from source).
elsif K = N_Explicit_Dereference
and then Comes_From_Source (Original_Node (N))
then
E := Etype (Prefix (N));
-- If the class-wide type is not a remote one, the restrictions
-- do not apply.
if not Is_Remote_Access_To_Class_Wide_Type (E) then
return;
end if;
-- If we have a true dereference that comes from source and that
-- is a controlling argument for a dispatching call, accept it.
if Is_Actual_Parameter (N) and then Is_Controlling_Actual (N) then
return;
end if;
-- If we are just within a procedure or function call and the
-- dereference has not been analyzed, return because this procedure
-- will be called again from sem_res Resolve_Actuals. The same can
-- apply in the case of dereference that is the prefix of a selected
-- component, which can be a call given in prefixed form.
if (Is_Actual_Parameter (N) or else PK = N_Selected_Component)
and then not Analyzed (N)
then
return;
end if;
-- We must allow expanded code to generate a reference to the tag of
-- the designated object (may be either the actual tag, or the stub
-- tag in the case of a remote object).
if PK = N_Selected_Component
and then Is_Tag (Entity (Selector_Name (Parent (N))))
then
return;
end if;
Error_Msg_N
("invalid dereference of a remote access-to-class-wide value", N);
end if;
end Validate_Remote_Access_To_Class_Wide_Type;
------------------------------------------
-- Validate_Remote_Type_Type_Conversion --
------------------------------------------
procedure Validate_Remote_Type_Type_Conversion (N : Node_Id) is
S : constant Entity_Id := Etype (N);
E : constant Entity_Id := Etype (Expression (N));
begin
-- This test is required in the case where a conversion appears inside a
-- normal package, it does not necessarily have to be inside an RCI,
-- Remote_Types unit (RM E.2.2(9,12)).
if Is_Remote_Access_To_Subprogram_Type (E)
and then not Is_Remote_Access_To_Subprogram_Type (S)
then
Error_Msg_N
("incorrect conversion of remote operand to local type", N);
return;
elsif not Is_Remote_Access_To_Subprogram_Type (E)
and then Is_Remote_Access_To_Subprogram_Type (S)
then
Error_Msg_N
("incorrect conversion of local operand to remote type", N);
return;
elsif Is_Remote_Access_To_Class_Wide_Type (E)
and then not Is_Remote_Access_To_Class_Wide_Type (S)
then
Error_Msg_N
("incorrect conversion of remote operand to local type", N);
return;
end if;
-- If a local access type is converted into a RACW type, then the
-- current unit has a pointer that may now be exported to another
-- partition.
if Is_Remote_Access_To_Class_Wide_Type (S)
and then not Is_Remote_Access_To_Class_Wide_Type (E)
then
Set_Has_RACW (Current_Sem_Unit);
end if;
end Validate_Remote_Type_Type_Conversion;
-------------------------------
-- Validate_RT_RAT_Component --
-------------------------------
procedure Validate_RT_RAT_Component (N : Node_Id) is
Spec : constant Node_Id := Specification (N);
Name_U : constant Entity_Id := Defining_Entity (Spec);
Typ : Entity_Id;
U_Typ : Entity_Id;
First_Priv_Ent : constant Entity_Id := First_Private_Entity (Name_U);
function Stream_Attributes_Available (Typ : Entity_Id) return Boolean;
-- True if any stream attribute is available for Typ
---------------------------------
-- Stream_Attributes_Available --
---------------------------------
function Stream_Attributes_Available (Typ : Entity_Id) return Boolean
is
begin
return Stream_Attribute_Available (Typ, TSS_Stream_Read)
or else
Stream_Attribute_Available (Typ, TSS_Stream_Write)
or else
Stream_Attribute_Available (Typ, TSS_Stream_Input)
or else
Stream_Attribute_Available (Typ, TSS_Stream_Output);
end Stream_Attributes_Available;
-- Start of processing for Validate_RT_RAT_Component
begin
if not Is_Remote_Types (Name_U) then
return;
end if;
Typ := First_Entity (Name_U);
while Present (Typ) and then Typ /= First_Priv_Ent loop
U_Typ := Underlying_Type (Base_Type (Typ));
if No (U_Typ) then
U_Typ := Typ;
end if;
if Comes_From_Source (Typ) and then Is_Type (Typ) then
-- Check that the type can be meaningfully transmitted to another
-- partition (E.2.2(8)).
if (Ada_Version < Ada_2005 and then Has_Non_Remote_Access (U_Typ))
or else (Stream_Attributes_Available (Typ)
and then No_External_Streaming (U_Typ))
then
if Is_Non_Remote_Access_Type (Typ) then
Error_Msg_N ("error in non-remote access type", U_Typ);
else
Error_Msg_N
("error in record type containing a component of a " &
"non-remote access type", U_Typ);
end if;
if Ada_Version >= Ada_2005 then
Error_Msg_N
("\must have visible Read and Write attribute " &
"definition clauses (RM E.2.2(8))", U_Typ);
else
Error_Msg_N
("\must have Read and Write attribute " &
"definition clauses (RM E.2.2(8))", U_Typ);
end if;
end if;
end if;
Next_Entity (Typ);
end loop;
end Validate_RT_RAT_Component;
-----------------------------------------
-- Validate_SP_Access_Object_Type_Decl --
-----------------------------------------
procedure Validate_SP_Access_Object_Type_Decl (T : Entity_Id) is
Direct_Designated_Type : Entity_Id;
function Has_Entry_Declarations (E : Entity_Id) return Boolean;
-- Return true if the protected type designated by T has entry
-- declarations.
----------------------------
-- Has_Entry_Declarations --
----------------------------
function Has_Entry_Declarations (E : Entity_Id) return Boolean is
Ety : Entity_Id;
begin
if Nkind (Parent (E)) = N_Protected_Type_Declaration then
Ety := First_Entity (E);
while Present (Ety) loop
if Ekind (Ety) = E_Entry then
return True;
end if;
Next_Entity (Ety);
end loop;
end if;
return False;
end Has_Entry_Declarations;
-- Start of processing for Validate_SP_Access_Object_Type_Decl
begin
-- We are called from Sem_Ch3.Analyze_Full_Type_Declaration, and the
-- Nkind of the given entity is N_Access_To_Object_Definition.
if not Comes_From_Source (T)
or else not In_Shared_Passive_Unit
or else In_Subprogram_Task_Protected_Unit
then
return;
end if;
-- Check Shared Passive unit. It should not contain the declaration
-- of an access-to-object type whose designated type is a class-wide
-- type, task type or protected type with entry (RM E.2.1(7)).
Direct_Designated_Type := Designated_Type (T);
if Ekind (Direct_Designated_Type) = E_Class_Wide_Type then
Error_Msg_N
("invalid access-to-class-wide type in shared passive unit", T);
return;
elsif Ekind (Direct_Designated_Type) in Task_Kind then
Error_Msg_N
("invalid access-to-task type in shared passive unit", T);
return;
elsif Ekind (Direct_Designated_Type) in Protected_Kind
and then Has_Entry_Declarations (Direct_Designated_Type)
then
Error_Msg_N
("invalid access-to-protected type in shared passive unit", T);
return;
end if;
end Validate_SP_Access_Object_Type_Decl;
---------------------------------
-- Validate_Static_Object_Name --
---------------------------------
procedure Validate_Static_Object_Name (N : Node_Id) is
E : Entity_Id;
Val : Node_Id;
function Is_Primary (N : Node_Id) return Boolean;
-- Determine whether node is syntactically a primary in an expression
-- This function should probably be somewhere else ???
--
-- Also it does not do what it says, e.g if N is a binary operator
-- whose parent is a binary operator, Is_Primary returns True ???
----------------
-- Is_Primary --
----------------
function Is_Primary (N : Node_Id) return Boolean is
K : constant Node_Kind := Nkind (Parent (N));
begin
case K is
when N_Aggregate
| N_Component_Association
| N_Index_Or_Discriminant_Constraint
| N_Membership_Test
| N_Op
=>
return True;
when N_Attribute_Reference =>
declare
Attr : constant Name_Id := Attribute_Name (Parent (N));
begin
return Attr /= Name_Address
and then Attr /= Name_Access
and then Attr /= Name_Unchecked_Access
and then Attr /= Name_Unrestricted_Access;
end;
when N_Indexed_Component =>
return N /= Prefix (Parent (N)) or else Is_Primary (Parent (N));
when N_Qualified_Expression
| N_Type_Conversion
=>
return Is_Primary (Parent (N));
when N_Assignment_Statement
| N_Object_Declaration
=>
return N = Expression (Parent (N));
when N_Selected_Component =>
return Is_Primary (Parent (N));
when others =>
return False;
end case;
end Is_Primary;
-- Start of processing for Validate_Static_Object_Name
begin
if not In_Preelaborated_Unit
or else not Comes_From_Source (N)
or else In_Subprogram_Or_Concurrent_Unit
or else Ekind (Current_Scope) = E_Block
then
return;
-- Filter out cases where primary is default in a component declaration,
-- discriminant specification, or actual in a record type initialization
-- call.
-- Initialization call of internal types
elsif Nkind (Parent (N)) = N_Procedure_Call_Statement then
if Present (Parent (Parent (N)))
and then Nkind (Parent (Parent (N))) = N_Freeze_Entity
then
return;
end if;
if Nkind (Name (Parent (N))) = N_Identifier
and then not Comes_From_Source (Entity (Name (Parent (N))))
then
return;
end if;
end if;
-- Error if the name is a primary in an expression. The parent must not
-- be an operator, or a selected component or an indexed component that
-- is itself a primary. Entities that are actuals do not need to be
-- checked, because the call itself will be diagnosed. Entities in a
-- generic unit or within a preanalyzed expression are not checked:
-- only their use in executable code matters.
if Is_Primary (N)
and then (not Inside_A_Generic
or else Present (Enclosing_Generic_Body (N)))
and then not In_Spec_Expression
then
if Ekind (Entity (N)) = E_Variable
or else Ekind (Entity (N)) in Formal_Object_Kind
then
Flag_Non_Static_Expr
("non-static object name in preelaborated unit", N);
-- Give an error for a reference to a nonstatic constant, unless the
-- constant is in another GNAT library unit that is preelaborable.
elsif Ekind (Entity (N)) = E_Constant
and then not Is_Static_Expression (N)
then
E := Entity (N);
Val := Constant_Value (E);
if Is_Internal_File_Name (Unit_File_Name (Get_Source_Unit (N)))
and then
Enclosing_Comp_Unit_Node (N) /= Enclosing_Comp_Unit_Node (E)
and then (Is_Preelaborated (Scope (E))
or else Is_Pure (Scope (E))
or else (Present (Renamed_Object (E))
and then Is_Entity_Name (Renamed_Object (E))
and then
(Is_Preelaborated
(Scope (Renamed_Object (E)))
or else
Is_Pure
(Scope (Renamed_Object (E))))))
then
null;
-- If the value of the constant is a local variable that renames
-- an aggregate, this is in itself legal. The aggregate may be
-- expanded into a loop, but this does not affect preelaborability
-- in itself. If some aggregate components are non-static, that is
-- to say if they involve non static primaries, they will be
-- flagged when analyzed.
elsif Present (Val)
and then Is_Entity_Name (Val)
and then Is_Array_Type (Etype (Val))
and then not Comes_From_Source (Val)
and then Nkind (Original_Node (Val)) = N_Aggregate
then
null;
-- This is the error case
else
-- In GNAT mode or Relaxed RM Semantic mode, this is just a
-- warning, to allow it to be judiciously turned off.
-- Otherwise it is a real error.
if GNAT_Mode or Relaxed_RM_Semantics then
Error_Msg_N
("??non-static constant in preelaborated unit", N);
else
Flag_Non_Static_Expr
("non-static constant in preelaborated unit", N);
end if;
end if;
end if;
end if;
end Validate_Static_Object_Name;
end Sem_Cat;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- SYSTEM.MACHINE_STATE_OPERATIONS --
-- --
-- B o d y --
-- (Version for Alpha/Dec Unix) --
-- --
-- $Revision$
-- --
-- Copyright (C) 1999-2001 Ada Core Technologies, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
-- MA 02111-1307, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). --
-- --
------------------------------------------------------------------------------
-- This version of System.Machine_State_Operations is for use on
-- Alpha systems running DEC Unix.
with System.Memory;
package body System.Machine_State_Operations is
use System.Exceptions;
pragma Linker_Options ("-lexc");
-- Needed for definitions of exc_capture_context and exc_virtual_unwind
----------------------------
-- Allocate_Machine_State --
----------------------------
function Allocate_Machine_State return Machine_State is
use System.Storage_Elements;
function c_machine_state_length return Storage_Offset;
pragma Import (C, c_machine_state_length, "__gnat_machine_state_length");
begin
return Machine_State
(Memory.Alloc (Memory.size_t (c_machine_state_length)));
end Allocate_Machine_State;
-------------------
-- Enter_Handler --
-------------------
procedure Enter_Handler (M : Machine_State; Handler : Handler_Loc) is
procedure c_enter_handler (M : Machine_State; Handler : Handler_Loc);
pragma Import (C, c_enter_handler, "__gnat_enter_handler");
begin
c_enter_handler (M, Handler);
end Enter_Handler;
----------------
-- Fetch_Code --
----------------
function Fetch_Code (Loc : Code_Loc) return Code_Loc is
begin
return Loc;
end Fetch_Code;
------------------------
-- Free_Machine_State --
------------------------
procedure Free_Machine_State (M : in out Machine_State) is
procedure Gnat_Free (M : in Machine_State);
pragma Import (C, Gnat_Free, "__gnat_free");
begin
Gnat_Free (M);
M := Machine_State (Null_Address);
end Free_Machine_State;
------------------
-- Get_Code_Loc --
------------------
function Get_Code_Loc (M : Machine_State) return Code_Loc is
Asm_Call_Size : constant := 4;
function c_get_code_loc (M : Machine_State) return Code_Loc;
pragma Import (C, c_get_code_loc, "__gnat_get_code_loc");
-- Code_Loc returned by c_get_code_loc is the return point but here we
-- want Get_Code_Loc to return the call point. Under DEC Unix a call
-- asm instruction takes 4 bytes. So we must remove this value from
-- c_get_code_loc to have the call point.
begin
return c_get_code_loc (M) - Asm_Call_Size;
end Get_Code_Loc;
--------------------------
-- Machine_State_Length --
--------------------------
function Machine_State_Length
return System.Storage_Elements.Storage_Offset
is
use System.Storage_Elements;
function c_machine_state_length return Storage_Offset;
pragma Import (C, c_machine_state_length, "__gnat_machine_state_length");
begin
return c_machine_state_length;
end Machine_State_Length;
---------------
-- Pop_Frame --
---------------
procedure Pop_Frame
(M : Machine_State;
Info : Subprogram_Info_Type)
is
procedure exc_virtual_unwind
(Fcn : System.Address;
M : Machine_State);
pragma Import (C, exc_virtual_unwind, "exc_virtual_unwind");
begin
exc_virtual_unwind (System.Null_Address, M);
end Pop_Frame;
-----------------------
-- Set_Machine_State --
-----------------------
procedure Set_Machine_State (M : Machine_State) is
procedure c_capture_context (M : Machine_State);
pragma Import (C, c_capture_context, "exc_capture_context");
begin
c_capture_context (M);
Pop_Frame (M, System.Null_Address);
end Set_Machine_State;
------------------------------
-- Set_Signal_Machine_State --
------------------------------
procedure Set_Signal_Machine_State
(M : Machine_State;
Context : System.Address) is
begin
null;
end Set_Signal_Machine_State;
end System.Machine_State_Operations;
|
-- ////////////////////////////////////////////////////////////
-- //
-- // SFML - Simple and Fast Multimedia Library
-- // Copyright (C) 2007-2009 Laurent Gomila (laurent.gom@gmail.com)
-- //
-- // 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.
-- //
-- ////////////////////////////////////////////////////////////
package Sf.Window.Types is
type sfContext is null record;
type sfContext_Ptr is access all sfContext;
type sfInput is null record;
type sfInput_Ptr is access all sfInput;
type sfWindow is null record;
type sfWindow_Ptr is access all sfWindow;
private
pragma Convention (C, sfContext);
pragma Convention (C, sfContext_Ptr);
pragma Convention (C, sfInput);
pragma Convention (C, sfInput_Ptr);
pragma Convention (C, sfWindow);
pragma Convention (C, sfWindow_Ptr);
end Sf.Window.Types;
|
package TLSF.Proof.Test.Util with SPARK_Mode is
procedure Test_Util;
end TLSF.Proof.Test.Util;
|
------------------------------------------------------------------------------
-- --
-- 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.Internals.Extents;
with AMF.Internals.Tables.CMOF_Constructors;
with AMF.Internals.Tables.CMOF_Element_Table;
with AMF.Internals.Tables.OCL_String_Data_00;
package body AMF.Internals.Tables.OCL_Metamodel.Objects is
----------------
-- Initialize --
----------------
procedure Initialize is
Extent : constant AMF.Internals.AMF_Extent
:= AMF.Internals.Extents.Allocate_Extent
(AMF.Internals.Tables.OCL_String_Data_00.MS_0047'Access);
begin
Base := AMF.Internals.Tables.CMOF_Element_Table.Last;
Initialize_1 (Extent);
Initialize_2 (Extent);
Initialize_3 (Extent);
Initialize_4 (Extent);
Initialize_5 (Extent);
Initialize_6 (Extent);
Initialize_7 (Extent);
Initialize_8 (Extent);
Initialize_9 (Extent);
Initialize_10 (Extent);
Initialize_11 (Extent);
Initialize_12 (Extent);
Initialize_13 (Extent);
Initialize_14 (Extent);
Initialize_15 (Extent);
Initialize_16 (Extent);
Initialize_17 (Extent);
Initialize_18 (Extent);
Initialize_19 (Extent);
Initialize_20 (Extent);
Initialize_21 (Extent);
Initialize_22 (Extent);
Initialize_23 (Extent);
Initialize_24 (Extent);
Initialize_25 (Extent);
Initialize_26 (Extent);
Initialize_27 (Extent);
Initialize_28 (Extent);
Initialize_29 (Extent);
Initialize_30 (Extent);
Initialize_31 (Extent);
Initialize_32 (Extent);
Initialize_33 (Extent);
Initialize_34 (Extent);
Initialize_35 (Extent);
Initialize_36 (Extent);
Initialize_37 (Extent);
Initialize_38 (Extent);
Initialize_39 (Extent);
Initialize_40 (Extent);
Initialize_41 (Extent);
Initialize_42 (Extent);
Initialize_43 (Extent);
Initialize_44 (Extent);
Initialize_45 (Extent);
Initialize_46 (Extent);
Initialize_47 (Extent);
Initialize_48 (Extent);
Initialize_49 (Extent);
Initialize_50 (Extent);
Initialize_51 (Extent);
Initialize_52 (Extent);
Initialize_53 (Extent);
Initialize_54 (Extent);
Initialize_55 (Extent);
Initialize_56 (Extent);
Initialize_57 (Extent);
Initialize_58 (Extent);
Initialize_59 (Extent);
Initialize_60 (Extent);
Initialize_61 (Extent);
Initialize_62 (Extent);
Initialize_63 (Extent);
Initialize_64 (Extent);
Initialize_65 (Extent);
Initialize_66 (Extent);
Initialize_67 (Extent);
Initialize_68 (Extent);
Initialize_69 (Extent);
Initialize_70 (Extent);
Initialize_71 (Extent);
Initialize_72 (Extent);
Initialize_73 (Extent);
Initialize_74 (Extent);
Initialize_75 (Extent);
Initialize_76 (Extent);
Initialize_77 (Extent);
Initialize_78 (Extent);
Initialize_79 (Extent);
Initialize_80 (Extent);
Initialize_81 (Extent);
Initialize_82 (Extent);
Initialize_83 (Extent);
Initialize_84 (Extent);
Initialize_85 (Extent);
Initialize_86 (Extent);
Initialize_87 (Extent);
Initialize_88 (Extent);
Initialize_89 (Extent);
Initialize_90 (Extent);
Initialize_91 (Extent);
Initialize_92 (Extent);
Initialize_93 (Extent);
Initialize_94 (Extent);
Initialize_95 (Extent);
Initialize_96 (Extent);
Initialize_97 (Extent);
Initialize_98 (Extent);
Initialize_99 (Extent);
Initialize_100 (Extent);
Initialize_101 (Extent);
Initialize_102 (Extent);
Initialize_103 (Extent);
Initialize_104 (Extent);
Initialize_105 (Extent);
Initialize_106 (Extent);
Initialize_107 (Extent);
Initialize_108 (Extent);
Initialize_109 (Extent);
Initialize_110 (Extent);
Initialize_111 (Extent);
Initialize_112 (Extent);
Initialize_113 (Extent);
Initialize_114 (Extent);
Initialize_115 (Extent);
Initialize_116 (Extent);
Initialize_117 (Extent);
Initialize_118 (Extent);
Initialize_119 (Extent);
Initialize_120 (Extent);
Initialize_121 (Extent);
Initialize_122 (Extent);
Initialize_123 (Extent);
Initialize_124 (Extent);
Initialize_125 (Extent);
Initialize_126 (Extent);
Initialize_127 (Extent);
Initialize_128 (Extent);
Initialize_129 (Extent);
Initialize_130 (Extent);
Initialize_131 (Extent);
Initialize_132 (Extent);
Initialize_133 (Extent);
Initialize_134 (Extent);
Initialize_135 (Extent);
Initialize_136 (Extent);
Initialize_137 (Extent);
Initialize_138 (Extent);
Initialize_139 (Extent);
Initialize_140 (Extent);
Initialize_141 (Extent);
Initialize_142 (Extent);
Initialize_143 (Extent);
Initialize_144 (Extent);
Initialize_145 (Extent);
Initialize_146 (Extent);
Initialize_147 (Extent);
Initialize_148 (Extent);
Initialize_149 (Extent);
Initialize_150 (Extent);
Initialize_151 (Extent);
Initialize_152 (Extent);
Initialize_153 (Extent);
Initialize_154 (Extent);
Initialize_155 (Extent);
Initialize_156 (Extent);
Initialize_157 (Extent);
Initialize_158 (Extent);
Initialize_159 (Extent);
Initialize_160 (Extent);
Initialize_161 (Extent);
Initialize_162 (Extent);
Initialize_163 (Extent);
Initialize_164 (Extent);
Initialize_165 (Extent);
Initialize_166 (Extent);
Initialize_167 (Extent);
Initialize_168 (Extent);
Initialize_169 (Extent);
Initialize_170 (Extent);
Initialize_171 (Extent);
Initialize_172 (Extent);
Initialize_173 (Extent);
Initialize_174 (Extent);
Initialize_175 (Extent);
Initialize_176 (Extent);
Initialize_177 (Extent);
Initialize_178 (Extent);
end Initialize;
------------------
-- Initialize_1 --
------------------
procedure Initialize_1 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_1;
------------------
-- Initialize_2 --
------------------
procedure Initialize_2 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_2;
------------------
-- Initialize_3 --
------------------
procedure Initialize_3 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_3;
------------------
-- Initialize_4 --
------------------
procedure Initialize_4 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_4;
------------------
-- Initialize_5 --
------------------
procedure Initialize_5 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_5;
------------------
-- Initialize_6 --
------------------
procedure Initialize_6 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_6;
------------------
-- Initialize_7 --
------------------
procedure Initialize_7 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_7;
------------------
-- Initialize_8 --
------------------
procedure Initialize_8 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_8;
------------------
-- Initialize_9 --
------------------
procedure Initialize_9 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_9;
-------------------
-- Initialize_10 --
-------------------
procedure Initialize_10 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_10;
-------------------
-- Initialize_11 --
-------------------
procedure Initialize_11 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_11;
-------------------
-- Initialize_12 --
-------------------
procedure Initialize_12 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_12;
-------------------
-- Initialize_13 --
-------------------
procedure Initialize_13 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_13;
-------------------
-- Initialize_14 --
-------------------
procedure Initialize_14 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_14;
-------------------
-- Initialize_15 --
-------------------
procedure Initialize_15 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_15;
-------------------
-- Initialize_16 --
-------------------
procedure Initialize_16 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_16;
-------------------
-- Initialize_17 --
-------------------
procedure Initialize_17 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_17;
-------------------
-- Initialize_18 --
-------------------
procedure Initialize_18 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_18;
-------------------
-- Initialize_19 --
-------------------
procedure Initialize_19 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_19;
-------------------
-- Initialize_20 --
-------------------
procedure Initialize_20 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_20;
-------------------
-- Initialize_21 --
-------------------
procedure Initialize_21 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_21;
-------------------
-- Initialize_22 --
-------------------
procedure Initialize_22 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_22;
-------------------
-- Initialize_23 --
-------------------
procedure Initialize_23 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_23;
-------------------
-- Initialize_24 --
-------------------
procedure Initialize_24 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_24;
-------------------
-- Initialize_25 --
-------------------
procedure Initialize_25 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_25;
-------------------
-- Initialize_26 --
-------------------
procedure Initialize_26 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_26;
-------------------
-- Initialize_27 --
-------------------
procedure Initialize_27 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_27;
-------------------
-- Initialize_28 --
-------------------
procedure Initialize_28 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_28;
-------------------
-- Initialize_29 --
-------------------
procedure Initialize_29 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_29;
-------------------
-- Initialize_30 --
-------------------
procedure Initialize_30 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_30;
-------------------
-- Initialize_31 --
-------------------
procedure Initialize_31 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_31;
-------------------
-- Initialize_32 --
-------------------
procedure Initialize_32 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_32;
-------------------
-- Initialize_33 --
-------------------
procedure Initialize_33 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_33;
-------------------
-- Initialize_34 --
-------------------
procedure Initialize_34 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_34;
-------------------
-- Initialize_35 --
-------------------
procedure Initialize_35 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_35;
-------------------
-- Initialize_36 --
-------------------
procedure Initialize_36 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_36;
-------------------
-- Initialize_37 --
-------------------
procedure Initialize_37 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_37;
-------------------
-- Initialize_38 --
-------------------
procedure Initialize_38 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_38;
-------------------
-- Initialize_39 --
-------------------
procedure Initialize_39 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_39;
-------------------
-- Initialize_40 --
-------------------
procedure Initialize_40 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_40;
-------------------
-- Initialize_41 --
-------------------
procedure Initialize_41 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_41;
-------------------
-- Initialize_42 --
-------------------
procedure Initialize_42 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_42;
-------------------
-- Initialize_43 --
-------------------
procedure Initialize_43 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_43;
-------------------
-- Initialize_44 --
-------------------
procedure Initialize_44 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_44;
-------------------
-- Initialize_45 --
-------------------
procedure Initialize_45 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_45;
-------------------
-- Initialize_46 --
-------------------
procedure Initialize_46 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_46;
-------------------
-- Initialize_47 --
-------------------
procedure Initialize_47 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Class;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_47;
-------------------
-- Initialize_48 --
-------------------
procedure Initialize_48 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_48;
-------------------
-- Initialize_49 --
-------------------
procedure Initialize_49 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_49;
-------------------
-- Initialize_50 --
-------------------
procedure Initialize_50 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_50;
-------------------
-- Initialize_51 --
-------------------
procedure Initialize_51 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_51;
-------------------
-- Initialize_52 --
-------------------
procedure Initialize_52 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_52;
-------------------
-- Initialize_53 --
-------------------
procedure Initialize_53 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_53;
-------------------
-- Initialize_54 --
-------------------
procedure Initialize_54 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_54;
-------------------
-- Initialize_55 --
-------------------
procedure Initialize_55 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_55;
-------------------
-- Initialize_56 --
-------------------
procedure Initialize_56 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_56;
-------------------
-- Initialize_57 --
-------------------
procedure Initialize_57 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_57;
-------------------
-- Initialize_58 --
-------------------
procedure Initialize_58 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_58;
-------------------
-- Initialize_59 --
-------------------
procedure Initialize_59 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_59;
-------------------
-- Initialize_60 --
-------------------
procedure Initialize_60 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_60;
-------------------
-- Initialize_61 --
-------------------
procedure Initialize_61 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_61;
-------------------
-- Initialize_62 --
-------------------
procedure Initialize_62 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_62;
-------------------
-- Initialize_63 --
-------------------
procedure Initialize_63 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_63;
-------------------
-- Initialize_64 --
-------------------
procedure Initialize_64 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_64;
-------------------
-- Initialize_65 --
-------------------
procedure Initialize_65 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_65;
-------------------
-- Initialize_66 --
-------------------
procedure Initialize_66 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_66;
-------------------
-- Initialize_67 --
-------------------
procedure Initialize_67 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_67;
-------------------
-- Initialize_68 --
-------------------
procedure Initialize_68 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_68;
-------------------
-- Initialize_69 --
-------------------
procedure Initialize_69 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_69;
-------------------
-- Initialize_70 --
-------------------
procedure Initialize_70 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_70;
-------------------
-- Initialize_71 --
-------------------
procedure Initialize_71 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_71;
-------------------
-- Initialize_72 --
-------------------
procedure Initialize_72 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_72;
-------------------
-- Initialize_73 --
-------------------
procedure Initialize_73 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_73;
-------------------
-- Initialize_74 --
-------------------
procedure Initialize_74 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_74;
-------------------
-- Initialize_75 --
-------------------
procedure Initialize_75 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_75;
-------------------
-- Initialize_76 --
-------------------
procedure Initialize_76 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_76;
-------------------
-- Initialize_77 --
-------------------
procedure Initialize_77 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_77;
-------------------
-- Initialize_78 --
-------------------
procedure Initialize_78 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_78;
-------------------
-- Initialize_79 --
-------------------
procedure Initialize_79 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_79;
-------------------
-- Initialize_80 --
-------------------
procedure Initialize_80 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_80;
-------------------
-- Initialize_81 --
-------------------
procedure Initialize_81 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_81;
-------------------
-- Initialize_82 --
-------------------
procedure Initialize_82 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_82;
-------------------
-- Initialize_83 --
-------------------
procedure Initialize_83 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_83;
-------------------
-- Initialize_84 --
-------------------
procedure Initialize_84 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_84;
-------------------
-- Initialize_85 --
-------------------
procedure Initialize_85 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_85;
-------------------
-- Initialize_86 --
-------------------
procedure Initialize_86 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_86;
-------------------
-- Initialize_87 --
-------------------
procedure Initialize_87 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_87;
-------------------
-- Initialize_88 --
-------------------
procedure Initialize_88 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_88;
-------------------
-- Initialize_89 --
-------------------
procedure Initialize_89 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_89;
-------------------
-- Initialize_90 --
-------------------
procedure Initialize_90 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_90;
-------------------
-- Initialize_91 --
-------------------
procedure Initialize_91 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_91;
-------------------
-- Initialize_92 --
-------------------
procedure Initialize_92 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_92;
-------------------
-- Initialize_93 --
-------------------
procedure Initialize_93 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_93;
-------------------
-- Initialize_94 --
-------------------
procedure Initialize_94 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_94;
-------------------
-- Initialize_95 --
-------------------
procedure Initialize_95 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_95;
-------------------
-- Initialize_96 --
-------------------
procedure Initialize_96 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_96;
-------------------
-- Initialize_97 --
-------------------
procedure Initialize_97 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_97;
-------------------
-- Initialize_98 --
-------------------
procedure Initialize_98 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_98;
-------------------
-- Initialize_99 --
-------------------
procedure Initialize_99 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_99;
--------------------
-- Initialize_100 --
--------------------
procedure Initialize_100 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_100;
--------------------
-- Initialize_101 --
--------------------
procedure Initialize_101 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_101;
--------------------
-- Initialize_102 --
--------------------
procedure Initialize_102 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_102;
--------------------
-- Initialize_103 --
--------------------
procedure Initialize_103 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_103;
--------------------
-- Initialize_104 --
--------------------
procedure Initialize_104 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_104;
--------------------
-- Initialize_105 --
--------------------
procedure Initialize_105 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_105;
--------------------
-- Initialize_106 --
--------------------
procedure Initialize_106 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_106;
--------------------
-- Initialize_107 --
--------------------
procedure Initialize_107 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_107;
--------------------
-- Initialize_108 --
--------------------
procedure Initialize_108 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_108;
--------------------
-- Initialize_109 --
--------------------
procedure Initialize_109 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_109;
--------------------
-- Initialize_110 --
--------------------
procedure Initialize_110 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_110;
--------------------
-- Initialize_111 --
--------------------
procedure Initialize_111 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_111;
--------------------
-- Initialize_112 --
--------------------
procedure Initialize_112 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_112;
--------------------
-- Initialize_113 --
--------------------
procedure Initialize_113 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_113;
--------------------
-- Initialize_114 --
--------------------
procedure Initialize_114 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_114;
--------------------
-- Initialize_115 --
--------------------
procedure Initialize_115 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_115;
--------------------
-- Initialize_116 --
--------------------
procedure Initialize_116 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_116;
--------------------
-- Initialize_117 --
--------------------
procedure Initialize_117 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_117;
--------------------
-- Initialize_118 --
--------------------
procedure Initialize_118 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_118;
--------------------
-- Initialize_119 --
--------------------
procedure Initialize_119 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_119;
--------------------
-- Initialize_120 --
--------------------
procedure Initialize_120 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_120;
--------------------
-- Initialize_121 --
--------------------
procedure Initialize_121 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_121;
--------------------
-- Initialize_122 --
--------------------
procedure Initialize_122 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_122;
--------------------
-- Initialize_123 --
--------------------
procedure Initialize_123 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_123;
--------------------
-- Initialize_124 --
--------------------
procedure Initialize_124 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_124;
--------------------
-- Initialize_125 --
--------------------
procedure Initialize_125 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_125;
--------------------
-- Initialize_126 --
--------------------
procedure Initialize_126 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_126;
--------------------
-- Initialize_127 --
--------------------
procedure Initialize_127 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_127;
--------------------
-- Initialize_128 --
--------------------
procedure Initialize_128 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_128;
--------------------
-- Initialize_129 --
--------------------
procedure Initialize_129 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_129;
--------------------
-- Initialize_130 --
--------------------
procedure Initialize_130 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_130;
--------------------
-- Initialize_131 --
--------------------
procedure Initialize_131 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_131;
--------------------
-- Initialize_132 --
--------------------
procedure Initialize_132 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Association;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_132;
--------------------
-- Initialize_133 --
--------------------
procedure Initialize_133 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Package;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_133;
--------------------
-- Initialize_134 --
--------------------
procedure Initialize_134 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_134;
--------------------
-- Initialize_135 --
--------------------
procedure Initialize_135 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Enumeration;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_135;
--------------------
-- Initialize_136 --
--------------------
procedure Initialize_136 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Enumeration_Literal;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_136;
--------------------
-- Initialize_137 --
--------------------
procedure Initialize_137 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Enumeration_Literal;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_137;
--------------------
-- Initialize_138 --
--------------------
procedure Initialize_138 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Enumeration_Literal;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_138;
--------------------
-- Initialize_139 --
--------------------
procedure Initialize_139 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Enumeration_Literal;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_139;
--------------------
-- Initialize_140 --
--------------------
procedure Initialize_140 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Enumeration_Literal;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_140;
--------------------
-- Initialize_141 --
--------------------
procedure Initialize_141 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_141;
--------------------
-- Initialize_142 --
--------------------
procedure Initialize_142 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_142;
--------------------
-- Initialize_143 --
--------------------
procedure Initialize_143 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_143;
--------------------
-- Initialize_144 --
--------------------
procedure Initialize_144 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_144;
--------------------
-- Initialize_145 --
--------------------
procedure Initialize_145 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_145;
--------------------
-- Initialize_146 --
--------------------
procedure Initialize_146 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_146;
--------------------
-- Initialize_147 --
--------------------
procedure Initialize_147 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_147;
--------------------
-- Initialize_148 --
--------------------
procedure Initialize_148 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_148;
--------------------
-- Initialize_149 --
--------------------
procedure Initialize_149 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_149;
--------------------
-- Initialize_150 --
--------------------
procedure Initialize_150 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_150;
--------------------
-- Initialize_151 --
--------------------
procedure Initialize_151 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_151;
--------------------
-- Initialize_152 --
--------------------
procedure Initialize_152 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_152;
--------------------
-- Initialize_153 --
--------------------
procedure Initialize_153 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_153;
--------------------
-- Initialize_154 --
--------------------
procedure Initialize_154 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_154;
--------------------
-- Initialize_155 --
--------------------
procedure Initialize_155 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_155;
--------------------
-- Initialize_156 --
--------------------
procedure Initialize_156 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_156;
--------------------
-- Initialize_157 --
--------------------
procedure Initialize_157 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_157;
--------------------
-- Initialize_158 --
--------------------
procedure Initialize_158 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_158;
--------------------
-- Initialize_159 --
--------------------
procedure Initialize_159 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_159;
--------------------
-- Initialize_160 --
--------------------
procedure Initialize_160 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_160;
--------------------
-- Initialize_161 --
--------------------
procedure Initialize_161 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_161;
--------------------
-- Initialize_162 --
--------------------
procedure Initialize_162 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_162;
--------------------
-- Initialize_163 --
--------------------
procedure Initialize_163 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_163;
--------------------
-- Initialize_164 --
--------------------
procedure Initialize_164 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_164;
--------------------
-- Initialize_165 --
--------------------
procedure Initialize_165 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_165;
--------------------
-- Initialize_166 --
--------------------
procedure Initialize_166 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_166;
--------------------
-- Initialize_167 --
--------------------
procedure Initialize_167 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_167;
--------------------
-- Initialize_168 --
--------------------
procedure Initialize_168 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_168;
--------------------
-- Initialize_169 --
--------------------
procedure Initialize_169 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_169;
--------------------
-- Initialize_170 --
--------------------
procedure Initialize_170 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_170;
--------------------
-- Initialize_171 --
--------------------
procedure Initialize_171 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_171;
--------------------
-- Initialize_172 --
--------------------
procedure Initialize_172 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_172;
--------------------
-- Initialize_173 --
--------------------
procedure Initialize_173 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_173;
--------------------
-- Initialize_174 --
--------------------
procedure Initialize_174 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_174;
--------------------
-- Initialize_175 --
--------------------
procedure Initialize_175 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_175;
--------------------
-- Initialize_176 --
--------------------
procedure Initialize_176 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_176;
--------------------
-- Initialize_177 --
--------------------
procedure Initialize_177 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_177;
--------------------
-- Initialize_178 --
--------------------
procedure Initialize_178 (Extent : AMF.Internals.AMF_Extent) is
Aux : AMF.Internals.CMOF_Element;
begin
Aux := AMF.Internals.Tables.CMOF_Constructors.Create_CMOF_Property;
AMF.Internals.Extents.Internal_Append (Extent, Aux);
end Initialize_178;
end AMF.Internals.Tables.OCL_Metamodel.Objects;
|
WITH Ada.Text_Io; USE Ada.Text_Io;
procedure Ver_Contiene_Caracter is
-- salida: 7 booleanos(SE)
-- post: corresponden a cada uno de los casos de pruebas dise�ados.
-- pre: { True }
function Contiene_Caracter (
S : String;
L : Character)
return Boolean is
-- EJERCICIO 3- ESPECIFICA E IMPLEMENTA recursivamente el subprograma
-- Contiene_a que decide si el string S contiene el car�cter 'a'.
BEGIN
-- Completar
if S'Size = 0 then
return False;
end if;
if S(S'First) = L then
return True;
end if;
return Contiene_Caracter(S(S'First + 1 .. S'Last), L);
end Contiene_Caracter ;
-- post: { True <=> Contiene_a(S, L) }
begin
Put_Line("-------------------------------------");
Put("La palabra vacia no contiene el caracter 'a': ");
Put(Boolean'Image(Contiene_Caracter("", 'a')));
New_Line;
New_Line;
New_Line;
Put_Line("-------------------------------------");
Put_Line("Palabras de un caracter");
Put("-- La palabra de 1 caracter 'a' contiene el caracter 'a': ");
Put(Boolean'Image(Contiene_Caracter("a", 'a')));
New_Line;
Put("-- La palabra de 1 caracter 'b' contiene el caracter 'b': ");
Put(Boolean'Image(Contiene_Caracter("b", 'b')));
New_Line;
New_Line;
New_Line;
Put_Line("-------------------------------------");
Put_Line("Palabras de varios caracteres");
Put("-- 'abcd' contiene el caracter 'b': ");
Put(Boolean'Image(Contiene_Caracter("abcd", 'b')));
New_Line;
Put("-- 'dcba' contiene el caracter 'a': ");
Put(Boolean'Image(Contiene_Caracter("dcba", 'a')));
New_Line;
Put("-- 'dcbabcd' contiene el caracter 'a': ");
Put(Boolean'Image(Contiene_Caracter("dcbabcd", 'a')));
New_Line;
Put("-- Pero 'dcbbcd' no contiene el caracter 'e': ");
Put(Boolean'Image(Contiene_Caracter("dcbbcd", 'e')));
New_Line;
Put_Line("-------------------------------------");
end Ver_Contiene_Caracter;
|
pragma License (Unrestricted);
-- implementation unit required by compiler
with System.Long_Long_Integer_Types;
package System.Img_Int is
pragma Pure;
-- required for Integer'Image by compiler (s-imgint.ads)
procedure Image_Integer (
V : Integer;
S : in out String;
P : out Natural);
-- helper
procedure Image (
V : Long_Long_Integer_Types.Word_Integer;
S : in out String;
P : out Natural);
end System.Img_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></userIPName>
<cdfg class_id="1" tracking_level="1" version="0" object_id="_0">
<name>Dilate</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>p_src_data_stream_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>_src.data_stream.V</originalName>
<rtlName></rtlName>
<coreName>FIFO</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>p_dst_data_stream_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>_dst.data_stream.V</originalName>
<rtlName></rtlName>
<coreName>FIFO</coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>1</direction>
<if_type>3</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>128</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>src_kernel_win_0_va</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>src_kernel_win[0].val[0][1]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>164</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>1</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_4">
<Value>
<Obj>
<type>0</type>
<id>4</id>
<name>src_kernel_win_0_va_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>src_kernel_win[0].val[0][1]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>165</item>
</oprand_edges>
<opcode>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="_5">
<Value>
<Obj>
<type>0</type>
<id>5</id>
<name>src_kernel_win_0_va_2</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>src_kernel_win[0].val[1][1]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>166</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="_6">
<Value>
<Obj>
<type>0</type>
<id>6</id>
<name>src_kernel_win_0_va_3</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>src_kernel_win[0].val[1][1]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>167</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="_7">
<Value>
<Obj>
<type>0</type>
<id>7</id>
<name>src_kernel_win_0_va_4</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>src_kernel_win[0].val[2][1]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>168</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>5</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_8">
<Value>
<Obj>
<type>0</type>
<id>8</id>
<name>src_kernel_win_0_va_5</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>src_kernel_win[0].val[2][1]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>169</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>6</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_9">
<Value>
<Obj>
<type>0</type>
<id>9</id>
<name>src_kernel_win_0_va_6</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>src_kernel_win[0].val[0][0]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>170</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>7</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>10</id>
<name>right_border_buf_0_s</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>right_border_buf[0].val[2][0]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>171</item>
</oprand_edges>
<opcode>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>8</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>11</id>
<name>right_border_buf_0_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>right_border_buf[0].val[1][0]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>172</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>9</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>14</id>
<name>k_buf_0_val_3</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>400</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="11" tracking_level="0" version="0">
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second class_id="12" tracking_level="0" version="0">
<count>3</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>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>400</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>k_buf[0].val[3]</originalName>
<rtlName></rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>174</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>10</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>15</id>
<name>k_buf_0_val_4</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>400</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>400</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>k_buf[0].val[4]</originalName>
<rtlName></rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>175</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>11</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>16</id>
<name>k_buf_0_val_5</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>400</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>400</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>k_buf[0].val[5]</originalName>
<rtlName></rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>176</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>12</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>19</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>443</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>443</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>177</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.46</m_delay>
<m_topoIndex>13</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name>t_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>i.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>179</item>
<item>180</item>
<item>181</item>
<item>182</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>14</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>22</id>
<name>exitcond461_i_i</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>443</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>443</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>183</item>
<item>185</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.94</m_delay>
<m_topoIndex>15</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>24</id>
<name>i_V</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>443</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>443</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>i.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>186</item>
<item>188</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.41</m_delay>
<m_topoIndex>16</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>25</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>443</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>443</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>189</item>
<item>190</item>
<item>191</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>17</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>29</id>
<name>tmp_s</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>492</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>492</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>192</item>
<item>194</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.94</m_delay>
<m_topoIndex>18</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>30</id>
<name>tmp_146_not</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>457</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>457</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>195</item>
<item>197</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.80</m_delay>
<m_topoIndex>19</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>31</id>
<name>tmp</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>466</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>466</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>199</item>
<item>200</item>
<item>201</item>
<item>203</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>20</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>32</id>
<name>icmp</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>466</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>466</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>204</item>
<item>206</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.62</m_delay>
<m_topoIndex>21</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>33</id>
<name>tmp_39</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>471</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>471</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>207</item>
<item>208</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.94</m_delay>
<m_topoIndex>22</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>34</id>
<name>tmp_176_2</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>471</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>471</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>209</item>
<item>210</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.94</m_delay>
<m_topoIndex>23</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>35</id>
<name>tmp_40</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>502</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>502</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>211</item>
<item>212</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.94</m_delay>
<m_topoIndex>24</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>36</id>
<name>tmp_53</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>506</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>506</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>213</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>25</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name>row_assign_7_1_t</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>493</lineNumber>
<contextFuncName>getval</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>507</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</first>
<second>getval</second>
</first>
<second>493</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</first>
<second>operator()</second>
</first>
<second>501</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>214</item>
<item>216</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.80</m_delay>
<m_topoIndex>26</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name>row_assign_7_2_t</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>493</lineNumber>
<contextFuncName>getval</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>507</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</first>
<second>getval</second>
</first>
<second>493</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</first>
<second>operator()</second>
</first>
<second>501</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>218</item>
<item>219</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.63</m_delay>
<m_topoIndex>27</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>39</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>444</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>444</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>220</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.46</m_delay>
<m_topoIndex>28</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name>t_V_4</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>j.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>222</item>
<item>223</item>
<item>224</item>
<item>225</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>30</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>42</id>
<name>t_V_4_cast</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>444</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>444</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>226</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>31</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name>exitcond460_i_i</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>444</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>444</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>227</item>
<item>229</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.88</m_delay>
<m_topoIndex>32</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>45</id>
<name>j_V</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>444</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>444</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>j.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>230</item>
<item>232</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.48</m_delay>
<m_topoIndex>33</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>46</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>444</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>444</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>233</item>
<item>234</item>
<item>235</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>34</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>48</id>
<name>src_kernel_win_0_va_7</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>458</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>458</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>236</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>66</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>49</id>
<name>right_border_buf_0_2</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>458</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>458</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>237</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>67</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>50</id>
<name>right_border_buf_0_3</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>458</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>458</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>238</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>68</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>54</id>
<name>tmp_54</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>512</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>512</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>240</item>
<item>241</item>
<item>242</item>
<item>244</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>35</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_40">
<Value>
<Obj>
<type>0</type>
<id>55</id>
<name>icmp2</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>512</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>512</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>245</item>
<item>246</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.94</m_delay>
<m_topoIndex>36</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>57</id>
<name>tmp_55</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>444</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>444</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>247</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>37</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_42">
<Value>
<Obj>
<type>0</type>
<id>58</id>
<name>ImagLoc_x</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>451</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>451</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ImagLoc.x</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>12</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>249</item>
<item>250</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.48</m_delay>
<m_topoIndex>38</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_43">
<Value>
<Obj>
<type>0</type>
<id>59</id>
<name>ImagLoc_x_cast</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>451</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>451</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>252</item>
<item>253</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.41</m_delay>
<m_topoIndex>39</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_44">
<Value>
<Obj>
<type>0</type>
<id>60</id>
<name>tmp_56</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgbase.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>118</lineNumber>
<contextFuncName>borderInterpolate</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgbase.h</first>
<second>borderInterpolate</second>
</first>
<second>118</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>452</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>255</item>
<item>256</item>
<item>258</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>40</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_45">
<Value>
<Obj>
<type>0</type>
<id>61</id>
<name>rev</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgbase.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>118</lineNumber>
<contextFuncName>borderInterpolate</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgbase.h</first>
<second>borderInterpolate</second>
</first>
<second>118</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>452</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>259</item>
<item>260</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>41</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_46">
<Value>
<Obj>
<type>0</type>
<id>62</id>
<name>tmp_62</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgbase.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>118</lineNumber>
<contextFuncName>borderInterpolate</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgbase.h</first>
<second>borderInterpolate</second>
</first>
<second>118</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>452</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>262</item>
<item>263</item>
<item>264</item>
<item>265</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>42</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_47">
<Value>
<Obj>
<type>0</type>
<id>63</id>
<name>icmp3</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgbase.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>118</lineNumber>
<contextFuncName>borderInterpolate</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgbase.h</first>
<second>borderInterpolate</second>
</first>
<second>118</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>452</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>266</item>
<item>267</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.50</m_delay>
<m_topoIndex>43</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_48">
<Value>
<Obj>
<type>0</type>
<id>64</id>
<name>or_cond_i_i_i</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgbase.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>118</lineNumber>
<contextFuncName>borderInterpolate</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgbase.h</first>
<second>borderInterpolate</second>
</first>
<second>118</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>452</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>268</item>
<item>269</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.80</m_delay>
<m_topoIndex>44</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_49">
<Value>
<Obj>
<type>0</type>
<id>65</id>
<name>tmp_63</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgbase.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>121</lineNumber>
<contextFuncName>borderInterpolate</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgbase.h</first>
<second>borderInterpolate</second>
</first>
<second>121</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>452</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>270</item>
<item>271</item>
<item>272</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>45</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_50">
<Value>
<Obj>
<type>0</type>
<id>66</id>
<name>not_s</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgbase.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>121</lineNumber>
<contextFuncName>borderInterpolate</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgbase.h</first>
<second>borderInterpolate</second>
</first>
<second>121</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>452</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>273</item>
<item>274</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>46</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_51">
<Value>
<Obj>
<type>0</type>
<id>67</id>
<name>p_assign_1_cast_cast</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgbase.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>121</lineNumber>
<contextFuncName>borderInterpolate</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgbase.h</first>
<second>borderInterpolate</second>
</first>
<second>121</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>452</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>275</item>
<item>276</item>
<item>277</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>47</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_52">
<Value>
<Obj>
<type>0</type>
<id>68</id>
<name>x</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgbase.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>118</lineNumber>
<contextFuncName>borderInterpolate</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgbase.h</first>
<second>borderInterpolate</second>
</first>
<second>118</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>452</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>col</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>278</item>
<item>279</item>
<item>280</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.99</m_delay>
<m_topoIndex>48</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_53">
<Value>
<Obj>
<type>0</type>
<id>69</id>
<name>tmp_64</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>458</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>458</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>281</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>49</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_54">
<Value>
<Obj>
<type>0</type>
<id>70</id>
<name>brmerge</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>457</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>457</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>282</item>
<item>283</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>50</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_55">
<Value>
<Obj>
<type>0</type>
<id>71</id>
<name>tmp_41</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>835</lineNumber>
<contextFuncName>getval</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>460</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</first>
<second>getval</second>
</first>
<second>835</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</first>
<second>operator()</second>
</first>
<second>843</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>284</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>51</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_56">
<Value>
<Obj>
<type>0</type>
<id>72</id>
<name>k_buf_0_val_3_addr</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>835</lineNumber>
<contextFuncName>getval</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>460</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</first>
<second>getval</second>
</first>
<second>835</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</first>
<second>operator()</second>
</first>
<second>843</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>285</item>
<item>287</item>
<item>288</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>52</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_57">
<Value>
<Obj>
<type>0</type>
<id>73</id>
<name>k_buf_0_val_3_load</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>460</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>460</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>289</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.77</m_delay>
<m_topoIndex>53</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_58">
<Value>
<Obj>
<type>0</type>
<id>74</id>
<name>col_assign_1_t</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>493</lineNumber>
<contextFuncName>getval</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>458</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</first>
<second>getval</second>
</first>
<second>493</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</first>
<second>operator()</second>
</first>
<second>501</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>290</item>
<item>292</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.80</m_delay>
<m_topoIndex>69</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_59">
<Value>
<Obj>
<type>0</type>
<id>75</id>
<name>tmp_49</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>458</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>458</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>294</item>
<item>295</item>
<item>297</item>
<item>298</item>
<item>299</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.00</m_delay>
<m_topoIndex>70</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_60">
<Value>
<Obj>
<type>0</type>
<id>76</id>
<name>col_buf_0_val_0_0</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>458</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>458</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>col_buf[0].val[0][0]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>300</item>
<item>301</item>
<item>302</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.35</m_delay>
<m_topoIndex>71</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_61">
<Value>
<Obj>
<type>0</type>
<id>77</id>
<name>k_buf_0_val_4_addr</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>835</lineNumber>
<contextFuncName>getval</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>460</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</first>
<second>getval</second>
</first>
<second>835</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</first>
<second>operator()</second>
</first>
<second>843</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>303</item>
<item>304</item>
<item>305</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>54</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_62">
<Value>
<Obj>
<type>0</type>
<id>78</id>
<name>k_buf_0_val_4_load</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>460</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>460</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>306</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.77</m_delay>
<m_topoIndex>55</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_63">
<Value>
<Obj>
<type>0</type>
<id>79</id>
<name>tmp_50</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>458</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>458</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>307</item>
<item>308</item>
<item>309</item>
<item>310</item>
<item>311</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.00</m_delay>
<m_topoIndex>72</m_topoIndex>
<m_clusterGroupNumber>4</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_64">
<Value>
<Obj>
<type>0</type>
<id>80</id>
<name>col_buf_0_val_1_0</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>458</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>458</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>col_buf[0].val[1][0]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>312</item>
<item>313</item>
<item>314</item>
</oprand_edges>
<opcode>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.35</m_delay>
<m_topoIndex>73</m_topoIndex>
<m_clusterGroupNumber>4</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_65">
<Value>
<Obj>
<type>0</type>
<id>81</id>
<name>k_buf_0_val_5_addr</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>835</lineNumber>
<contextFuncName>getval</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>460</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</first>
<second>getval</second>
</first>
<second>835</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</first>
<second>operator()</second>
</first>
<second>843</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>315</item>
<item>316</item>
<item>317</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>56</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_66">
<Value>
<Obj>
<type>0</type>
<id>82</id>
<name>k_buf_0_val_5_load</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>460</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>460</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>318</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.77</m_delay>
<m_topoIndex>57</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_67">
<Value>
<Obj>
<type>0</type>
<id>83</id>
<name>tmp_51</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>458</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>458</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>319</item>
<item>320</item>
<item>321</item>
<item>322</item>
<item>323</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.00</m_delay>
<m_topoIndex>74</m_topoIndex>
<m_clusterGroupNumber>5</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_68">
<Value>
<Obj>
<type>0</type>
<id>84</id>
<name>col_buf_0_val_2_0</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>458</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>458</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>col_buf[0].val[2][0]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>324</item>
<item>325</item>
<item>326</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.35</m_delay>
<m_topoIndex>75</m_topoIndex>
<m_clusterGroupNumber>5</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_69">
<Value>
<Obj>
<type>0</type>
<id>85</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>465</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>465</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>327</item>
<item>328</item>
<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.00</m_delay>
<m_topoIndex>58</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_70">
<Value>
<Obj>
<type>0</type>
<id>87</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>466</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>466</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>330</item>
<item>331</item>
<item>332</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>59</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_71">
<Value>
<Obj>
<type>0</type>
<id>89</id>
<name>tmp_67</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>468</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>468</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>334</item>
<item>335</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.40</m_delay>
<m_topoIndex>76</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_72">
<Value>
<Obj>
<type>0</type>
<id>90</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>471</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>471</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>336</item>
<item>337</item>
<item>338</item>
</oprand_edges>
<opcode>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="_73">
<Value>
<Obj>
<type>0</type>
<id>92</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>472</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>472</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>357</item>
<item>358</item>
<item>586</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.77</m_delay>
<m_topoIndex>77</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_74">
<Value>
<Obj>
<type>0</type>
<id>93</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>472</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>472</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>359</item>
<item>360</item>
<item>585</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.77</m_delay>
<m_topoIndex>78</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_75">
<Value>
<Obj>
<type>0</type>
<id>94</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>473</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>473</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>361</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>79</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_76">
<Value>
<Obj>
<type>0</type>
<id>96</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>471</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>471</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>362</item>
<item>363</item>
<item>364</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>61</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_77">
<Value>
<Obj>
<type>0</type>
<id>98</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>472</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>472</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>365</item>
<item>366</item>
<item>587</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.77</m_delay>
<m_topoIndex>80</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_78">
<Value>
<Obj>
<type>0</type>
<id>99</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>473</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>473</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>367</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>81</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_79">
<Value>
<Obj>
<type>0</type>
<id>101</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>368</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>62</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_80">
<Value>
<Obj>
<type>0</type>
<id>103</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>475</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>475</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>339</item>
<item>340</item>
<item>341</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_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="_81">
<Value>
<Obj>
<type>0</type>
<id>105</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>489</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>489</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>342</item>
<item>343</item>
<item>584</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.77</m_delay>
<m_topoIndex>82</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_82">
<Value>
<Obj>
<type>0</type>
<id>106</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>489</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>489</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>344</item>
<item>345</item>
<item>583</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.77</m_delay>
<m_topoIndex>83</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_83">
<Value>
<Obj>
<type>0</type>
<id>107</id>
<name>tmp_66</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>493</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>493</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>346</item>
<item>347</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.40</m_delay>
<m_topoIndex>84</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_84">
<Value>
<Obj>
<type>0</type>
<id>108</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>493</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>493</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>348</item>
<item>349</item>
<item>582</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.77</m_delay>
<m_topoIndex>85</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_85">
<Value>
<Obj>
<type>0</type>
<id>109</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>484</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>484</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>350</item>
<item>351</item>
<item>593</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>86</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_86">
<Value>
<Obj>
<type>0</type>
<id>110</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>484</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>484</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>352</item>
<item>353</item>
<item>592</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>87</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_87">
<Value>
<Obj>
<type>0</type>
<id>111</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>484</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>484</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>354</item>
<item>355</item>
<item>591</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>88</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_88">
<Value>
<Obj>
<type>0</type>
<id>112</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>495</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>495</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>356</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>89</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_89">
<Value>
<Obj>
<type>0</type>
<id>114</id>
<name>tmp_52</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>507</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>507</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>369</item>
<item>370</item>
<item>371</item>
<item>372</item>
<item>373</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>1.35</m_delay>
<m_topoIndex>90</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_90">
<Value>
<Obj>
<type>0</type>
<id>115</id>
<name>src_kernel_win_0_va_8</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>458</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>458</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>src_kernel_win[0].val[1][0]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>374</item>
<item>375</item>
<item>376</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.44</m_delay>
<m_topoIndex>91</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_91">
<Value>
<Obj>
<type>0</type>
<id>116</id>
<name>tmp_57</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>507</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>507</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>377</item>
<item>378</item>
<item>379</item>
<item>380</item>
<item>381</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>1.35</m_delay>
<m_topoIndex>92</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_92">
<Value>
<Obj>
<type>0</type>
<id>117</id>
<name>src_kernel_win_0_va_9</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>458</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>458</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>src_kernel_win[0].val[2][0]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>382</item>
<item>383</item>
<item>384</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.44</m_delay>
<m_topoIndex>93</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_93">
<Value>
<Obj>
<type>0</type>
<id>118</id>
<name>or_cond_i_i</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>512</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>512</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>385</item>
<item>386</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.80</m_delay>
<m_topoIndex>64</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_94">
<Value>
<Obj>
<type>0</type>
<id>119</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>512</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>512</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>387</item>
<item>388</item>
<item>389</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>65</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_95">
<Value>
<Obj>
<type>0</type>
<id>121</id>
<name>src_kernel_win_0_va_10</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</second>
</first>
<second>188</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>514</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>390</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>114</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_96">
<Value>
<Obj>
<type>0</type>
<id>122</id>
<name>src_kernel_win_0_va_11</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</second>
</first>
<second>188</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>514</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>391</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>115</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_97">
<Value>
<Obj>
<type>0</type>
<id>123</id>
<name>src_kernel_win_0_va_12</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</second>
</first>
<second>188</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>514</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>392</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>103</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_98">
<Value>
<Obj>
<type>0</type>
<id>124</id>
<name>src_kernel_win_0_va_13</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</second>
</first>
<second>188</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>514</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>393</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>104</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_99">
<Value>
<Obj>
<type>0</type>
<id>125</id>
<name>src_kernel_win_0_va_14</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</second>
</first>
<second>188</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>514</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>394</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>94</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_100">
<Value>
<Obj>
<type>0</type>
<id>126</id>
<name>src_kernel_win_0_va_15</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</second>
</first>
<second>188</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>514</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>395</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>95</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_101">
<Value>
<Obj>
<type>0</type>
<id>127</id>
<name>tmp_222_0_1</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</second>
</first>
<second>188</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>514</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>396</item>
<item>397</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.31</m_delay>
<m_topoIndex>96</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_102">
<Value>
<Obj>
<type>0</type>
<id>128</id>
<name>temp_0_i_i_i_0210_i</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</second>
</first>
<second>188</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>514</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>398</item>
<item>399</item>
<item>400</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.44</m_delay>
<m_topoIndex>97</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_103">
<Value>
<Obj>
<type>0</type>
<id>129</id>
<name>tmp_222_0_2</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</second>
</first>
<second>188</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>514</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>401</item>
<item>402</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.31</m_delay>
<m_topoIndex>98</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_104">
<Value>
<Obj>
<type>0</type>
<id>130</id>
<name>temp_0_i_i_i_0210_i_1</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</second>
</first>
<second>188</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>514</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>403</item>
<item>404</item>
<item>405</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.44</m_delay>
<m_topoIndex>99</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_105">
<Value>
<Obj>
<type>0</type>
<id>131</id>
<name>tmp_222_1</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</second>
</first>
<second>188</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>514</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>406</item>
<item>407</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.31</m_delay>
<m_topoIndex>105</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_106">
<Value>
<Obj>
<type>0</type>
<id>132</id>
<name>temp_0_i_i_i_0210_i_2</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</second>
</first>
<second>188</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>514</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>408</item>
<item>409</item>
<item>410</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.44</m_delay>
<m_topoIndex>106</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_107">
<Value>
<Obj>
<type>0</type>
<id>133</id>
<name>tmp_222_1_1</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</second>
</first>
<second>188</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>514</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>411</item>
<item>412</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.31</m_delay>
<m_topoIndex>107</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_108">
<Value>
<Obj>
<type>0</type>
<id>134</id>
<name>temp_0_i_i_i_0210_i_3</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</second>
</first>
<second>188</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>514</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>413</item>
<item>414</item>
<item>415</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.44</m_delay>
<m_topoIndex>108</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_109">
<Value>
<Obj>
<type>0</type>
<id>135</id>
<name>tmp_222_1_2</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</second>
</first>
<second>188</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>514</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>416</item>
<item>417</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.31</m_delay>
<m_topoIndex>109</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_110">
<Value>
<Obj>
<type>0</type>
<id>136</id>
<name>temp_0_i_i_i_0210_i_4</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</second>
</first>
<second>188</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>514</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>418</item>
<item>419</item>
<item>420</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.44</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>137</id>
<name>tmp_222_2</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</second>
</first>
<second>188</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>514</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>421</item>
<item>422</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.31</m_delay>
<m_topoIndex>116</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_112">
<Value>
<Obj>
<type>0</type>
<id>138</id>
<name>temp_0_i_i_i_0210_i_5</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</second>
</first>
<second>188</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>514</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>423</item>
<item>424</item>
<item>425</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.44</m_delay>
<m_topoIndex>117</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_113">
<Value>
<Obj>
<type>0</type>
<id>139</id>
<name>tmp_222_2_1</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</second>
</first>
<second>188</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>514</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>426</item>
<item>427</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.31</m_delay>
<m_topoIndex>118</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_114">
<Value>
<Obj>
<type>0</type>
<id>140</id>
<name>temp_0_i_i_i_0210_i_6</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</second>
</first>
<second>188</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>514</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>428</item>
<item>429</item>
<item>430</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.44</m_delay>
<m_topoIndex>119</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_115">
<Value>
<Obj>
<type>0</type>
<id>141</id>
<name>tmp_222_2_2</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</second>
</first>
<second>188</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>514</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>431</item>
<item>432</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.31</m_delay>
<m_topoIndex>120</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_116">
<Value>
<Obj>
<type>0</type>
<id>142</id>
<name>tmp_42</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>apply&lt;unsigned char, unsigned char, unsigned char, 3, 3&gt;</second>
</first>
<second>188</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>514</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>433</item>
<item>434</item>
<item>435</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.44</m_delay>
<m_topoIndex>121</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_117">
<Value>
<Obj>
<type>0</type>
<id>143</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>515</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>515</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>437</item>
<item>438</item>
<item>439</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.40</m_delay>
<m_topoIndex>122</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_118">
<Value>
<Obj>
<type>0</type>
<id>144</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>516</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>516</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>440</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>123</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_119">
<Value>
<Obj>
<type>0</type>
<id>146</id>
<name>src_kernel_win_0_va_16</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>458</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>458</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>441</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>124</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_120">
<Value>
<Obj>
<type>0</type>
<id>147</id>
<name>src_kernel_win_0_va_17</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>shift_pixels_right</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>499</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</first>
<second>shift_pixels_right</second>
</first>
<second>165</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</first>
<second>shift_right</second>
</first>
<second>543</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>442</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="_121">
<Value>
<Obj>
<type>0</type>
<id>148</id>
<name>src_kernel_win_0_va_18</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>shift_pixels_right</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>499</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</first>
<second>shift_pixels_right</second>
</first>
<second>165</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</first>
<second>shift_right</second>
</first>
<second>543</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>443</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>100</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_122">
<Value>
<Obj>
<type>0</type>
<id>150</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>shift_pixels_right</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>499</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</first>
<second>shift_pixels_right</second>
</first>
<second>165</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</first>
<second>shift_right</second>
</first>
<second>543</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>444</item>
<item>445</item>
<item>599</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>101</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_123">
<Value>
<Obj>
<type>0</type>
<id>151</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>507</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>507</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>446</item>
<item>447</item>
<item>588</item>
<item>598</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>102</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_124">
<Value>
<Obj>
<type>0</type>
<id>152</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>shift_pixels_right</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>499</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</first>
<second>shift_pixels_right</second>
</first>
<second>165</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_mem.h</first>
<second>shift_right</second>
</first>
<second>543</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>448</item>
<item>449</item>
<item>597</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>112</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_125">
<Value>
<Obj>
<type>0</type>
<id>153</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>507</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>507</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>450</item>
<item>451</item>
<item>589</item>
<item>596</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>113</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_126">
<Value>
<Obj>
<type>0</type>
<id>154</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>458</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>458</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>452</item>
<item>453</item>
<item>595</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>125</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_127">
<Value>
<Obj>
<type>0</type>
<id>155</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>458</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>458</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>454</item>
<item>455</item>
<item>590</item>
<item>594</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>126</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_128">
<Value>
<Obj>
<type>0</type>
<id>156</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>444</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>444</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>127</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_129">
<Value>
<Obj>
<type>0</type>
<id>159</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>443</lineNumber>
<contextFuncName>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1258</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>filter&lt;0, 0, unsigned char, int, 768, 1024, 3, 3&gt;</second>
</first>
<second>443</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>morp_opr&lt;hls::dilate_kernel, hls::BORDER_REPLICATE, 0, 0, 768, 1024&gt;</second>
</first>
<second>1184</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>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>128</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_130">
<Value>
<Obj>
<type>0</type>
<id>161</id>
<name></name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</fileName>
<fileDirectory>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</fileDirectory>
<lineNumber>1259</lineNumber>
<contextFuncName>Dilate&lt;0, 0, 768, 1024&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_imgproc.h</first>
<second>Dilate&lt;0, 0, 768, 1024&gt;</second>
</first>
<second>1259</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>29</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>21</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_131">
<Value>
<Obj>
<type>2</type>
<id>163</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="_132">
<Value>
<Obj>
<type>2</type>
<id>173</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="_133">
<Value>
<Obj>
<type>2</type>
<id>178</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_134">
<Value>
<Obj>
<type>2</type>
<id>184</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>770</content>
</item>
<item class_id_reference="16" object_id="_135">
<Value>
<Obj>
<type>2</type>
<id>187</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>1</content>
</item>
<item class_id_reference="16" object_id="_136">
<Value>
<Obj>
<type>2</type>
<id>193</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>768</content>
</item>
<item class_id_reference="16" object_id="_137">
<Value>
<Obj>
<type>2</type>
<id>196</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_138">
<Value>
<Obj>
<type>2</type>
<id>202</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>9</content>
</item>
<item class_id_reference="16" object_id="_139">
<Value>
<Obj>
<type>2</type>
<id>205</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_140">
<Value>
<Obj>
<type>2</type>
<id>215</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_141">
<Value>
<Obj>
<type>2</type>
<id>217</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>2</content>
</item>
<item class_id_reference="16" object_id="_142">
<Value>
<Obj>
<type>2</type>
<id>221</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="_143">
<Value>
<Obj>
<type>2</type>
<id>228</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>1026</content>
</item>
<item class_id_reference="16" object_id="_144">
<Value>
<Obj>
<type>2</type>
<id>231</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_145">
<Value>
<Obj>
<type>2</type>
<id>243</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="_146">
<Value>
<Obj>
<type>2</type>
<id>248</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>12</bitwidth>
</Value>
<const_type>0</const_type>
<content>4095</content>
</item>
<item class_id_reference="16" object_id="_147">
<Value>
<Obj>
<type>2</type>
<id>251</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<const_type>0</const_type>
<content>1023</content>
</item>
<item class_id_reference="16" object_id="_148">
<Value>
<Obj>
<type>2</type>
<id>257</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>11</content>
</item>
<item class_id_reference="16" object_id="_149">
<Value>
<Obj>
<type>2</type>
<id>286</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_150">
<Value>
<Obj>
<type>2</type>
<id>291</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>3</content>
</item>
<item class_id_reference="16" object_id="_151">
<Value>
<Obj>
<type>2</type>
<id>296</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>4</const_type>
<content>0</content>
</item>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>18</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_152">
<Obj>
<type>3</type>
<id>20</id>
<name>_ZN8ap_fixedILi31ELi11EL9ap_q_mode0EL9ap_o_mode3ELi0EEC1Ei.exit36.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>13</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>14</item>
<item>15</item>
<item>16</item>
<item>19</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_153">
<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="_154">
<Obj>
<type>3</type>
<id>40</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>11</count>
<item_version>0</item_version>
<item>29</item>
<item>30</item>
<item>31</item>
<item>32</item>
<item>33</item>
<item>34</item>
<item>35</item>
<item>36</item>
<item>37</item>
<item>38</item>
<item>39</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_155">
<Obj>
<type>3</type>
<id>47</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>5</count>
<item_version>0</item_version>
<item>41</item>
<item>42</item>
<item>43</item>
<item>45</item>
<item>46</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_156">
<Obj>
<type>3</type>
<id>86</id>
<name>.critedge.i.i_ifconv</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>34</count>
<item_version>0</item_version>
<item>48</item>
<item>49</item>
<item>50</item>
<item>54</item>
<item>55</item>
<item>57</item>
<item>58</item>
<item>59</item>
<item>60</item>
<item>61</item>
<item>62</item>
<item>63</item>
<item>64</item>
<item>65</item>
<item>66</item>
<item>67</item>
<item>68</item>
<item>69</item>
<item>70</item>
<item>71</item>
<item>72</item>
<item>73</item>
<item>74</item>
<item>75</item>
<item>76</item>
<item>77</item>
<item>78</item>
<item>79</item>
<item>80</item>
<item>81</item>
<item>82</item>
<item>83</item>
<item>84</item>
<item>85</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_157">
<Obj>
<type>3</type>
<id>88</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>87</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_158">
<Obj>
<type>3</type>
<id>91</id>
<name>borderInterpolate.exit494.i.i.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>2</count>
<item_version>0</item_version>
<item>89</item>
<item>90</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_159">
<Obj>
<type>3</type>
<id>95</id>
<name>operator().exit536.i.i.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>3</count>
<item_version>0</item_version>
<item>92</item>
<item>93</item>
<item>94</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_160">
<Obj>
<type>3</type>
<id>97</id>
<name>._crit_edge480.i.i.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>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>96</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_161">
<Obj>
<type>3</type>
<id>100</id>
<name>operator().exit536.i.i.2</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>98</item>
<item>99</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_162">
<Obj>
<type>3</type>
<id>102</id>
<name>._crit_edge480.i.i.2</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>101</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_163">
<Obj>
<type>3</type>
<id>104</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_164">
<Obj>
<type>3</type>
<id>113</id>
<name>.preheader462.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>8</count>
<item_version>0</item_version>
<item>105</item>
<item>106</item>
<item>107</item>
<item>108</item>
<item>109</item>
<item>110</item>
<item>111</item>
<item>112</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_165">
<Obj>
<type>3</type>
<id>120</id>
<name>._crit_edge478.i.i_ifconv</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>6</count>
<item_version>0</item_version>
<item>114</item>
<item>115</item>
<item>116</item>
<item>117</item>
<item>118</item>
<item>119</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_166">
<Obj>
<type>3</type>
<id>145</id>
<name>._crit_edge.i542.i.i.0.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>24</count>
<item_version>0</item_version>
<item>121</item>
<item>122</item>
<item>123</item>
<item>124</item>
<item>125</item>
<item>126</item>
<item>127</item>
<item>128</item>
<item>129</item>
<item>130</item>
<item>131</item>
<item>132</item>
<item>133</item>
<item>134</item>
<item>135</item>
<item>136</item>
<item>137</item>
<item>138</item>
<item>139</item>
<item>140</item>
<item>141</item>
<item>142</item>
<item>143</item>
<item>144</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_167">
<Obj>
<type>3</type>
<id>157</id>
<name>._crit_edge485.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>10</count>
<item_version>0</item_version>
<item>146</item>
<item>147</item>
<item>148</item>
<item>150</item>
<item>151</item>
<item>152</item>
<item>153</item>
<item>154</item>
<item>155</item>
<item>156</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_168">
<Obj>
<type>3</type>
<id>160</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>159</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_169">
<Obj>
<type>3</type>
<id>162</id>
<name>morp_opr<dilate_kernel, BORDER_REPLICATE, 0, 0, 768, 1024>.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>161</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>297</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_170">
<id>164</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>3</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_171">
<id>165</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>4</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_172">
<id>166</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>5</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_173">
<id>167</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>6</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_174">
<id>168</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>7</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_175">
<id>169</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>8</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_176">
<id>170</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>9</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_177">
<id>171</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>10</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_178">
<id>172</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>11</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_179">
<id>174</id>
<edge_type>1</edge_type>
<source_obj>173</source_obj>
<sink_obj>14</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_180">
<id>175</id>
<edge_type>1</edge_type>
<source_obj>173</source_obj>
<sink_obj>15</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_181">
<id>176</id>
<edge_type>1</edge_type>
<source_obj>173</source_obj>
<sink_obj>16</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_182">
<id>177</id>
<edge_type>2</edge_type>
<source_obj>26</source_obj>
<sink_obj>19</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_183">
<id>179</id>
<edge_type>1</edge_type>
<source_obj>178</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_184">
<id>180</id>
<edge_type>2</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="_185">
<id>181</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_186">
<id>182</id>
<edge_type>2</edge_type>
<source_obj>160</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_187">
<id>183</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_188">
<id>185</id>
<edge_type>1</edge_type>
<source_obj>184</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_189">
<id>186</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="_190">
<id>188</id>
<edge_type>1</edge_type>
<source_obj>187</source_obj>
<sink_obj>24</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_191">
<id>189</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="_192">
<id>190</id>
<edge_type>2</edge_type>
<source_obj>40</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_193">
<id>191</id>
<edge_type>2</edge_type>
<source_obj>162</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_194">
<id>192</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>29</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_195">
<id>194</id>
<edge_type>1</edge_type>
<source_obj>193</source_obj>
<sink_obj>29</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_196">
<id>195</id>
<edge_type>1</edge_type>
<source_obj>29</source_obj>
<sink_obj>30</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_197">
<id>197</id>
<edge_type>1</edge_type>
<source_obj>196</source_obj>
<sink_obj>30</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_198">
<id>200</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>31</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_199">
<id>201</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>31</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_200">
<id>203</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>31</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_201">
<id>204</id>
<edge_type>1</edge_type>
<source_obj>31</source_obj>
<sink_obj>32</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_202">
<id>206</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>32</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_203">
<id>207</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>33</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_204">
<id>208</id>
<edge_type>1</edge_type>
<source_obj>178</source_obj>
<sink_obj>33</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_205">
<id>209</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>34</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_206">
<id>210</id>
<edge_type>1</edge_type>
<source_obj>187</source_obj>
<sink_obj>34</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_207">
<id>211</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_208">
<id>212</id>
<edge_type>1</edge_type>
<source_obj>193</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_209">
<id>213</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>36</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_210">
<id>214</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_211">
<id>216</id>
<edge_type>1</edge_type>
<source_obj>215</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_212">
<id>218</id>
<edge_type>1</edge_type>
<source_obj>217</source_obj>
<sink_obj>38</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_213">
<id>219</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>38</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_214">
<id>220</id>
<edge_type>2</edge_type>
<source_obj>47</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_215">
<id>222</id>
<edge_type>1</edge_type>
<source_obj>221</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_216">
<id>223</id>
<edge_type>2</edge_type>
<source_obj>40</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_217">
<id>224</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_218">
<id>225</id>
<edge_type>2</edge_type>
<source_obj>157</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_219">
<id>226</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_220">
<id>227</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_221">
<id>229</id>
<edge_type>1</edge_type>
<source_obj>228</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_222">
<id>230</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>45</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_223">
<id>232</id>
<edge_type>1</edge_type>
<source_obj>231</source_obj>
<sink_obj>45</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_224">
<id>233</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>46</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_225">
<id>234</id>
<edge_type>2</edge_type>
<source_obj>86</source_obj>
<sink_obj>46</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_226">
<id>235</id>
<edge_type>2</edge_type>
<source_obj>160</source_obj>
<sink_obj>46</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_227">
<id>236</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>48</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_228">
<id>237</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>49</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_229">
<id>238</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_230">
<id>241</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>54</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_231">
<id>242</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>54</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_232">
<id>244</id>
<edge_type>1</edge_type>
<source_obj>243</source_obj>
<sink_obj>54</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_233">
<id>245</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="_234">
<id>246</id>
<edge_type>1</edge_type>
<source_obj>178</source_obj>
<sink_obj>55</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_235">
<id>247</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>57</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_236">
<id>249</id>
<edge_type>1</edge_type>
<source_obj>248</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_237">
<id>250</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_238">
<id>252</id>
<edge_type>1</edge_type>
<source_obj>251</source_obj>
<sink_obj>59</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_239">
<id>253</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>59</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_240">
<id>256</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>60</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_241">
<id>258</id>
<edge_type>1</edge_type>
<source_obj>257</source_obj>
<sink_obj>60</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_242">
<id>259</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>61</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_243">
<id>260</id>
<edge_type>1</edge_type>
<source_obj>196</source_obj>
<sink_obj>61</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_244">
<id>263</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_245">
<id>264</id>
<edge_type>1</edge_type>
<source_obj>243</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_246">
<id>265</id>
<edge_type>1</edge_type>
<source_obj>257</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_247">
<id>266</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>63</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_248">
<id>267</id>
<edge_type>1</edge_type>
<source_obj>215</source_obj>
<sink_obj>63</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_249">
<id>268</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>64</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_250">
<id>269</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>64</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_251">
<id>271</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_252">
<id>272</id>
<edge_type>1</edge_type>
<source_obj>257</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_253">
<id>273</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>66</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_254">
<id>274</id>
<edge_type>1</edge_type>
<source_obj>196</source_obj>
<sink_obj>66</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_255">
<id>275</id>
<edge_type>1</edge_type>
<source_obj>66</source_obj>
<sink_obj>67</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_256">
<id>276</id>
<edge_type>1</edge_type>
<source_obj>251</source_obj>
<sink_obj>67</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_257">
<id>277</id>
<edge_type>1</edge_type>
<source_obj>178</source_obj>
<sink_obj>67</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_258">
<id>278</id>
<edge_type>1</edge_type>
<source_obj>64</source_obj>
<sink_obj>68</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_259">
<id>279</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>68</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_260">
<id>280</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>68</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_261">
<id>281</id>
<edge_type>1</edge_type>
<source_obj>68</source_obj>
<sink_obj>69</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_262">
<id>282</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>70</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_263">
<id>283</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>70</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_264">
<id>284</id>
<edge_type>1</edge_type>
<source_obj>68</source_obj>
<sink_obj>71</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_265">
<id>285</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>72</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_266">
<id>287</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>72</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_267">
<id>288</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>72</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_268">
<id>289</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>73</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_269">
<id>290</id>
<edge_type>1</edge_type>
<source_obj>69</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_270">
<id>292</id>
<edge_type>1</edge_type>
<source_obj>291</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_271">
<id>295</id>
<edge_type>1</edge_type>
<source_obj>48</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_272">
<id>297</id>
<edge_type>1</edge_type>
<source_obj>296</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_273">
<id>298</id>
<edge_type>1</edge_type>
<source_obj>296</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_274">
<id>299</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="_275">
<id>300</id>
<edge_type>1</edge_type>
<source_obj>70</source_obj>
<sink_obj>76</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_276">
<id>301</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>76</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_277">
<id>302</id>
<edge_type>1</edge_type>
<source_obj>75</source_obj>
<sink_obj>76</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_278">
<id>303</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>77</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_279">
<id>304</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>77</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_280">
<id>305</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>77</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_281">
<id>306</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="_282">
<id>308</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_283">
<id>309</id>
<edge_type>1</edge_type>
<source_obj>296</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_284">
<id>310</id>
<edge_type>1</edge_type>
<source_obj>296</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_285">
<id>311</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_286">
<id>312</id>
<edge_type>1</edge_type>
<source_obj>70</source_obj>
<sink_obj>80</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_287">
<id>313</id>
<edge_type>1</edge_type>
<source_obj>78</source_obj>
<sink_obj>80</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_288">
<id>314</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="_289">
<id>315</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_290">
<id>316</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_291">
<id>317</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_292">
<id>318</id>
<edge_type>1</edge_type>
<source_obj>81</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_293">
<id>320</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_294">
<id>321</id>
<edge_type>1</edge_type>
<source_obj>296</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_295">
<id>322</id>
<edge_type>1</edge_type>
<source_obj>296</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_296">
<id>323</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_297">
<id>324</id>
<edge_type>1</edge_type>
<source_obj>70</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_298">
<id>325</id>
<edge_type>1</edge_type>
<source_obj>82</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_299">
<id>326</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="_300">
<id>327</id>
<edge_type>1</edge_type>
<source_obj>64</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_301">
<id>328</id>
<edge_type>2</edge_type>
<source_obj>120</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_302">
<id>329</id>
<edge_type>2</edge_type>
<source_obj>88</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_303">
<id>330</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_304">
<id>331</id>
<edge_type>2</edge_type>
<source_obj>91</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_305">
<id>332</id>
<edge_type>2</edge_type>
<source_obj>104</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_306">
<id>335</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>89</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_307">
<id>336</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>90</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_308">
<id>337</id>
<edge_type>2</edge_type>
<source_obj>97</source_obj>
<sink_obj>90</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_309">
<id>338</id>
<edge_type>2</edge_type>
<source_obj>95</source_obj>
<sink_obj>90</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_310">
<id>339</id>
<edge_type>1</edge_type>
<source_obj>29</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_311">
<id>340</id>
<edge_type>2</edge_type>
<source_obj>120</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_312">
<id>341</id>
<edge_type>2</edge_type>
<source_obj>113</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_313">
<id>342</id>
<edge_type>1</edge_type>
<source_obj>78</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_314">
<id>343</id>
<edge_type>1</edge_type>
<source_obj>81</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_315">
<id>344</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_316">
<id>345</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_317">
<id>347</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>107</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_318">
<id>348</id>
<edge_type>1</edge_type>
<source_obj>107</source_obj>
<sink_obj>108</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_319">
<id>349</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>108</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_320">
<id>350</id>
<edge_type>1</edge_type>
<source_obj>80</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_321">
<id>351</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_322">
<id>352</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_323">
<id>353</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_324">
<id>354</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>111</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_325">
<id>355</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>111</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_326">
<id>356</id>
<edge_type>2</edge_type>
<source_obj>120</source_obj>
<sink_obj>112</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_327">
<id>357</id>
<edge_type>1</edge_type>
<source_obj>89</source_obj>
<sink_obj>92</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_328">
<id>358</id>
<edge_type>1</edge_type>
<source_obj>81</source_obj>
<sink_obj>92</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_329">
<id>359</id>
<edge_type>1</edge_type>
<source_obj>89</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_330">
<id>360</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_331">
<id>361</id>
<edge_type>2</edge_type>
<source_obj>97</source_obj>
<sink_obj>94</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_332">
<id>362</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_333">
<id>363</id>
<edge_type>2</edge_type>
<source_obj>102</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_334">
<id>364</id>
<edge_type>2</edge_type>
<source_obj>100</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_335">
<id>365</id>
<edge_type>1</edge_type>
<source_obj>89</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_336">
<id>366</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_337">
<id>367</id>
<edge_type>2</edge_type>
<source_obj>102</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_338">
<id>368</id>
<edge_type>2</edge_type>
<source_obj>120</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_339">
<id>370</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>114</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_340">
<id>371</id>
<edge_type>1</edge_type>
<source_obj>80</source_obj>
<sink_obj>114</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_341">
<id>372</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>114</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_342">
<id>373</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>114</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_343">
<id>374</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_344">
<id>375</id>
<edge_type>1</edge_type>
<source_obj>114</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_345">
<id>376</id>
<edge_type>1</edge_type>
<source_obj>80</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_346">
<id>378</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>116</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_347">
<id>379</id>
<edge_type>1</edge_type>
<source_obj>80</source_obj>
<sink_obj>116</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_348">
<id>380</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>116</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_349">
<id>381</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>116</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_350">
<id>382</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>117</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_351">
<id>383</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="_352">
<id>384</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>117</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_353">
<id>385</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>118</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_354">
<id>386</id>
<edge_type>1</edge_type>
<source_obj>55</source_obj>
<sink_obj>118</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_355">
<id>387</id>
<edge_type>1</edge_type>
<source_obj>118</source_obj>
<sink_obj>119</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_356">
<id>388</id>
<edge_type>2</edge_type>
<source_obj>157</source_obj>
<sink_obj>119</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_357">
<id>389</id>
<edge_type>2</edge_type>
<source_obj>145</source_obj>
<sink_obj>119</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_358">
<id>390</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>121</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_359">
<id>391</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>122</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_360">
<id>392</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>123</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_361">
<id>393</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_362">
<id>394</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_363">
<id>395</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>126</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_364">
<id>396</id>
<edge_type>1</edge_type>
<source_obj>125</source_obj>
<sink_obj>127</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_365">
<id>397</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="_366">
<id>398</id>
<edge_type>1</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="_367">
<id>399</id>
<edge_type>1</edge_type>
<source_obj>125</source_obj>
<sink_obj>128</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_368">
<id>400</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="_369">
<id>401</id>
<edge_type>1</edge_type>
<source_obj>117</source_obj>
<sink_obj>129</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_370">
<id>402</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="_371">
<id>403</id>
<edge_type>1</edge_type>
<source_obj>129</source_obj>
<sink_obj>130</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_372">
<id>404</id>
<edge_type>1</edge_type>
<source_obj>117</source_obj>
<sink_obj>130</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_373">
<id>405</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>130</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_374">
<id>406</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>131</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_375">
<id>407</id>
<edge_type>1</edge_type>
<source_obj>130</source_obj>
<sink_obj>131</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_376">
<id>408</id>
<edge_type>1</edge_type>
<source_obj>131</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_377">
<id>409</id>
<edge_type>1</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="_378">
<id>410</id>
<edge_type>1</edge_type>
<source_obj>130</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_379">
<id>411</id>
<edge_type>1</edge_type>
<source_obj>123</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_380">
<id>412</id>
<edge_type>1</edge_type>
<source_obj>132</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_381">
<id>413</id>
<edge_type>1</edge_type>
<source_obj>133</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_382">
<id>414</id>
<edge_type>1</edge_type>
<source_obj>123</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_383">
<id>415</id>
<edge_type>1</edge_type>
<source_obj>132</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_384">
<id>416</id>
<edge_type>1</edge_type>
<source_obj>115</source_obj>
<sink_obj>135</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_385">
<id>417</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="_386">
<id>418</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="_387">
<id>419</id>
<edge_type>1</edge_type>
<source_obj>115</source_obj>
<sink_obj>136</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_388">
<id>420</id>
<edge_type>1</edge_type>
<source_obj>134</source_obj>
<sink_obj>136</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_389">
<id>421</id>
<edge_type>1</edge_type>
<source_obj>122</source_obj>
<sink_obj>137</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_390">
<id>422</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="_391">
<id>423</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="_392">
<id>424</id>
<edge_type>1</edge_type>
<source_obj>122</source_obj>
<sink_obj>138</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_393">
<id>425</id>
<edge_type>1</edge_type>
<source_obj>136</source_obj>
<sink_obj>138</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_394">
<id>426</id>
<edge_type>1</edge_type>
<source_obj>121</source_obj>
<sink_obj>139</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_395">
<id>427</id>
<edge_type>1</edge_type>
<source_obj>138</source_obj>
<sink_obj>139</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_396">
<id>428</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>140</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_397">
<id>429</id>
<edge_type>1</edge_type>
<source_obj>121</source_obj>
<sink_obj>140</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_398">
<id>430</id>
<edge_type>1</edge_type>
<source_obj>138</source_obj>
<sink_obj>140</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_399">
<id>431</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>141</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_400">
<id>432</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="_401">
<id>433</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="_402">
<id>434</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_403">
<id>435</id>
<edge_type>1</edge_type>
<source_obj>140</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_404">
<id>438</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_405">
<id>439</id>
<edge_type>1</edge_type>
<source_obj>142</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_406">
<id>440</id>
<edge_type>2</edge_type>
<source_obj>157</source_obj>
<sink_obj>144</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_407">
<id>441</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>146</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_408">
<id>442</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>147</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_409">
<id>443</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>148</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_410">
<id>444</id>
<edge_type>1</edge_type>
<source_obj>148</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_411">
<id>445</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_412">
<id>446</id>
<edge_type>1</edge_type>
<source_obj>117</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_413">
<id>447</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_414">
<id>448</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="_415">
<id>449</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_416">
<id>450</id>
<edge_type>1</edge_type>
<source_obj>115</source_obj>
<sink_obj>153</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_417">
<id>451</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>153</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_418">
<id>452</id>
<edge_type>1</edge_type>
<source_obj>146</source_obj>
<sink_obj>154</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_419">
<id>453</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>154</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_420">
<id>454</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>155</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_421">
<id>455</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>155</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_422">
<id>456</id>
<edge_type>2</edge_type>
<source_obj>47</source_obj>
<sink_obj>156</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_423">
<id>457</id>
<edge_type>2</edge_type>
<source_obj>26</source_obj>
<sink_obj>159</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_424">
<id>557</id>
<edge_type>2</edge_type>
<source_obj>20</source_obj>
<sink_obj>26</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_425">
<id>558</id>
<edge_type>2</edge_type>
<source_obj>26</source_obj>
<sink_obj>162</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_426">
<id>559</id>
<edge_type>2</edge_type>
<source_obj>26</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_427">
<id>560</id>
<edge_type>2</edge_type>
<source_obj>40</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_428">
<id>561</id>
<edge_type>2</edge_type>
<source_obj>47</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_429">
<id>562</id>
<edge_type>2</edge_type>
<source_obj>47</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_430">
<id>563</id>
<edge_type>2</edge_type>
<source_obj>86</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_431">
<id>564</id>
<edge_type>2</edge_type>
<source_obj>86</source_obj>
<sink_obj>120</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_432">
<id>565</id>
<edge_type>2</edge_type>
<source_obj>88</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_433">
<id>566</id>
<edge_type>2</edge_type>
<source_obj>88</source_obj>
<sink_obj>91</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_434">
<id>567</id>
<edge_type>2</edge_type>
<source_obj>91</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_435">
<id>568</id>
<edge_type>2</edge_type>
<source_obj>91</source_obj>
<sink_obj>97</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_436">
<id>569</id>
<edge_type>2</edge_type>
<source_obj>95</source_obj>
<sink_obj>97</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_437">
<id>570</id>
<edge_type>2</edge_type>
<source_obj>97</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_438">
<id>571</id>
<edge_type>2</edge_type>
<source_obj>97</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_439">
<id>572</id>
<edge_type>2</edge_type>
<source_obj>100</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_440">
<id>573</id>
<edge_type>2</edge_type>
<source_obj>102</source_obj>
<sink_obj>120</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_441">
<id>574</id>
<edge_type>2</edge_type>
<source_obj>104</source_obj>
<sink_obj>113</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_442">
<id>575</id>
<edge_type>2</edge_type>
<source_obj>104</source_obj>
<sink_obj>120</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_443">
<id>576</id>
<edge_type>2</edge_type>
<source_obj>113</source_obj>
<sink_obj>120</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_444">
<id>577</id>
<edge_type>2</edge_type>
<source_obj>120</source_obj>
<sink_obj>145</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_445">
<id>578</id>
<edge_type>2</edge_type>
<source_obj>120</source_obj>
<sink_obj>157</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_446">
<id>579</id>
<edge_type>2</edge_type>
<source_obj>145</source_obj>
<sink_obj>157</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_447">
<id>580</id>
<edge_type>2</edge_type>
<source_obj>157</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_448">
<id>581</id>
<edge_type>2</edge_type>
<source_obj>160</source_obj>
<sink_obj>26</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_449">
<id>582</id>
<edge_type>4</edge_type>
<source_obj>73</source_obj>
<sink_obj>108</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_450">
<id>583</id>
<edge_type>4</edge_type>
<source_obj>78</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_451">
<id>584</id>
<edge_type>4</edge_type>
<source_obj>82</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_452">
<id>585</id>
<edge_type>4</edge_type>
<source_obj>78</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_453">
<id>586</id>
<edge_type>4</edge_type>
<source_obj>82</source_obj>
<sink_obj>92</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_454">
<id>587</id>
<edge_type>4</edge_type>
<source_obj>73</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_455">
<id>588</id>
<edge_type>4</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="_456">
<id>589</id>
<edge_type>4</edge_type>
<source_obj>147</source_obj>
<sink_obj>153</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_457">
<id>590</id>
<edge_type>4</edge_type>
<source_obj>146</source_obj>
<sink_obj>155</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_458">
<id>591</id>
<edge_type>4</edge_type>
<source_obj>48</source_obj>
<sink_obj>111</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_459">
<id>592</id>
<edge_type>4</edge_type>
<source_obj>49</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_460">
<id>593</id>
<edge_type>4</edge_type>
<source_obj>50</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_461">
<id>594</id>
<edge_type>4</edge_type>
<source_obj>121</source_obj>
<sink_obj>155</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_462">
<id>595</id>
<edge_type>4</edge_type>
<source_obj>122</source_obj>
<sink_obj>154</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_463">
<id>596</id>
<edge_type>4</edge_type>
<source_obj>123</source_obj>
<sink_obj>153</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_464">
<id>597</id>
<edge_type>4</edge_type>
<source_obj>124</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_465">
<id>598</id>
<edge_type>4</edge_type>
<source_obj>125</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_466">
<id>599</id>
<edge_type>4</edge_type>
<source_obj>126</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_467">
<mId>1</mId>
<mTag>Dilate</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>793871</mMinLatency>
<mMaxLatency>793871</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_468">
<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>20</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="_469">
<mId>3</mId>
<mTag>loop_height</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>770</mMinTripCount>
<mMaxTripCount>770</mMaxTripCount>
<mMinLatency>793870</mMinLatency>
<mMaxLatency>793870</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_470">
<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>26</item>
<item>40</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="_471">
<mId>5</mId>
<mTag>loop_width</mTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>13</count>
<item_version>0</item_version>
<item>47</item>
<item>86</item>
<item>88</item>
<item>91</item>
<item>95</item>
<item>97</item>
<item>100</item>
<item>102</item>
<item>104</item>
<item>113</item>
<item>120</item>
<item>145</item>
<item>157</item>
</basic_blocks>
<mII>1</mII>
<mDepth>4</mDepth>
<mMinTripCount>1026</mMinTripCount>
<mMaxTripCount>1026</mMaxTripCount>
<mMinLatency>1028</mMinLatency>
<mMaxLatency>1028</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_472">
<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>160</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="_473">
<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>162</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>0</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
</cdfg_regions>
<fsm class_id="24" tracking_level="1" version="0" object_id="_474">
<states class_id="25" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="26" tracking_level="1" version="0" object_id="_475">
<id>1</id>
<operations class_id="27" tracking_level="0" version="0">
<count>17</count>
<item_version>0</item_version>
<item class_id="28" tracking_level="1" version="0" object_id="_476">
<id>3</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_477">
<id>4</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_478">
<id>5</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_479">
<id>6</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_480">
<id>7</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_481">
<id>8</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_482">
<id>9</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_483">
<id>10</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_484">
<id>11</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_485">
<id>12</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_486">
<id>13</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_487">
<id>14</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_488">
<id>15</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_489">
<id>16</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_490">
<id>17</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_491">
<id>18</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_492">
<id>19</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_493">
<id>2</id>
<operations>
<count>19</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_494">
<id>21</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_495">
<id>22</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_496">
<id>23</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_497">
<id>24</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_498">
<id>25</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_499">
<id>27</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_500">
<id>28</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_501">
<id>29</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_502">
<id>30</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_503">
<id>31</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_504">
<id>32</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_505">
<id>33</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_506">
<id>34</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_507">
<id>35</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_508">
<id>36</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_509">
<id>37</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_510">
<id>38</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_511">
<id>39</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_512">
<id>161</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_513">
<id>3</id>
<operations>
<count>37</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_514">
<id>41</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_515">
<id>42</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_516">
<id>43</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_517">
<id>44</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_518">
<id>45</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_519">
<id>46</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_520">
<id>54</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_521">
<id>55</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_522">
<id>57</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_523">
<id>58</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_524">
<id>59</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_525">
<id>60</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_526">
<id>61</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_527">
<id>62</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_528">
<id>63</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_529">
<id>64</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_530">
<id>65</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_531">
<id>66</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_532">
<id>67</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_533">
<id>68</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_534">
<id>69</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_535">
<id>70</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_536">
<id>71</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_537">
<id>72</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_538">
<id>73</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_539">
<id>77</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_540">
<id>78</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_541">
<id>81</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_542">
<id>82</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_543">
<id>85</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_544">
<id>87</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_545">
<id>90</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_546">
<id>96</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_547">
<id>101</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_548">
<id>103</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_549">
<id>118</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_550">
<id>119</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_551">
<id>4</id>
<operations>
<count>40</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_552">
<id>48</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_553">
<id>49</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_554">
<id>50</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_555">
<id>73</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_556">
<id>74</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_557">
<id>75</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_558">
<id>76</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_559">
<id>78</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_560">
<id>79</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_561">
<id>80</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_562">
<id>82</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_563">
<id>83</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_564">
<id>84</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_565">
<id>89</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_566">
<id>92</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_567">
<id>93</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_568">
<id>94</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_569">
<id>98</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_570">
<id>99</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_571">
<id>105</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_572">
<id>106</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_573">
<id>107</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_574">
<id>108</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_575">
<id>109</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_576">
<id>110</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_577">
<id>111</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_578">
<id>112</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_579">
<id>114</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_580">
<id>115</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_581">
<id>116</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_582">
<id>117</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_583">
<id>125</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_584">
<id>126</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_585">
<id>127</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_586">
<id>128</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_587">
<id>129</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_588">
<id>130</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_589">
<id>148</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_590">
<id>150</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_591">
<id>151</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_592">
<id>5</id>
<operations>
<count>11</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_593">
<id>123</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_594">
<id>124</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_595">
<id>131</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_596">
<id>132</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_597">
<id>133</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_598">
<id>134</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_599">
<id>135</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_600">
<id>136</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_601">
<id>147</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_602">
<id>152</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_603">
<id>153</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_604">
<id>6</id>
<operations>
<count>19</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_605">
<id>51</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_606">
<id>52</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_607">
<id>53</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_608">
<id>56</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_609">
<id>121</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_610">
<id>122</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_611">
<id>137</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_612">
<id>138</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_613">
<id>139</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_614">
<id>140</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_615">
<id>141</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_616">
<id>142</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_617">
<id>143</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_618">
<id>144</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_619">
<id>146</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_620">
<id>149</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_621">
<id>154</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_622">
<id>155</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_623">
<id>156</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_624">
<id>7</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_625">
<id>158</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_626">
<id>159</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="29" tracking_level="0" version="0">
<count>8</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="1" version="0" object_id="_627">
<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="_628">
<inState>2</inState>
<outState>3</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item class_id="34" tracking_level="0" version="0">
<first class_id="35" tracking_level="0" version="0">
<first>22</first>
<second>0</second>
</first>
<second>1</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_629">
<inState>7</inState>
<outState>2</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_630">
<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="_631">
<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="_632">
<inState>6</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="_633">
<inState>3</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>43</first>
<second>0</second>
</first>
<second>0</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_634">
<inState>3</inState>
<outState>4</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>43</first>
<second>0</second>
</first>
<second>1</second>
</item>
</item>
</sop>
</condition>
</item>
</transitions>
</fsm>
<res class_id="-1"></res>
<node_label_latency class_id="37" tracking_level="0" version="0">
<count>128</count>
<item_version>0</item_version>
<item class_id="38" tracking_level="0" version="0">
<first>3</first>
<second class_id="39" 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>5</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>6</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>7</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>8</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>9</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>10</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>11</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>14</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>15</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>16</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>21</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>22</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>24</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>25</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>29</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>30</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>31</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>0</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>38</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>39</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>41</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>42</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>43</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>45</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>46</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>49</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>50</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>54</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>57</first>
<second>
<first>2</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>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>66</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>70</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>71</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>72</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>73</first>
<second>
<first>2</first>
<second>1</second>
</second>
</item>
<item>
<first>74</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>76</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>77</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>78</first>
<second>
<first>2</first>
<second>1</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>2</first>
<second>0</second>
</second>
</item>
<item>
<first>82</first>
<second>
<first>2</first>
<second>1</second>
</second>
</item>
<item>
<first>83</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>84</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>85</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>87</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>89</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>90</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>92</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>93</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>94</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>96</first>
<second>
<first>2</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>3</first>
<second>0</second>
</second>
</item>
<item>
<first>101</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>103</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>105</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>106</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>107</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>108</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>109</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>110</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>111</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>112</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>114</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>115</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>116</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>117</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>118</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>119</first>
<second>
<first>2</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>4</first>
<second>0</second>
</second>
</item>
<item>
<first>124</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>125</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>126</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>127</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>128</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>129</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>130</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>131</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>132</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>133</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>134</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>135</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>136</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>137</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>138</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>139</first>
<second>
<first>5</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>5</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>146</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>147</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>148</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>150</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>151</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>152</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>153</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>154</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>155</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>156</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>159</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>161</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="40" tracking_level="0" version="0">
<count>18</count>
<item_version>0</item_version>
<item class_id="41" tracking_level="0" version="0">
<first>20</first>
<second class_id="42" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>26</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>40</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>86</first>
<second>
<first>2</first>
<second>5</second>
</second>
</item>
<item>
<first>88</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>91</first>
<second>
<first>2</first>
<second>3</second>
</second>
</item>
<item>
<first>95</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>97</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>100</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>102</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>104</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>113</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>120</first>
<second>
<first>2</first>
<second>3</second>
</second>
</item>
<item>
<first>145</first>
<second>
<first>3</first>
<second>5</second>
</second>
</item>
<item>
<first>157</first>
<second>
<first>3</first>
<second>5</second>
</second>
</item>
<item>
<first>160</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>162</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="43" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="44" tracking_level="1" version="0" object_id="_635">
<region_name>loop_width</region_name>
<basic_blocks>
<count>13</count>
<item_version>0</item_version>
<item>47</item>
<item>86</item>
<item>88</item>
<item>91</item>
<item>95</item>
<item>97</item>
<item>100</item>
<item>102</item>
<item>104</item>
<item>113</item>
<item>120</item>
<item>145</item>
<item>157</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>4</pipe_depth>
</item>
</regions>
<dp_fu_nodes class_id="45" tracking_level="0" version="0">
<count>103</count>
<item_version>0</item_version>
<item class_id="46" tracking_level="0" version="0">
<first>120</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>3</item>
</second>
</item>
<item>
<first>124</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>4</item>
</second>
</item>
<item>
<first>128</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>5</item>
</second>
</item>
<item>
<first>132</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>6</item>
</second>
</item>
<item>
<first>136</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>7</item>
</second>
</item>
<item>
<first>140</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>144</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>148</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>152</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>156</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>160</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>164</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>168</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>89</item>
<item>107</item>
</second>
</item>
<item>
<first>174</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>143</item>
</second>
</item>
<item>
<first>181</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>187</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>73</item>
<item>73</item>
<item>98</item>
<item>108</item>
</second>
</item>
<item>
<first>193</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>199</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>78</item>
<item>78</item>
<item>93</item>
<item>106</item>
</second>
</item>
<item>
<first>205</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>211</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>82</item>
<item>82</item>
<item>92</item>
<item>105</item>
</second>
</item>
<item>
<first>238</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>249</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>256</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>22</item>
</second>
</item>
<item>
<first>262</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>268</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
<item>
<first>274</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>280</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</second>
</item>
<item>
<first>290</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>296</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>302</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>308</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>314</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>318</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>324</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>330</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>334</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>340</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>346</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>54</item>
</second>
</item>
<item>
<first>356</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>362</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>366</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>372</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>378</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>386</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>392</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>62</item>
</second>
</item>
<item>
<first>402</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>408</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>414</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>422</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>428</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>436</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>444</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>448</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>70</item>
</second>
</item>
<item>
<first>453</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>460</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>118</item>
</second>
</item>
<item>
<first>465</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>468</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>471</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>474</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>479</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>491</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>498</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
<item>
<first>510</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>517</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>529</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>536</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>541</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</second>
</item>
<item>
<first>546</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>111</item>
</second>
</item>
<item>
<first>551</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</second>
</item>
<item>
<first>562</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
<item>
<first>569</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>116</item>
</second>
</item>
<item>
<first>580</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>117</item>
</second>
</item>
<item>
<first>587</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>125</item>
</second>
</item>
<item>
<first>590</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>126</item>
</second>
</item>
<item>
<first>593</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>127</item>
</second>
</item>
<item>
<first>599</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>128</item>
</second>
</item>
<item>
<first>607</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>129</item>
</second>
</item>
<item>
<first>613</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>130</item>
</second>
</item>
<item>
<first>621</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>148</item>
</second>
</item>
<item>
<first>624</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>150</item>
</second>
</item>
<item>
<first>629</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>151</item>
</second>
</item>
<item>
<first>634</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>123</item>
</second>
</item>
<item>
<first>637</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>124</item>
</second>
</item>
<item>
<first>640</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>131</item>
</second>
</item>
<item>
<first>645</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>132</item>
</second>
</item>
<item>
<first>652</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>133</item>
</second>
</item>
<item>
<first>658</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>134</item>
</second>
</item>
<item>
<first>666</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>135</item>
</second>
</item>
<item>
<first>671</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>136</item>
</second>
</item>
<item>
<first>678</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>147</item>
</second>
</item>
<item>
<first>681</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>152</item>
</second>
</item>
<item>
<first>686</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>153</item>
</second>
</item>
<item>
<first>690</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</second>
</item>
<item>
<first>693</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>122</item>
</second>
</item>
<item>
<first>696</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>137</item>
</second>
</item>
<item>
<first>701</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>138</item>
</second>
</item>
<item>
<first>708</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>139</item>
</second>
</item>
<item>
<first>714</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>140</item>
</second>
</item>
<item>
<first>722</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>141</item>
</second>
</item>
<item>
<first>727</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>142</item>
</second>
</item>
<item>
<first>735</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>146</item>
</second>
</item>
<item>
<first>738</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>154</item>
</second>
</item>
<item>
<first>743</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>155</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="48" tracking_level="0" version="0">
<count>77</count>
<item_version>0</item_version>
<item class_id="49" tracking_level="0" version="0">
<first>ImagLoc_x_cast_fu_372</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>ImagLoc_x_fu_366</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>brmerge_fu_448</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>70</item>
</second>
</item>
<item>
<first>col_assign_1_t_fu_474</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>col_buf_0_val_0_0_fu_491</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>col_buf_0_val_1_0_fu_510</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>col_buf_0_val_2_0_fu_529</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>exitcond460_i_i_fu_334</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>exitcond461_i_i_fu_256</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>22</item>
</second>
</item>
<item>
<first>i_V_fu_262</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>icmp2_fu_356</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>icmp3_fu_402</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>icmp_fu_290</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>j_V_fu_340</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>k_buf_0_val_3_addr_gep_fu_181</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>k_buf_0_val_3_alloca_fu_156</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>k_buf_0_val_4_addr_gep_fu_193</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>k_buf_0_val_4_alloca_fu_160</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>k_buf_0_val_5_addr_gep_fu_205</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>k_buf_0_val_5_alloca_fu_164</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>not_s_fu_422</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>or_cond_i_i_fu_460</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>118</item>
</second>
</item>
<item>
<first>or_cond_i_i_i_fu_408</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>p_assign_1_cast_cast_fu_428</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>rev_fu_386</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>right_border_buf_0_1_fu_152</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>right_border_buf_0_s_fu_148</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>row_assign_7_1_t_fu_318</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>row_assign_7_2_t_fu_324</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_1_fu_124</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>4</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_2_fu_128</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>5</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_3_fu_132</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>6</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_4_fu_136</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>7</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_5_fu_140</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_6_fu_144</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_8_fu_562</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_9_fu_580</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>117</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_fu_120</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>3</item>
</second>
</item>
<item>
<first>t_V_4_cast_fu_330</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>t_V_4_phi_fu_249</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>t_V_phi_fu_238</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>temp_0_i_i_i_0210_i_1_fu_613</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>130</item>
</second>
</item>
<item>
<first>temp_0_i_i_i_0210_i_2_fu_645</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>132</item>
</second>
</item>
<item>
<first>temp_0_i_i_i_0210_i_3_fu_658</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>134</item>
</second>
</item>
<item>
<first>temp_0_i_i_i_0210_i_4_fu_671</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>136</item>
</second>
</item>
<item>
<first>temp_0_i_i_i_0210_i_5_fu_701</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>138</item>
</second>
</item>
<item>
<first>temp_0_i_i_i_0210_i_6_fu_714</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>140</item>
</second>
</item>
<item>
<first>temp_0_i_i_i_0210_i_fu_599</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>128</item>
</second>
</item>
<item>
<first>tmp_146_not_fu_274</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>tmp_176_2_fu_302</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>tmp_222_0_1_fu_593</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>127</item>
</second>
</item>
<item>
<first>tmp_222_0_2_fu_607</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>129</item>
</second>
</item>
<item>
<first>tmp_222_1_1_fu_652</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>133</item>
</second>
</item>
<item>
<first>tmp_222_1_2_fu_666</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>135</item>
</second>
</item>
<item>
<first>tmp_222_1_fu_640</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>131</item>
</second>
</item>
<item>
<first>tmp_222_2_1_fu_708</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>139</item>
</second>
</item>
<item>
<first>tmp_222_2_2_fu_722</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>141</item>
</second>
</item>
<item>
<first>tmp_222_2_fu_696</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>137</item>
</second>
</item>
<item>
<first>tmp_39_fu_296</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>tmp_40_fu_308</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>tmp_41_fu_453</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>tmp_42_fu_727</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>142</item>
</second>
</item>
<item>
<first>tmp_49_fu_479</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>tmp_50_fu_498</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
<item>
<first>tmp_51_fu_517</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>tmp_52_fu_551</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</second>
</item>
<item>
<first>tmp_53_fu_314</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>tmp_54_fu_346</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>54</item>
</second>
</item>
<item>
<first>tmp_55_fu_362</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>tmp_56_fu_378</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>tmp_57_fu_569</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>116</item>
</second>
</item>
<item>
<first>tmp_62_fu_392</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>62</item>
</second>
</item>
<item>
<first>tmp_63_fu_414</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>tmp_64_fu_444</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>tmp_fu_280</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</second>
</item>
<item>
<first>tmp_s_fu_268</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
<item>
<first>x_fu_436</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</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>23</count>
<item_version>0</item_version>
<item>
<first>StgValue_104_store_fu_536</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>StgValue_105_store_fu_541</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</second>
</item>
<item>
<first>StgValue_106_store_fu_546</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>111</item>
</second>
</item>
<item>
<first>StgValue_119_store_fu_624</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>150</item>
</second>
</item>
<item>
<first>StgValue_120_store_fu_629</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>151</item>
</second>
</item>
<item>
<first>StgValue_130_store_fu_681</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>152</item>
</second>
</item>
<item>
<first>StgValue_131_store_fu_686</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>153</item>
</second>
</item>
<item>
<first>StgValue_144_write_fu_174</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>143</item>
</second>
</item>
<item>
<first>StgValue_148_store_fu_738</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>154</item>
</second>
</item>
<item>
<first>StgValue_149_store_fu_743</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>155</item>
</second>
</item>
<item>
<first>grp_read_fu_168</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>89</item>
<item>107</item>
</second>
</item>
<item>
<first>right_border_buf_0_2_load_fu_468</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>right_border_buf_0_3_load_fu_471</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_10_load_fu_690</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_11_load_fu_693</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>122</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_12_load_fu_634</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>123</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_13_load_fu_637</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>124</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_14_load_fu_587</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>125</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_15_load_fu_590</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>126</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_16_load_fu_735</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>146</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_17_load_fu_678</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>147</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_18_load_fu_621</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>148</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_7_load_fu_465</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
</dp_fu_nodes_io>
<return_ports>
<count>0</count>
<item_version>0</item_version>
</return_ports>
<dp_mem_port_nodes class_id="50" tracking_level="0" version="0">
<count>6</count>
<item_version>0</item_version>
<item class_id="51" tracking_level="0" version="0">
<first class_id="52" tracking_level="0" version="0">
<first>k_buf_0_val_3</first>
<second>0</second>
</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>73</item>
<item>73</item>
</second>
</item>
<item>
<first>
<first>k_buf_0_val_3</first>
<second>1</second>
</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>98</item>
<item>108</item>
</second>
</item>
<item>
<first>
<first>k_buf_0_val_4</first>
<second>0</second>
</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>78</item>
<item>78</item>
</second>
</item>
<item>
<first>
<first>k_buf_0_val_4</first>
<second>1</second>
</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>93</item>
<item>106</item>
</second>
</item>
<item>
<first>
<first>k_buf_0_val_5</first>
<second>0</second>
</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>82</item>
<item>82</item>
</second>
</item>
<item>
<first>
<first>k_buf_0_val_5</first>
<second>1</second>
</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>92</item>
<item>105</item>
</second>
</item>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>34</count>
<item_version>0</item_version>
<item>
<first>234</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>245</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>747</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>3</item>
</second>
</item>
<item>
<first>754</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>4</item>
</second>
</item>
<item>
<first>760</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>5</item>
</second>
</item>
<item>
<first>767</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>6</item>
</second>
</item>
<item>
<first>773</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>7</item>
</second>
</item>
<item>
<first>780</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>786</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>792</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>798</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>804</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>22</item>
</second>
</item>
<item>
<first>808</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>813</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
<item>
<first>817</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>822</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>827</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>831</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>835</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>841</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>846</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>851</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>855</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>860</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>864</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>869</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>70</item>
</second>
</item>
<item>
<first>876</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>882</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>888</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>894</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>118</item>
</second>
</item>
<item>
<first>898</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>905</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
<item>
<first>912</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>130</item>
</second>
</item>
<item>
<first>918</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>136</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>34</count>
<item_version>0</item_version>
<item>
<first>brmerge_reg_869</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>70</item>
</second>
</item>
<item>
<first>col_buf_0_val_0_0_reg_898</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>exitcond460_i_i_reg_851</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>exitcond461_i_i_reg_804</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>22</item>
</second>
</item>
<item>
<first>i_V_reg_808</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>icmp_reg_822</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>j_V_reg_855</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>k_buf_0_val_3_addr_reg_876</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>k_buf_0_val_4_addr_reg_882</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>k_buf_0_val_5_addr_reg_888</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>or_cond_i_i_i_reg_860</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>or_cond_i_i_reg_894</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>118</item>
</second>
</item>
<item>
<first>right_border_buf_0_1_reg_798</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>right_border_buf_0_s_reg_792</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>row_assign_7_1_t_reg_841</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>row_assign_7_2_t_reg_846</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_1_reg_754</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>4</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_2_reg_760</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>5</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_3_reg_767</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>6</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_4_reg_773</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>7</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_5_reg_780</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_6_reg_786</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_8_reg_905</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
<item>
<first>src_kernel_win_0_va_reg_747</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>3</item>
</second>
</item>
<item>
<first>t_V_4_reg_245</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>t_V_reg_234</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>temp_0_i_i_i_0210_i_1_reg_912</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>130</item>
</second>
</item>
<item>
<first>temp_0_i_i_i_0210_i_4_reg_918</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>136</item>
</second>
</item>
<item>
<first>tmp_146_not_reg_817</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>tmp_176_2_reg_831</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>tmp_39_reg_827</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>tmp_40_reg_835</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>tmp_64_reg_864</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>tmp_s_reg_813</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
</dp_regname_nodes>
<dp_reg_phi>
<count>2</count>
<item_version>0</item_version>
<item>
<first>234</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>245</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
</dp_reg_phi>
<dp_regname_phi>
<count>2</count>
<item_version>0</item_version>
<item>
<first>t_V_4_reg_245</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>t_V_reg_234</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
</dp_regname_phi>
<dp_port_io_nodes class_id="53" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="54" tracking_level="0" version="0">
<first>p_dst_data_stream_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>143</item>
</second>
</item>
</second>
</item>
<item>
<first>p_src_data_stream_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>89</item>
<item>107</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core class_id="55" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="56" tracking_level="0" version="0">
<first>1</first>
<second>FIFO</second>
</item>
<item>
<first>2</first>
<second>FIFO</second>
</item>
</port2core>
<node2core>
<count>3</count>
<item_version>0</item_version>
<item>
<first>14</first>
<second>RAM</second>
</item>
<item>
<first>15</first>
<second>RAM</second>
</item>
<item>
<first>16</first>
<second>RAM</second>
</item>
</node2core>
</syndb>
</boost_serialization>
|
-------------------------------------------------------------------------------
-- Copyright (c) 2019, Daniel King
-- 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.
-- * The name of the copyright holder may not 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 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 Keccak.Generic_Duplex;
with Keccak.Generic_Sponge;
pragma Elaborate_All (Keccak.Generic_Duplex);
pragma Elaborate_All (Keccak.Generic_Sponge);
-- @summary
-- Instantiation of Keccak-p[400,20], with a Sponge and Duplex built on top of it.
package Keccak.Keccak_400.Rounds_20
with SPARK_Mode => On
is
procedure Permute is new KeccakF_400_Permutation.Permute
(Num_Rounds => 20);
package Sponge is new Keccak.Generic_Sponge
(State_Size_Bits => KeccakF_400.State_Size_Bits,
State_Type => State,
Init_State => KeccakF_400.Init,
Permute => Permute,
XOR_Bits_Into_State => KeccakF_400_Lanes.XOR_Bits_Into_State,
Extract_Data => KeccakF_400_Lanes.Extract_Bytes,
Pad => Keccak.Padding.Pad101_Multi_Blocks);
package Duplex is new Keccak.Generic_Duplex
(State_Size_Bits => KeccakF_400.State_Size_Bits,
State_Type => State,
Init_State => KeccakF_400.Init,
Permute => Permute,
XOR_Bits_Into_State => KeccakF_400_Lanes.XOR_Bits_Into_State,
Extract_Bits => KeccakF_400_Lanes.Extract_Bits,
Pad => Keccak.Padding.Pad101_Single_Block,
Min_Padding_Bits => Keccak.Padding.Pad101_Min_Bits);
end Keccak.Keccak_400.Rounds_20;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S W I T C H - M --
-- --
-- B o d y --
-- --
-- Copyright (C) 2001-2016, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING3. If not, go to --
-- http://www.gnu.org/licenses for a complete copy of the license. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Debug; use Debug;
with Makeutl; use Makeutl;
with Osint; use Osint;
with Opt; use Opt;
with Prj; use Prj;
with Prj.Env; use Prj.Env;
with Table;
with System.Multiprocessors; use System.Multiprocessors;
package body Switch.M is
package Normalized_Switches is new Table.Table
(Table_Component_Type => String_Access,
Table_Index_Type => Integer,
Table_Low_Bound => 1,
Table_Initial => 20,
Table_Increment => 100,
Table_Name => "Switch.M.Normalized_Switches");
-- This table is used to keep the normalized switches, so that they may be
-- reused for subsequent invocations of Normalize_Compiler_Switches with
-- similar switches.
Initial_Number_Of_Switches : constant := 10;
Global_Switches : Argument_List_Access := null;
-- Used by function Normalize_Compiler_Switches
---------------------------------
-- Normalize_Compiler_Switches --
---------------------------------
procedure Normalize_Compiler_Switches
(Switch_Chars : String;
Switches : in out Argument_List_Access;
Last : out Natural)
is
Switch_Starts_With_Gnat : Boolean;
Ptr : Integer := Switch_Chars'First;
Max : constant Integer := Switch_Chars'Last;
C : Character := ' ';
Storing : String := Switch_Chars;
First_Stored : Positive := Ptr + 1;
Last_Stored : Positive := First_Stored;
procedure Add_Switch_Component (S : String);
-- Add a new String_Access component in Switches. If a string equal
-- to S is already stored in the table Normalized_Switches, use it.
-- Otherwise add a new component to the table.
--------------------------
-- Add_Switch_Component --
--------------------------
procedure Add_Switch_Component (S : String) is
begin
-- If Switches is null, allocate a new array
if Switches = null then
Switches := new Argument_List (1 .. Initial_Number_Of_Switches);
-- Otherwise, if Switches is full, extend it
elsif Last = Switches'Last then
declare
New_Switches : constant Argument_List_Access :=
new Argument_List
(1 .. Switches'Length + Switches'Length);
begin
New_Switches (1 .. Switches'Length) := Switches.all;
Last := Switches'Length;
Switches := New_Switches;
end;
end if;
-- If this is the first switch, Last designates the first component
if Last = 0 then
Last := Switches'First;
else
Last := Last + 1;
end if;
-- Look into the table Normalized_Switches for a similar string.
-- If one is found, put it at the added component, and return.
for Index in 1 .. Normalized_Switches.Last loop
if S = Normalized_Switches.Table (Index).all then
Switches (Last) := Normalized_Switches.Table (Index);
return;
end if;
end loop;
-- No string equal to S was found in the table Normalized_Switches.
-- Add a new component in the table.
Switches (Last) := new String'(S);
Normalized_Switches.Append (Switches (Last));
end Add_Switch_Component;
-- Start of processing for Normalize_Compiler_Switches
begin
Last := 0;
if Ptr = Max or else Switch_Chars (Ptr) /= '-' then
return;
end if;
Ptr := Ptr + 1;
Switch_Starts_With_Gnat :=
Ptr + 3 <= Max and then Switch_Chars (Ptr .. Ptr + 3) = "gnat";
if Switch_Starts_With_Gnat then
Ptr := Ptr + 4;
First_Stored := Ptr;
end if;
while Ptr <= Max loop
C := Switch_Chars (Ptr);
-- Processing for a switch
case Switch_Starts_With_Gnat is
when False =>
-- All switches that don't start with -gnat stay as is,
-- except -pg, -Wall, -k8, -w
if Switch_Chars = "-pg" or else Switch_Chars = "-p" then
-- The gcc driver converts -pg to -p, so that is what
-- is stored in the ALI file.
Add_Switch_Component ("-p");
elsif Switch_Chars = "-Wall" then
-- The gcc driver adds -gnatwa when -Wall is used
Add_Switch_Component ("-gnatwa");
Add_Switch_Component ("-Wall");
elsif Switch_Chars = "-k8" then
-- The gcc driver transforms -k8 into -gnatk8
Add_Switch_Component ("-gnatk8");
elsif Switch_Chars = "-w" then
-- The gcc driver adds -gnatws when -w is used
Add_Switch_Component ("-gnatws");
Add_Switch_Component ("-w");
elsif Switch_Chars'Length > 6
and then
Switch_Chars (Switch_Chars'First .. Switch_Chars'First + 5)
= "--RTS="
then
Add_Switch_Component (Switch_Chars);
-- When --RTS=mtp is used, the gcc driver adds -mrtp
if Switch_Chars = "--RTS=mtp" then
Add_Switch_Component ("-mrtp");
end if;
-- Special case for -fstack-check (alias for
-- -fstack-check=specific)
elsif Switch_Chars = "-fstack-check" then
Add_Switch_Component ("-fstack-check=specific");
-- Take only into account switches that are transmitted to
-- gnat1 by the gcc driver and stored by gnat1 in the ALI file.
else
case C is
when 'O' | 'W' | 'w' | 'f' | 'd' | 'g' | 'm' =>
Add_Switch_Component (Switch_Chars);
when others =>
null;
end case;
end if;
return;
when True =>
case C is
-- One-letter switches
when 'a' | 'A' | 'b' | 'B' | 'c' | 'C' | 'E' | 'f' | 'F'
| 'g' | 'h' | 'H' | 'I' | 'L' | 'N' | 'p' | 'P' | 'q'
| 'Q' | 'r' | 's' | 'S' | 't' | 'u' | 'U' | 'v' | 'x'
| 'X' | 'Z'
=>
Storing (First_Stored) := C;
Add_Switch_Component
(Storing (Storing'First .. First_Stored));
Ptr := Ptr + 1;
-- One-letter switches followed by a positive number
when 'D' | 'G' | 'j' | 'k' | 'm' | 'T' =>
Storing (First_Stored) := C;
Last_Stored := First_Stored;
if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
Ptr := Ptr + 1;
end if;
loop
Ptr := Ptr + 1;
exit when Ptr > Max
or else Switch_Chars (Ptr) not in '0' .. '9';
Last_Stored := Last_Stored + 1;
Storing (Last_Stored) := Switch_Chars (Ptr);
end loop;
Add_Switch_Component
(Storing (Storing'First .. Last_Stored));
when 'd' =>
Storing (First_Stored) := 'd';
while Ptr < Max loop
Ptr := Ptr + 1;
C := Switch_Chars (Ptr);
exit when C = ASCII.NUL or else C = '/'
or else C = '-';
if C in '1' .. '9' or else
C in 'a' .. 'z' or else
C in 'A' .. 'Z'
then
Storing (First_Stored + 1) := C;
Add_Switch_Component
(Storing (Storing'First .. First_Stored + 1));
else
Last := 0;
return;
end if;
end loop;
return;
when 'e' =>
-- Some of the gnate... switches are not stored
Storing (First_Stored) := 'e';
Ptr := Ptr + 1;
if Ptr > Max then
Last := 0;
return;
else
case Switch_Chars (Ptr) is
when 'A' =>
Ptr := Ptr + 1;
Add_Switch_Component ("-gnateA");
when 'D' =>
Storing (First_Stored + 1 ..
First_Stored + Max - Ptr + 1) :=
Switch_Chars (Ptr .. Max);
Add_Switch_Component
(Storing (Storing'First ..
First_Stored + Max - Ptr + 1));
Ptr := Max + 1;
when 'E' | 'F' | 'G' | 'S' | 'u' | 'V' | 'Y' =>
Add_Switch_Component
("-gnate" & Switch_Chars (Ptr));
Ptr := Ptr + 1;
when 'i' | 'I' =>
declare
First : constant Positive := Ptr;
begin
Ptr := Ptr + 1;
if Ptr <= Max and then
Switch_Chars (Ptr) = '='
then
Ptr := Ptr + 1;
end if;
while Ptr <= Max and then
Switch_Chars (Ptr) in '0' .. '9'
loop
Ptr := Ptr + 1;
end loop;
Storing (First_Stored + 1 ..
First_Stored + Ptr - First) :=
Switch_Chars (First .. Ptr - 1);
Add_Switch_Component
(Storing (Storing'First ..
First_Stored + Ptr - First));
end;
when 'l' =>
Ptr := Ptr + 1;
Add_Switch_Component ("-gnatel");
when 'L' =>
Ptr := Ptr + 1;
Add_Switch_Component ("-gnateL");
when 'p' =>
Ptr := Ptr + 1;
if Ptr = Max then
Last := 0;
return;
end if;
if Switch_Chars (Ptr) = '=' then
Ptr := Ptr + 1;
end if;
-- To normalize, always put a '=' after
-- -gnatep. Because that could lengthen the
-- switch string, declare a local variable.
declare
To_Store : String (1 .. Max - Ptr + 9);
begin
To_Store (1 .. 8) := "-gnatep=";
To_Store (9 .. Max - Ptr + 9) :=
Switch_Chars (Ptr .. Max);
Add_Switch_Component (To_Store);
end;
return;
when others =>
Last := 0;
return;
end case;
end if;
when 'i' =>
Storing (First_Stored) := 'i';
Ptr := Ptr + 1;
if Ptr > Max then
Last := 0;
return;
end if;
C := Switch_Chars (Ptr);
if C in '1' .. '5'
or else C = '8'
or else C = 'p'
or else C = 'f'
or else C = 'n'
or else C = 'w'
then
Storing (First_Stored + 1) := C;
Add_Switch_Component
(Storing (Storing'First .. First_Stored + 1));
Ptr := Ptr + 1;
else
Last := 0;
return;
end if;
-- -gnatl may be -gnatl=<file name>
when 'l' =>
Ptr := Ptr + 1;
if Ptr > Max or else Switch_Chars (Ptr) /= '=' then
Add_Switch_Component ("-gnatl");
else
Add_Switch_Component
("-gnatl" & Switch_Chars (Ptr .. Max));
return;
end if;
-- -gnatn may be -gnatn, -gnatn1, or -gnatn2
when 'n' =>
Last_Stored := First_Stored;
Storing (Last_Stored) := 'n';
Ptr := Ptr + 1;
if Ptr <= Max
and then Switch_Chars (Ptr) in '1' .. '2'
then
Last_Stored := Last_Stored + 1;
Storing (Last_Stored) := Switch_Chars (Ptr);
Ptr := Ptr + 1;
end if;
Add_Switch_Component
(Storing (Storing'First .. Last_Stored));
-- -gnato may be -gnatox or -gnatoxx, with x=0/1/2/3
when 'o' =>
Last_Stored := First_Stored;
Storing (Last_Stored) := 'o';
Ptr := Ptr + 1;
if Ptr <= Max
and then Switch_Chars (Ptr) in '0' .. '3'
then
Last_Stored := Last_Stored + 1;
Storing (Last_Stored) := Switch_Chars (Ptr);
Ptr := Ptr + 1;
if Ptr <= Max
and then Switch_Chars (Ptr) in '0' .. '3'
then
Last_Stored := Last_Stored + 1;
Storing (Last_Stored) := Switch_Chars (Ptr);
Ptr := Ptr + 1;
end if;
end if;
Add_Switch_Component
(Storing (Storing'First .. Last_Stored));
-- -gnatR may be followed by '0', '1', '2' or '3',
-- then by 's'
when 'R' =>
Last_Stored := First_Stored;
Storing (Last_Stored) := 'R';
Ptr := Ptr + 1;
if Ptr <= Max
and then Switch_Chars (Ptr) in '0' .. '9'
then
C := Switch_Chars (Ptr);
if C in '4' .. '9' then
Last := 0;
return;
else
Last_Stored := Last_Stored + 1;
Storing (Last_Stored) := C;
Ptr := Ptr + 1;
if Ptr <= Max
and then Switch_Chars (Ptr) = 's'
then
Last_Stored := Last_Stored + 1;
Storing (Last_Stored) := 's';
Ptr := Ptr + 1;
end if;
end if;
end if;
Add_Switch_Component
(Storing (Storing'First .. Last_Stored));
-- -gnatWx, x = 'h'. 'u', 's', 'e', '8' or 'b'
when 'W' =>
Storing (First_Stored) := 'W';
Ptr := Ptr + 1;
if Ptr <= Max then
case Switch_Chars (Ptr) is
when 'h' | 'u' | 's' | 'e' | '8' | 'b' =>
Storing (First_Stored + 1) := Switch_Chars (Ptr);
Add_Switch_Component
(Storing (Storing'First .. First_Stored + 1));
Ptr := Ptr + 1;
when others =>
Last := 0;
return;
end case;
end if;
-- Multiple switches
when 'V' | 'w' | 'y' =>
Storing (First_Stored) := C;
Ptr := Ptr + 1;
if Ptr > Max then
if C = 'y' then
Add_Switch_Component
(Storing (Storing'First .. First_Stored));
else
Last := 0;
return;
end if;
end if;
-- Loop through remaining switch characters in string
while Ptr <= Max loop
C := Switch_Chars (Ptr);
Ptr := Ptr + 1;
-- -gnatyMxxx
if C = 'M' and then Storing (First_Stored) = 'y' then
Last_Stored := First_Stored + 1;
Storing (Last_Stored) := 'M';
while Ptr <= Max loop
C := Switch_Chars (Ptr);
exit when C not in '0' .. '9';
Last_Stored := Last_Stored + 1;
Storing (Last_Stored) := C;
Ptr := Ptr + 1;
end loop;
-- If there is no digit after -gnatyM,
-- the switch is invalid.
if Last_Stored = First_Stored + 1 then
Last := 0;
return;
else
Add_Switch_Component
(Storing (Storing'First .. Last_Stored));
end if;
-- --gnatx.x
elsif C = '.' and then Ptr <= Max then
Storing (First_Stored + 1) := '.';
Storing (First_Stored + 2) := Switch_Chars (Ptr);
Ptr := Ptr + 1;
Add_Switch_Component
(Storing (Storing'First .. First_Stored + 2));
-- All other switches are -gnatxx
else
Storing (First_Stored + 1) := C;
Add_Switch_Component
(Storing (Storing'First .. First_Stored + 1));
end if;
end loop;
-- -gnat95 -gnat05
when '0' | '9' =>
Last_Stored := First_Stored;
Storing (Last_Stored) := C;
Ptr := Ptr + 1;
if Ptr /= Max or else Switch_Chars (Ptr) /= '5' then
-- Invalid switch
Last := 0;
return;
else
Last_Stored := Last_Stored + 1;
Storing (Last_Stored) := '5';
Add_Switch_Component
(Storing (Storing'First .. Last_Stored));
Ptr := Ptr + 1;
end if;
-- -gnat12
when '1' =>
Last_Stored := First_Stored;
Storing (Last_Stored) := C;
Ptr := Ptr + 1;
if Ptr /= Max or else Switch_Chars (Ptr) /= '2' then
-- Invalid switch
Last := 0;
return;
else
Last_Stored := Last_Stored + 1;
Storing (Last_Stored) := '2';
Add_Switch_Component
(Storing (Storing'First .. Last_Stored));
Ptr := Ptr + 1;
end if;
-- -gnat2005 -gnat2012
when '2' =>
if Ptr + 3 /= Max then
Last := 0;
return;
elsif Switch_Chars (Ptr + 1 .. Ptr + 3) = "005" then
Last_Stored := First_Stored + 3;
Storing (First_Stored .. Last_Stored) := "2005";
Add_Switch_Component
(Storing (Storing'First .. Last_Stored));
Ptr := Max + 1;
elsif Switch_Chars (Ptr + 1 .. Ptr + 3) = "012" then
Last_Stored := First_Stored + 3;
Storing (First_Stored .. Last_Stored) := "2012";
Add_Switch_Component
(Storing (Storing'First .. Last_Stored));
Ptr := Max + 1;
else
-- Invalid switch
Last := 0;
return;
end if;
-- -gnat83
when '8' =>
Last_Stored := First_Stored;
Storing (Last_Stored) := '8';
Ptr := Ptr + 1;
if Ptr /= Max or else Switch_Chars (Ptr) /= '3' then
-- Invalid switch
Last := 0;
return;
else
Last_Stored := Last_Stored + 1;
Storing (Last_Stored) := '3';
Add_Switch_Component
(Storing (Storing'First .. Last_Stored));
Ptr := Ptr + 1;
end if;
-- Not a valid switch
when others =>
Last := 0;
return;
end case;
end case;
end loop;
end Normalize_Compiler_Switches;
function Normalize_Compiler_Switches
(Switch_Chars : String) return Argument_List
is
Last : Natural;
begin
Normalize_Compiler_Switches (Switch_Chars, Global_Switches, Last);
if Last = 0 then
return (1 .. 0 => null);
else
return Global_Switches (Global_Switches'First .. Last);
end if;
end Normalize_Compiler_Switches;
------------------------
-- Scan_Make_Switches --
------------------------
procedure Scan_Make_Switches
(Env : in out Prj.Tree.Environment;
Switch_Chars : String;
Success : out Boolean)
is
Ptr : Integer := Switch_Chars'First;
Max : constant Integer := Switch_Chars'Last;
C : Character := ' ';
begin
-- Assume a good switch
Success := True;
-- Skip past the initial character (must be the switch character)
if Ptr = Max then
Bad_Switch (Switch_Chars);
else
Ptr := Ptr + 1;
end if;
-- A little check, "gnat" at the start of a switch is for the compiler
if Switch_Chars'Length >= Ptr + 3
and then Switch_Chars (Ptr .. Ptr + 3) = "gnat"
then
Success := False;
return;
end if;
C := Switch_Chars (Ptr);
-- Multiple character switches
if Switch_Chars'Length > 2 then
if Switch_Chars = "--create-missing-dirs" then
Setup_Projects := True;
elsif Switch_Chars'Length > Subdirs_Option'Length
and then
Switch_Chars
(Switch_Chars'First ..
Switch_Chars'First + Subdirs_Option'Length - 1) =
Subdirs_Option
then
Subdirs :=
new String'
(Switch_Chars
(Switch_Chars'First + Subdirs_Option'Length ..
Switch_Chars'Last));
elsif Switch_Chars = Makeutl.Unchecked_Shared_Lib_Imports then
Opt.Unchecked_Shared_Lib_Imports := True;
elsif Switch_Chars = Makeutl.Single_Compile_Per_Obj_Dir_Switch then
Opt.One_Compilation_Per_Obj_Dir := True;
elsif Switch_Chars = Makeutl.No_Exit_Message_Option then
Opt.No_Exit_Message := True;
elsif Switch_Chars = Makeutl.Keep_Temp_Files_Option then
Opt.Keep_Temporary_Files := True;
elsif Switch_Chars (Ptr) = '-' then
Bad_Switch (Switch_Chars);
elsif Switch_Chars'Length > 3
and then Switch_Chars (Ptr .. Ptr + 1) = "aP"
then
Add_Directories
(Env.Project_Path,
Switch_Chars (Ptr + 2 .. Switch_Chars'Last));
elsif C = 'v' and then Switch_Chars'Length = 3 then
Ptr := Ptr + 1;
Verbose_Mode := True;
case Switch_Chars (Ptr) is
when 'l' => Verbosity_Level := Opt.Low;
when 'm' => Verbosity_Level := Opt.Medium;
when 'h' => Verbosity_Level := Opt.High;
when others => Success := False;
end case;
elsif C = 'd' then
-- Note: for the debug switch, the remaining characters in this
-- switch field must all be debug flags, since all valid switch
-- characters are also valid debug characters. This switch is not
-- documented on purpose because it is only used by the
-- implementors.
-- Loop to scan out debug flags
while Ptr < Max loop
Ptr := Ptr + 1;
C := Switch_Chars (Ptr);
if C in 'a' .. 'z' or else C in 'A' .. 'Z' then
Set_Debug_Flag (C);
else
Bad_Switch (Switch_Chars);
end if;
end loop;
elsif C = 'e' then
Ptr := Ptr + 1;
case Switch_Chars (Ptr) is
-- Processing for eI switch
when 'I' =>
Ptr := Ptr + 1;
Scan_Pos (Switch_Chars, Max, Ptr, Main_Index, C);
if Ptr <= Max then
Bad_Switch (Switch_Chars);
end if;
-- Processing for eL switch
when 'L' =>
if Ptr /= Max then
Bad_Switch (Switch_Chars);
else
Follow_Links_For_Files := True;
Follow_Links_For_Dirs := True;
end if;
-- Processing for eS switch
when 'S' =>
if Ptr /= Max then
Bad_Switch (Switch_Chars);
else
Commands_To_Stdout := True;
end if;
when others =>
Bad_Switch (Switch_Chars);
end case;
elsif C = 'j' then
Ptr := Ptr + 1;
declare
Max_Proc : Nat;
begin
Scan_Nat (Switch_Chars, Max, Ptr, Max_Proc, C);
if Ptr <= Max then
Bad_Switch (Switch_Chars);
else
if Max_Proc = 0 then
Max_Proc := Nat (Number_Of_CPUs);
if Max_Proc = 0 then
Max_Proc := 1;
end if;
end if;
Maximum_Processes := Positive (Max_Proc);
end if;
end;
elsif C = 'w' and then Switch_Chars'Length = 3 then
Ptr := Ptr + 1;
if Switch_Chars = "-we" then
Warning_Mode := Treat_As_Error;
elsif Switch_Chars = "-wn" then
Warning_Mode := Normal;
elsif Switch_Chars = "-ws" then
Warning_Mode := Suppress;
else
Success := False;
end if;
else
Success := False;
end if;
-- Single-character switches
else
Check_Switch : begin
case C is
when 'a' =>
Check_Readonly_Files := True;
-- Processing for b switch
when 'b' =>
Bind_Only := True;
Make_Steps := True;
-- Processing for B switch
when 'B' =>
Build_Bind_And_Link_Full_Project := True;
-- Processing for c switch
when 'c' =>
Compile_Only := True;
Make_Steps := True;
-- Processing for C switch
when 'C' =>
Opt.Create_Mapping_File := True;
-- Processing for D switch
when 'D' =>
if Object_Directory_Present then
Osint.Fail ("duplicate -D switch");
else
Object_Directory_Present := True;
end if;
-- Processing for f switch
when 'f' =>
Force_Compilations := True;
-- Processing for F switch
when 'F' =>
Full_Path_Name_For_Brief_Errors := True;
-- Processing for h switch
when 'h' =>
Usage_Requested := True;
-- Processing for i switch
when 'i' =>
In_Place_Mode := True;
-- Processing for j switch
when 'j' =>
-- -j not followed by a number is an error
Bad_Switch (Switch_Chars);
-- Processing for k switch
when 'k' =>
Keep_Going := True;
-- Processing for l switch
when 'l' =>
Link_Only := True;
Make_Steps := True;
-- Processing for M switch
when 'M' =>
List_Dependencies := True;
-- Processing for n switch
when 'n' =>
Do_Not_Execute := True;
-- Processing for o switch
when 'o' =>
if Output_File_Name_Present then
Osint.Fail ("duplicate -o switch");
else
Output_File_Name_Present := True;
end if;
-- Processing for p switch
when 'p' =>
Setup_Projects := True;
-- Processing for q switch
when 'q' =>
Quiet_Output := True;
-- Processing for R switch
when 'R' =>
Run_Path_Option := False;
-- Processing for s switch
when 's' =>
Ptr := Ptr + 1;
Check_Switches := True;
-- Processing for v switch
when 'v' =>
Verbose_Mode := True;
Verbosity_Level := Opt.High;
-- Processing for x switch
when 'x' =>
External_Unit_Compilation_Allowed := True;
Use_Include_Path_File := True;
-- Processing for z switch
when 'z' =>
No_Main_Subprogram := True;
-- Any other small letter is an illegal switch
when others =>
if C in 'a' .. 'z' then
Bad_Switch (Switch_Chars);
else
Success := False;
end if;
end case;
end Check_Switch;
end if;
end Scan_Make_Switches;
end Switch.M;
|
------------------------------------------------------------------------------
-- --
-- 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_Elements;
with AMF.Standard_Profile_L2.Frameworks;
with AMF.UML.Packages;
with AMF.Visitors;
package AMF.Internals.Standard_Profile_L2_Frameworks is
type Standard_Profile_L2_Framework_Proxy is
limited new AMF.Internals.UML_Elements.UML_Element_Base
and AMF.Standard_Profile_L2.Frameworks.Standard_Profile_L2_Framework with null record;
overriding function Get_Base_Package
(Self : not null access constant Standard_Profile_L2_Framework_Proxy)
return AMF.UML.Packages.UML_Package_Access;
-- Getter of Framework::base_Package.
--
overriding procedure Set_Base_Package
(Self : not null access Standard_Profile_L2_Framework_Proxy;
To : AMF.UML.Packages.UML_Package_Access);
-- Setter of Framework::base_Package.
--
overriding procedure Enter_Element
(Self : not null access constant Standard_Profile_L2_Framework_Proxy;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control);
overriding procedure Leave_Element
(Self : not null access constant Standard_Profile_L2_Framework_Proxy;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control);
overriding procedure Visit_Element
(Self : not null access constant Standard_Profile_L2_Framework_Proxy;
Iterator : in out AMF.Visitors.Abstract_Iterator'Class;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control);
end AMF.Internals.Standard_Profile_L2_Frameworks;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- SYSTEM.MULTIPROCESSORS.DISPATCHING_DOMAINS --
-- --
-- B o d y --
-- --
-- Copyright (C) 2011-2020, Free Software Foundation, Inc. --
-- --
-- GNARL is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNARL was developed by the GNARL team at Florida State University. --
-- Extensive contributions were provided by Ada Core Technologies, Inc. --
-- --
------------------------------------------------------------------------------
-- Body used on unimplemented targets, where the operating system does not
-- support setting task affinities.
package body System.Multiprocessors.Dispatching_Domains is
-----------------------
-- Local subprograms --
-----------------------
procedure Freeze_Dispatching_Domains;
pragma Export
(Ada, Freeze_Dispatching_Domains, "__gnat_freeze_dispatching_domains");
-- Signal the time when no new dispatching domains can be created. It
-- should be called before the environment task calls the main procedure
-- (and after the elaboration code), so the binder-generated file needs to
-- import and call this procedure.
-----------------
-- Assign_Task --
-----------------
procedure Assign_Task
(Domain : in out Dispatching_Domain;
CPU : CPU_Range := Not_A_Specific_CPU;
T : Ada.Task_Identification.Task_Id :=
Ada.Task_Identification.Current_Task)
is
pragma Unreferenced (Domain, CPU, T);
begin
raise Dispatching_Domain_Error with "dispatching domains not supported";
end Assign_Task;
------------
-- Create --
------------
function Create (First : CPU; Last : CPU_Range) return Dispatching_Domain is
pragma Unreferenced (First, Last);
begin
return raise Dispatching_Domain_Error with
"dispatching domains not supported";
end Create;
function Create (Set : CPU_Set) return Dispatching_Domain is
pragma Unreferenced (Set);
begin
return raise Dispatching_Domain_Error with
"dispatching domains not supported";
end Create;
-----------------------------
-- Delay_Until_And_Set_CPU --
-----------------------------
procedure Delay_Until_And_Set_CPU
(Delay_Until_Time : Ada.Real_Time.Time;
CPU : CPU_Range)
is
pragma Unreferenced (Delay_Until_Time, CPU);
begin
raise Dispatching_Domain_Error with "dispatching domains not supported";
end Delay_Until_And_Set_CPU;
--------------------------------
-- Freeze_Dispatching_Domains --
--------------------------------
procedure Freeze_Dispatching_Domains is
begin
null;
end Freeze_Dispatching_Domains;
-------------
-- Get_CPU --
-------------
function Get_CPU
(T : Ada.Task_Identification.Task_Id :=
Ada.Task_Identification.Current_Task) return CPU_Range
is
pragma Unreferenced (T);
begin
return Not_A_Specific_CPU;
end Get_CPU;
-----------------
-- Get_CPU_Set --
-----------------
function Get_CPU_Set (Domain : Dispatching_Domain) return CPU_Set is
pragma Unreferenced (Domain);
begin
return raise Dispatching_Domain_Error
with "dispatching domains not supported";
end Get_CPU_Set;
----------------------------
-- Get_Dispatching_Domain --
----------------------------
function Get_Dispatching_Domain
(T : Ada.Task_Identification.Task_Id :=
Ada.Task_Identification.Current_Task) return Dispatching_Domain
is
pragma Unreferenced (T);
begin
return System_Dispatching_Domain;
end Get_Dispatching_Domain;
-------------------
-- Get_First_CPU --
-------------------
function Get_First_CPU (Domain : Dispatching_Domain) return CPU is
pragma Unreferenced (Domain);
begin
return CPU'First;
end Get_First_CPU;
------------------
-- Get_Last_CPU --
------------------
function Get_Last_CPU (Domain : Dispatching_Domain) return CPU_Range is
pragma Unreferenced (Domain);
begin
return Number_Of_CPUs;
end Get_Last_CPU;
-------------
-- Set_CPU --
-------------
procedure Set_CPU
(CPU : CPU_Range;
T : Ada.Task_Identification.Task_Id :=
Ada.Task_Identification.Current_Task)
is
pragma Unreferenced (CPU, T);
begin
raise Dispatching_Domain_Error with "dispatching domains not supported";
end Set_CPU;
end System.Multiprocessors.Dispatching_Domains;
|
-- This package is intended to set up and tear down the test environment.
-- Once created by GNATtest, this package will never be overwritten
-- automatically. Contents of this package can be modified in any way
-- except for sections surrounded by a 'read only' marker.
with AUnit.Test_Fixtures;
package Bases.Cargo.Test_Data is
-- begin read only
type Test is new AUnit.Test_Fixtures.Test_Fixture
-- end read only
with null record;
procedure Set_Up(Gnattest_T: in out Test);
procedure Tear_Down(Gnattest_T: in out Test);
end Bases.Cargo.Test_Data;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . T A G S --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2019, Free Software Foundation, Inc. --
-- --
-- This specification is derived from the Ada Reference Manual for use with --
-- GNAT. The copyright notice above, and the license provisions that follow --
-- apply solely to the contents of the part following the private keyword. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- For performance analysis, take into account that the operations in this
-- package provide the guarantee that all dispatching calls on primitive
-- operations of tagged types and interfaces take constant time (in terms
-- of source lines executed), that is to say, the cost of these calls is
-- independent of the number of primitives of the type or interface, and
-- independent of the number of ancestors or interface progenitors that a
-- tagged type may have.
-- The following subprograms of the public part of this package take constant
-- time (in terms of source lines executed):
-- Expanded_Name, Wide_Expanded_Name, Wide_Wide_Expanded_Name, External_Tag,
-- Is_Abstract, Is_Descendant_At_Same_Level, Parent_Tag,
-- Descendant_Tag (when used with a library-level tagged type),
-- Internal_Tag (when used with a library-level tagged type).
-- The following subprograms of the public part of this package execute in
-- time that is not constant (in terms of sources line executed):
-- Internal_Tag (when used with a locally defined tagged type), because in
-- such cases this routine processes the external tag, extracts from it an
-- address available there, and converts it into the tag value returned by
-- this function. The number of instructions executed is not constant since
-- it depends on the length of the external tag string.
-- Descendant_Tag (when used with a locally defined tagged type), because
-- it relies on the subprogram Internal_Tag() to provide its functionality.
-- Interface_Ancestor_Tags, because this function returns a table whose
-- length depends on the number of interfaces covered by a tagged type.
with System.Storage_Elements;
package Ada.Tags is
pragma Preelaborate;
-- In accordance with Ada 2005 AI-362
type Tag is private;
pragma Preelaborable_Initialization (Tag);
No_Tag : constant Tag;
function Expanded_Name (T : Tag) return String;
function Wide_Expanded_Name (T : Tag) return Wide_String;
pragma Ada_05 (Wide_Expanded_Name);
function Wide_Wide_Expanded_Name (T : Tag) return Wide_Wide_String;
pragma Ada_05 (Wide_Wide_Expanded_Name);
function External_Tag (T : Tag) return String;
function Internal_Tag (External : String) return Tag;
function Descendant_Tag
(External : String;
Ancestor : Tag) return Tag;
pragma Ada_05 (Descendant_Tag);
function Is_Descendant_At_Same_Level
(Descendant : Tag;
Ancestor : Tag) return Boolean;
pragma Ada_05 (Is_Descendant_At_Same_Level);
function Parent_Tag (T : Tag) return Tag;
pragma Ada_05 (Parent_Tag);
type Tag_Array is array (Positive range <>) of Tag;
function Interface_Ancestor_Tags (T : Tag) return Tag_Array;
pragma Ada_05 (Interface_Ancestor_Tags);
function Is_Abstract (T : Tag) return Boolean;
pragma Ada_2012 (Is_Abstract);
Tag_Error : exception;
private
-- Structure of the GNAT Primary Dispatch Table
-- +--------------------+
-- | Signature |
-- +--------------------+
-- | Tagged_Kind |
-- +--------------------+ Predef Prims
-- | Predef_Prims -----------------------------> +------------+
-- +--------------------+ | table of |
-- | Offset_To_Top | | predefined |
-- +--------------------+ | primitives |
-- |Typeinfo_Ptr/TSD_Ptr---> Type Specific Data +------------+
-- Tag ---> +--------------------+ +-------------------+
-- | table of | | inheritance depth |
-- : primitive ops : +-------------------+
-- | pointers | | access level |
-- +--------------------+ +-------------------+
-- | alignment |
-- +-------------------+
-- | expanded name |
-- +-------------------+
-- | external tag |
-- +-------------------+
-- | hash table link |
-- +-------------------+
-- | transportable |
-- +-------------------+
-- | is_abstract |
-- +-------------------+
-- | needs finalization|
-- +-------------------+
-- | Ifaces_Table ---> Interface Data
-- +-------------------+ +------------+
-- Select Specific Data <---- SSD | | Nb_Ifaces |
-- +------------------+ +-------------------+ +------------+
-- |table of primitive| | table of | | table |
-- : operation : : ancestor : : of :
-- | kinds | | tags | | interfaces |
-- +------------------+ +-------------------+ +------------+
-- |table of |
-- : entry :
-- | indexes |
-- +------------------+
-- Structure of the GNAT Secondary Dispatch Table
-- +--------------------+
-- | Signature |
-- +--------------------+
-- | Tagged_Kind |
-- +--------------------+ Predef Prims
-- | Predef_Prims -----------------------------> +------------+
-- +--------------------+ | table of |
-- | Offset_To_Top | | predefined |
-- +--------------------+ | primitives |
-- | OSD_Ptr |---> Object Specific Data | thunks |
-- Tag ---> +--------------------+ +---------------+ +------------+
-- | table of | | num prim ops |
-- : primitive op : +---------------+
-- | thunk pointers | | table of |
-- +--------------------+ + primitive |
-- | op offsets |
-- +---------------+
-- The runtime information kept for each tagged type is separated into two
-- objects: the Dispatch Table and the Type Specific Data record.
package SSE renames System.Storage_Elements;
subtype Cstring is String (Positive);
type Cstring_Ptr is access all Cstring;
pragma No_Strict_Aliasing (Cstring_Ptr);
-- Declarations for the table of interfaces
type Offset_To_Top_Function_Ptr is
access function (This : System.Address) return SSE.Storage_Offset;
-- Type definition used to call the function that is generated by the
-- expander in case of tagged types with discriminants that have secondary
-- dispatch tables. This function provides the Offset_To_Top value in this
-- specific case.
type Interface_Data_Element is record
Iface_Tag : Tag;
Static_Offset_To_Top : Boolean;
Offset_To_Top_Value : SSE.Storage_Offset;
Offset_To_Top_Func : Offset_To_Top_Function_Ptr;
Secondary_DT : Tag;
end record;
-- If some ancestor of the tagged type has discriminants the field
-- Static_Offset_To_Top is False and the field Offset_To_Top_Func
-- is used to store the access to the function generated by the
-- expander which provides this value; otherwise Static_Offset_To_Top
-- is True and such value is stored in the Offset_To_Top_Value field.
-- Secondary_DT references a secondary dispatch table whose contents
-- are pointers to the primitives of the tagged type that cover the
-- interface primitives. Secondary_DT gives support to dispatching
-- calls through interface types associated with Generic Dispatching
-- Constructors.
type Interfaces_Array is array (Natural range <>) of Interface_Data_Element;
type Interface_Data (Nb_Ifaces : Positive) is record
Ifaces_Table : Interfaces_Array (1 .. Nb_Ifaces);
end record;
type Interface_Data_Ptr is access all Interface_Data;
-- Table of abstract interfaces used to give support to backward interface
-- conversions and also to IW_Membership.
-- Primitive operation kinds. These values differentiate the kinds of
-- callable entities stored in the dispatch table. Certain kinds may
-- not be used, but are added for completeness.
type Prim_Op_Kind is
(POK_Function,
POK_Procedure,
POK_Protected_Entry,
POK_Protected_Function,
POK_Protected_Procedure,
POK_Task_Entry,
POK_Task_Function,
POK_Task_Procedure);
-- Select specific data types
type Select_Specific_Data_Element is record
Index : Positive;
Kind : Prim_Op_Kind;
end record;
type Select_Specific_Data_Array is
array (Positive range <>) of Select_Specific_Data_Element;
type Select_Specific_Data (Nb_Prim : Positive) is record
SSD_Table : Select_Specific_Data_Array (1 .. Nb_Prim);
-- NOTE: Nb_Prim is the number of non-predefined primitive operations
end record;
type Select_Specific_Data_Ptr is access all Select_Specific_Data;
-- A table used to store the primitive operation kind and entry index of
-- primitive subprograms of a type that implements a limited interface.
-- The Select Specific Data table resides in the Type Specific Data of a
-- type. This construct is used in the handling of dispatching triggers
-- in select statements.
type Prim_Ptr is access procedure;
type Address_Array is array (Positive range <>) of Prim_Ptr;
subtype Dispatch_Table is Address_Array (1 .. 1);
-- Used by GDB to identify the _tags and traverse the run-time structure
-- associated with tagged types. For compatibility with older versions of
-- gdb, its name must not be changed.
type Tag is access all Dispatch_Table;
pragma No_Strict_Aliasing (Tag);
type Interface_Tag is access all Dispatch_Table;
No_Tag : constant Tag := null;
-- The expander ensures that Tag objects reference the Prims_Ptr component
-- of the wrapper.
type Tag_Ptr is access all Tag;
pragma No_Strict_Aliasing (Tag_Ptr);
type Offset_To_Top_Ptr is access all SSE.Storage_Offset;
pragma No_Strict_Aliasing (Offset_To_Top_Ptr);
type Tag_Table is array (Natural range <>) of Tag;
type Size_Ptr is
access function (A : System.Address) return Long_Long_Integer;
type Type_Specific_Data (Idepth : Natural) is record
-- The discriminant Idepth is the Inheritance Depth Level: Used to
-- implement the membership test associated with single inheritance of
-- tagged types in constant-time. It also indicates the size of the
-- Tags_Table component.
Access_Level : Natural;
-- Accessibility level required to give support to Ada 2005 nested type
-- extensions. This feature allows safe nested type extensions by
-- shifting the accessibility checks to certain operations, rather than
-- being enforced at the type declaration. In particular, by performing
-- run-time accessibility checks on class-wide allocators, class-wide
-- function return, and class-wide stream I/O, the danger of objects
-- outliving their type declaration can be eliminated (Ada 2005: AI-344)
Alignment : Natural;
Expanded_Name : Cstring_Ptr;
External_Tag : Cstring_Ptr;
HT_Link : Tag_Ptr;
-- Components used to support to the Ada.Tags subprograms in RM 3.9
-- Note: Expanded_Name is referenced by GDB to determine the actual name
-- of the tagged type. Its requirements are: 1) it must have this exact
-- name, and 2) its contents must point to a C-style Nul terminated
-- string containing its expanded name. GDB has no requirement on a
-- given position inside the record.
Transportable : Boolean;
-- Used to check RM E.4(18), set for types that satisfy the requirements
-- for being used in remote calls as actuals for classwide formals or as
-- return values for classwide functions.
Is_Abstract : Boolean;
-- True if the type is abstract (Ada 2012: AI05-0173)
Needs_Finalization : Boolean;
-- Used to dynamically check whether an object is controlled or not
Size_Func : Size_Ptr;
-- Pointer to the subprogram computing the _size of the object. Used by
-- the run-time whenever a call to the 'size primitive is required. We
-- cannot assume that the contents of dispatch tables are addresses
-- because in some architectures the ABI allows descriptors.
Interfaces_Table : Interface_Data_Ptr;
-- Pointer to the table of interface tags. It is used to implement the
-- membership test associated with interfaces and also for backward
-- abstract interface type conversions (Ada 2005:AI-251)
SSD : Select_Specific_Data_Ptr;
-- Pointer to a table of records used in dispatching selects. This field
-- has a meaningful value for all tagged types that implement a limited,
-- protected, synchronized or task interfaces and have non-predefined
-- primitive operations.
Tags_Table : Tag_Table (0 .. Idepth);
-- Table of ancestor tags. Its size actually depends on the inheritance
-- depth level of the tagged type.
end record;
type Type_Specific_Data_Ptr is access all Type_Specific_Data;
pragma No_Strict_Aliasing (Type_Specific_Data_Ptr);
-- Declarations for the dispatch table record
type Signature_Kind is
(Unknown,
Primary_DT,
Secondary_DT);
-- Tagged type kinds with respect to concurrency and limitedness
type Tagged_Kind is
(TK_Abstract_Limited_Tagged,
TK_Abstract_Tagged,
TK_Limited_Tagged,
TK_Protected,
TK_Tagged,
TK_Task);
type Dispatch_Table_Wrapper (Num_Prims : Natural) is record
Signature : Signature_Kind;
Tag_Kind : Tagged_Kind;
Predef_Prims : System.Address;
-- Pointer to the dispatch table of predefined Ada primitives
-- According to the C++ ABI the components Offset_To_Top and TSD are
-- stored just "before" the dispatch table, and they are referenced with
-- negative offsets referring to the base of the dispatch table. The
-- _Tag (or the VTable_Ptr in C++ terminology) must point to the base
-- of the virtual table, just after these components, to point to the
-- Prims_Ptr table.
Offset_To_Top : SSE.Storage_Offset;
-- Offset between the _Tag field and the field that contains the
-- reference to this dispatch table. For primary dispatch tables it is
-- zero. For secondary dispatch tables: if the parent record type (if
-- any) has a compile-time-known size, then Offset_To_Top contains the
-- expected value, otherwise it contains SSE.Storage_Offset'Last and the
-- actual offset is to be found in the tagged record, right after the
-- field that contains the reference to this dispatch table. See the
-- implementation of Ada.Tags.Offset_To_Top for the corresponding logic.
TSD : System.Address;
Prims_Ptr : aliased Address_Array (1 .. Num_Prims);
-- The size of the Prims_Ptr array actually depends on the tagged type
-- to which it applies. For each tagged type, the expander computes the
-- actual array size, allocating the Dispatch_Table record accordingly.
end record;
type Dispatch_Table_Ptr is access all Dispatch_Table_Wrapper;
pragma No_Strict_Aliasing (Dispatch_Table_Ptr);
-- The following type declaration is used by the compiler when the program
-- is compiled with restriction No_Dispatching_Calls. It is also used with
-- interface types to generate the tag and run-time information associated
-- with them.
type No_Dispatch_Table_Wrapper is record
NDT_TSD : System.Address;
NDT_Prims_Ptr : Natural;
end record;
DT_Predef_Prims_Size : constant SSE.Storage_Count :=
SSE.Storage_Count
(1 * (Standard'Address_Size /
System.Storage_Unit));
-- Size of the Predef_Prims field of the Dispatch_Table
DT_Offset_To_Top_Size : constant SSE.Storage_Count :=
SSE.Storage_Count
(1 * (Standard'Address_Size /
System.Storage_Unit));
-- Size of the Offset_To_Top field of the Dispatch Table
DT_Typeinfo_Ptr_Size : constant SSE.Storage_Count :=
SSE.Storage_Count
(1 * (Standard'Address_Size /
System.Storage_Unit));
-- Size of the Typeinfo_Ptr field of the Dispatch Table
use type System.Storage_Elements.Storage_Offset;
DT_Offset_To_Top_Offset : constant SSE.Storage_Count :=
DT_Typeinfo_Ptr_Size
+ DT_Offset_To_Top_Size;
DT_Predef_Prims_Offset : constant SSE.Storage_Count :=
DT_Typeinfo_Ptr_Size
+ DT_Offset_To_Top_Size
+ DT_Predef_Prims_Size;
-- Offset from Prims_Ptr to Predef_Prims component
-- Object Specific Data record of secondary dispatch tables
type Object_Specific_Data_Array is array (Positive range <>) of Positive;
type Object_Specific_Data (OSD_Num_Prims : Positive) is record
OSD_Table : Object_Specific_Data_Array (1 .. OSD_Num_Prims);
-- Table used in secondary DT to reference their counterpart in the
-- select specific data (in the TSD of the primary DT). This construct
-- is used in the handling of dispatching triggers in select statements.
-- Nb_Prim is the number of non-predefined primitive operations.
end record;
type Object_Specific_Data_Ptr is access all Object_Specific_Data;
pragma No_Strict_Aliasing (Object_Specific_Data_Ptr);
-- The following subprogram specifications are placed here instead of the
-- package body to see them from the frontend through rtsfind.
function Base_Address (This : System.Address) return System.Address;
-- Ada 2005 (AI-251): Displace "This" to point to the base address of the
-- object (that is, the address of the primary tag of the object).
procedure Check_TSD (TSD : Type_Specific_Data_Ptr);
-- Ada 2012 (AI-113): Raise Program_Error if the external tag of this TSD
-- is the same as the external tag for some other tagged type declaration.
function Displace (This : System.Address; T : Tag) return System.Address;
-- Ada 2005 (AI-251): Displace "This" to point to the secondary dispatch
-- table of T.
function Secondary_Tag (T, Iface : Tag) return Tag;
-- Ada 2005 (AI-251): Given a primary tag T associated with a tagged type
-- Typ, search for the secondary tag of the interface type Iface covered
-- by Typ.
function DT (T : Tag) return Dispatch_Table_Ptr;
-- Return the pointer to the TSD record associated with T
function Get_Entry_Index (T : Tag; Position : Positive) return Positive;
-- Ada 2005 (AI-251): Return a primitive operation's entry index (if entry)
-- given a dispatch table T and a position of a primitive operation in T.
function Get_Offset_Index
(T : Tag;
Position : Positive) return Positive;
-- Ada 2005 (AI-251): Given a pointer to a secondary dispatch table (T)
-- and a position of an operation in the DT, retrieve the corresponding
-- operation's position in the primary dispatch table from the Offset
-- Specific Data table of T.
function Get_Prim_Op_Kind
(T : Tag;
Position : Positive) return Prim_Op_Kind;
-- Ada 2005 (AI-251): Return a primitive operation's kind given a dispatch
-- table T and a position of a primitive operation in T.
function Get_Tagged_Kind (T : Tag) return Tagged_Kind;
-- Ada 2005 (AI-345): Given a pointer to either a primary or a secondary
-- dispatch table, return the tagged kind of a type in the context of
-- concurrency and limitedness.
function IW_Membership (This : System.Address; T : Tag) return Boolean;
-- Ada 2005 (AI-251): General routine that checks if a given object
-- implements a tagged type. Its common usage is to check if Obj is in
-- Iface'Class, but it is also used to check if a class-wide interface
-- implements a given type (Iface_CW_Typ in T'Class). For example:
--
-- type I is interface;
-- type T is tagged ...
--
-- function Test (O : I'Class) is
-- begin
-- return O in T'Class.
-- end Test;
function Offset_To_Top
(This : System.Address) return SSE.Storage_Offset;
-- Ada 2005 (AI-251): Returns the current value of the Offset_To_Top
-- component available in the prologue of the dispatch table. If the parent
-- of the tagged type has discriminants this value is stored in a record
-- component just immediately after the tag component.
function Needs_Finalization (T : Tag) return Boolean;
-- A helper routine used in conjunction with finalization collections which
-- service class-wide types. The function dynamically determines whether an
-- object is controlled or has controlled components.
function Parent_Size
(Obj : System.Address;
T : Tag) return SSE.Storage_Count;
-- Computes the size the ancestor part of a tagged extension object whose
-- address is 'obj' by calling indirectly the ancestor _size function. The
-- ancestor is the parent of the type represented by tag T. This function
-- assumes that _size is always in slot one of the dispatch table.
procedure Register_Interface_Offset
(Prim_T : Tag;
Interface_T : Tag;
Is_Static : Boolean;
Offset_Value : SSE.Storage_Offset;
Offset_Func : Offset_To_Top_Function_Ptr);
-- Register in the table of interfaces of the tagged type associated with
-- Prim_T the offset of the record component associated with the progenitor
-- Interface_T (that is, the distance from "This" to the object component
-- containing the tag of the secondary dispatch table). In case of constant
-- offset, Is_Static is true and Offset_Value has such value. In case of
-- variable offset, Is_Static is false and Offset_Func is an access to
-- function that must be called to evaluate the offset.
procedure Register_Tag (T : Tag);
-- Insert the Tag and its associated external_tag in a table for the sake
-- of Internal_Tag.
procedure Set_Dynamic_Offset_To_Top
(This : System.Address;
Prim_T : Tag;
Interface_T : Tag;
Offset_Value : SSE.Storage_Offset;
Offset_Func : Offset_To_Top_Function_Ptr);
-- Ada 2005 (AI-251): The compiler generates calls to this routine only
-- when initializing the Offset_To_Top field of dispatch tables of tagged
-- types that cover interface types whose parent type has variable size
-- components.
--
-- "This" is the object whose dispatch table is being initialized. Prim_T
-- is the primary tag of such object. Interface_T is the interface tag for
-- which the secondary dispatch table is being initialized. Offset_Value
-- is the distance from "This" to the object component containing the tag
-- of the secondary dispatch table (a zero value means that this interface
-- shares the primary dispatch table). Offset_Func references a function
-- that must be called to evaluate the offset at run time. This routine
-- also takes care of registering these values in the table of interfaces
-- of the type.
procedure Set_Entry_Index (T : Tag; Position : Positive; Value : Positive);
-- Ada 2005 (AI-345): Set the entry index of a primitive operation in T's
-- TSD table indexed by Position.
procedure Set_Prim_Op_Kind
(T : Tag;
Position : Positive;
Value : Prim_Op_Kind);
-- Ada 2005 (AI-251): Set the kind of a primitive operation in T's TSD
-- table indexed by Position.
procedure Unregister_Tag (T : Tag);
-- Remove a particular tag from the external tag hash table
Max_Predef_Prims : constant Positive := 15;
-- Number of reserved slots for the following predefined ada primitives:
--
-- 1. Size
-- 2. Read
-- 3. Write
-- 4. Input
-- 5. Output
-- 6. "="
-- 7. assignment
-- 8. deep adjust
-- 9. deep finalize
-- 10. async select
-- 11. conditional select
-- 12. prim_op kind
-- 13. task_id
-- 14. dispatching requeue
-- 15. timed select
--
-- The compiler checks that the value here is correct
subtype Predef_Prims_Table is Address_Array (1 .. Max_Predef_Prims);
type Predef_Prims_Table_Ptr is access Predef_Prims_Table;
pragma No_Strict_Aliasing (Predef_Prims_Table_Ptr);
type Addr_Ptr is access System.Address;
pragma No_Strict_Aliasing (Addr_Ptr);
-- This type is used by the frontend to generate the code that handles
-- dispatch table slots of types declared at the local level.
end Ada.Tags;
|
-----------------------------------------------------------------------
-- awa-changelogs-modules -- Module changelogs
-- Copyright (C) 2014 Stephane Carrez
-- Written by Stephane Carrez (Stephane.Carrez@gmail.com)
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Ada.Calendar;
with Util.Log.Loggers;
with AWA.Modules.Get;
with AWA.Users.Models;
with AWA.Services.Contexts;
with AWA.Changelogs.Models;
with ADO.Sessions;
with ADO.Sessions.Entities;
package body AWA.Changelogs.Modules is
package ASC renames AWA.Services.Contexts;
Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("Awa.Changelogs.Module");
-- ------------------------------
-- Initialize the changelogs module.
-- ------------------------------
overriding
procedure Initialize (Plugin : in out Changelog_Module;
App : in AWA.Modules.Application_Access;
Props : in ASF.Applications.Config) is
begin
Log.Info ("Initializing the changelogs module");
AWA.Modules.Module (Plugin).Initialize (App, Props);
-- Add here the creation of manager instances.
end Initialize;
-- ------------------------------
-- Get the changelogs module.
-- ------------------------------
function Get_Changelog_Module return Changelog_Module_Access is
function Get is new AWA.Modules.Get (Changelog_Module, Changelog_Module_Access, NAME);
begin
return Get;
end Get_Changelog_Module;
-- ------------------------------
-- Add the log message and associate it with the database entity identified by
-- the given id and the entity type. The log message is associated with the current user.
-- ------------------------------
procedure Add_Log (Model : in Changelog_Module;
Id : in ADO.Identifier;
Entity_Type : in String;
Message : in String) is
pragma Unreferenced (Model);
Ctx : constant ASC.Service_Context_Access := ASC.Current;
User : constant AWA.Users.Models.User_Ref := Ctx.Get_User;
DB : ADO.Sessions.Master_Session := AWA.Services.Contexts.Get_Master_Session (Ctx);
Kind : ADO.Entity_Type;
History : AWA.Changelogs.Models.Changelog_Ref;
begin
Ctx.Start;
Kind := ADO.Sessions.Entities.Find_Entity_Type (DB, Entity_Type);
History.Set_For_Entity_Id (Id);
History.Set_User (User);
History.Set_Date (Ada.Calendar.Clock);
History.Set_Entity_Type (Kind);
History.Set_Text (Message);
History.Save (DB);
DB.Commit;
end Add_Log;
end AWA.Changelogs.Modules;
|
-- C92002A.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 ASSIGNMENT TO A COMPONENT (FOR WHICH ASSIGNMENT IS
-- AVAILABLE) OF A RECORD CONTAINING A TASK IS AVAILABLE.
-- JRK 9/17/81
-- JWC 6/28/85 RENAMED TO -AB
WITH REPORT; USE REPORT;
PROCEDURE C92002A IS
BEGIN
TEST ("C92002A", "CHECK THAT CAN ASSIGN TO ASSIGNABLE " &
"COMPONENTS OF RECORDS WITH TASK " &
"COMPONENTS");
DECLARE
TASK TYPE TT IS
ENTRY E;
END TT;
TYPE RT IS
RECORD
I : INTEGER := 0;
T : TT;
J : INTEGER := 0;
END RECORD;
R : RT;
TASK BODY TT IS
BEGIN
NULL;
END TT;
BEGIN
R.I := IDENT_INT (7);
R.J := IDENT_INT (9);
IF R.I /= 7 AND R.J /= 9 THEN
FAILED ("WRONG VALUE(S) WHEN ASSIGNING TO " &
"INTEGER COMPONENTS OF RECORDS WITH " &
"TASK COMPONENTS");
END IF;
END;
RESULT;
END C92002A;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- G N A T . C G I --
-- --
-- S p e c --
-- --
-- Copyright (C) 2000-2019, AdaCore --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This is a package to interface a GNAT program with a Web server via the
-- Common Gateway Interface (CGI).
-- Other related packages are:
-- GNAT.CGI.Cookie which deal with Web HTTP Cookies.
-- GNAT.CGI.Debug which output complete CGI runtime environment
-- Basically this package parse the CGI parameter which are a set of key/value
-- pairs. It builds a table whose index is the key and provides some services
-- to deal with this table.
-- Example:
-- Consider the following simple HTML form to capture a client name:
-- <!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML 3.2//EN">
-- <html>
-- <head>
-- <title>My Web Page</title>
-- </head>
-- <body>
-- <form action="/cgi-bin/new_client" method="POST">
-- <input type=text name=client_name>
-- <input type=submit name="Enter">
-- </form>
-- </body>
-- </html>
-- The following program will retrieve the client's name:
-- with GNAT.CGI;
-- procedure New_Client is
-- use GNAT;
-- procedure Add_Client_To_Database (Name : String) is
-- begin
-- ...
-- end Add_Client_To_Database;
-- begin
-- -- Check that we have 2 arguments (there is two inputs tag in
-- -- the HTML form) and that one of them is called "client_name".
-- if CGI.Argument_Count = 2
-- and then CGI.Key_Exists ("client_name")
-- then
-- Add_Client_To_Database (CGI.Value ("client_name"));
-- end if;
-- ...
-- CGI.Put_Header;
-- Text_IO.Put_Line ("<html><body>< ... Ok ... >");
-- exception
-- when CGI.Data_Error =>
-- CGI.Put_Header ("Location: /htdocs/error.html");
-- -- This returns the address of a Web page to be displayed
-- -- using a "Location:" header style.
-- end New_Client;
-- Note that the names in this package interface have been designed so that
-- they read nicely with the CGI prefix. The recommended style is to avoid
-- a use clause for GNAT.CGI, but to include a use clause for GNAT.
-- This package builds up a table of CGI parameters whose memory is not
-- released. A CGI program is expected to be a short lived program and
-- so it is adequate to have the underlying OS free the program on exit.
package GNAT.CGI is
Data_Error : exception;
-- This is raised when there is a problem with the CGI protocol. Either
-- the data could not be retrieved or the CGI environment is invalid.
--
-- The package will initialize itself by parsing the runtime CGI
-- environment during elaboration but we do not want to raise an
-- exception at this time, so the exception Data_Error is deferred
-- and will be raised when calling any services below (except for Ok).
Parameter_Not_Found : exception;
-- This exception is raised when a specific parameter is not found
Default_Header : constant String := "Content-type: text/html";
-- This is the default header returned by Put_Header. If the CGI program
-- returned data is not an HTML page, this header must be change to a
-- valid MIME type.
type Method_Type is (Get, Post);
-- The method used to pass parameter from the Web client to the
-- server. With the GET method parameters are passed via the command
-- line, with the POST method parameters are passed via environment
-- variables. Others methods are not supported by this implementation.
type Metavariable_Name is
(Auth_Type,
Content_Length,
Content_Type,
Document_Root, -- Web server dependent
Gateway_Interface,
HTTP_Accept,
HTTP_Accept_Encoding,
HTTP_Accept_Language,
HTTP_Connection,
HTTP_Cookie,
HTTP_Extension,
HTTP_From,
HTTP_Host,
HTTP_Referer,
HTTP_User_Agent,
Path,
Path_Info,
Path_Translated,
Query_String,
Remote_Addr,
Remote_Host,
Remote_Port, -- Web server dependent
Remote_Ident,
Remote_User,
Request_Method,
Request_URI, -- Web server dependent
Script_Filename, -- Web server dependent
Script_Name,
Server_Addr, -- Web server dependent
Server_Admin, -- Web server dependent
Server_Name,
Server_Port,
Server_Protocol,
Server_Signature, -- Web server dependent
Server_Software);
-- CGI metavariables that are set by the Web server during program
-- execution. All these variables are part of the restricted CGI runtime
-- environment and can be read using Metavariable service. The detailed
-- meanings of these metavariables are out of the scope of this
-- description. Please refer to http://www.w3.org/CGI/ for a description
-- of the CGI specification. Some metavariables are Web server dependent
-- and are not described in the cited document.
procedure Put_Header
(Header : String := Default_Header;
Force : Boolean := False);
-- Output standard CGI header by default. The header string is followed by
-- an empty line. This header must be the first answer sent back to the
-- server. Do nothing if this function has already been called and Force
-- is False.
function Ok return Boolean;
-- Returns True if the CGI environment is valid and False otherwise.
-- Every service used when the CGI environment is not valid will raise
-- the exception Data_Error.
function Method return Method_Type;
-- Returns the method used to call the CGI
function Metavariable
(Name : Metavariable_Name;
Required : Boolean := False) return String;
-- Returns parameter Name value. Returns the null string if Name
-- environment variable is not defined or raises Data_Error if
-- Required is set to True.
function Metavariable_Exists (Name : Metavariable_Name) return Boolean;
-- Returns True if the environment variable Name is defined in
-- the CGI runtime environment and False otherwise.
function URL return String;
-- Returns the URL used to call this script without the parameters.
-- The URL form is: http://<server_name>[:<server_port>]<script_name>
function Argument_Count return Natural;
-- Returns the number of parameters passed to the client. This is the
-- number of input tags in a form or the number of parameters passed to
-- the CGI via the command line.
---------------------------------------------------
-- Services to retrieve key/value CGI parameters --
---------------------------------------------------
function Value
(Key : String;
Required : Boolean := False) return String;
-- Returns the parameter value associated to the parameter named Key.
-- If parameter does not exist, returns an empty string if Required
-- is False and raises the exception Parameter_Not_Found otherwise.
function Value (Position : Positive) return String;
-- Returns the parameter value associated with the CGI parameter number
-- Position. Raises Parameter_Not_Found if there is no such parameter
-- (i.e. Position > Argument_Count)
function Key_Exists (Key : String) return Boolean;
-- Returns True if the parameter named Key exists and False otherwise
function Key (Position : Positive) return String;
-- Returns the parameter key associated with the CGI parameter number
-- Position. Raises the exception Parameter_Not_Found if there is no
-- such parameter (i.e. Position > Argument_Count)
generic
with procedure
Action
(Key : String;
Value : String;
Position : Positive;
Quit : in out Boolean);
procedure For_Every_Parameter;
-- Iterate through all existing key/value pairs and call the Action
-- supplied procedure. The Key and Value are set appropriately, Position
-- is the parameter order in the list, Quit is set to True by default.
-- Quit can be set to False to control the iterator termination.
private
function Decode (S : String) return String;
-- Decode Web string S. A string when passed to a CGI is encoded,
-- this function will decode the string to return the original
-- string's content. Every triplet of the form %HH (where H is an
-- hexadecimal number) is translated into the character such that:
-- Hex (Character'Pos (C)) = HH.
end GNAT.CGI;
|
------------------------------------------------------------------------------
-- --
-- Generic HEX String Handling Package --
-- --
-- ------------------------------------------------------------------------ --
-- --
-- Copyright (C) 2018-2019, ANNEXI-STRAYLINE Trans-Human Ltd. --
-- All rights reserved. --
-- --
-- Original Contributors: --
-- * Richard Wai, Ensi Martini, Aninda Poddar, Noshen Atashe --
-- (ANNEXI-STRAYLINE) --
-- --
-- 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 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 --
-- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT --
-- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, --
-- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY --
-- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT --
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE --
-- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
generic
type Modular_Value is mod <>;
Bit_Width: in Positive;
-- By requiring the user to provide the Bit_Width, which is then
-- verified by an Assertion, we avoid needing to do some special
-- math at elaboration (which could be dynamic), and we also
-- make the proof much easier. To be fair, this is not a big ask!
package Hex.Modular_Codec
with SPARK_Mode => On
is
-- ** Precondition Warning **
-- For non-SPARK users, it is recommended that this package is
-- instantiated in a region where the Assertion_Policy has Pre and Assertion
-- set to Check.
pragma Assertion_Policy (Post => Ignore);
pragma Assert ((Bit_Width mod 4) = 0);
pragma Assert (2 ** Bit_Width = Modular_Value'Modulus);
-- This avoids some very serrious maths!
Max_Nibbles: constant Positive := Bit_Width / 4;
------------
-- Decode --
------------
function Decode (Input: String) return Modular_Value
with
Global => null,
Pre => Valid_Hex_String (Input)
and Input'Length <= Max_Nibbles,
Post => (if Decode'Result = 0 then
(for all Digit of Input => Digit = '0')
else
(for some Digit of Input => Digit /= '0'));
procedure Decode (Input: in String;
Value: out Modular_Value)
with
Global => null,
Depends => (Value => Input),
Pre => Valid_Hex_String (Input)
and Input'Length <= Max_Nibbles,
Post => (if Value = 0 then
(for all Digit of Input => Digit = '0')
else
(for some Digit of Input => Digit /= '0'));
-- Decodes an encoded value into the corresponding modular value.
-- Input shall be a Valid_Hex_String. Such strings can be identified
-- from any arbitrary string via the Identify_Hex_String operation
------------
-- Encode --
------------
function Encode (Value: Modular_Value; Use_Case: Set_Case := Lower_Case)
return String
with
Global => null,
Post => Valid_Hex_String (Encode'Result)
and
Encode'Result'Length <= Max_Nibbles
and
(if Value = 0 then
(for all Digit of Encode'Result => Digit = '0')
else
(for some Digit of Encode'Result => Digit /= '0'))
and
(case Use_Case is
when Lower_Case =>
(for all Digit of Encode'Result
=> Digit in '0' .. '9' | 'a' .. 'f'),
when Upper_Case =>
(for all Digit of Encode'Result
=> Digit in '0' .. '9' | 'A' .. 'F'));
-- Encodes Value into the shortest Hex_String representation,
-- if Lower_Case is true, all alphabetical digits will be encoded as
-- lower case, otherwise all alphabetical digits will be encoded as upper
-- case
procedure Encode (Value : in Modular_Value;
Buffer : out String;
Use_Case: in Set_Case := Lower_Case)
with
Global => null,
Depends => (Buffer => (Value, Buffer, Use_Case)),
Pre => Buffer'Length >= Max_Nibbles,
Post => Valid_Hex_String (Buffer)
and
(if Value = 0 then
(for all Digit of Buffer => Digit = '0')
else
(for some Digit of Buffer => Digit /= '0'))
and
(case Use_Case is
when Lower_Case =>
(for all Digit of Buffer
=> Digit in '0' .. '9' | 'a' .. 'f'),
when Upper_Case =>
(for all Digit of Buffer
=> Digit in '0' .. '9' | 'A' .. 'F'))
and
(if Buffer'Length > Max_Nibbles then
(for all I in Buffer'First .. (Buffer'Last - Max_Nibbles)
=> Buffer(I) = '0'));
-- Places the Hex-encoded version of Value into the Buffer, setting
-- any unfilled positions to zero.
--
-- Buffer shall be at least long enough to contain the maximum value of
-- Modular_Value
--
-- If Lower_Case is true, all alphabetical digits will be encoded as
-- lower case, otherwise all alphabetical digits will be encoded as upper
-- case
end Hex.Modular_Codec;
|
package impact.d2.orbs.Joint.weld
--
--
--
is
-- #ifndef B2_WELD_JOINT_H
-- #define B2_WELD_JOINT_H
--
-- #include <Box2D/Dynamics/Joints/b2Joint.h>
--
-- /// Weld joint definition. You need to specify local anchor points
-- /// where they are attached and the relative body angle. The position
-- /// of the anchor points is important for computing the reaction torque.
-- struct b2WeldJointDef : public b2JointDef
-- {
-- b2WeldJointDef()
-- {
-- type = e_weldJoint;
-- localAnchorA.Set(0.0f, 0.0f);
-- localAnchorB.Set(0.0f, 0.0f);
-- referenceAngle = 0.0f;
-- }
--
-- /// Initialize the bodies, anchors, and reference angle using a world
-- /// anchor point.
-- void Initialize(b2Body* body1, b2Body* body2, const b2Vec2& anchor);
--
-- /// The local anchor point relative to body1's origin.
-- b2Vec2 localAnchorA;
--
-- /// The local anchor point relative to body2's origin.
-- b2Vec2 localAnchorB;
--
-- /// The body2 angle minus body1 angle in the reference state (radians).
-- float32 referenceAngle;
-- };
--
-- /// A weld joint essentially glues two bodies together. A weld joint may
-- /// distort somewhat because the island constraint solver is approximate.
-- class b2WeldJoint : public b2Joint
-- {
-- public:
-- b2Vec2 GetAnchorA() const;
-- b2Vec2 GetAnchorB() const;
--
-- b2Vec2 GetReactionForce(float32 inv_dt) const;
-- float32 GetReactionTorque(float32 inv_dt) const;
--
-- protected:
--
-- friend class b2Joint;
--
-- b2WeldJoint(const b2WeldJointDef* def);
--
-- void InitVelocityConstraints(const b2TimeStep& step);
-- void SolveVelocityConstraints(const b2TimeStep& step);
--
-- bool SolvePositionConstraints(float32 baumgarte);
--
-- b2Vec2 m_localAnchorA;
-- b2Vec2 m_localAnchorB;
-- float32 m_referenceAngle;
--
-- b2Vec3 m_impulse;
--
-- b2Mat33 m_mass;
-- };
--
-- #endif
procedure dummy;
end impact.d2.orbs.Joint.weld;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Web Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2013, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- Definition of data structures of FastCGI protocol.
------------------------------------------------------------------------------
with Ada.Streams;
package Matreshka.FastCGI.Protocol is
pragma Preelaborate;
type FCGI_Version is mod 2 ** 8;
Supported_FCGI_Version : constant FCGI_Version := 1;
type FCGI_Packet_Type is mod 2 ** 8;
FCGI_Begin_Request : constant FCGI_Packet_Type := 1;
FCGI_Abort_Request : constant FCGI_Packet_Type := 2;
FCGI_End_Request : constant FCGI_Packet_Type := 3;
FCGI_Params : constant FCGI_Packet_Type := 4;
FCGI_Stdin : constant FCGI_Packet_Type := 5;
FCGI_Stdout : constant FCGI_Packet_Type := 6;
FCGI_Stderr : constant FCGI_Packet_Type := 7;
FCGI_Data : constant FCGI_Packet_Type := 8;
FCGI_Get_Values : constant FCGI_Packet_Type := 9;
FCGI_Get_Values_Result : constant FCGI_Packet_Type := 10;
FCGI_Unknown_Type : constant FCGI_Packet_Type := 11;
subtype FCGI_Content_Length is Ada.Streams.Stream_Element_Offset
range 0 .. 65_535;
subtype FCGI_Padding_Length is Ada.Streams.Stream_Element_Offset
range 0 .. 65_535;
type FCGI_Role is mod 2 ** 16;
FCGI_Responder : constant FCGI_Role := 1;
FCGI_Authorizer : constant FCGI_Role := 2;
FCGI_Filter : constant FCGI_Role := 3;
type FCGI_Flags is record
FCGI_Keep_Conn : Boolean;
Reserved_1 : Boolean;
Reserved_2 : Boolean;
Reserved_3 : Boolean;
Reserved_4 : Boolean;
Reserved_5 : Boolean;
Reserved_6 : Boolean;
Reserved_7 : Boolean;
end record;
pragma Pack (FCGI_Flags);
for FCGI_Flags'Size use 8;
-----------------
-- FCGI_Header --
-----------------
type FCGI_Header is private;
subtype Raw_FCGI_Header is Ada.Streams.Stream_Element_Array (0 .. 7);
function Get_Version (Header : FCGI_Header) return FCGI_Version;
pragma Inline (Get_Version);
function Get_Packet_Type (Header : FCGI_Header) return FCGI_Packet_Type;
pragma Inline (Get_Packet_Type);
function Get_Request_Id
(Header : FCGI_Header) return FCGI_Request_Identifier;
pragma Inline (Get_Request_Id);
function Get_Content_Length
(Header : FCGI_Header) return FCGI_Content_Length;
pragma Inline (Get_Content_Length);
function Get_Padding_Length
(Header : FCGI_Header) return FCGI_Padding_Length;
pragma Inline (Get_Padding_Length);
procedure Initialize
(Header : out FCGI_Header;
Packet_Type : FCGI_Packet_Type;
Request_Id : FCGI_Request_Identifier;
Content_Length : FCGI_Content_Length;
Padding_Length : FCGI_Padding_Length);
-------------------------------
-- FCGI_Begin_Request_Record --
-------------------------------
type FCGI_Begin_Request_Record is private;
subtype Raw_FCGI_Begin_Request_Record
is Ada.Streams.Stream_Element_Array (0 .. 7);
function Get_Role (Item : FCGI_Begin_Request_Record) return FCGI_Role;
pragma Inline (Get_Role);
function Get_Flags (Item : FCGI_Begin_Request_Record) return FCGI_Flags;
pragma Inline (Get_Flags);
private
type FCGI_Header is record
Version : Ada.Streams.Stream_Element;
Packet_Type : Ada.Streams.Stream_Element;
Request_Id_Byte_1 : Ada.Streams.Stream_Element;
Request_Id_Byte_0 : Ada.Streams.Stream_Element;
Content_Length_Byte_1 : Ada.Streams.Stream_Element;
Content_Length_Byte_0 : Ada.Streams.Stream_Element;
Padding_Length : Ada.Streams.Stream_Element;
Reserved : Ada.Streams.Stream_Element;
end record;
type FCGI_Begin_Request_Record is record
Role_Byte_1 : Ada.Streams.Stream_Element;
Role_Byte_0 : Ada.Streams.Stream_Element;
Flags : Ada.Streams.Stream_Element;
Reserved_1 : Ada.Streams.Stream_Element;
Reserved_2 : Ada.Streams.Stream_Element;
Reserved_3 : Ada.Streams.Stream_Element;
Reserved_4 : Ada.Streams.Stream_Element;
Reserved_5 : Ada.Streams.Stream_Element;
end record;
end Matreshka.FastCGI.Protocol;
|
-- Copyright (c) 2019 Maxim Reznik <reznikmm@gmail.com>
--
-- SPDX-License-Identifier: MIT
-- License-Filename: LICENSE
-------------------------------------------------------------
package body Program.Nodes.Single_Task_Declarations is
function Create
(Task_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Name : not null Program.Elements.Defining_Identifiers
.Defining_Identifier_Access;
With_Token : Program.Lexical_Elements.Lexical_Element_Access;
Aspects : Program.Elements.Aspect_Specifications
.Aspect_Specification_Vector_Access;
Is_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
New_Token : Program.Lexical_Elements.Lexical_Element_Access;
Progenitors : Program.Elements.Expressions.Expression_Vector_Access;
With_Token_2 : Program.Lexical_Elements.Lexical_Element_Access;
Definition : not null Program.Elements.Task_Definitions
.Task_Definition_Access;
Semicolon_Token : not null Program.Lexical_Elements
.Lexical_Element_Access)
return Single_Task_Declaration is
begin
return Result : Single_Task_Declaration :=
(Task_Token => Task_Token, Name => Name, With_Token => With_Token,
Aspects => Aspects, Is_Token => Is_Token, New_Token => New_Token,
Progenitors => Progenitors, With_Token_2 => With_Token_2,
Definition => Definition, Semicolon_Token => Semicolon_Token,
Enclosing_Element => null)
do
Initialize (Result);
end return;
end Create;
function Create
(Name : not null Program.Elements.Defining_Identifiers
.Defining_Identifier_Access;
Aspects : Program.Elements.Aspect_Specifications
.Aspect_Specification_Vector_Access;
Progenitors : Program.Elements.Expressions
.Expression_Vector_Access;
Definition : not null Program.Elements.Task_Definitions
.Task_Definition_Access;
Is_Part_Of_Implicit : Boolean := False;
Is_Part_Of_Inherited : Boolean := False;
Is_Part_Of_Instance : Boolean := False)
return Implicit_Single_Task_Declaration is
begin
return Result : Implicit_Single_Task_Declaration :=
(Name => Name, Aspects => Aspects, Progenitors => Progenitors,
Definition => Definition, Is_Part_Of_Implicit => Is_Part_Of_Implicit,
Is_Part_Of_Inherited => Is_Part_Of_Inherited,
Is_Part_Of_Instance => Is_Part_Of_Instance, Enclosing_Element => null)
do
Initialize (Result);
end return;
end Create;
overriding function Name
(Self : Base_Single_Task_Declaration)
return not null Program.Elements.Defining_Identifiers
.Defining_Identifier_Access is
begin
return Self.Name;
end Name;
overriding function Aspects
(Self : Base_Single_Task_Declaration)
return Program.Elements.Aspect_Specifications
.Aspect_Specification_Vector_Access is
begin
return Self.Aspects;
end Aspects;
overriding function Progenitors
(Self : Base_Single_Task_Declaration)
return Program.Elements.Expressions.Expression_Vector_Access is
begin
return Self.Progenitors;
end Progenitors;
overriding function Definition
(Self : Base_Single_Task_Declaration)
return not null Program.Elements.Task_Definitions
.Task_Definition_Access is
begin
return Self.Definition;
end Definition;
overriding function Task_Token
(Self : Single_Task_Declaration)
return not null Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.Task_Token;
end Task_Token;
overriding function With_Token
(Self : Single_Task_Declaration)
return Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.With_Token;
end With_Token;
overriding function Is_Token
(Self : Single_Task_Declaration)
return not null Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.Is_Token;
end Is_Token;
overriding function New_Token
(Self : Single_Task_Declaration)
return Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.New_Token;
end New_Token;
overriding function With_Token_2
(Self : Single_Task_Declaration)
return Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.With_Token_2;
end With_Token_2;
overriding function Semicolon_Token
(Self : Single_Task_Declaration)
return not null Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.Semicolon_Token;
end Semicolon_Token;
overriding function Is_Part_Of_Implicit
(Self : Implicit_Single_Task_Declaration)
return Boolean is
begin
return Self.Is_Part_Of_Implicit;
end Is_Part_Of_Implicit;
overriding function Is_Part_Of_Inherited
(Self : Implicit_Single_Task_Declaration)
return Boolean is
begin
return Self.Is_Part_Of_Inherited;
end Is_Part_Of_Inherited;
overriding function Is_Part_Of_Instance
(Self : Implicit_Single_Task_Declaration)
return Boolean is
begin
return Self.Is_Part_Of_Instance;
end Is_Part_Of_Instance;
procedure Initialize
(Self : aliased in out Base_Single_Task_Declaration'Class) is
begin
Set_Enclosing_Element (Self.Name, Self'Unchecked_Access);
for Item in Self.Aspects.Each_Element loop
Set_Enclosing_Element (Item.Element, Self'Unchecked_Access);
end loop;
for Item in Self.Progenitors.Each_Element loop
Set_Enclosing_Element (Item.Element, Self'Unchecked_Access);
end loop;
Set_Enclosing_Element (Self.Definition, Self'Unchecked_Access);
null;
end Initialize;
overriding function Is_Single_Task_Declaration_Element
(Self : Base_Single_Task_Declaration)
return Boolean is
pragma Unreferenced (Self);
begin
return True;
end Is_Single_Task_Declaration_Element;
overriding function Is_Declaration_Element
(Self : Base_Single_Task_Declaration)
return Boolean is
pragma Unreferenced (Self);
begin
return True;
end Is_Declaration_Element;
overriding procedure Visit
(Self : not null access Base_Single_Task_Declaration;
Visitor : in out Program.Element_Visitors.Element_Visitor'Class) is
begin
Visitor.Single_Task_Declaration (Self);
end Visit;
overriding function To_Single_Task_Declaration_Text
(Self : aliased in out Single_Task_Declaration)
return Program.Elements.Single_Task_Declarations
.Single_Task_Declaration_Text_Access is
begin
return Self'Unchecked_Access;
end To_Single_Task_Declaration_Text;
overriding function To_Single_Task_Declaration_Text
(Self : aliased in out Implicit_Single_Task_Declaration)
return Program.Elements.Single_Task_Declarations
.Single_Task_Declaration_Text_Access is
pragma Unreferenced (Self);
begin
return null;
end To_Single_Task_Declaration_Text;
end Program.Nodes.Single_Task_Declarations;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Localization, Internationalization, Globalization for Ada --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2012-2015, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
pragma Restrictions (No_Elaboration_Code);
-- GNAT: enforce generation of preinitialized data section instead of
-- generation of elaboration code.
package Matreshka.Internals.Unicode.Ucd.Core_0020 is
pragma Preelaborate;
Group_0020 : aliased constant Core_Second_Stage
:= (16#00# .. 16#06# => -- 2000 .. 2006
(Space_Separator, Neutral,
Other, Other, Sp, Break_After,
(White_Space
| Grapheme_Base
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#07# => -- 2007
(Space_Separator, Neutral,
Other, Other, Sp, Glue,
(White_Space
| Grapheme_Base
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#08# .. 16#0A# => -- 2008 .. 200A
(Space_Separator, Neutral,
Other, Other, Sp, Break_After,
(White_Space
| Grapheme_Base
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#0B# => -- 200B
(Format, Neutral,
Control, Other, Format, ZW_Space,
(Case_Ignorable
| Default_Ignorable_Code_Point
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#0C# .. 16#0D# => -- 200C .. 200D
(Format, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Join_Control
| Other_Grapheme_Extend
| Case_Ignorable
| Default_Ignorable_Code_Point
| Grapheme_Extend
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#0E# .. 16#0F# => -- 200E .. 200F
(Format, Neutral,
Control, Format, Format, Combining_Mark,
(Bidi_Control
| Pattern_White_Space
| Case_Ignorable
| Default_Ignorable_Code_Point
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#10# => -- 2010
(Dash_Punctuation, Ambiguous,
Other, Other, Other, Break_After,
(Dash
| Hyphen
| Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#11# => -- 2011
(Dash_Punctuation, Neutral,
Other, Other, Other, Glue,
(Dash
| Hyphen
| Pattern_Syntax
| Grapheme_Base
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#12# => -- 2012
(Dash_Punctuation, Neutral,
Other, Other, Other, Break_After,
(Dash
| Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#13# => -- 2013
(Dash_Punctuation, Ambiguous,
Other, Other, S_Continue, Break_After,
(Dash
| Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#14# => -- 2014
(Dash_Punctuation, Ambiguous,
Other, Other, S_Continue, Break_Both,
(Dash
| Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#15# => -- 2015
(Dash_Punctuation, Ambiguous,
Other, Other, Other, Ambiguous,
(Dash
| Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#16# => -- 2016
(Other_Punctuation, Ambiguous,
Other, Other, Other, Ambiguous,
(Other_Math
| Pattern_Syntax
| Grapheme_Base
| Math => True,
others => False)),
16#17# => -- 2017
(Other_Punctuation, Neutral,
Other, Other, Other, Alphabetic,
(Pattern_Syntax
| Grapheme_Base
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#18# => -- 2018
(Initial_Punctuation, Ambiguous,
Other, Mid_Num_Let, Close, Quotation,
(Pattern_Syntax
| Quotation_Mark
| Case_Ignorable
| Grapheme_Base => True,
others => False)),
16#19# => -- 2019
(Final_Punctuation, Ambiguous,
Other, Mid_Num_Let, Close, Quotation,
(Pattern_Syntax
| Quotation_Mark
| Case_Ignorable
| Grapheme_Base => True,
others => False)),
16#1A# => -- 201A
(Open_Punctuation, Neutral,
Other, Other, Close, Open_Punctuation,
(Pattern_Syntax
| Quotation_Mark
| Grapheme_Base => True,
others => False)),
16#1B# => -- 201B
(Initial_Punctuation, Neutral,
Other, Other, Close, Quotation,
(Pattern_Syntax
| Quotation_Mark
| Grapheme_Base => True,
others => False)),
16#1C# => -- 201C
(Initial_Punctuation, Ambiguous,
Other, Other, Close, Quotation,
(Pattern_Syntax
| Quotation_Mark
| Grapheme_Base => True,
others => False)),
16#1D# => -- 201D
(Final_Punctuation, Ambiguous,
Other, Other, Close, Quotation,
(Pattern_Syntax
| Quotation_Mark
| Grapheme_Base => True,
others => False)),
16#1E# => -- 201E
(Open_Punctuation, Neutral,
Other, Other, Close, Open_Punctuation,
(Pattern_Syntax
| Quotation_Mark
| Grapheme_Base => True,
others => False)),
16#1F# => -- 201F
(Initial_Punctuation, Neutral,
Other, Other, Close, Quotation,
(Pattern_Syntax
| Quotation_Mark
| Grapheme_Base => True,
others => False)),
16#20# .. 16#21# => -- 2020 .. 2021
(Other_Punctuation, Ambiguous,
Other, Other, Other, Ambiguous,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#22# => -- 2022
(Other_Punctuation, Ambiguous,
Other, Other, Other, Alphabetic,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#23# => -- 2023
(Other_Punctuation, Neutral,
Other, Other, Other, Alphabetic,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#24# => -- 2024
(Other_Punctuation, Ambiguous,
Other, Mid_Num_Let, A_Term, Inseparable,
(Pattern_Syntax
| Case_Ignorable
| Grapheme_Base
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#25# .. 16#26# => -- 2025 .. 2026
(Other_Punctuation, Ambiguous,
Other, Other, Other, Inseparable,
(Pattern_Syntax
| Grapheme_Base
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#27# => -- 2027
(Other_Punctuation, Ambiguous,
Other, Mid_Letter, Other, Break_After,
(Pattern_Syntax
| Case_Ignorable
| Grapheme_Base => True,
others => False)),
16#28# => -- 2028
(Line_Separator, Neutral,
Control, Newline, Sep, Mandatory_Break,
(Pattern_White_Space
| White_Space => True,
others => False)),
16#29# => -- 2029
(Paragraph_Separator, Neutral,
Control, Newline, Sep, Mandatory_Break,
(Pattern_White_Space
| White_Space => True,
others => False)),
16#2A# .. 16#2E# => -- 202A .. 202E
(Format, Neutral,
Control, Format, Format, Combining_Mark,
(Bidi_Control
| Case_Ignorable
| Default_Ignorable_Code_Point
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#2F# => -- 202F
(Space_Separator, Neutral,
Other, Other, Sp, Glue,
(White_Space
| Grapheme_Base
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#30# => -- 2030
(Other_Punctuation, Ambiguous,
Other, Other, Other, Postfix_Numeric,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#31# => -- 2031
(Other_Punctuation, Neutral,
Other, Other, Other, Postfix_Numeric,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#32# => -- 2032
(Other_Punctuation, Ambiguous,
Other, Other, Other, Postfix_Numeric,
(Other_Math
| Pattern_Syntax
| Grapheme_Base
| Math => True,
others => False)),
16#33# => -- 2033
(Other_Punctuation, Ambiguous,
Other, Other, Other, Postfix_Numeric,
(Other_Math
| Pattern_Syntax
| Grapheme_Base
| Math
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#34# => -- 2034
(Other_Punctuation, Neutral,
Other, Other, Other, Postfix_Numeric,
(Other_Math
| Pattern_Syntax
| Grapheme_Base
| Math
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#35# => -- 2035
(Other_Punctuation, Ambiguous,
Other, Other, Other, Postfix_Numeric,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#36# .. 16#37# => -- 2036 .. 2037
(Other_Punctuation, Neutral,
Other, Other, Other, Postfix_Numeric,
(Pattern_Syntax
| Grapheme_Base
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#38# => -- 2038
(Other_Punctuation, Neutral,
Other, Other, Other, Alphabetic,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#39# => -- 2039
(Initial_Punctuation, Neutral,
Other, Other, Close, Quotation,
(Pattern_Syntax
| Quotation_Mark
| Grapheme_Base => True,
others => False)),
16#3A# => -- 203A
(Final_Punctuation, Neutral,
Other, Other, Close, Quotation,
(Pattern_Syntax
| Quotation_Mark
| Grapheme_Base => True,
others => False)),
16#3B# => -- 203B
(Other_Punctuation, Ambiguous,
Other, Other, Other, Ambiguous,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#3C# => -- 203C
(Other_Punctuation, Neutral,
Other, Other, S_Term, Nonstarter,
(Pattern_Syntax
| STerm
| Terminal_Punctuation
| Grapheme_Base
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#3D# => -- 203D
(Other_Punctuation, Neutral,
Other, Other, S_Term, Nonstarter,
(Pattern_Syntax
| STerm
| Terminal_Punctuation
| Grapheme_Base => True,
others => False)),
16#3E# => -- 203E
(Other_Punctuation, Ambiguous,
Other, Other, Other, Alphabetic,
(Pattern_Syntax
| Grapheme_Base
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#3F# => -- 203F
(Connector_Punctuation, Neutral,
Other, Extend_Num_Let, Other, Alphabetic,
(Grapheme_Base
| ID_Continue
| XID_Continue => True,
others => False)),
16#40# => -- 2040
(Connector_Punctuation, Neutral,
Other, Extend_Num_Let, Other, Alphabetic,
(Other_Math
| Grapheme_Base
| ID_Continue
| Math
| XID_Continue => True,
others => False)),
16#41# .. 16#43# => -- 2041 .. 2043
(Other_Punctuation, Neutral,
Other, Other, Other, Alphabetic,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#44# => -- 2044
(Math_Symbol, Neutral,
Other, Mid_Num, Other, Infix_Numeric,
(Pattern_Syntax
| Grapheme_Base
| Math => True,
others => False)),
16#45# => -- 2045
(Open_Punctuation, Neutral,
Other, Other, Close, Open_Punctuation,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#46# => -- 2046
(Close_Punctuation, Neutral,
Other, Other, Close, Close_Punctuation,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#47# .. 16#49# => -- 2047 .. 2049
(Other_Punctuation, Neutral,
Other, Other, S_Term, Nonstarter,
(Pattern_Syntax
| STerm
| Terminal_Punctuation
| Grapheme_Base
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#4A# .. 16#51# => -- 204A .. 2051
(Other_Punctuation, Neutral,
Other, Other, Other, Alphabetic,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#52# => -- 2052
(Math_Symbol, Neutral,
Other, Other, Other, Alphabetic,
(Pattern_Syntax
| Grapheme_Base
| Math => True,
others => False)),
16#53# => -- 2053
(Other_Punctuation, Neutral,
Other, Other, Other, Alphabetic,
(Dash
| Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#54# => -- 2054
(Connector_Punctuation, Neutral,
Other, Extend_Num_Let, Other, Alphabetic,
(Grapheme_Base
| ID_Continue
| XID_Continue => True,
others => False)),
16#55# => -- 2055
(Other_Punctuation, Neutral,
Other, Other, Other, Alphabetic,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#56# => -- 2056
(Other_Punctuation, Neutral,
Other, Other, Other, Break_After,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#57# => -- 2057
(Other_Punctuation, Neutral,
Other, Other, Other, Alphabetic,
(Pattern_Syntax
| Grapheme_Base
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#58# .. 16#5B# => -- 2058 .. 205B
(Other_Punctuation, Neutral,
Other, Other, Other, Break_After,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#5C# => -- 205C
(Other_Punctuation, Neutral,
Other, Other, Other, Alphabetic,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#5D# .. 16#5E# => -- 205D .. 205E
(Other_Punctuation, Neutral,
Other, Other, Other, Break_After,
(Pattern_Syntax
| Grapheme_Base => True,
others => False)),
16#5F# => -- 205F
(Space_Separator, Neutral,
Other, Other, Sp, Break_After,
(White_Space
| Grapheme_Base
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#60# => -- 2060
(Format, Neutral,
Control, Format, Format, Word_Joiner,
(Case_Ignorable
| Default_Ignorable_Code_Point
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#61# .. 16#64# => -- 2061 .. 2064
(Format, Neutral,
Control, Format, Format, Alphabetic,
(Other_Math
| Case_Ignorable
| Default_Ignorable_Code_Point
| Math
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#65# => -- 2065
(Unassigned, Neutral,
Control, Other, Other, Unknown,
(Other_Default_Ignorable_Code_Point
| Default_Ignorable_Code_Point
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#66# .. 16#69# => -- 2066 .. 2069
(Format, Neutral,
Control, Format, Format, Combining_Mark,
(Bidi_Control
| Case_Ignorable
| Default_Ignorable_Code_Point
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#6A# .. 16#6F# => -- 206A .. 206F
(Format, Neutral,
Control, Format, Format, Combining_Mark,
(Deprecated
| Case_Ignorable
| Default_Ignorable_Code_Point
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#70# => -- 2070
(Other_Number, Neutral,
Other, Other, Other, Alphabetic,
(Grapheme_Base
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#71# => -- 2071
(Modifier_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Other_Lowercase
| Soft_Dotted
| Alphabetic
| Cased
| Case_Ignorable
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#72# .. 16#73# => -- 2072 .. 2073
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#74# => -- 2074
(Other_Number, Ambiguous,
Other, Other, Other, Ambiguous,
(Grapheme_Base
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#75# .. 16#79# => -- 2075 .. 2079
(Other_Number, Neutral,
Other, Other, Other, Alphabetic,
(Grapheme_Base
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#7A# => -- 207A
(Math_Symbol, Neutral,
Other, Other, Other, Alphabetic,
(Grapheme_Base
| Math
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#7B# => -- 207B
(Math_Symbol, Neutral,
Other, Other, Other, Alphabetic,
(Dash
| Grapheme_Base
| Math
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#7C# => -- 207C
(Math_Symbol, Neutral,
Other, Other, Other, Alphabetic,
(Grapheme_Base
| Math
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#7D# => -- 207D
(Open_Punctuation, Neutral,
Other, Other, Close, Open_Punctuation,
(Other_Math
| Grapheme_Base
| Math
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#7E# => -- 207E
(Close_Punctuation, Neutral,
Other, Other, Close, Close_Punctuation,
(Other_Math
| Grapheme_Base
| Math
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#7F# => -- 207F
(Modifier_Letter, Ambiguous,
Other, A_Letter, Lower, Ambiguous,
(Other_Lowercase
| Alphabetic
| Cased
| Case_Ignorable
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#80# => -- 2080
(Other_Number, Neutral,
Other, Other, Other, Alphabetic,
(Grapheme_Base
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#81# .. 16#84# => -- 2081 .. 2084
(Other_Number, Ambiguous,
Other, Other, Other, Ambiguous,
(Grapheme_Base
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#85# .. 16#89# => -- 2085 .. 2089
(Other_Number, Neutral,
Other, Other, Other, Alphabetic,
(Grapheme_Base
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#8A# => -- 208A
(Math_Symbol, Neutral,
Other, Other, Other, Alphabetic,
(Grapheme_Base
| Math
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#8B# => -- 208B
(Math_Symbol, Neutral,
Other, Other, Other, Alphabetic,
(Dash
| Grapheme_Base
| Math
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#8C# => -- 208C
(Math_Symbol, Neutral,
Other, Other, Other, Alphabetic,
(Grapheme_Base
| Math
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#8D# => -- 208D
(Open_Punctuation, Neutral,
Other, Other, Close, Open_Punctuation,
(Other_Math
| Grapheme_Base
| Math
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#8E# => -- 208E
(Close_Punctuation, Neutral,
Other, Other, Close, Close_Punctuation,
(Other_Math
| Grapheme_Base
| Math
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#8F# => -- 208F
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#90# .. 16#9C# => -- 2090 .. 209C
(Modifier_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Other_Lowercase
| Alphabetic
| Cased
| Case_Ignorable
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#9D# .. 16#9F# => -- 209D .. 209F
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#A7# => -- 20A7
(Currency_Symbol, Neutral,
Other, Other, Other, Postfix_Numeric,
(Grapheme_Base => True,
others => False)),
16#A8# => -- 20A8
(Currency_Symbol, Neutral,
Other, Other, Other, Prefix_Numeric,
(Grapheme_Base
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#A9# => -- 20A9
(Currency_Symbol, Halfwidth,
Other, Other, Other, Prefix_Numeric,
(Grapheme_Base => True,
others => False)),
16#AC# => -- 20AC
(Currency_Symbol, Ambiguous,
Other, Other, Other, Prefix_Numeric,
(Grapheme_Base => True,
others => False)),
16#B6# => -- 20B6
(Currency_Symbol, Neutral,
Other, Other, Other, Postfix_Numeric,
(Grapheme_Base => True,
others => False)),
16#BB# => -- 20BB
(Currency_Symbol, Neutral,
Other, Other, Other, Postfix_Numeric,
(Grapheme_Base => True,
others => False)),
16#BE# .. 16#CF# => -- 20BE .. 20CF
(Unassigned, Neutral,
Other, Other, Other, Prefix_Numeric,
(others => False)),
16#D0# .. 16#DC# => -- 20D0 .. 20DC
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Other_Math
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| Math
| XID_Continue => True,
others => False)),
16#DD# .. 16#E0# => -- 20DD .. 20E0
(Enclosing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Case_Ignorable
| Grapheme_Extend => True,
others => False)),
16#E1# => -- 20E1
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Other_Math
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| Math
| XID_Continue => True,
others => False)),
16#E2# .. 16#E4# => -- 20E2 .. 20E4
(Enclosing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Case_Ignorable
| Grapheme_Extend => True,
others => False)),
16#E5# .. 16#E6# => -- 20E5 .. 20E6
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Other_Math
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| Math
| XID_Continue => True,
others => False)),
16#E7# .. 16#EA# => -- 20E7 .. 20EA
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#EB# .. 16#EF# => -- 20EB .. 20EF
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Other_Math
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| Math
| XID_Continue => True,
others => False)),
16#F0# => -- 20F0
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#F1# .. 16#FF# => -- 20F1 .. 20FF
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
others =>
(Currency_Symbol, Neutral,
Other, Other, Other, Prefix_Numeric,
(Grapheme_Base => True,
others => False)));
end Matreshka.Internals.Unicode.Ucd.Core_0020;
|
-----------------------------------------------------------------------
-- ADO Statements -- Database statements
-- Copyright (C) 2009, 2010, 2011, 2012, 2013 Stephane Carrez
-- Written by Stephane Carrez (Stephane.Carrez@gmail.com)
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Ada.Strings.Unbounded;
with Ada.Finalization;
with Ada.Calendar;
with ADO.Schemas;
with ADO.Parameters;
with ADO.SQL;
with ADO.Objects;
private with Ada.Unchecked_Conversion;
private with System;
private with Interfaces.C;
private with Interfaces.C.Strings;
--
-- Represents SQL statements (prepared or not) and their result upon execution
--
--
-- Stmt : Query_Statement := Connection.Create_Statement
-- ("select * from user where name = :name");
--
-- Stmt.Bind_Param ("name", name);
-- Stmt.Execute;
-- while Stmt.Has_Elements loop
-- Id := Stmt.Get_Identifier (1);
-- ...
-- end loop;
--
package ADO.Statements is
use Ada.Strings.Unbounded;
Invalid_Statement : exception;
Invalid_Column : exception;
Invalid_Type : exception;
-- ---------
-- SQL statement
-- ---------
-- The SQL statement
--
type Statement is abstract new ADO.Parameters.Abstract_List with private;
type Statement_Access is access all Statement'Class;
function Get_Query (Query : Statement) return ADO.SQL.Query_Access;
procedure Add_Parameter (Query : in out Statement;
Param : in ADO.Parameters.Parameter);
procedure Set_Parameters (Query : in out Statement;
From : in ADO.Parameters.Abstract_List'Class);
-- Return the number of parameters in the list.
function Length (Query : in Statement) return Natural;
-- Return the parameter at the given position
function Element (Query : in Statement;
Position : in Natural) return ADO.Parameters.Parameter;
-- Execute the <b>Process</b> procedure with the given parameter as argument.
procedure Query_Element (Query : in Statement;
Position : in Natural;
Process : not null access
procedure (Element : in ADO.Parameters.Parameter));
-- Clear the list of parameters.
procedure Clear (Query : in out Statement);
subtype Query_String is String;
procedure Add_Param (Params : in out Statement;
Value : in ADO.Objects.Object_Key);
-- Add the parameter by using the primary key of the object.
-- Use null if the object is a null reference.
procedure Add_Param (Params : in out Statement;
Value : in ADO.Objects.Object_Ref'Class);
-- Operations to build the SQL query
procedure Append (Query : in out Statement; SQL : in String);
procedure Append (Query : in out Statement; SQL : in Unbounded_String);
procedure Append (Query : in out Statement; Value : in Integer);
procedure Append (Query : in out Statement; Value : in Long_Integer);
-- Append the value to the SQL query string.
procedure Append_Escape (Query : in out Statement; Value : in String);
-- Append the value to the SQL query string.
procedure Append_Escape (Query : in out Statement;
Value : in Unbounded_String);
procedure Set_Filter (Query : in out Statement;
Filter : in String);
-- Execute the query
procedure Execute (Query : in out Statement) is abstract;
-- ------------------------------
-- An SQL query statement
--
-- The Query_Statement provides operations to retrieve the
-- results after execution of the query.
-- ------------------------------
type Query_Statement is new Statement with private;
type Query_Statement_Access is access all Query_Statement'Class;
-- Execute the query
overriding
procedure Execute (Query : in out Query_Statement);
-- Get the number of rows returned by the query
function Get_Row_Count (Query : in Query_Statement) return Natural;
-- Returns True if there is more data (row) to fetch
function Has_Elements (Query : in Query_Statement) return Boolean;
-- Fetch the next row
procedure Next (Query : in out Query_Statement);
-- Returns true if the column <b>Column</b> is null.
function Is_Null (Query : in Query_Statement;
Column : in Natural) return Boolean;
-- Get the column value at position <b>Column</b> and
-- return it as an <b>Int64</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
function Get_Int64 (Query : Query_Statement;
Column : Natural) return Int64;
-- Get the column value at position <b>Column</b> and
-- return it as an <b>Identifier</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
function Get_Identifier (Query : Query_Statement;
Column : Natural) return Identifier;
-- Get the column value at position <b>Column</b> and
-- return it as an <b>Integer</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
function Get_Integer (Query : Query_Statement;
Column : Natural) return Integer;
-- Get the column value at position <b>Column</b> and
-- return it as an <b>Integer</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
function Get_Natural (Query : in Query_Statement;
Column : in Natural) return Natural;
-- Get the column value at position <b>Column</b> and
-- return it as an <b>Nullable_Integer</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
function Get_Nullable_Integer (Query : Query_Statement;
Column : Natural) return Nullable_Integer;
-- Get the column value at position <b>Column</b> and
-- return it as an <b>Boolean</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
function Get_Boolean (Query : Query_Statement;
Column : Natural) return Boolean;
-- Get the column value at position <b>Column</b> and
-- return it as an <b>Unbounded_String</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
function Get_Unbounded_String (Query : Query_Statement;
Column : Natural) return Unbounded_String;
-- Get the column value at position <b>Column</b> and
-- return it as an <b>Unbounded_String</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
function Get_String (Query : Query_Statement;
Column : Natural) return String;
-- Get the column value at position <b>Column</b> and
-- return it as a <b>Blob</b> reference.
function Get_Blob (Query : in Query_Statement;
Column : in Natural) return ADO.Blob_Ref;
-- Get the column value at position <b>Column</b> and
-- return it as an <b>Time</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
function Get_Time (Query : Query_Statement;
Column : Natural) return Ada.Calendar.Time;
-- Get the column value at position <b>Column</b> and
-- return it as a <b>Nullable_Time</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
function Get_Time (Query : Query_Statement;
Column : Natural) return Nullable_Time;
-- Get the column type
-- Raises <b>Invalid_Column</b> if the column does not exist.
function Get_Column_Type (Query : Query_Statement;
Column : Natural)
return ADO.Schemas.Column_Type;
-- Get the column name.
-- Raises <b>Invalid_Column</b> if the column does not exist.
function Get_Column_Name (Query : in Query_Statement;
Column : in Natural)
return String;
-- Get the number of columns in the result.
function Get_Column_Count (Query : in Query_Statement)
return Natural;
-- Get the query result as an integer
function Get_Result_Integer (Query : in Query_Statement) return Integer;
-- Get the query result as an blob.
function Get_Result_Blob (Query : in Query_Statement) return ADO.Blob_Ref;
-- ------------------------------
-- Delete statement
-- ------------------------------
type Delete_Statement is new Statement with private;
type Delete_Statement_Access is access all Delete_Statement'Class;
-- Execute the delete query.
overriding
procedure Execute (Query : in out Delete_Statement);
-- Execute the delete query.
-- Returns the number of rows deleted.
procedure Execute (Query : in out Delete_Statement;
Result : out Natural);
-- ------------------------------
-- Update statement
-- ------------------------------
type Update_Statement is new Statement with private;
type Update_Statement_Access is access all Update_Statement'Class;
-- Get the update query object associated with this update statement.
function Get_Update_Query (Update : in Update_Statement)
return ADO.SQL.Update_Query_Access;
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in Boolean);
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in Integer);
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in Long_Long_Integer);
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in Identifier);
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in Entity_Type);
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in Ada.Calendar.Time);
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in Nullable_Time);
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in String);
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in Unbounded_String);
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in ADO.Objects.Object_Key);
-- Prepare the update/insert query to save the table field.
-- identified by <b>Name</b> and set it to the identifier key held by <b>Value</b>.
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in ADO.Objects.Object_Ref'Class);
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to the <b>Value</b>.
procedure Save_Field (Update : in out Update_Statement;
Name : in String;
Value : in ADO.Blob_Ref);
-- Prepare the update/insert query to save the table field
-- identified by <b>Name</b> and set it to NULL.
procedure Save_Null_Field (Update : in out Update_Statement;
Name : in String);
-- Check if the update/insert query has some fields to update.
function Has_Save_Fields (Update : in Update_Statement) return Boolean;
-- Execute the query
overriding
procedure Execute (Query : in out Update_Statement);
-- Execute the query
procedure Execute (Query : in out Update_Statement;
Result : out Integer);
-- ------------------------------
-- Insert statement
-- ------------------------------
type Insert_Statement is new Update_Statement with private;
type Insert_Statement_Access is access all Insert_Statement'Class;
-- Execute the query
overriding
procedure Execute (Query : in out Insert_Statement);
private
type Statement is abstract new ADO.Parameters.Abstract_List with record
Query : ADO.SQL.Query_Access;
end record;
type Driver_Statement is new Ada.Finalization.Limited_Controlled with null record;
procedure Execute (Query : in out Statement;
SQL : in Unbounded_String;
Params : in ADO.Parameters.Abstract_List'Class);
type Query_Statement is new Statement with record
Proxy : Query_Statement_Access := null;
Ref_Counter : Natural := 0;
end record;
overriding
procedure Adjust (Stmt : in out Query_Statement);
overriding
procedure Finalize (Stmt : in out Query_Statement);
-- String pointer to interface with a C library
type chars_ptr is access all Character;
pragma Convention (C, chars_ptr);
type Size_T is mod 2 ** Standard'Address_Size;
use Interfaces.C;
function To_Chars_Ptr is
new Ada.Unchecked_Conversion (System.Address, chars_ptr);
function To_Chars_Ptr is
new Ada.Unchecked_Conversion (Interfaces.C.Strings.chars_ptr, chars_ptr);
function To_Address is
new Ada.Unchecked_Conversion (chars_ptr, System.Address);
function "+" (Left : chars_ptr; Right : Size_T) return chars_ptr;
pragma Inline ("+");
-- Get an unsigned 64-bit number from a C string terminated by \0
function Get_Uint64 (Str : chars_ptr) return unsigned_long;
-- Get a signed 64-bit number from a C string terminated by \0
function Get_Int64 (Str : chars_ptr) return Int64;
-- Get a time from the C string passed in <b>Value</b>.
-- Raises <b>Invalid_Type</b> if the value cannot be converted.
-- Raises <b>Invalid_Column</b> if the column does not exist.
function Get_Time (Value : in chars_ptr) return Ada.Calendar.Time;
-- Create a blob initialized with the given data buffer pointed to by <b>Data</b>
-- and which contains <b>Size</b> bytes.
function Get_Blob (Data : in chars_ptr;
Size : in Natural) return Blob_Ref;
type Delete_Statement is new Statement with record
Proxy : Delete_Statement_Access := null;
Ref_Counter : Natural := 0;
end record;
overriding
procedure Adjust (Stmt : in out Delete_Statement);
overriding
procedure Finalize (Stmt : in out Delete_Statement);
type Update_Statement is new Statement with record
Proxy : Update_Statement_Access := null;
Update : ADO.SQL.Update_Query_Access;
Ref_Counter : Natural := 0;
end record;
overriding
procedure Adjust (Stmt : in out Update_Statement);
overriding
procedure Finalize (Stmt : in out Update_Statement);
type Insert_Statement is new Update_Statement with record
Pos2 : Natural := 0;
end record;
end ADO.Statements;
|
-- Generated by gperfhash
package Mysql.Perfect_Hash is
pragma Preelaborate;
function Hash (S : String) return Natural;
-- Returns true if the string <b>S</b> is a keyword.
function Is_Keyword (S : in String) return Boolean;
type Name_Access is access constant String;
type Keyword_Array is array (Natural range <>) of Name_Access;
Keywords : constant Keyword_Array;
private
K_0 : aliased constant String := "ACCESSIBLE";
K_1 : aliased constant String := "ADD";
K_2 : aliased constant String := "ALL";
K_3 : aliased constant String := "ALTER";
K_4 : aliased constant String := "ANALYZE";
K_5 : aliased constant String := "AND";
K_6 : aliased constant String := "AS";
K_7 : aliased constant String := "ASC";
K_8 : aliased constant String := "ASENSITIVE";
K_9 : aliased constant String := "BEFORE";
K_10 : aliased constant String := "BETWEEN";
K_11 : aliased constant String := "BIGINT";
K_12 : aliased constant String := "BINARY";
K_13 : aliased constant String := "BLOB";
K_14 : aliased constant String := "BOTH";
K_15 : aliased constant String := "BY";
K_16 : aliased constant String := "CALL";
K_17 : aliased constant String := "CASCADE";
K_18 : aliased constant String := "CASE";
K_19 : aliased constant String := "CHANGE";
K_20 : aliased constant String := "CHAR";
K_21 : aliased constant String := "CHARACTER";
K_22 : aliased constant String := "CHECK";
K_23 : aliased constant String := "COLLATE";
K_24 : aliased constant String := "COLUMN";
K_25 : aliased constant String := "CONDITION";
K_26 : aliased constant String := "CONSTRAINT";
K_27 : aliased constant String := "CONTINUE";
K_28 : aliased constant String := "CONVERT";
K_29 : aliased constant String := "CREATE";
K_30 : aliased constant String := "CROSS";
K_31 : aliased constant String := "CURRENT_DATE";
K_32 : aliased constant String := "CURRENT_TIME";
K_33 : aliased constant String := "CURRENT_TIMESTAMP";
K_34 : aliased constant String := "CURRENT_USER";
K_35 : aliased constant String := "CURSOR";
K_36 : aliased constant String := "DATABASE";
K_37 : aliased constant String := "DATABASES";
K_38 : aliased constant String := "DAY_HOUR";
K_39 : aliased constant String := "DAY_MICROSECOND";
K_40 : aliased constant String := "DAY_MINUTE";
K_41 : aliased constant String := "DAY_SECOND";
K_42 : aliased constant String := "DEC";
K_43 : aliased constant String := "DECIMAL";
K_44 : aliased constant String := "DECLARE";
K_45 : aliased constant String := "DEFAULT";
K_46 : aliased constant String := "DELAYED";
K_47 : aliased constant String := "DELETE";
K_48 : aliased constant String := "DESC";
K_49 : aliased constant String := "DESCRIBE";
K_50 : aliased constant String := "DETERMINISTIC";
K_51 : aliased constant String := "DISTINCT";
K_52 : aliased constant String := "DISTINCTROW";
K_53 : aliased constant String := "DIV";
K_54 : aliased constant String := "DOUBLE";
K_55 : aliased constant String := "DROP";
K_56 : aliased constant String := "DUAL";
K_57 : aliased constant String := "EACH";
K_58 : aliased constant String := "ELSE";
K_59 : aliased constant String := "ELSEIF";
K_60 : aliased constant String := "ENCLOSED";
K_61 : aliased constant String := "ESCAPED";
K_62 : aliased constant String := "EXISTS";
K_63 : aliased constant String := "EXIT";
K_64 : aliased constant String := "EXPLAIN";
K_65 : aliased constant String := "FALSE";
K_66 : aliased constant String := "FETCH";
K_67 : aliased constant String := "FLOAT";
K_68 : aliased constant String := "FLOAT4";
K_69 : aliased constant String := "FLOAT8";
K_70 : aliased constant String := "FOR";
K_71 : aliased constant String := "FORCE";
K_72 : aliased constant String := "FOREIGN";
K_73 : aliased constant String := "FROM";
K_74 : aliased constant String := "FULLTEXT";
K_75 : aliased constant String := "GRANT";
K_76 : aliased constant String := "GROUP";
K_77 : aliased constant String := "HAVING";
K_78 : aliased constant String := "HIGH_PRIORITY";
K_79 : aliased constant String := "HOUR_MICROSECOND";
K_80 : aliased constant String := "HOUR_MINUTE";
K_81 : aliased constant String := "HOUR_SECOND";
K_82 : aliased constant String := "IF";
K_83 : aliased constant String := "IGNORE";
K_84 : aliased constant String := "IN";
K_85 : aliased constant String := "INDEX";
K_86 : aliased constant String := "INFILE";
K_87 : aliased constant String := "INNER";
K_88 : aliased constant String := "INOUT";
K_89 : aliased constant String := "INSENSITIVE";
K_90 : aliased constant String := "INSERT";
K_91 : aliased constant String := "INT";
K_92 : aliased constant String := "INT1";
K_93 : aliased constant String := "INT2";
K_94 : aliased constant String := "INT3";
K_95 : aliased constant String := "INT4";
K_96 : aliased constant String := "INT8";
K_97 : aliased constant String := "INTEGER";
K_98 : aliased constant String := "INTERVAL";
K_99 : aliased constant String := "INTO";
K_100 : aliased constant String := "IS";
K_101 : aliased constant String := "ITERATE";
K_102 : aliased constant String := "JOIN";
K_103 : aliased constant String := "KEY";
K_104 : aliased constant String := "KEYS";
K_105 : aliased constant String := "KILL";
K_106 : aliased constant String := "LEADING";
K_107 : aliased constant String := "LEAVE";
K_108 : aliased constant String := "LEFT";
K_109 : aliased constant String := "LIKE";
K_110 : aliased constant String := "LIMIT";
K_111 : aliased constant String := "LINEAR";
K_112 : aliased constant String := "LINES";
K_113 : aliased constant String := "LOAD";
K_114 : aliased constant String := "LOCALTIME";
K_115 : aliased constant String := "LOCALTIMESTAMP";
K_116 : aliased constant String := "LOCK";
K_117 : aliased constant String := "LONG";
K_118 : aliased constant String := "LONGBLOB";
K_119 : aliased constant String := "LONGTEXT";
K_120 : aliased constant String := "LOOP";
K_121 : aliased constant String := "LOW_PRIORITY";
K_122 : aliased constant String := "MASTER_SSL_VERIFY_SERVER_CERT";
K_123 : aliased constant String := "MATCH";
K_124 : aliased constant String := "MAXVALUE";
K_125 : aliased constant String := "MEDIUMBLOB";
K_126 : aliased constant String := "MEDIUMINT";
K_127 : aliased constant String := "MEDIUMTEXT";
K_128 : aliased constant String := "MIDDLEINT";
K_129 : aliased constant String := "MINUTE_MICROSECOND";
K_130 : aliased constant String := "MINUTE_SECOND";
K_131 : aliased constant String := "MOD";
K_132 : aliased constant String := "MODIFIES";
K_133 : aliased constant String := "NATURAL";
K_134 : aliased constant String := "NOT";
K_135 : aliased constant String := "NO_WRITE_TO_BINLOG";
K_136 : aliased constant String := "NULL";
K_137 : aliased constant String := "NUMERIC";
K_138 : aliased constant String := "ON";
K_139 : aliased constant String := "OPTIMIZE";
K_140 : aliased constant String := "OPTION";
K_141 : aliased constant String := "OPTIONALLY";
K_142 : aliased constant String := "OR";
K_143 : aliased constant String := "ORDER";
K_144 : aliased constant String := "OUT";
K_145 : aliased constant String := "OUTER";
K_146 : aliased constant String := "OUTFILE";
K_147 : aliased constant String := "PRECISION";
K_148 : aliased constant String := "PRIMARY";
K_149 : aliased constant String := "PROCEDURE";
K_150 : aliased constant String := "PURGE";
K_151 : aliased constant String := "RANGE";
K_152 : aliased constant String := "READ";
K_153 : aliased constant String := "READS";
K_154 : aliased constant String := "READ_WRITE";
K_155 : aliased constant String := "REAL";
K_156 : aliased constant String := "REFERENCES";
K_157 : aliased constant String := "REGEXP";
K_158 : aliased constant String := "RELEASE";
K_159 : aliased constant String := "RENAME";
K_160 : aliased constant String := "REPEAT";
K_161 : aliased constant String := "REPLACE";
K_162 : aliased constant String := "REQUIRE";
K_163 : aliased constant String := "RESIGNAL";
K_164 : aliased constant String := "RESTRICT";
K_165 : aliased constant String := "RETURN";
K_166 : aliased constant String := "REVOKE";
K_167 : aliased constant String := "RIGHT";
K_168 : aliased constant String := "RLIKE";
K_169 : aliased constant String := "SCHEMA";
K_170 : aliased constant String := "SCHEMAS";
K_171 : aliased constant String := "SECOND_MICROSECOND";
K_172 : aliased constant String := "SELECT";
K_173 : aliased constant String := "SENSITIVE";
K_174 : aliased constant String := "SEPARATOR";
K_175 : aliased constant String := "SET";
K_176 : aliased constant String := "SHOW";
K_177 : aliased constant String := "SIGNAL";
K_178 : aliased constant String := "SMALLINT";
K_179 : aliased constant String := "SPATIAL";
K_180 : aliased constant String := "SPECIFIC";
K_181 : aliased constant String := "SQL";
K_182 : aliased constant String := "SQLEXCEPTION";
K_183 : aliased constant String := "SQLSTATE";
K_184 : aliased constant String := "SQLWARNING";
K_185 : aliased constant String := "SQL_BIG_RESULT";
K_186 : aliased constant String := "SQL_CALC_FOUND_ROWS";
K_187 : aliased constant String := "SQL_SMALL_RESULT";
K_188 : aliased constant String := "SSL";
K_189 : aliased constant String := "STARTING";
K_190 : aliased constant String := "STRAIGHT_JOIN";
K_191 : aliased constant String := "TABLE";
K_192 : aliased constant String := "TERMINATED";
K_193 : aliased constant String := "THEN";
K_194 : aliased constant String := "TINYBLOB";
K_195 : aliased constant String := "TINYINT";
K_196 : aliased constant String := "TINYTEXT";
K_197 : aliased constant String := "TO";
K_198 : aliased constant String := "TRAILING";
K_199 : aliased constant String := "TRIGGER";
K_200 : aliased constant String := "TRUE";
K_201 : aliased constant String := "UNDO";
K_202 : aliased constant String := "UNION";
K_203 : aliased constant String := "UNIQUE";
K_204 : aliased constant String := "UNLOCK";
K_205 : aliased constant String := "UNSIGNED";
K_206 : aliased constant String := "UPDATE";
K_207 : aliased constant String := "USAGE";
K_208 : aliased constant String := "USE";
K_209 : aliased constant String := "USING";
K_210 : aliased constant String := "UTC_DATE";
K_211 : aliased constant String := "UTC_TIME";
K_212 : aliased constant String := "UTC_TIMESTAMP";
K_213 : aliased constant String := "VALUES";
K_214 : aliased constant String := "VARBINARY";
K_215 : aliased constant String := "VARCHAR";
K_216 : aliased constant String := "VARCHARACTER";
K_217 : aliased constant String := "VARYING";
K_218 : aliased constant String := "WHEN";
K_219 : aliased constant String := "WHERE";
K_220 : aliased constant String := "WHILE";
K_221 : aliased constant String := "WITH";
K_222 : aliased constant String := "WRITE";
K_223 : aliased constant String := "XOR";
K_224 : aliased constant String := "YEAR_MONTH";
K_225 : aliased constant String := "ZEROFILL";
Keywords : constant Keyword_Array := (
K_0'Access, K_1'Access, K_2'Access, K_3'Access,
K_4'Access, K_5'Access, K_6'Access, K_7'Access,
K_8'Access, K_9'Access, K_10'Access, K_11'Access,
K_12'Access, K_13'Access, K_14'Access, K_15'Access,
K_16'Access, K_17'Access, K_18'Access, K_19'Access,
K_20'Access, K_21'Access, K_22'Access, K_23'Access,
K_24'Access, K_25'Access, K_26'Access, K_27'Access,
K_28'Access, K_29'Access, K_30'Access, K_31'Access,
K_32'Access, K_33'Access, K_34'Access, K_35'Access,
K_36'Access, K_37'Access, K_38'Access, K_39'Access,
K_40'Access, K_41'Access, K_42'Access, K_43'Access,
K_44'Access, K_45'Access, K_46'Access, K_47'Access,
K_48'Access, K_49'Access, K_50'Access, K_51'Access,
K_52'Access, K_53'Access, K_54'Access, K_55'Access,
K_56'Access, K_57'Access, K_58'Access, K_59'Access,
K_60'Access, K_61'Access, K_62'Access, K_63'Access,
K_64'Access, K_65'Access, K_66'Access, K_67'Access,
K_68'Access, K_69'Access, K_70'Access, K_71'Access,
K_72'Access, K_73'Access, K_74'Access, K_75'Access,
K_76'Access, K_77'Access, K_78'Access, K_79'Access,
K_80'Access, K_81'Access, K_82'Access, K_83'Access,
K_84'Access, K_85'Access, K_86'Access, K_87'Access,
K_88'Access, K_89'Access, K_90'Access, K_91'Access,
K_92'Access, K_93'Access, K_94'Access, K_95'Access,
K_96'Access, K_97'Access, K_98'Access, K_99'Access,
K_100'Access, K_101'Access, K_102'Access, K_103'Access,
K_104'Access, K_105'Access, K_106'Access, K_107'Access,
K_108'Access, K_109'Access, K_110'Access, K_111'Access,
K_112'Access, K_113'Access, K_114'Access, K_115'Access,
K_116'Access, K_117'Access, K_118'Access, K_119'Access,
K_120'Access, K_121'Access, K_122'Access, K_123'Access,
K_124'Access, K_125'Access, K_126'Access, K_127'Access,
K_128'Access, K_129'Access, K_130'Access, K_131'Access,
K_132'Access, K_133'Access, K_134'Access, K_135'Access,
K_136'Access, K_137'Access, K_138'Access, K_139'Access,
K_140'Access, K_141'Access, K_142'Access, K_143'Access,
K_144'Access, K_145'Access, K_146'Access, K_147'Access,
K_148'Access, K_149'Access, K_150'Access, K_151'Access,
K_152'Access, K_153'Access, K_154'Access, K_155'Access,
K_156'Access, K_157'Access, K_158'Access, K_159'Access,
K_160'Access, K_161'Access, K_162'Access, K_163'Access,
K_164'Access, K_165'Access, K_166'Access, K_167'Access,
K_168'Access, K_169'Access, K_170'Access, K_171'Access,
K_172'Access, K_173'Access, K_174'Access, K_175'Access,
K_176'Access, K_177'Access, K_178'Access, K_179'Access,
K_180'Access, K_181'Access, K_182'Access, K_183'Access,
K_184'Access, K_185'Access, K_186'Access, K_187'Access,
K_188'Access, K_189'Access, K_190'Access, K_191'Access,
K_192'Access, K_193'Access, K_194'Access, K_195'Access,
K_196'Access, K_197'Access, K_198'Access, K_199'Access,
K_200'Access, K_201'Access, K_202'Access, K_203'Access,
K_204'Access, K_205'Access, K_206'Access, K_207'Access,
K_208'Access, K_209'Access, K_210'Access, K_211'Access,
K_212'Access, K_213'Access, K_214'Access, K_215'Access,
K_216'Access, K_217'Access, K_218'Access, K_219'Access,
K_220'Access, K_221'Access, K_222'Access, K_223'Access,
K_224'Access, K_225'Access);
end Mysql.Perfect_Hash;
|
package body serial is
procedure Initialize_UART_GPIO is
begin
Enable_Clock (USART_1);
Enable_Clock (RX_Pin & TX_Pin);
Configure_IO
(RX_Pin & TX_Pin,
(Mode => Mode_AF,
AF => GPIO_AF_USART1_7,
Resistors => Pull_Up,
AF_Speed => Speed_50MHz,
AF_Output_Type => Push_Pull));
end Initialize_UART_GPIO;
procedure Initialize (baud : UInt32) is
begin
Initialize_UART_GPIO;
Disable (USART_1);
Set_Baud_Rate (USART_1, baud);
Set_Mode (USART_1, Tx_Rx_Mode);
Set_Stop_Bits (USART_1, Stopbits_1);
Set_Word_Length (USART_1, Word_Length_8);
Set_Parity (USART_1, No_Parity);
Set_Flow_Control (USART_1, No_Flow_Control);
Enable (USART_1);
end Initialize;
procedure Await_Send_Ready (This : USART) is
begin
loop
exit when Tx_Ready (This);
end loop;
end Await_Send_Ready;
procedure Await_Read_Ready (This : USART) is
begin
loop
exit when Rx_Ready (This);
end loop;
end Await_Read_Ready;
procedure Serial_Print (Data : String) is
begin
for i in data'Range loop
Await_Send_Ready (USART_1);
Transmit (USART_1, UInt9 (Character'Pos(Data(i))));
end loop;
end Serial_Print;
function Serial_Read return UInt9 is
data : UInt9;
begin
Await_Read_Ready (USART_1);
Receive(USART_1,data);
return data;
end Serial_Read;
end serial;
|
-- C52101A.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 ARRAY SUBTYPE CONVERSION IS APPLIED AFTER AN ARRAY VALUE
-- IS DETERMINED.
-- BHS 6/22/84
WITH REPORT;
PROCEDURE C52101A IS
USE REPORT;
TYPE DAY IS (MON, TUE, WED, THU, FRI, SAT, SUN);
SUBTYPE WEEKDAY IS DAY RANGE MON..FRI;
TYPE ARR IS ARRAY (WEEKDAY RANGE <>) OF INTEGER;
TYPE ARR_DAY IS ARRAY (DAY RANGE <>) OF INTEGER;
NORM : ARR (MON..FRI); -- INDEX SUBTYPE WEEKDAY
NORM_DAY : ARR_DAY (MON..FRI); -- INDEX SUBTYPE DAY
BEGIN
TEST ("C52101A", "CHECK THAT ARRAY SUBTYPE CONVERSION " &
"APPLIED AFTER ARRAY VAL. DETERMINED");
BEGIN -- ILLEGAL CASE
NORM := (WED..SUN => 0); -- ERROR: INDEX SUBTYPE
FAILED ("EXCEPTION NOT RAISED FOR INDEX SUBTYPE ERROR");
EXCEPTION
WHEN CONSTRAINT_ERROR =>
COMMENT ("IMPROPER AGGREGATE BOUNDS DETECTED");
WHEN OTHERS =>
FAILED ("UNEXPECTED EXCEPTION RAISED");
END;
BEGIN -- LEGAL CASE
NORM_DAY := (WED..FRI => 0, SAT..SUN => 1);
IF NORM_DAY /= ( 0, 0, IDENT_INT(0), IDENT_INT(1),
IDENT_INT(1)) THEN
FAILED ("INCORRECT ASSIGNMENT IN LEGAL CASE");
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
FAILED ("CONSTRAINT_ERROR RAISED ON LEGAL INDEX " &
"SUBTYPE CONVERSION");
WHEN OTHERS =>
FAILED ("UNEXPECTED EXCEPTION RAISED IN LEGAL CASE");
END;
RESULT;
END C52101A;
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.