CombinedText stringlengths 4 3.42M |
|---|
-- This spec has been automatically generated from STM32F7x.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with HAL;
with System;
package STM32_SVD.CRYP is
pragma Preelaborate;
---------------
-- Registers --
---------------
subtype CR_ALGOMODE0_Field is HAL.UInt3;
subtype CR_DATATYPE_Field is HAL.UInt2;
subtype CR_KEYSIZE_Field is HAL.UInt2;
subtype CR_GCM_CCMPH_Field is HAL.UInt2;
-- control register
type CR_Register is record
-- unspecified
Reserved_0_1 : HAL.UInt2 := 16#0#;
-- Algorithm direction
ALGODIR : Boolean := False;
-- Algorithm mode
ALGOMODE0 : CR_ALGOMODE0_Field := 16#0#;
-- Data type selection
DATATYPE : CR_DATATYPE_Field := 16#0#;
-- Key size selection (AES mode only)
KEYSIZE : CR_KEYSIZE_Field := 16#0#;
-- unspecified
Reserved_10_13 : HAL.UInt4 := 16#0#;
-- Write-only. FIFO flush
FFLUSH : Boolean := False;
-- Cryptographic processor enable
CRYPEN : Boolean := False;
-- GCM_CCMPH
GCM_CCMPH : CR_GCM_CCMPH_Field := 16#0#;
-- unspecified
Reserved_18_18 : HAL.Bit := 16#0#;
-- ALGOMODE
ALGOMODE3 : Boolean := False;
-- unspecified
Reserved_20_31 : HAL.UInt12 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CR_Register use record
Reserved_0_1 at 0 range 0 .. 1;
ALGODIR at 0 range 2 .. 2;
ALGOMODE0 at 0 range 3 .. 5;
DATATYPE at 0 range 6 .. 7;
KEYSIZE at 0 range 8 .. 9;
Reserved_10_13 at 0 range 10 .. 13;
FFLUSH at 0 range 14 .. 14;
CRYPEN at 0 range 15 .. 15;
GCM_CCMPH at 0 range 16 .. 17;
Reserved_18_18 at 0 range 18 .. 18;
ALGOMODE3 at 0 range 19 .. 19;
Reserved_20_31 at 0 range 20 .. 31;
end record;
-- status register
type SR_Register is record
-- Read-only. Input FIFO empty
IFEM : Boolean;
-- Read-only. Input FIFO not full
IFNF : Boolean;
-- Read-only. Output FIFO not empty
OFNE : Boolean;
-- Read-only. Output FIFO full
OFFU : Boolean;
-- Read-only. Busy bit
BUSY : Boolean;
-- unspecified
Reserved_5_31 : HAL.UInt27;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SR_Register use record
IFEM at 0 range 0 .. 0;
IFNF at 0 range 1 .. 1;
OFNE at 0 range 2 .. 2;
OFFU at 0 range 3 .. 3;
BUSY at 0 range 4 .. 4;
Reserved_5_31 at 0 range 5 .. 31;
end record;
-- DMA control register
type DMACR_Register is record
-- DMA input enable
DIEN : Boolean := False;
-- DMA output enable
DOEN : Boolean := False;
-- unspecified
Reserved_2_31 : HAL.UInt30 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for DMACR_Register use record
DIEN at 0 range 0 .. 0;
DOEN at 0 range 1 .. 1;
Reserved_2_31 at 0 range 2 .. 31;
end record;
-- interrupt mask set/clear register
type IMSCR_Register is record
-- Input FIFO service interrupt mask
INIM : Boolean := False;
-- Output FIFO service interrupt mask
OUTIM : Boolean := False;
-- unspecified
Reserved_2_31 : HAL.UInt30 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for IMSCR_Register use record
INIM at 0 range 0 .. 0;
OUTIM at 0 range 1 .. 1;
Reserved_2_31 at 0 range 2 .. 31;
end record;
-- raw interrupt status register
type RISR_Register is record
-- Read-only. Input FIFO service raw interrupt status
INRIS : Boolean;
-- Read-only. Output FIFO service raw interrupt status
OUTRIS : Boolean;
-- unspecified
Reserved_2_31 : HAL.UInt30;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for RISR_Register use record
INRIS at 0 range 0 .. 0;
OUTRIS at 0 range 1 .. 1;
Reserved_2_31 at 0 range 2 .. 31;
end record;
-- masked interrupt status register
type MISR_Register is record
-- Read-only. Input FIFO service masked interrupt status
INMIS : Boolean;
-- Read-only. Output FIFO service masked interrupt status
OUTMIS : Boolean;
-- unspecified
Reserved_2_31 : HAL.UInt30;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for MISR_Register use record
INMIS at 0 range 0 .. 0;
OUTMIS at 0 range 1 .. 1;
Reserved_2_31 at 0 range 2 .. 31;
end record;
-- K0LR_b array
type K0LR_b_Field_Array is array (224 .. 255) of Boolean
with Component_Size => 1, Size => 32;
-- key registers
type K0LR_Register
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- b as a value
Val : HAL.UInt32;
when True =>
-- b as an array
Arr : K0LR_b_Field_Array;
end case;
end record
with Unchecked_Union, Size => 32, Volatile_Full_Access,
Bit_Order => System.Low_Order_First;
for K0LR_Register use record
Val at 0 range 0 .. 31;
Arr at 0 range 0 .. 31;
end record;
-- K0RR_b array
type K0RR_b_Field_Array is array (192 .. 223) of Boolean
with Component_Size => 1, Size => 32;
-- key registers
type K0RR_Register
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- b as a value
Val : HAL.UInt32;
when True =>
-- b as an array
Arr : K0RR_b_Field_Array;
end case;
end record
with Unchecked_Union, Size => 32, Volatile_Full_Access,
Bit_Order => System.Low_Order_First;
for K0RR_Register use record
Val at 0 range 0 .. 31;
Arr at 0 range 0 .. 31;
end record;
-- K1LR_b array
type K1LR_b_Field_Array is array (160 .. 191) of Boolean
with Component_Size => 1, Size => 32;
-- key registers
type K1LR_Register
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- b as a value
Val : HAL.UInt32;
when True =>
-- b as an array
Arr : K1LR_b_Field_Array;
end case;
end record
with Unchecked_Union, Size => 32, Volatile_Full_Access,
Bit_Order => System.Low_Order_First;
for K1LR_Register use record
Val at 0 range 0 .. 31;
Arr at 0 range 0 .. 31;
end record;
-- K1RR_b array
type K1RR_b_Field_Array is array (128 .. 159) of Boolean
with Component_Size => 1, Size => 32;
-- key registers
type K1RR_Register
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- b as a value
Val : HAL.UInt32;
when True =>
-- b as an array
Arr : K1RR_b_Field_Array;
end case;
end record
with Unchecked_Union, Size => 32, Volatile_Full_Access,
Bit_Order => System.Low_Order_First;
for K1RR_Register use record
Val at 0 range 0 .. 31;
Arr at 0 range 0 .. 31;
end record;
-- K2LR_b array
type K2LR_b_Field_Array is array (96 .. 127) of Boolean
with Component_Size => 1, Size => 32;
-- key registers
type K2LR_Register
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- b as a value
Val : HAL.UInt32;
when True =>
-- b as an array
Arr : K2LR_b_Field_Array;
end case;
end record
with Unchecked_Union, Size => 32, Volatile_Full_Access,
Bit_Order => System.Low_Order_First;
for K2LR_Register use record
Val at 0 range 0 .. 31;
Arr at 0 range 0 .. 31;
end record;
-- K2RR_b array
type K2RR_b_Field_Array is array (64 .. 95) of Boolean
with Component_Size => 1, Size => 32;
-- key registers
type K2RR_Register
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- b as a value
Val : HAL.UInt32;
when True =>
-- b as an array
Arr : K2RR_b_Field_Array;
end case;
end record
with Unchecked_Union, Size => 32, Volatile_Full_Access,
Bit_Order => System.Low_Order_First;
for K2RR_Register use record
Val at 0 range 0 .. 31;
Arr at 0 range 0 .. 31;
end record;
-- K3LR_b array
type K3LR_b_Field_Array is array (32 .. 63) of Boolean
with Component_Size => 1, Size => 32;
-- key registers
type K3LR_Register
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- b as a value
Val : HAL.UInt32;
when True =>
-- b as an array
Arr : K3LR_b_Field_Array;
end case;
end record
with Unchecked_Union, Size => 32, Volatile_Full_Access,
Bit_Order => System.Low_Order_First;
for K3LR_Register use record
Val at 0 range 0 .. 31;
Arr at 0 range 0 .. 31;
end record;
-- K3RR_b array
type K3RR_b_Field_Array is array (0 .. 31) of Boolean
with Component_Size => 1, Size => 32;
-- key registers
type K3RR_Register
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- b as a value
Val : HAL.UInt32;
when True =>
-- b as an array
Arr : K3RR_b_Field_Array;
end case;
end record
with Unchecked_Union, Size => 32, Volatile_Full_Access,
Bit_Order => System.Low_Order_First;
for K3RR_Register use record
Val at 0 range 0 .. 31;
Arr at 0 range 0 .. 31;
end record;
-- initialization vector registers
type IV0LR_Register is record
-- IV31
IV31 : Boolean := False;
-- IV30
IV30 : Boolean := False;
-- IV29
IV29 : Boolean := False;
-- IV28
IV28 : Boolean := False;
-- IV27
IV27 : Boolean := False;
-- IV26
IV26 : Boolean := False;
-- IV25
IV25 : Boolean := False;
-- IV24
IV24 : Boolean := False;
-- IV23
IV23 : Boolean := False;
-- IV22
IV22 : Boolean := False;
-- IV21
IV21 : Boolean := False;
-- IV20
IV20 : Boolean := False;
-- IV19
IV19 : Boolean := False;
-- IV18
IV18 : Boolean := False;
-- IV17
IV17 : Boolean := False;
-- IV16
IV16 : Boolean := False;
-- IV15
IV15 : Boolean := False;
-- IV14
IV14 : Boolean := False;
-- IV13
IV13 : Boolean := False;
-- IV12
IV12 : Boolean := False;
-- IV11
IV11 : Boolean := False;
-- IV10
IV10 : Boolean := False;
-- IV9
IV9 : Boolean := False;
-- IV8
IV8 : Boolean := False;
-- IV7
IV7 : Boolean := False;
-- IV6
IV6 : Boolean := False;
-- IV5
IV5 : Boolean := False;
-- IV4
IV4 : Boolean := False;
-- IV3
IV3 : Boolean := False;
-- IV2
IV2 : Boolean := False;
-- IV1
IV1 : Boolean := False;
-- IV0
IV0 : Boolean := False;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for IV0LR_Register use record
IV31 at 0 range 0 .. 0;
IV30 at 0 range 1 .. 1;
IV29 at 0 range 2 .. 2;
IV28 at 0 range 3 .. 3;
IV27 at 0 range 4 .. 4;
IV26 at 0 range 5 .. 5;
IV25 at 0 range 6 .. 6;
IV24 at 0 range 7 .. 7;
IV23 at 0 range 8 .. 8;
IV22 at 0 range 9 .. 9;
IV21 at 0 range 10 .. 10;
IV20 at 0 range 11 .. 11;
IV19 at 0 range 12 .. 12;
IV18 at 0 range 13 .. 13;
IV17 at 0 range 14 .. 14;
IV16 at 0 range 15 .. 15;
IV15 at 0 range 16 .. 16;
IV14 at 0 range 17 .. 17;
IV13 at 0 range 18 .. 18;
IV12 at 0 range 19 .. 19;
IV11 at 0 range 20 .. 20;
IV10 at 0 range 21 .. 21;
IV9 at 0 range 22 .. 22;
IV8 at 0 range 23 .. 23;
IV7 at 0 range 24 .. 24;
IV6 at 0 range 25 .. 25;
IV5 at 0 range 26 .. 26;
IV4 at 0 range 27 .. 27;
IV3 at 0 range 28 .. 28;
IV2 at 0 range 29 .. 29;
IV1 at 0 range 30 .. 30;
IV0 at 0 range 31 .. 31;
end record;
-- initialization vector registers
type IV0RR_Register is record
-- IV63
IV63 : Boolean := False;
-- IV62
IV62 : Boolean := False;
-- IV61
IV61 : Boolean := False;
-- IV60
IV60 : Boolean := False;
-- IV59
IV59 : Boolean := False;
-- IV58
IV58 : Boolean := False;
-- IV57
IV57 : Boolean := False;
-- IV56
IV56 : Boolean := False;
-- IV55
IV55 : Boolean := False;
-- IV54
IV54 : Boolean := False;
-- IV53
IV53 : Boolean := False;
-- IV52
IV52 : Boolean := False;
-- IV51
IV51 : Boolean := False;
-- IV50
IV50 : Boolean := False;
-- IV49
IV49 : Boolean := False;
-- IV48
IV48 : Boolean := False;
-- IV47
IV47 : Boolean := False;
-- IV46
IV46 : Boolean := False;
-- IV45
IV45 : Boolean := False;
-- IV44
IV44 : Boolean := False;
-- IV43
IV43 : Boolean := False;
-- IV42
IV42 : Boolean := False;
-- IV41
IV41 : Boolean := False;
-- IV40
IV40 : Boolean := False;
-- IV39
IV39 : Boolean := False;
-- IV38
IV38 : Boolean := False;
-- IV37
IV37 : Boolean := False;
-- IV36
IV36 : Boolean := False;
-- IV35
IV35 : Boolean := False;
-- IV34
IV34 : Boolean := False;
-- IV33
IV33 : Boolean := False;
-- IV32
IV32 : Boolean := False;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for IV0RR_Register use record
IV63 at 0 range 0 .. 0;
IV62 at 0 range 1 .. 1;
IV61 at 0 range 2 .. 2;
IV60 at 0 range 3 .. 3;
IV59 at 0 range 4 .. 4;
IV58 at 0 range 5 .. 5;
IV57 at 0 range 6 .. 6;
IV56 at 0 range 7 .. 7;
IV55 at 0 range 8 .. 8;
IV54 at 0 range 9 .. 9;
IV53 at 0 range 10 .. 10;
IV52 at 0 range 11 .. 11;
IV51 at 0 range 12 .. 12;
IV50 at 0 range 13 .. 13;
IV49 at 0 range 14 .. 14;
IV48 at 0 range 15 .. 15;
IV47 at 0 range 16 .. 16;
IV46 at 0 range 17 .. 17;
IV45 at 0 range 18 .. 18;
IV44 at 0 range 19 .. 19;
IV43 at 0 range 20 .. 20;
IV42 at 0 range 21 .. 21;
IV41 at 0 range 22 .. 22;
IV40 at 0 range 23 .. 23;
IV39 at 0 range 24 .. 24;
IV38 at 0 range 25 .. 25;
IV37 at 0 range 26 .. 26;
IV36 at 0 range 27 .. 27;
IV35 at 0 range 28 .. 28;
IV34 at 0 range 29 .. 29;
IV33 at 0 range 30 .. 30;
IV32 at 0 range 31 .. 31;
end record;
-- initialization vector registers
type IV1LR_Register is record
-- IV95
IV95 : Boolean := False;
-- IV94
IV94 : Boolean := False;
-- IV93
IV93 : Boolean := False;
-- IV92
IV92 : Boolean := False;
-- IV91
IV91 : Boolean := False;
-- IV90
IV90 : Boolean := False;
-- IV89
IV89 : Boolean := False;
-- IV88
IV88 : Boolean := False;
-- IV87
IV87 : Boolean := False;
-- IV86
IV86 : Boolean := False;
-- IV85
IV85 : Boolean := False;
-- IV84
IV84 : Boolean := False;
-- IV83
IV83 : Boolean := False;
-- IV82
IV82 : Boolean := False;
-- IV81
IV81 : Boolean := False;
-- IV80
IV80 : Boolean := False;
-- IV79
IV79 : Boolean := False;
-- IV78
IV78 : Boolean := False;
-- IV77
IV77 : Boolean := False;
-- IV76
IV76 : Boolean := False;
-- IV75
IV75 : Boolean := False;
-- IV74
IV74 : Boolean := False;
-- IV73
IV73 : Boolean := False;
-- IV72
IV72 : Boolean := False;
-- IV71
IV71 : Boolean := False;
-- IV70
IV70 : Boolean := False;
-- IV69
IV69 : Boolean := False;
-- IV68
IV68 : Boolean := False;
-- IV67
IV67 : Boolean := False;
-- IV66
IV66 : Boolean := False;
-- IV65
IV65 : Boolean := False;
-- IV64
IV64 : Boolean := False;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for IV1LR_Register use record
IV95 at 0 range 0 .. 0;
IV94 at 0 range 1 .. 1;
IV93 at 0 range 2 .. 2;
IV92 at 0 range 3 .. 3;
IV91 at 0 range 4 .. 4;
IV90 at 0 range 5 .. 5;
IV89 at 0 range 6 .. 6;
IV88 at 0 range 7 .. 7;
IV87 at 0 range 8 .. 8;
IV86 at 0 range 9 .. 9;
IV85 at 0 range 10 .. 10;
IV84 at 0 range 11 .. 11;
IV83 at 0 range 12 .. 12;
IV82 at 0 range 13 .. 13;
IV81 at 0 range 14 .. 14;
IV80 at 0 range 15 .. 15;
IV79 at 0 range 16 .. 16;
IV78 at 0 range 17 .. 17;
IV77 at 0 range 18 .. 18;
IV76 at 0 range 19 .. 19;
IV75 at 0 range 20 .. 20;
IV74 at 0 range 21 .. 21;
IV73 at 0 range 22 .. 22;
IV72 at 0 range 23 .. 23;
IV71 at 0 range 24 .. 24;
IV70 at 0 range 25 .. 25;
IV69 at 0 range 26 .. 26;
IV68 at 0 range 27 .. 27;
IV67 at 0 range 28 .. 28;
IV66 at 0 range 29 .. 29;
IV65 at 0 range 30 .. 30;
IV64 at 0 range 31 .. 31;
end record;
-- initialization vector registers
type IV1RR_Register is record
-- IV127
IV127 : Boolean := False;
-- IV126
IV126 : Boolean := False;
-- IV125
IV125 : Boolean := False;
-- IV124
IV124 : Boolean := False;
-- IV123
IV123 : Boolean := False;
-- IV122
IV122 : Boolean := False;
-- IV121
IV121 : Boolean := False;
-- IV120
IV120 : Boolean := False;
-- IV119
IV119 : Boolean := False;
-- IV118
IV118 : Boolean := False;
-- IV117
IV117 : Boolean := False;
-- IV116
IV116 : Boolean := False;
-- IV115
IV115 : Boolean := False;
-- IV114
IV114 : Boolean := False;
-- IV113
IV113 : Boolean := False;
-- IV112
IV112 : Boolean := False;
-- IV111
IV111 : Boolean := False;
-- IV110
IV110 : Boolean := False;
-- IV109
IV109 : Boolean := False;
-- IV108
IV108 : Boolean := False;
-- IV107
IV107 : Boolean := False;
-- IV106
IV106 : Boolean := False;
-- IV105
IV105 : Boolean := False;
-- IV104
IV104 : Boolean := False;
-- IV103
IV103 : Boolean := False;
-- IV102
IV102 : Boolean := False;
-- IV101
IV101 : Boolean := False;
-- IV100
IV100 : Boolean := False;
-- IV99
IV99 : Boolean := False;
-- IV98
IV98 : Boolean := False;
-- IV97
IV97 : Boolean := False;
-- IV96
IV96 : Boolean := False;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for IV1RR_Register use record
IV127 at 0 range 0 .. 0;
IV126 at 0 range 1 .. 1;
IV125 at 0 range 2 .. 2;
IV124 at 0 range 3 .. 3;
IV123 at 0 range 4 .. 4;
IV122 at 0 range 5 .. 5;
IV121 at 0 range 6 .. 6;
IV120 at 0 range 7 .. 7;
IV119 at 0 range 8 .. 8;
IV118 at 0 range 9 .. 9;
IV117 at 0 range 10 .. 10;
IV116 at 0 range 11 .. 11;
IV115 at 0 range 12 .. 12;
IV114 at 0 range 13 .. 13;
IV113 at 0 range 14 .. 14;
IV112 at 0 range 15 .. 15;
IV111 at 0 range 16 .. 16;
IV110 at 0 range 17 .. 17;
IV109 at 0 range 18 .. 18;
IV108 at 0 range 19 .. 19;
IV107 at 0 range 20 .. 20;
IV106 at 0 range 21 .. 21;
IV105 at 0 range 22 .. 22;
IV104 at 0 range 23 .. 23;
IV103 at 0 range 24 .. 24;
IV102 at 0 range 25 .. 25;
IV101 at 0 range 26 .. 26;
IV100 at 0 range 27 .. 27;
IV99 at 0 range 28 .. 28;
IV98 at 0 range 29 .. 29;
IV97 at 0 range 30 .. 30;
IV96 at 0 range 31 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- Cryptographic processor
type CRYP_Peripheral is record
-- control register
CR : aliased CR_Register;
-- status register
SR : aliased SR_Register;
-- data input register
DIN : aliased HAL.UInt32;
-- data output register
DOUT : aliased HAL.UInt32;
-- DMA control register
DMACR : aliased DMACR_Register;
-- interrupt mask set/clear register
IMSCR : aliased IMSCR_Register;
-- raw interrupt status register
RISR : aliased RISR_Register;
-- masked interrupt status register
MISR : aliased MISR_Register;
-- key registers
K0LR : aliased K0LR_Register;
-- key registers
K0RR : aliased K0RR_Register;
-- key registers
K1LR : aliased K1LR_Register;
-- key registers
K1RR : aliased K1RR_Register;
-- key registers
K2LR : aliased K2LR_Register;
-- key registers
K2RR : aliased K2RR_Register;
-- key registers
K3LR : aliased K3LR_Register;
-- key registers
K3RR : aliased K3RR_Register;
-- initialization vector registers
IV0LR : aliased IV0LR_Register;
-- initialization vector registers
IV0RR : aliased IV0RR_Register;
-- initialization vector registers
IV1LR : aliased IV1LR_Register;
-- initialization vector registers
IV1RR : aliased IV1RR_Register;
-- context swap register
CSGCMCCM0R : aliased HAL.UInt32;
-- context swap register
CSGCMCCM1R : aliased HAL.UInt32;
-- context swap register
CSGCMCCM2R : aliased HAL.UInt32;
-- context swap register
CSGCMCCM3R : aliased HAL.UInt32;
-- context swap register
CSGCMCCM4R : aliased HAL.UInt32;
-- context swap register
CSGCMCCM5R : aliased HAL.UInt32;
-- context swap register
CSGCMCCM6R : aliased HAL.UInt32;
-- context swap register
CSGCMCCM7R : aliased HAL.UInt32;
-- context swap register
CSGCM0R : aliased HAL.UInt32;
-- context swap register
CSGCM1R : aliased HAL.UInt32;
-- context swap register
CSGCM2R : aliased HAL.UInt32;
-- context swap register
CSGCM3R : aliased HAL.UInt32;
-- context swap register
CSGCM4R : aliased HAL.UInt32;
-- context swap register
CSGCM5R : aliased HAL.UInt32;
-- context swap register
CSGCM6R : aliased HAL.UInt32;
-- context swap register
CSGCM7R : aliased HAL.UInt32;
end record
with Volatile;
for CRYP_Peripheral use record
CR at 16#0# range 0 .. 31;
SR at 16#4# range 0 .. 31;
DIN at 16#8# range 0 .. 31;
DOUT at 16#C# range 0 .. 31;
DMACR at 16#10# range 0 .. 31;
IMSCR at 16#14# range 0 .. 31;
RISR at 16#18# range 0 .. 31;
MISR at 16#1C# range 0 .. 31;
K0LR at 16#20# range 0 .. 31;
K0RR at 16#24# range 0 .. 31;
K1LR at 16#28# range 0 .. 31;
K1RR at 16#2C# range 0 .. 31;
K2LR at 16#30# range 0 .. 31;
K2RR at 16#34# range 0 .. 31;
K3LR at 16#38# range 0 .. 31;
K3RR at 16#3C# range 0 .. 31;
IV0LR at 16#40# range 0 .. 31;
IV0RR at 16#44# range 0 .. 31;
IV1LR at 16#48# range 0 .. 31;
IV1RR at 16#4C# range 0 .. 31;
CSGCMCCM0R at 16#50# range 0 .. 31;
CSGCMCCM1R at 16#54# range 0 .. 31;
CSGCMCCM2R at 16#58# range 0 .. 31;
CSGCMCCM3R at 16#5C# range 0 .. 31;
CSGCMCCM4R at 16#60# range 0 .. 31;
CSGCMCCM5R at 16#64# range 0 .. 31;
CSGCMCCM6R at 16#68# range 0 .. 31;
CSGCMCCM7R at 16#6C# range 0 .. 31;
CSGCM0R at 16#70# range 0 .. 31;
CSGCM1R at 16#74# range 0 .. 31;
CSGCM2R at 16#78# range 0 .. 31;
CSGCM3R at 16#7C# range 0 .. 31;
CSGCM4R at 16#80# range 0 .. 31;
CSGCM5R at 16#84# range 0 .. 31;
CSGCM6R at 16#88# range 0 .. 31;
CSGCM7R at 16#8C# range 0 .. 31;
end record;
-- Cryptographic processor
CRYP_Periph : aliased CRYP_Peripheral
with Import, Address => System'To_Address (16#50060000#);
end STM32_SVD.CRYP;
|
------------------------------------------------------------------------------
-- --
-- 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$
------------------------------------------------------------------------------
with AMF.Internals.Element_Collections;
with AMF.Internals.Tables.Utp_Attribute_Mappings;
with AMF.Internals.Tables.Utp_Element_Table;
with AMF.Internals.Tables.Utp_Metamodel;
package body AMF.Internals.Factories.Utp_Module_Factory is
--------------------
-- Connect_Extent --
--------------------
overriding procedure Connect_Extent
(Self : not null access constant Utp_Module_Factory;
Element : AMF.Internals.AMF_Element;
Extent : AMF.Internals.AMF_Extent)
is
pragma Unreferenced (Self);
begin
AMF.Internals.Tables.Utp_Element_Table.Table (Element).Extent := Extent;
end Connect_Extent;
----------------------
-- Connect_Link_End --
----------------------
overriding procedure Connect_Link_End
(Self : not null access constant Utp_Module_Factory;
Element : AMF.Internals.AMF_Element;
Property : AMF.Internals.CMOF_Element;
Link : AMF.Internals.AMF_Link;
Other : AMF.Internals.AMF_Element)
is
pragma Unreferenced (Self);
use AMF.Internals.Tables;
use AMF.Internals.Tables.Utp_Attribute_Mappings;
use AMF.Internals.Tables.Utp_Metamodel;
begin
if Property in MB_Utp .. ML_Utp then
declare
PO : constant AMF.Internals.CMOF_Element := Property - MB_Utp;
begin
if PO in Utp_Collection_Offset'Range (2) then
AMF.Internals.Element_Collections.Internal_Append
(Utp_Element_Table.Table (Element).Member (0).Collection
+ Utp_Collection_Offset
(Utp_Element_Table.Table (Element).Kind, PO),
Other,
Link);
elsif PO in Utp_Member_Offset'Range (2)
and then Utp_Member_Offset
(Utp_Element_Table.Table (Element).Kind, PO) /= 0
then
Utp_Element_Table.Table (Element).Member
(Utp_Member_Offset
(Utp_Element_Table.Table (Element).Kind, PO)).Link := Link;
else
AMF.Internals.Element_Collections.Internal_Append
(Utp_Element_Table.Table (Element).Member (0).Collection,
Other,
Link);
end if;
end;
end if;
end Connect_Link_End;
----------------
-- To_Element --
----------------
overriding function To_Element
(Self : not null access constant Utp_Module_Factory;
Element : AMF.Internals.AMF_Element) return AMF.Elements.Element_Access
is
pragma Unreferenced (Self);
begin
return AMF.Internals.Tables.Utp_Element_Table.Table (Element).Proxy;
end To_Element;
end AMF.Internals.Factories.Utp_Module_Factory;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S Y S T E M . A U X _ D E C --
-- --
-- S p e c --
-- --
-- Copyright (C) 1996-2019, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package contains definitions that are designed to be compatible
-- with the extra definitions in package System for DEC Ada implementations.
-- These definitions can be used directly by withing this package, or merged
-- with System using pragma Extend_System (Aux_DEC)
with Ada.Unchecked_Conversion;
package System.Aux_DEC is
pragma Preelaborate;
subtype Short_Address is Address;
-- For compatibility with systems having short and long addresses
type Integer_8 is range -2 ** (8 - 1) .. +2 ** (8 - 1) - 1;
for Integer_8'Size use 8;
type Integer_16 is range -2 ** (16 - 1) .. +2 ** (16 - 1) - 1;
for Integer_16'Size use 16;
type Integer_32 is range -2 ** (32 - 1) .. +2 ** (32 - 1) - 1;
for Integer_32'Size use 32;
type Integer_64 is range -2 ** (64 - 1) .. +2 ** (64 - 1) - 1;
for Integer_64'Size use 64;
type Integer_8_Array is array (Integer range <>) of Integer_8;
type Integer_16_Array is array (Integer range <>) of Integer_16;
type Integer_32_Array is array (Integer range <>) of Integer_32;
type Integer_64_Array is array (Integer range <>) of Integer_64;
-- These array types are not in all versions of DEC System, and in fact it
-- is not quite clear why they are in some and not others, but since they
-- definitely appear in some versions, we include them unconditionally.
type Largest_Integer is range Min_Int .. Max_Int;
type AST_Handler is private;
No_AST_Handler : constant AST_Handler;
type Type_Class is
(Type_Class_Enumeration,
Type_Class_Integer,
Type_Class_Fixed_Point,
Type_Class_Floating_Point,
Type_Class_Array,
Type_Class_Record,
Type_Class_Access,
Type_Class_Task, -- also in Ada 95 protected
Type_Class_Address);
function "not" (Left : Largest_Integer) return Largest_Integer;
function "and" (Left, Right : Largest_Integer) return Largest_Integer;
function "or" (Left, Right : Largest_Integer) return Largest_Integer;
function "xor" (Left, Right : Largest_Integer) return Largest_Integer;
Address_Zero : constant Address;
No_Addr : constant Address;
Address_Size : constant := Standard'Address_Size;
Short_Address_Size : constant := Standard'Address_Size;
function "+" (Left : Address; Right : Integer) return Address;
function "+" (Left : Integer; Right : Address) return Address;
function "-" (Left : Address; Right : Address) return Integer;
function "-" (Left : Address; Right : Integer) return Address;
generic
type Target is private;
function Fetch_From_Address (A : Address) return Target;
generic
type Target is private;
procedure Assign_To_Address (A : Address; T : Target);
-- Floating point type declarations for VAX floating point data types
type F_Float is digits 6;
type D_Float is digits 9;
type G_Float is digits 15;
-- We provide the type names, but these will be IEEE format, not VAX format
-- Floating point type declarations for IEEE floating point data types
type IEEE_Single_Float is digits 6;
type IEEE_Double_Float is digits 15;
Non_Ada_Error : exception;
-- Hardware-oriented types and functions
type Bit_Array is array (Integer range <>) of Boolean;
pragma Pack (Bit_Array);
subtype Bit_Array_8 is Bit_Array (0 .. 7);
subtype Bit_Array_16 is Bit_Array (0 .. 15);
subtype Bit_Array_32 is Bit_Array (0 .. 31);
subtype Bit_Array_64 is Bit_Array (0 .. 63);
type Unsigned_Byte is range 0 .. 255;
for Unsigned_Byte'Size use 8;
function "not" (Left : Unsigned_Byte) return Unsigned_Byte;
function "and" (Left, Right : Unsigned_Byte) return Unsigned_Byte;
function "or" (Left, Right : Unsigned_Byte) return Unsigned_Byte;
function "xor" (Left, Right : Unsigned_Byte) return Unsigned_Byte;
function To_Unsigned_Byte (X : Bit_Array_8) return Unsigned_Byte;
function To_Bit_Array_8 (X : Unsigned_Byte) return Bit_Array_8;
type Unsigned_Byte_Array is array (Integer range <>) of Unsigned_Byte;
type Unsigned_Word is range 0 .. 65535;
for Unsigned_Word'Size use 16;
function "not" (Left : Unsigned_Word) return Unsigned_Word;
function "and" (Left, Right : Unsigned_Word) return Unsigned_Word;
function "or" (Left, Right : Unsigned_Word) return Unsigned_Word;
function "xor" (Left, Right : Unsigned_Word) return Unsigned_Word;
function To_Unsigned_Word (X : Bit_Array_16) return Unsigned_Word;
function To_Bit_Array_16 (X : Unsigned_Word) return Bit_Array_16;
type Unsigned_Word_Array is array (Integer range <>) of Unsigned_Word;
type Unsigned_Longword is range -2_147_483_648 .. 2_147_483_647;
for Unsigned_Longword'Size use 32;
function "not" (Left : Unsigned_Longword) return Unsigned_Longword;
function "and" (Left, Right : Unsigned_Longword) return Unsigned_Longword;
function "or" (Left, Right : Unsigned_Longword) return Unsigned_Longword;
function "xor" (Left, Right : Unsigned_Longword) return Unsigned_Longword;
function To_Unsigned_Longword (X : Bit_Array_32) return Unsigned_Longword;
function To_Bit_Array_32 (X : Unsigned_Longword) return Bit_Array_32;
type Unsigned_Longword_Array is
array (Integer range <>) of Unsigned_Longword;
type Unsigned_32 is range 0 .. 4_294_967_295;
for Unsigned_32'Size use 32;
function "not" (Left : Unsigned_32) return Unsigned_32;
function "and" (Left, Right : Unsigned_32) return Unsigned_32;
function "or" (Left, Right : Unsigned_32) return Unsigned_32;
function "xor" (Left, Right : Unsigned_32) return Unsigned_32;
function To_Unsigned_32 (X : Bit_Array_32) return Unsigned_32;
function To_Bit_Array_32 (X : Unsigned_32) return Bit_Array_32;
type Unsigned_Quadword is record
L0 : Unsigned_Longword;
L1 : Unsigned_Longword;
end record;
for Unsigned_Quadword'Size use 64;
for Unsigned_Quadword'Alignment use
Integer'Min (8, Standard'Maximum_Alignment);
function "not" (Left : Unsigned_Quadword) return Unsigned_Quadword;
function "and" (Left, Right : Unsigned_Quadword) return Unsigned_Quadword;
function "or" (Left, Right : Unsigned_Quadword) return Unsigned_Quadword;
function "xor" (Left, Right : Unsigned_Quadword) return Unsigned_Quadword;
function To_Unsigned_Quadword (X : Bit_Array_64) return Unsigned_Quadword;
function To_Bit_Array_64 (X : Unsigned_Quadword) return Bit_Array_64;
type Unsigned_Quadword_Array is
array (Integer range <>) of Unsigned_Quadword;
function To_Address (X : Integer) return Address;
pragma Pure_Function (To_Address);
function To_Address_Long (X : Unsigned_Longword) return Address;
pragma Pure_Function (To_Address_Long);
function To_Integer (X : Address) return Integer;
function To_Unsigned_Longword (X : Address) return Unsigned_Longword;
function To_Unsigned_Longword (X : AST_Handler) return Unsigned_Longword;
-- Conventional names for static subtypes of type UNSIGNED_LONGWORD
subtype Unsigned_1 is Unsigned_Longword range 0 .. 2** 1 - 1;
subtype Unsigned_2 is Unsigned_Longword range 0 .. 2** 2 - 1;
subtype Unsigned_3 is Unsigned_Longword range 0 .. 2** 3 - 1;
subtype Unsigned_4 is Unsigned_Longword range 0 .. 2** 4 - 1;
subtype Unsigned_5 is Unsigned_Longword range 0 .. 2** 5 - 1;
subtype Unsigned_6 is Unsigned_Longword range 0 .. 2** 6 - 1;
subtype Unsigned_7 is Unsigned_Longword range 0 .. 2** 7 - 1;
subtype Unsigned_8 is Unsigned_Longword range 0 .. 2** 8 - 1;
subtype Unsigned_9 is Unsigned_Longword range 0 .. 2** 9 - 1;
subtype Unsigned_10 is Unsigned_Longword range 0 .. 2**10 - 1;
subtype Unsigned_11 is Unsigned_Longword range 0 .. 2**11 - 1;
subtype Unsigned_12 is Unsigned_Longword range 0 .. 2**12 - 1;
subtype Unsigned_13 is Unsigned_Longword range 0 .. 2**13 - 1;
subtype Unsigned_14 is Unsigned_Longword range 0 .. 2**14 - 1;
subtype Unsigned_15 is Unsigned_Longword range 0 .. 2**15 - 1;
subtype Unsigned_16 is Unsigned_Longword range 0 .. 2**16 - 1;
subtype Unsigned_17 is Unsigned_Longword range 0 .. 2**17 - 1;
subtype Unsigned_18 is Unsigned_Longword range 0 .. 2**18 - 1;
subtype Unsigned_19 is Unsigned_Longword range 0 .. 2**19 - 1;
subtype Unsigned_20 is Unsigned_Longword range 0 .. 2**20 - 1;
subtype Unsigned_21 is Unsigned_Longword range 0 .. 2**21 - 1;
subtype Unsigned_22 is Unsigned_Longword range 0 .. 2**22 - 1;
subtype Unsigned_23 is Unsigned_Longword range 0 .. 2**23 - 1;
subtype Unsigned_24 is Unsigned_Longword range 0 .. 2**24 - 1;
subtype Unsigned_25 is Unsigned_Longword range 0 .. 2**25 - 1;
subtype Unsigned_26 is Unsigned_Longword range 0 .. 2**26 - 1;
subtype Unsigned_27 is Unsigned_Longword range 0 .. 2**27 - 1;
subtype Unsigned_28 is Unsigned_Longword range 0 .. 2**28 - 1;
subtype Unsigned_29 is Unsigned_Longword range 0 .. 2**29 - 1;
subtype Unsigned_30 is Unsigned_Longword range 0 .. 2**30 - 1;
subtype Unsigned_31 is Unsigned_Longword range 0 .. 2**31 - 1;
-- Function for obtaining global symbol values
function Import_Value (Symbol : String) return Unsigned_Longword;
function Import_Address (Symbol : String) return Address;
function Import_Largest_Value (Symbol : String) return Largest_Integer;
pragma Import (Intrinsic, Import_Value);
pragma Import (Intrinsic, Import_Address);
pragma Import (Intrinsic, Import_Largest_Value);
-- For the following declarations, note that the declaration without a
-- Retry_Count parameter means to retry infinitely. A value of zero for
-- the Retry_Count parameter means do not retry.
-- Interlocked-instruction procedures
procedure Clear_Interlocked
(Bit : in out Boolean;
Old_Value : out Boolean);
procedure Set_Interlocked
(Bit : in out Boolean;
Old_Value : out Boolean);
type Aligned_Word is record
Value : Short_Integer;
end record;
for Aligned_Word'Alignment use Integer'Min (2, Standard'Maximum_Alignment);
procedure Clear_Interlocked
(Bit : in out Boolean;
Old_Value : out Boolean;
Retry_Count : Natural;
Success_Flag : out Boolean);
procedure Set_Interlocked
(Bit : in out Boolean;
Old_Value : out Boolean;
Retry_Count : Natural;
Success_Flag : out Boolean);
procedure Add_Interlocked
(Addend : Short_Integer;
Augend : in out Aligned_Word;
Sign : out Integer);
type Aligned_Integer is record
Value : Integer;
end record;
for Aligned_Integer'Alignment use
Integer'Min (4, Standard'Maximum_Alignment);
type Aligned_Long_Integer is record
Value : Long_Integer;
end record;
for Aligned_Long_Integer'Alignment use
Integer'Min (8, Standard'Maximum_Alignment);
-- For the following declarations, note that the declaration without a
-- Retry_Count parameter mean to retry infinitely. A value of zero for
-- the Retry_Count means do not retry.
procedure Add_Atomic
(To : in out Aligned_Integer;
Amount : Integer);
procedure Add_Atomic
(To : in out Aligned_Integer;
Amount : Integer;
Retry_Count : Natural;
Old_Value : out Integer;
Success_Flag : out Boolean);
procedure Add_Atomic
(To : in out Aligned_Long_Integer;
Amount : Long_Integer);
procedure Add_Atomic
(To : in out Aligned_Long_Integer;
Amount : Long_Integer;
Retry_Count : Natural;
Old_Value : out Long_Integer;
Success_Flag : out Boolean);
procedure And_Atomic
(To : in out Aligned_Integer;
From : Integer);
procedure And_Atomic
(To : in out Aligned_Integer;
From : Integer;
Retry_Count : Natural;
Old_Value : out Integer;
Success_Flag : out Boolean);
procedure And_Atomic
(To : in out Aligned_Long_Integer;
From : Long_Integer);
procedure And_Atomic
(To : in out Aligned_Long_Integer;
From : Long_Integer;
Retry_Count : Natural;
Old_Value : out Long_Integer;
Success_Flag : out Boolean);
procedure Or_Atomic
(To : in out Aligned_Integer;
From : Integer);
procedure Or_Atomic
(To : in out Aligned_Integer;
From : Integer;
Retry_Count : Natural;
Old_Value : out Integer;
Success_Flag : out Boolean);
procedure Or_Atomic
(To : in out Aligned_Long_Integer;
From : Long_Integer);
procedure Or_Atomic
(To : in out Aligned_Long_Integer;
From : Long_Integer;
Retry_Count : Natural;
Old_Value : out Long_Integer;
Success_Flag : out Boolean);
type Insq_Status is (Fail_No_Lock, OK_Not_First, OK_First);
for Insq_Status use
(Fail_No_Lock => -1,
OK_Not_First => 0,
OK_First => +1);
type Remq_Status is (
Fail_No_Lock,
Fail_Was_Empty,
OK_Not_Empty,
OK_Empty);
for Remq_Status use
(Fail_No_Lock => -1,
Fail_Was_Empty => 0,
OK_Not_Empty => +1,
OK_Empty => +2);
procedure Insqhi
(Item : Address;
Header : Address;
Status : out Insq_Status);
procedure Remqhi
(Header : Address;
Item : out Address;
Status : out Remq_Status);
procedure Insqti
(Item : Address;
Header : Address;
Status : out Insq_Status);
procedure Remqti
(Header : Address;
Item : out Address;
Status : out Remq_Status);
private
Address_Zero : constant Address := Null_Address;
No_Addr : constant Address := Null_Address;
-- An AST_Handler value is from a typing point of view simply a pointer
-- to a procedure taking a single 64 bit parameter. However, this
-- is a bit misleading, because the data that this pointer references is
-- highly stylized. See body of System.AST_Handling for full details.
type AST_Handler is access procedure (Param : Long_Integer);
No_AST_Handler : constant AST_Handler := null;
-- Other operators have incorrect profiles. It would be nice to make
-- them intrinsic, since the backend can handle them, but the front
-- end is not prepared to deal with them, so at least inline them.
pragma Inline_Always ("+");
pragma Inline_Always ("-");
pragma Inline_Always ("not");
pragma Inline_Always ("and");
pragma Inline_Always ("or");
pragma Inline_Always ("xor");
-- Other inlined subprograms
pragma Inline_Always (Fetch_From_Address);
pragma Inline_Always (Assign_To_Address);
-- Synchronization related subprograms. Mechanism is explicitly set
-- so that the critical parameters are passed by reference.
-- Without this, the parameters are passed by copy, creating load/store
-- race conditions. We also inline them, since this seems more in the
-- spirit of the original (hardware intrinsic) routines.
pragma Export_Procedure
(Clear_Interlocked,
External => "system__aux_dec__clear_interlocked__1",
Parameter_Types => (Boolean, Boolean),
Mechanism => (Reference, Reference));
pragma Export_Procedure
(Clear_Interlocked,
External => "system__aux_dec__clear_interlocked__2",
Parameter_Types => (Boolean, Boolean, Natural, Boolean),
Mechanism => (Reference, Reference, Value, Reference));
pragma Inline_Always (Clear_Interlocked);
pragma Export_Procedure
(Set_Interlocked,
External => "system__aux_dec__set_interlocked__1",
Parameter_Types => (Boolean, Boolean),
Mechanism => (Reference, Reference));
pragma Export_Procedure
(Set_Interlocked,
External => "system__aux_dec__set_interlocked__2",
Parameter_Types => (Boolean, Boolean, Natural, Boolean),
Mechanism => (Reference, Reference, Value, Reference));
pragma Inline_Always (Set_Interlocked);
pragma Export_Procedure
(Add_Interlocked,
External => "system__aux_dec__add_interlocked__1",
Mechanism => (Value, Reference, Reference));
pragma Inline_Always (Add_Interlocked);
pragma Export_Procedure
(Add_Atomic,
External => "system__aux_dec__add_atomic__1",
Parameter_Types => (Aligned_Integer, Integer),
Mechanism => (Reference, Value));
pragma Export_Procedure
(Add_Atomic,
External => "system__aux_dec__add_atomic__2",
Parameter_Types => (Aligned_Integer, Integer, Natural, Integer, Boolean),
Mechanism => (Reference, Value, Value, Reference, Reference));
pragma Export_Procedure
(Add_Atomic,
External => "system__aux_dec__add_atomic__3",
Parameter_Types => (Aligned_Long_Integer, Long_Integer),
Mechanism => (Reference, Value));
pragma Export_Procedure
(Add_Atomic,
External => "system__aux_dec__add_atomic__4",
Parameter_Types => (Aligned_Long_Integer, Long_Integer, Natural,
Long_Integer, Boolean),
Mechanism => (Reference, Value, Value, Reference, Reference));
pragma Inline_Always (Add_Atomic);
pragma Export_Procedure
(And_Atomic,
External => "system__aux_dec__and_atomic__1",
Parameter_Types => (Aligned_Integer, Integer),
Mechanism => (Reference, Value));
pragma Export_Procedure
(And_Atomic,
External => "system__aux_dec__and_atomic__2",
Parameter_Types => (Aligned_Integer, Integer, Natural, Integer, Boolean),
Mechanism => (Reference, Value, Value, Reference, Reference));
pragma Export_Procedure
(And_Atomic,
External => "system__aux_dec__and_atomic__3",
Parameter_Types => (Aligned_Long_Integer, Long_Integer),
Mechanism => (Reference, Value));
pragma Export_Procedure
(And_Atomic,
External => "system__aux_dec__and_atomic__4",
Parameter_Types => (Aligned_Long_Integer, Long_Integer, Natural,
Long_Integer, Boolean),
Mechanism => (Reference, Value, Value, Reference, Reference));
pragma Inline_Always (And_Atomic);
pragma Export_Procedure
(Or_Atomic,
External => "system__aux_dec__or_atomic__1",
Parameter_Types => (Aligned_Integer, Integer),
Mechanism => (Reference, Value));
pragma Export_Procedure
(Or_Atomic,
External => "system__aux_dec__or_atomic__2",
Parameter_Types => (Aligned_Integer, Integer, Natural, Integer, Boolean),
Mechanism => (Reference, Value, Value, Reference, Reference));
pragma Export_Procedure
(Or_Atomic,
External => "system__aux_dec__or_atomic__3",
Parameter_Types => (Aligned_Long_Integer, Long_Integer),
Mechanism => (Reference, Value));
pragma Export_Procedure
(Or_Atomic,
External => "system__aux_dec__or_atomic__4",
Parameter_Types => (Aligned_Long_Integer, Long_Integer, Natural,
Long_Integer, Boolean),
Mechanism => (Reference, Value, Value, Reference, Reference));
pragma Inline_Always (Or_Atomic);
-- Provide proper unchecked conversion definitions for transfer
-- functions. Note that we need this level of indirection because
-- the formal parameter name is X and not Source (and this is indeed
-- detectable by a program)
function To_Unsigned_Byte_A is new
Ada.Unchecked_Conversion (Bit_Array_8, Unsigned_Byte);
function To_Unsigned_Byte (X : Bit_Array_8) return Unsigned_Byte
renames To_Unsigned_Byte_A;
function To_Bit_Array_8_A is new
Ada.Unchecked_Conversion (Unsigned_Byte, Bit_Array_8);
function To_Bit_Array_8 (X : Unsigned_Byte) return Bit_Array_8
renames To_Bit_Array_8_A;
function To_Unsigned_Word_A is new
Ada.Unchecked_Conversion (Bit_Array_16, Unsigned_Word);
function To_Unsigned_Word (X : Bit_Array_16) return Unsigned_Word
renames To_Unsigned_Word_A;
function To_Bit_Array_16_A is new
Ada.Unchecked_Conversion (Unsigned_Word, Bit_Array_16);
function To_Bit_Array_16 (X : Unsigned_Word) return Bit_Array_16
renames To_Bit_Array_16_A;
function To_Unsigned_Longword_A is new
Ada.Unchecked_Conversion (Bit_Array_32, Unsigned_Longword);
function To_Unsigned_Longword (X : Bit_Array_32) return Unsigned_Longword
renames To_Unsigned_Longword_A;
function To_Bit_Array_32_A is new
Ada.Unchecked_Conversion (Unsigned_Longword, Bit_Array_32);
function To_Bit_Array_32 (X : Unsigned_Longword) return Bit_Array_32
renames To_Bit_Array_32_A;
function To_Unsigned_32_A is new
Ada.Unchecked_Conversion (Bit_Array_32, Unsigned_32);
function To_Unsigned_32 (X : Bit_Array_32) return Unsigned_32
renames To_Unsigned_32_A;
function To_Bit_Array_32_A is new
Ada.Unchecked_Conversion (Unsigned_32, Bit_Array_32);
function To_Bit_Array_32 (X : Unsigned_32) return Bit_Array_32
renames To_Bit_Array_32_A;
function To_Unsigned_Quadword_A is new
Ada.Unchecked_Conversion (Bit_Array_64, Unsigned_Quadword);
function To_Unsigned_Quadword (X : Bit_Array_64) return Unsigned_Quadword
renames To_Unsigned_Quadword_A;
function To_Bit_Array_64_A is new
Ada.Unchecked_Conversion (Unsigned_Quadword, Bit_Array_64);
function To_Bit_Array_64 (X : Unsigned_Quadword) return Bit_Array_64
renames To_Bit_Array_64_A;
pragma Warnings (Off);
-- Turn warnings off. This is needed for systems with 64-bit integers,
-- where some of these operations are of dubious meaning, but we do not
-- want warnings when we compile on such systems.
function To_Address_A is new
Ada.Unchecked_Conversion (Integer, Address);
pragma Pure_Function (To_Address_A);
function To_Address (X : Integer) return Address
renames To_Address_A;
pragma Pure_Function (To_Address);
function To_Address_Long_A is new
Ada.Unchecked_Conversion (Unsigned_Longword, Address);
pragma Pure_Function (To_Address_Long_A);
function To_Address_Long (X : Unsigned_Longword) return Address
renames To_Address_Long_A;
pragma Pure_Function (To_Address_Long);
function To_Integer_A is new
Ada.Unchecked_Conversion (Address, Integer);
function To_Integer (X : Address) return Integer
renames To_Integer_A;
function To_Unsigned_Longword_A is new
Ada.Unchecked_Conversion (Address, Unsigned_Longword);
function To_Unsigned_Longword (X : Address) return Unsigned_Longword
renames To_Unsigned_Longword_A;
function To_Unsigned_Longword_A is new
Ada.Unchecked_Conversion (AST_Handler, Unsigned_Longword);
function To_Unsigned_Longword (X : AST_Handler) return Unsigned_Longword
renames To_Unsigned_Longword_A;
pragma Warnings (On);
end System.Aux_DEC;
|
with
gel.Sprite,
gel.Joint,
gel.human_Types_v1,
physics.Model,
openGL.Model,
openGL.Program;
limited
with
gel.World;
private
with
collada.Library.visual_scenes;
package gel.Human_v1
--
-- Provides access to and control of a 'make_human' produced model.
--
is
type Item is tagged limited private;
type View is access all Item'Class;
type Views is array (math.Index range <>) of View;
procedure define (Self : in out Item; World : access gel .World.item'Class;
Model : access openGL .Model.item'Class;
physics_Model : access physics.Model.item'Class;
Mass : in math.Real := 0.0;
is_Kinematic : in Boolean := True);
type bone_Sprites is array (human_types_v1.bone_Id) of gel.Sprite.view;
procedure use_Model (Named : in String);
package Forge
is
function new_Human (World : access gel .World.item'Class;
Model : access openGL .Model.item'Class;
physics_Model : access physics.Model.item'Class;
Mass : in math.Real := 0.0;
is_Kinematic : in Boolean := False) return Human_v1.view;
function new_Human (bone_Sprites : in human_v1.bone_Sprites;
controller_Joints : in human_types_v1.controller_Joints;
Model : access openGL.Model.item'Class) return Human_v1.view;
end Forge;
procedure destroy (Self : in out Item);
procedure free (Self : in out View);
type motion_Mode is (Physics, Animation);
procedure motion_Mode_is (Self : in out Item; Now : in motion_Mode);
function skin_Sprite (Self : in Item'Class) return gel.Sprite.view;
function base_Sprite (Self : in Item'Class) return gel.Sprite.view;
function Sprite (Self : in Item'Class;
for_Bone : in human_types_v1.bone_Id) return gel.Sprite.view;
procedure controller_Joints_are (Self : in out Item'Class; Now : in human_types_v1.controller_Joints);
function controller_Joints (Self : in Item'Class) return human_types_v1.controller_Joints;
procedure evolve (Self : in out Item'Class; world_Age : in Duration);
-------------
--- Animation
--
type scene_joint_Id is (-- Armature,
Hips,
Thigh_L, Shin_L, Foot_L, Toe_L,
Thigh_R, Shin_R, Foot_R, Toe_R,
Spine, Chest,
Clavicle_R, upper_Arm_R, Forearm_R, Hand_R, Thumb_02_R, Thumb_03_R, F_ring_01_R, F_index_01_R,
Clavicle_L, upper_Arm_L, Forearm_L, Hand_L, Thumb_02_L, Thumb_03_L, F_ring_01_L, F_index_01_L,
Neck,
Head, Jaw, Eye_R, Eye_L);
-- type controller_joint_Id is (Eye_L, Eye_R,
-- Head,
-- Jaw,
-- Chest,
-- Clavicle_L, Clavicle_R,
-- Foot_L, Foot_R,
-- Forearm_L, Forearm_R,
-- Hips,
-- Neck,
-- Shin_L, Shin_R,
-- Spine,
-- Thigh_L, Thigh_R,
-- Toe_L, Toe_R,
-- upper_Arm_L, upper_Arm_R,
-- Finger_index_01_L, Finger_index_01_R,
-- Finger_ring_01_L, Finger_ring_01_R,
-- Hand_L, Hand_R,
-- Thumb_02_L, Thumb_02_R,
-- Thumb_03_L, Thumb_03_R);
-- type scene_joint_Id is (Armature,
-- MasterFloor,
-- Root,
-- Hips,
-- UpLeg_L, LoLeg_L, Foot_L, Toe_L,
-- UpLeg_R, LoLeg_R, Foot_R, Toe_R,
-- Spine1, Spine2, Spine3,
-- Neck, Head, Jaw,
-- TongueBase, TongueMid, TongueTip,
-- Eye_R, Eye_L,
-- UpLid_R, LoLid_R,
-- UpLid_L, LoLid_L,
--
-- Clavicle_L, UpArm_L, LoArm_L, Hand_L,
--
-- Wrist_1_L,
-- Palm_2_L, Finger_2_1_L, Finger_2_2_L, Finger_2_3_L,
-- Palm_3_L, Finger_3_1_L, Finger_3_2_L, Finger_3_3_L,
-- Wrist_2_L,
-- Palm_4_L, Finger_4_1_L, Finger_4_2_L, Finger_4_3_L,
-- Palm_5_L, Finger_5_1_L, Finger_5_2_L, Finger_5_3_L,
-- Palm_1_L, Finger_1_1_L, Finger_1_2_L, Finger_1_3_L,
--
-- Clavicle_R, UpArm_R, LoArm_R, Hand_R,
--
-- Wrist_1_R,
-- Palm_2_R, Finger_2_1_R, Finger_2_2_R, Finger_2_3_R,
-- Palm_3_R, Finger_3_1_R, Finger_3_2_R, Finger_3_3_R,
-- Wrist_2_R,
-- Palm_4_R, Finger_4_1_R, Finger_4_2_R, Finger_4_3_R,
-- Palm_5_R, Finger_5_1_R, Finger_5_2_R, Finger_5_3_R,
-- Palm_1_R, Finger_1_1_R, Finger_1_2_R, Finger_1_3_R,
--
-- Wrist_L, Wrist_R,
-- Ankle_L, Ankle_R);
type axis_Kind is (x_Axis, y_Axis, z_Axis);
procedure set_rotation_Angle (Self : in out Item'Class; for_Joint : in scene_joint_Id;
Axis : in Axis_Kind;
To : in math.Real);
procedure set_x_rotation_Angle (Self : in out Item'Class; for_Joint : in scene_joint_Id;
To : in math.Real);
procedure set_y_rotation_Angle (Self : in out Item'Class; for_Joint : in scene_joint_Id;
To : in math.Real);
procedure set_z_rotation_Angle (Self : in out Item'Class; for_Joint : in scene_joint_Id;
To : in math.Real);
procedure set_Location (Self : in out Item'Class; for_Joint : in scene_joint_Id;
To : in math.Vector_3);
procedure set_Transform (Self : in out Item'Class; for_Joint : in scene_joint_Id;
To : in math.Matrix_4x4);
procedure update_all_global_Transforms (Self : in out Item'Class);
procedure animate (Self : in out Item; world_Age : in Duration);
procedure reset_Animation (Self : in out Item);
----------------
--- Display Mode
--
type display_Mode is (Skin, Bones, Skin_and_Bones);
procedure Mode_is (Now : in display_Mode);
private
use Human_types_v1;
the_display_Mode : display_Mode := Skin;
type Joints is array (controller_joint_Id) of gel.Joint.view;
type scene_Joint is
record
Node : collada.Library.visual_scenes.Node_view;
Transform : math.Matrix_4x4;
end record;
type scene_Joints is array (scene_joint_Id) of scene_Joint;
type joint_Transforms is array (controller_joint_Id) of opengl.Matrix_4x4;
type skin_program_Parameters is new opengl.Program.Parameters with
record
bone_Transforms : human_v1.joint_Transforms := (others => opengl.math.Identity_4x4);
end record;
overriding
procedure enable (Self : in out skin_program_Parameters);
-------------
--- Animation
--
type channel_Id is new scene_joint_Id range Hips .. scene_joint_Id'Last;
-- type channel_Id is (root_loc, root_x, root_y, root_z,
-- -- hips_x, hips_y, hips_z,
-- spine_1_x, spine_1_y, spine_1_z,
-- spine_2_x, spine_2_y, spine_2_z,
-- spine_3_x, spine_3_y, spine_3_z,
-- neck_x, neck_y, neck_z,
-- head_x, head_y, head_z,
--
-- l_clavicle_x, l_clavicle_y, l_clavicle_z,
-- l_uparm_x, l_uparm_y, l_uparm_z,
-- l_loarm_x, l_loarm_y, l_loarm_z,
-- l_hand_x, l_hand_y, l_hand_z,
-- l_wrist_loc, l_wrist_x, l_wrist_y, l_wrist_z,
--
-- r_clavicle_x, r_clavicle_y, r_clavicle_z,
-- r_uparm_x, r_uparm_y, r_uparm_z,
-- r_loarm_x, r_loarm_y, r_loarm_z,
-- r_hand_x, r_hand_y, r_hand_z,
-- r_wrist_loc, r_wrist_x, r_wrist_y, r_wrist_z,
--
-- l_upleg_x, l_upleg_y, l_upleg_z,
-- l_loleg_x, l_loleg_y, l_loleg_z,
-- l_foot_x, l_foot_y, l_foot_z,
--
-- r_upleg_x, r_upleg_y, r_upleg_z,
-- r_loleg_x, r_loleg_y, r_loleg_z,
-- r_foot_x, r_foot_y, r_foot_z
-- );
type Transform is
record
Rotation : math.Quaternion;
Translation : math.Vector_3;
end record;
type Transforms is array (Positive range <>) of Transform;
type Transforms_view is access all Transforms;
type animation_Channel is
record
Target : access collada.Library.visual_scenes.Transform;
Times : access collada.float_Array;
Values : access collada.float_Array;
-- Transforms : access collada.Matrix_4x4_array;
Cursor : math.Index := 0; -- Current frame of the anmination.
initial_Angle : math.Real; -- For angle interpolation during 'rotation' animation.
current_Angle : math.Real := 0.0; --
interp_Delta : math.Real := 0.0; --
initial_Site : math.Vector_3; -- For location interpolation during 'translation' animation.
current_Site : math.Vector_3; --
site_interp_Delta : math.Vector_3; --
initial_Transform : Transform; -- For matrix interpolation during 'full_transform' animation.
current_Transform : Transform; --
slerp_Time : math.Real; -- Slerp Time (T) value in range 0.0 .. 1.0.
Transform_interp_Delta : math.Real; -- Rate at which the SLERP time parameter increases.
Transforms : Transforms_view;
end record;
type animation_Channels is array (channel_Id) of animation_Channel;
--------------
--- Human Item
--
type Item is tagged limited
record
Mode : human_v1.motion_Mode := Physics;
Space : gel.Sprite.physics_Space_view;
bone_Sprites : human_v1.bone_Sprites;
skin_Sprite : gel.Sprite.view;
Joints : human_v1.Joints;
controller_Joints : human_types_v1.controller_Joints;
scene_Joints : human_v1.scene_Joints;
root_Joint : collada.Library.visual_scenes.Node_view;
Model : access openGL.Model.item'class;
program_Parameters : aliased skin_program_Parameters;
Channels : animation_Channels;
start_Time : Duration := 0.0;
Graphics_enabled : Boolean := False;
-- animation_Origin : math.Matrix_4x4 := to_rotate_Matrix (y_Rotation_from (math.to_Radians (90.0))); -- math.Identity_4x4;
-- animation_Origin : math.Matrix_4x4 := to_transform_Matrix (math.Inverse (y_Rotation_from (math.to_Radians (-45.0))),
-- (0.0, 5.0, 0.0));
end record;
procedure enable_Graphics (Self : in out Item);
end gel.Human_v1;
|
with STM32.Device; use STM32.Device;
with STM32.GPIO; use STM32.GPIO;
package STM32.Board is
pragma Elaborate_Body;
subtype User_LED is GPIO_Point;
Red_LED : User_LED renames PB2;
LCH_LED : User_LED renames PB2;
procedure Initialize_Board;
procedure Initialize_LEDs;
procedure Turn_On (This : in out User_LED) renames STM32.GPIO.Set;
procedure Turn_Off (This : in out User_LED) renames STM32.GPIO.Clear;
procedure All_LEDs_Off;
end STM32.Board;
|
-- This spec has been automatically generated from STM32F7x9.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with System;
-- STM32F7x9
package STM32_SVD is
pragma Preelaborate;
--------------------
-- Base addresses --
--------------------
RNG_Base : constant System.Address :=
System'To_Address (16#50060800#);
HASH_Base : constant System.Address :=
System'To_Address (16#50060400#);
CRYP_Base : constant System.Address :=
System'To_Address (16#50060000#);
DCMI_Base : constant System.Address :=
System'To_Address (16#50050000#);
FMC_Base : constant System.Address :=
System'To_Address (16#A0000000#);
DMA2_Base : constant System.Address :=
System'To_Address (16#40026400#);
DMA1_Base : constant System.Address :=
System'To_Address (16#40026000#);
RCC_Base : constant System.Address :=
System'To_Address (16#40023800#);
GPIOD_Base : constant System.Address :=
System'To_Address (16#40020C00#);
GPIOC_Base : constant System.Address :=
System'To_Address (16#40020800#);
GPIOK_Base : constant System.Address :=
System'To_Address (16#40022800#);
GPIOJ_Base : constant System.Address :=
System'To_Address (16#40022400#);
GPIOI_Base : constant System.Address :=
System'To_Address (16#40022000#);
GPIOH_Base : constant System.Address :=
System'To_Address (16#40021C00#);
GPIOG_Base : constant System.Address :=
System'To_Address (16#40021800#);
GPIOF_Base : constant System.Address :=
System'To_Address (16#40021400#);
GPIOE_Base : constant System.Address :=
System'To_Address (16#40021000#);
GPIOB_Base : constant System.Address :=
System'To_Address (16#40020400#);
GPIOA_Base : constant System.Address :=
System'To_Address (16#40020000#);
SYSCFG_Base : constant System.Address :=
System'To_Address (16#40013800#);
SPI1_Base : constant System.Address :=
System'To_Address (16#40013000#);
SPI2_Base : constant System.Address :=
System'To_Address (16#40003800#);
SPI3_Base : constant System.Address :=
System'To_Address (16#40003C00#);
SPI4_Base : constant System.Address :=
System'To_Address (16#40013400#);
SPI5_Base : constant System.Address :=
System'To_Address (16#40015000#);
SPI6_Base : constant System.Address :=
System'To_Address (16#40015400#);
ADC1_Base : constant System.Address :=
System'To_Address (16#40012000#);
ADC2_Base : constant System.Address :=
System'To_Address (16#40012100#);
ADC3_Base : constant System.Address :=
System'To_Address (16#40012200#);
C_ADC_Base : constant System.Address :=
System'To_Address (16#40012300#);
DAC_Base : constant System.Address :=
System'To_Address (16#40007400#);
PWR_Base : constant System.Address :=
System'To_Address (16#40007000#);
IWDG_Base : constant System.Address :=
System'To_Address (16#40003000#);
WWDG_Base : constant System.Address :=
System'To_Address (16#40002C00#);
TIM1_Base : constant System.Address :=
System'To_Address (16#40010000#);
TIM8_Base : constant System.Address :=
System'To_Address (16#40010400#);
TIM2_Base : constant System.Address :=
System'To_Address (16#40000000#);
TIM3_Base : constant System.Address :=
System'To_Address (16#40000400#);
TIM4_Base : constant System.Address :=
System'To_Address (16#40000800#);
TIM5_Base : constant System.Address :=
System'To_Address (16#40000C00#);
TIM9_Base : constant System.Address :=
System'To_Address (16#40014000#);
TIM12_Base : constant System.Address :=
System'To_Address (16#40001800#);
TIM10_Base : constant System.Address :=
System'To_Address (16#40014400#);
TIM11_Base : constant System.Address :=
System'To_Address (16#40014800#);
TIM13_Base : constant System.Address :=
System'To_Address (16#40001C00#);
TIM14_Base : constant System.Address :=
System'To_Address (16#40002000#);
TIM6_Base : constant System.Address :=
System'To_Address (16#40001000#);
TIM7_Base : constant System.Address :=
System'To_Address (16#40001400#);
Ethernet_MAC_Base : constant System.Address :=
System'To_Address (16#40028000#);
CRC_Base : constant System.Address :=
System'To_Address (16#40023000#);
CAN1_Base : constant System.Address :=
System'To_Address (16#40006400#);
CAN2_Base : constant System.Address :=
System'To_Address (16#40006800#);
CAN3_Base : constant System.Address :=
System'To_Address (16#40003400#);
NVIC_Base : constant System.Address :=
System'To_Address (16#E000E000#);
FLASH_Base : constant System.Address :=
System'To_Address (16#40023C00#);
EXTI_Base : constant System.Address :=
System'To_Address (16#40013C00#);
LTDC_Base : constant System.Address :=
System'To_Address (16#40016800#);
SAI1_Base : constant System.Address :=
System'To_Address (16#40015800#);
SAI2_Base : constant System.Address :=
System'To_Address (16#40015C00#);
DMA2D_Base : constant System.Address :=
System'To_Address (16#4002B000#);
QUADSPI_Base : constant System.Address :=
System'To_Address (16#A0001000#);
CEC_Base : constant System.Address :=
System'To_Address (16#40006C00#);
SPDIFRX_Base : constant System.Address :=
System'To_Address (16#40004000#);
SDMMC1_Base : constant System.Address :=
System'To_Address (16#40012C00#);
SDMMC2_Base : constant System.Address :=
System'To_Address (16#40011C00#);
LPTIM1_Base : constant System.Address :=
System'To_Address (16#40002400#);
I2C1_Base : constant System.Address :=
System'To_Address (16#40005400#);
I2C2_Base : constant System.Address :=
System'To_Address (16#40005800#);
I2C3_Base : constant System.Address :=
System'To_Address (16#40005C00#);
I2C4_Base : constant System.Address :=
System'To_Address (16#40006000#);
RTC_Base : constant System.Address :=
System'To_Address (16#40002800#);
USART6_Base : constant System.Address :=
System'To_Address (16#40011400#);
USART1_Base : constant System.Address :=
System'To_Address (16#40011000#);
USART3_Base : constant System.Address :=
System'To_Address (16#40004800#);
USART2_Base : constant System.Address :=
System'To_Address (16#40004400#);
UART5_Base : constant System.Address :=
System'To_Address (16#40005000#);
UART4_Base : constant System.Address :=
System'To_Address (16#40004C00#);
UART8_Base : constant System.Address :=
System'To_Address (16#40007C00#);
UART7_Base : constant System.Address :=
System'To_Address (16#40007800#);
OTG_FS_GLOBAL_Base : constant System.Address :=
System'To_Address (16#50000000#);
OTG_HS_GLOBAL_Base : constant System.Address :=
System'To_Address (16#40040000#);
MDIOS_Base : constant System.Address :=
System'To_Address (16#40017800#);
DFSDM_Base : constant System.Address :=
System'To_Address (16#40017400#);
DSI_Base : constant System.Address :=
System'To_Address (16#40016C00#);
JPEG_Base : constant System.Address :=
System'To_Address (16#50051000#);
Ethernet_MMC_Base : constant System.Address :=
System'To_Address (16#40028100#);
Ethernet_PTP_Base : constant System.Address :=
System'To_Address (16#40028700#);
Ethernet_DMA_Base : constant System.Address :=
System'To_Address (16#40029000#);
OTG_FS_HOST_Base : constant System.Address :=
System'To_Address (16#50000400#);
OTG_FS_DEVICE_Base : constant System.Address :=
System'To_Address (16#50000800#);
OTG_FS_PWRCLK_Base : constant System.Address :=
System'To_Address (16#50000E00#);
OTG_HS_HOST_Base : constant System.Address :=
System'To_Address (16#40040400#);
OTG_HS_DEVICE_Base : constant System.Address :=
System'To_Address (16#40040800#);
OTG_HS_PWRCLK_Base : constant System.Address :=
System'To_Address (16#40040E00#);
end STM32_SVD;
|
with Interfaces;
package GESTE_Config is
type Color_Index is range 0 .. 20;
subtype Output_Color is Interfaces.Unsigned_16;
Transparent : constant Output_Color := 391;
Tile_Size : constant := 16;
type Tile_Index is range 0 .. 82;
No_Tile : constant Tile_Index := 0;
end GESTE_Config;
|
------------------------------------------------------------------------------
-- Copyright (c) 2014, Natacha Porté --
-- --
-- Permission to use, copy, modify, and distribute this software for any --
-- purpose with or without fee is hereby granted, provided that the above --
-- copyright notice and this permission notice appear in all copies. --
-- --
-- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES --
-- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF --
-- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR --
-- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES --
-- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN --
-- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF --
-- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --
------------------------------------------------------------------------------
------------------------------------------------------------------------------
-- Natools.Time_Statistics.Fine_Timer_Difference provides a difference --
-- function between real-time moments as a Duration value. --
------------------------------------------------------------------------------
with Ada.Real_Time;
function Natools.Time_Statistics.Fine_Timer_Difference
(Left, Right : Ada.Real_Time.Time)
return Duration is
begin
return Ada.Real_Time.To_Duration (Ada.Real_Time."-" (Left, Right));
end Natools.Time_Statistics.Fine_Timer_Difference;
|
-- This file is covered by the Internet Software Consortium (ISC) License
-- Reference: ../../License.txt
with AdaBase.Connection.Base.MySQL;
with AdaBase.Bindings.MySQL;
with Ada.Containers.Vectors;
package AdaBase.Statement.Base.MySQL is
package ACM renames AdaBase.Connection.Base.MySQL;
package ABM renames AdaBase.Bindings.MySQL;
package AC renames Ada.Containers;
type MySQL_statement (type_of_statement : Stmt_Type;
log_handler : ALF.LogFacility_access;
mysql_conn : ACM.MySQL_Connection_Access;
initial_sql : SQL_Access;
con_error_mode : Error_Modes;
con_case_mode : Case_Modes;
con_max_blob : BLOB_Maximum;
con_buffered : Boolean)
is new Base_Statement and AIS.iStatement with private;
type MySQL_statement_access is access all MySQL_statement;
overriding
function column_count (Stmt : MySQL_statement) return Natural;
overriding
function last_insert_id (Stmt : MySQL_statement) return Trax_ID;
overriding
function last_sql_state (Stmt : MySQL_statement) return SQL_State;
overriding
function last_driver_code (Stmt : MySQL_statement) return Driver_Codes;
overriding
function last_driver_message (Stmt : MySQL_statement) return String;
overriding
procedure discard_rest (Stmt : out MySQL_statement);
overriding
function execute (Stmt : out MySQL_statement) return Boolean;
overriding
function execute (Stmt : out MySQL_statement; parameters : String;
delimiter : Character := '|') return Boolean;
overriding
function rows_returned (Stmt : MySQL_statement) return Affected_Rows;
overriding
function column_name (Stmt : MySQL_statement; index : Positive)
return String;
overriding
function column_table (Stmt : MySQL_statement; index : Positive)
return String;
overriding
function column_native_type (Stmt : MySQL_statement; index : Positive)
return field_types;
overriding
function fetch_next (Stmt : out MySQL_statement) return ARS.Datarow;
overriding
function fetch_all (Stmt : out MySQL_statement) return ARS.Datarow_Set;
overriding
function fetch_bound (Stmt : out MySQL_statement) return Boolean;
overriding
procedure fetch_next_set (Stmt : out MySQL_statement;
data_present : out Boolean;
data_fetched : out Boolean);
private
type mysql_canvas;
procedure initialize (Object : in out MySQL_statement);
procedure Adjust (Object : in out MySQL_statement);
procedure finalize (Object : in out MySQL_statement);
procedure internal_post_prep_stmt (Stmt : out MySQL_statement);
procedure internal_direct_post_exec (Stmt : out MySQL_statement;
newset : Boolean := False);
procedure process_direct_result (Stmt : out MySQL_statement);
procedure scan_column_information (Stmt : out MySQL_statement);
procedure clear_column_information (Stmt : out MySQL_statement);
procedure construct_bind_slot (Stmt : MySQL_statement;
struct : out ABM.MYSQL_BIND;
canvas : out mysql_canvas;
marker : Positive);
function internal_fetch_bound (Stmt : out MySQL_statement) return Boolean;
function internal_fetch_row (Stmt : out MySQL_statement)
return ARS.Datarow;
function internal_ps_fetch_row (Stmt : out MySQL_statement)
return ARS.Datarow;
function internal_ps_fetch_bound (Stmt : out MySQL_statement)
return Boolean;
function convert_to_bitstring (nv : String; width : Natural) return String;
function num_set_items (nv : String) return Natural;
function bincopy (data : ABM.ICS.char_array_access;
datalen, max_size : Natural)
return String;
function bincopy (data : ABM.ICS.char_array_access;
datalen, max_size : Natural;
hard_limit : Natural := 0)
return AR.Chain;
procedure log_problem
(statement : MySQL_statement;
category : Log_Category;
message : String;
pull_codes : Boolean := False;
break : Boolean := False);
type column_info is record
table : CT.Text;
field_name : CT.Text;
field_type : field_types;
field_size : Natural;
null_possible : Boolean;
mysql_type : ABM.enum_field_types;
end record;
type fetch_status is (pending, progressing, completed);
package VColumns is new AC.Vectors (Index_Type => Positive,
Element_Type => column_info);
-- mysql_canvas is used by prepared statement execution
-- The Ada types are converted to C types and stored in this record which
-- MySQL finds through pointers.
type mysql_canvas is record
length : aliased ABM.IC.unsigned_long := 0;
is_null : aliased ABM.my_bool := 0;
error : aliased ABM.my_bool := 0;
buffer_uint8 : ABM.IC.unsigned_char := 0;
buffer_uint16 : ABM.IC.unsigned_short := 0;
buffer_uint32 : ABM.IC.unsigned := 0;
buffer_uint64 : ABM.IC.unsigned_long := 0;
buffer_int8 : ABM.IC.signed_char := 0;
buffer_int16 : ABM.IC.short := 0;
buffer_int32 : ABM.IC.int := 0;
buffer_int64 : ABM.IC.long := 0;
buffer_float : ABM.IC.C_float := 0.0;
buffer_double : ABM.IC.double := 0.0;
buffer_binary : ABM.ICS.char_array_access := null;
buffer_time : ABM.MYSQL_TIME;
end record;
type mysql_canvases is array (Positive range <>) of aliased mysql_canvas;
type mysql_canvases_Access is access all mysql_canvases;
procedure free_canvas is new Ada.Unchecked_Deallocation
(mysql_canvases, mysql_canvases_Access);
procedure free_binary is new Ada.Unchecked_Deallocation
(ABM.IC.char_array, ABM.ICS.char_array_access);
procedure reclaim_canvas (Stmt : out MySQL_statement);
type MySQL_statement (type_of_statement : Stmt_Type;
log_handler : ALF.LogFacility_access;
mysql_conn : ACM.MySQL_Connection_Access;
initial_sql : SQL_Access;
con_error_mode : Error_Modes;
con_case_mode : Case_Modes;
con_max_blob : BLOB_Maximum;
con_buffered : Boolean)
is new Base_Statement and AIS.iStatement with
record
delivery : fetch_status := completed;
result_handle : ABM.MYSQL_RES_Access := null;
stmt_handle : ABM.MYSQL_STMT_Access := null;
bind_canvas : mysql_canvases_Access := null;
assign_counter : Natural := 0;
num_columns : Natural := 0;
size_of_rowset : Trax_ID := 0;
column_info : VColumns.Vector;
sql_final : SQL_Access;
end record;
end AdaBase.Statement.Base.MySQL;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . D E C I M A L --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2009, 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. --
-- --
------------------------------------------------------------------------------
package Ada.Decimal is
pragma Pure;
-- The compiler makes a number of assumptions based on the following five
-- constants (e.g. there is an assumption that decimal values can always
-- be represented in 64-bit signed binary form), so code modifications are
-- required to increase these constants.
Max_Scale : constant := +18;
Min_Scale : constant := -18;
Min_Delta : constant := 1.0E-18;
Max_Delta : constant := 1.0E+18;
Max_Decimal_Digits : constant := 18;
generic
type Dividend_Type is delta <> digits <>;
type Divisor_Type is delta <> digits <>;
type Quotient_Type is delta <> digits <>;
type Remainder_Type is delta <> digits <>;
procedure Divide
(Dividend : Dividend_Type;
Divisor : Divisor_Type;
Quotient : out Quotient_Type;
Remainder : out Remainder_Type);
private
pragma Inline (Divide);
end Ada.Decimal;
|
with RP.ROM;
pragma Unreferenced (RP.ROM);
package Runtime is
-- crt0.S expects this symbol to exist. It is called after main returns.
procedure OS_Exit (Status : Integer)
with Export => True,
Convention => C,
External_Name => "exit";
procedure HardFault_Handler
with Export => True,
Convention => C,
External_Name => "isr_hardfault";
end Runtime;
|
-------------------------------------------------------------------------------
-- 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 CSHAKE;
with Keccak.Generic_KMAC;
pragma Elaborate_All (Keccak.Generic_KMAC);
-- @summary
-- Instantations of KMAC128 and KMAC256.
--
-- @group KMAC
package KMAC
with SPARK_Mode => On
is
package KMAC128 is new Keccak.Generic_KMAC (CSHAKE.CSHAKE128);
package KMAC256 is new Keccak.Generic_KMAC (CSHAKE.CSHAKE256);
end KMAC;
|
with Samples.Petstore.Clients;
with Samples.Petstore.Models;
with Swagger;
with Util.Http.Clients.Curl;
with Ada.Text_IO;
with Ada.Command_Line;
with Ada.Calendar.Formatting;
with Ada.Exceptions;
procedure Samples.Petstore.Client is
use Ada.Text_IO;
procedure Usage;
Server : constant Swagger.UString := Swagger.To_UString ("http://localhost:8080/v2");
Arg_Count : constant Natural := Ada.Command_Line.Argument_Count;
Arg : Positive := 1;
procedure Usage is
begin
Put_Line ("Usage: Petstore {params}...");
end Usage;
begin
if Arg_Count <= 1 then
Usage;
return;
end if;
Util.Http.Clients.Curl.Register;
declare
Command : constant String := Ada.Command_Line.Argument (Arg);
Item : constant String := Ada.Command_Line.Argument (Arg + 1);
C : Samples.Petstore.Clients.Client_Type;
begin
C.Set_Server (Server);
Arg := Arg + 2;
exception
when E : Constraint_Error =>
Put_Line ("Constraint error raised: " & Ada.Exceptions.Exception_Message (E));
end;
end Samples.Petstore.Client;
|
package body tests is
testVal : Unsigned_64 := 0;
procedure runTests is
use ASCII;
parseResult : Boolean;
codeGenResult : Boolean;
errmsg : Unbounded_String;
insts : InstructionVector.Vector;
-- a bit hacky... short-hand for To_Unbounded_String
function "-" (Source : String) return Unbounded_String
renames Ada.Strings.Unbounded.To_Unbounded_String;
type TestPrograms is array (positive range <>) of Unbounded_String;
parserTests1 : TestPrograms := (
-- test comments
-";this is a comment" & LF &
";another comment", --1 OK, just comments
-- test directives
-";this is a comment" & LF &
"% abcd 5678" & LF & --2 no directive after %
";comment 2",
-";this is a comment" & LF &
"%declare abcd 5678" & LF & --3 "declare" not understood
";comment 2",
-- test identifiers
-"%define 6asdf 0d1234", --4 identifier must start with letter
-"%define as!df 0d1234", --5 ident. only letters, nums and _
-"%define asdf! 0d1234", --6 ident. only letters, nums and _
-"%define a_sdf 1234", --7 OK
-- test numeric literals
-"%define asdf 1234", --8 OK.
-"%define asdf 2#0101#", --9 OK, use Ada format for literals
-"%define asdf 16#FFFF#", --10 OK
-"%define asdf 123.45", --11 floats OK
-"%define asdf 123.4.5", --12 err, extra decimal.
-"%define asdf 347" & LF & --13 OK, for testing identifier map.
"%define foo 43" & LF &
"%define bar 99",
-- test labels
-"; Comment" & LF &
"@label ;at address 0", --14 OK, address at 0
-"@2badlabel", --15 Bad, label must be a valid identifier
-- test instructions
-"sysret", --16 OK, no operands
-"cb R1 R3", --17 OK, count bits, two operands
-"l8 R1 R2", --18 OK, two operands
-"add R1 R2 R3", --19 OK, three operands
-"l32 R1 *R2", --20 OK, reg indirect
-"s32 R1 *(R2 + 1)", --21 OK, reg displacement
-"s32 R1 *(r2 + 16#00FF#)", --22 OK, reg displacement with hex
-"mov R1 R2", --23 err, unrecognized instruction
-"s32 R1 booger", --24 OK, identifier
-"@mylabel" & LF &
"jmpa mylabel", --25 OK, jumping to label
-"jmpa mylabel" & LF &
"@mylabel", --26 OK, jumping to forward label
-"s32 R1 R2;a comment", --27 OK, comment right after
-"s32 R1 R2 ;a comment", --28 OK, whitespace and comment after operand
-"sysret; a comment", --29 OK, comment right after instruction no operand
-"s32 R1 *(R2 + 44", --30 err, no closing paren.
-"l32 R1 16#4040#", --31 OK, immediate operand
-"sysret ;a comment"); --32 OK, whitespace and comment after no operand
begin
for pg in parserTests1'Range loop
insts.Clear;
machinecode.Clear;
Ada.Text_IO.Put_Line("" & LF & LF & "Parsing test program " & pg'Image);
parseResult := assembler.parse(To_String(parserTests1(pg)), insts, errmsg);
if parseResult then
Ada.Text_IO.Put_Line("Parse OK" & pg'Image);
Ada.Text_IO.Put_Line("Identifiers Found: ");
dumpIdentifiers;
-- test code gen if parsing was successful
codeGenResult := assembler.codeGen(insts, machinecode, errmsg);
if codeGenResult then
Ada.Text_IO.Put_Line("OK codegen" & pg'Image);
else
Ada.Text_IO.Put_Line("");
Ada.Text_IO.Put("CODEGEN ERR" & pg'Image & " ");
Ada.Text_IO.Unbounded_IO.Put_Line(errmsg);
end if;
else
Ada.Text_IO.Put_Line("");
Ada.Text_IO.Put("PARSE ERR" & pg'Image & " ");
Ada.Text_IO.Unbounded_IO.Put_Line(errmsg);
end if;
end loop;
end runTests;
end tests;
|
------------------------------------------------------------------------------
-- G E L A A S I S --
-- ASIS implementation for Gela project, a portable Ada compiler --
-- http://gela.ada-ru.org --
-- - - - - - - - - - - - - - - - --
-- Read copyright and license at the end of this file --
------------------------------------------------------------------------------
-- $Revision: 209 $ $Date: 2013-11-30 21:03:24 +0200 (Сб., 30 нояб. 2013) $
-- Purpose:
-- Our extension to ASIS standard
with Asis.Elements;
with Asis.Gela.Static;
with Asis.Gela.Elements;
with Asis.Gela.Visibility;
package body Asis.Extensions is
--------------------------
-- Is_Static_Expression --
--------------------------
function Is_Static_Expression (Element : Asis.Expression) return Boolean is
begin
if Asis.Elements.Element_Kind (Element) = An_Expression then
declare
use Asis.Gela.Elements;
Node : Expression_Node'Class renames
Expression_Node'Class (Element.all);
begin
case Is_Static_Expression (Node) is
when Asis.Gela.Unknown =>
if Gela.Static.Is_Static_Expression (Element) then
Set_Is_Static_Expression (Node, Asis.Gela.True);
return True;
else
Set_Is_Static_Expression (Node, Asis.Gela.False);
return False;
end if;
when Asis.Gela.True =>
return True;
when Asis.Gela.False =>
return False;
end case;
end;
else
return False;
end if;
end Is_Static_Expression;
-----------------
-- Unique_Name --
-----------------
function Unique_Name (Name : Asis.Defining_Name) return Asis.Program_Text is
begin
if Asis.Elements.Element_Kind (Name) = A_Defining_Name then
return Asis.Gela.Visibility.Unique_Name (Name);
else
return "";
end if;
end Unique_Name;
end Asis.Extensions;
------------------------------------------------------------------------------
-- Copyright (c) 2006-2013, Maxim Reznik
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the following conditions are met:
--
-- * Redistributions of source code must retain the above copyright notice,
-- this list of conditions and the following disclaimer.
-- * Redistributions in binary form must reproduce the above copyright
-- notice, this list of conditions and the following disclaimer in the
-- documentation and/or other materials provided with the distribution.
-- * Neither the name of the Maxim Reznik, IE nor the names of its
-- contributors may be used to endorse or promote products derived from
-- this software without specific prior written permission.
--
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-- POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
-- --
-- Copyright (C) 2004, RISC OS Ada Library (RASCAL) developers. --
-- --
-- This library is free software; you can redistribute it and/or --
-- modify it under the terms of the GNU Lesser General Public --
-- License as published by the Free Software Foundation; either --
-- version 2.1 of the License, or (at your option) any later version. --
-- --
-- This library is distributed in the hope that it will be useful, --
-- but WITHOUT ANY WARRANTY; without even the implied warranty of --
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU --
-- Lesser General Public License for more details. --
-- --
-- You should have received a copy of the GNU Lesser General Public --
-- License along with this library; if not, write to the Free Software --
-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA --
-- --
--------------------------------------------------------------------------------
-- $Author$
-- $Date$
-- $Revision$
with RASCAL.OS;
with RASCAL.Utility; use RASCAL.Utility;
with RASCAL.Memory; use RASCAL.Memory;
with Kernel; use Kernel;
with Interfaces.C; use Interfaces.C;
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
with Reporter;
package body RASCAL.ToolboxMenu is
Toolbox_ObjectMiscOp : constant Interfaces.C.Unsigned :=16#44EC6#;
--
procedure Set_Available (Menu : in Object_ID;
Available : in String;
Items : in out Natural;
Event : in Integer := 16#828C3#;
Flags : in System.Unsigned_Types.Unsigned := 0) is
ID : Component_ID := 0;
Entries : Unbounded_String := U(Available);
Single : Unbounded_String;
Pos : Integer;
begin
if Items > 0 then
Remove_Entries (Menu,0,Items);
end if;
Pos := Index (Entries,",");
while Pos > 0 loop
Single := U(Slice (Entries,1,Pos-1));
Entries := U(Slice (Entries,Pos+1,Length(Entries)));
Add_Last_Entry (Menu,S(Single),ID,"",Event);
ID := ID + 1;
Pos := Index (Entries,",");
end loop;
Add_Last_Entry (Menu,S(Entries),ID,"",Event);
Items := Natural(ID+1);
end Set_Available;
--
procedure Add_Last_Entry (Menu : in Object_ID;
Name : in String;
Id : in Component_ID;
Help : in String := "";
Click_Event : in integer := 16#828C3#;
Click_Show : in Object_ID := Object_ID'Val(0);
Submenu_Event : in integer := 16#828C2#;
Submenu_Show : in Object_ID := Object_ID'Val(0);
Flags : in System.Unsigned_Types.Unsigned := 0) is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
Line : Menu_Entry_Type;
Name_0 : String := Name & ASCII.NUL;
Help_0 : String := Help & ASCII.NUL;
begin
Line.Flags := 0;
Line.ComponentID := Id;
Line.Name := Name_0'Address;
Line.Max_Text := Name_0'Length;
Line.Click_Show := integer(Click_Show);
Line.Submenu_Show := integer(Submenu_Show);
Line.Submenu_Event := Submenu_Event;
Line.Click_Event := Click_Event;
Line.Help_Message := Help_0'Address;
Line.Max_Entry_Help := Help_0'Length;
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(integer(Menu));
Register.R(2) := 20; -- menu_add_entry
Register.R(3) := -2;
Register.R(4) := Adr_To_Int(Line'Address);
Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Add_Last_Entry: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
end if;
end Add_Last_Entry;
--
procedure Add_After_Entry (Menu : in Object_ID;
Name : in String;
Id : in Component_ID;
Next_ID : in Component_ID;
Help : in String := "";
Click_Event : in integer := 16#828C3#;
Click_Show : in Object_ID := Object_ID'Val(0);
Submenu_Event : in integer := 16#828C2#;
Submenu_Show : in Object_ID := Object_ID'Val(0);
Flags : in System.Unsigned_Types.Unsigned := 0) is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
Line : Menu_Entry_Type;
Name_0 : String := Name & ASCII.NUL;
Help_0 : String := Help & ASCII.NUL;
begin
Line.Flags := 0;
Line.ComponentID := Id;
Line.Name := Name_0'Address;
Line.Max_Text := Name_0'Length;
Line.Click_Show := integer(Click_Show);
Line.Submenu_Show := integer(Submenu_Show);
Line.Submenu_Event := Submenu_Event;
Line.Click_Event := Click_Event;
Line.Help_Message := Help_0'Address;
Line.Max_Entry_Help := Help_0'Length;
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(integer(Menu));
Register.R(2) := 20; -- menu_add_entry
Register.R(3) := int(Next_ID);
Register.R(4) := Adr_To_Int(Line'Address);
Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Add_After_Entry: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
end if;
end Add_After_Entry;
--
function Get_Click_Event (Menu : in Object_ID;
Component : in Component_ID;
Flags : in System.Unsigned_Types.Unsigned := 0) return Toolbox_Event_Code_Type is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 15;
Register.R(3) := int(Component);
Error := Kernel.swi(Toolbox_ObjectMiscOp,Register'Access,Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Get_Click_Event: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
end if;
return Toolbox_Event_Code_Type(Register.R(4));
end Get_Click_Event;
--
function Get_Click_Show (Menu : in Object_ID;
Component : in Component_ID;
Flags : in System.Unsigned_Types.Unsigned := 0) return Object_ID is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 13;
Register.R(3) := int(Component);
Error := Kernel.swi(Toolbox_ObjectMiscOp,Register'Access,Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Get_Click_Show: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
end if;
return Object_ID(Register.R(0));
end Get_Click_Show;
--
function Get_Click_Show_Type (Menu : in Object_ID;
Component : in Component_ID;
Flags : in System.Unsigned_Types.Unsigned := 0) return Menu_Show_Type is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
Flag : integer;
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 13;
Register.R(3) := int(Component);
Error := Kernel.swi(Toolbox_ObjectMiscOp,Register'Access,Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Get_Click_Show_Type: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
end if;
Flag := integer(Register.R(1));
if "And" (Flag,1) = 1 then
return Transient;
else
return Persistent;
end if;
end Get_Click_Show_Type;
--
function Get_Entry_Help (Menu : in Object_ID;
Component : in Component_ID;
Flags : in System.Unsigned_Types.Unsigned := 0) return string is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
Buffer_Size : integer;
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 19;
Register.R(3) := int(Component);
Register.R(4) := 0;
Register.R(5) := 0;
Error := Kernel.swi(Toolbox_ObjectMiscOp,Register'Access,Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Get_Entry_Help: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
return "";
end if;
Buffer_Size := integer(Register.R(5)) + 1;
declare
Buffer : string(1..Buffer_Size);
begin
Register.R(0) := 0;
Register.R(1) := int(Menu);
Register.R(2) := 19;
Register.R(3) := int(Component);
Register.R(4) := Adr_To_Int(Buffer'Address);
Register.R(5) := int(Buffer_Size);
Error := Kernel.swi(Toolbox_ObjectMiscOp,Register'Access,Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Get_Entry_Help: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
return "";
end if;
return MemoryToString(Buffer'Address);
end;
end Get_Entry_Help;
--
function Get_Entry_Sprite (Menu : in Object_ID;
Component : in Component_ID;
Flags : in System.Unsigned_Types.Unsigned := 0) return string is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
Buffer_Size : integer;
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 7;
Register.R(3) := int(Component);
Register.R(4) := 0;
Register.R(5) := 0;
Error := Kernel.swi(Toolbox_ObjectMiscOp,Register'Access,Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Get_Entry_Sprite: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
return "";
end if;
Buffer_Size := integer(Register.R(5)) + 1;
declare
Buffer : string(1..Buffer_Size);
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 7;
Register.R(3) := int(Component);
Register.R(4) := Adr_To_Int(Buffer'Address);
Register.R(5) := int(Buffer_Size);
Error := Kernel.swi(Toolbox_ObjectMiscOp,Register'Access,Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Get_Entry_Sprite: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
return "";
end if;
return MemoryToString(Buffer'Address);
end;
end Get_Entry_Sprite;
--
function Get_Entry_Text (Menu : in Object_ID;
Component : in Component_ID;
Flags : in System.Unsigned_Types.Unsigned := 0) return String is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
Buffer_Size : Size_T;
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 5;
Register.R(3) := int(Component);
Register.R(4) := 0;
Register.R(5) := 0;
Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Get_Entry_Text: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
end if;
Buffer_SIze := Size_T(Register.R(5));
declare
Buffer : Char_Array(1..Buffer_Size);
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 5;
Register.R(3) := int(Component);
Register.R(4) := Adr_To_Int(Buffer'Address);
Register.R(5) := int(Buffer_Size);
Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Get_Entry_Text: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
end if;
return To_Ada(Buffer);
end;
end Get_Entry_Text;
--
function Get_Fade (Menu : in Object_ID;
Component : in Component_ID;
Flags : in System.Unsigned_Types.Unsigned := 0) return Menu_Fade_Type is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 3;
Register.R(3) := int(Component);
Error := Kernel.swi(Toolbox_ObjectMiscOp,Register'Access,Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Get_Fade: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
end if;
if integer(Register.R(0)) /= 0 then
return Faded;
else
return Unfaded;
end if;
end Get_Fade;
--
function Get_Height (Menu : in Object_ID;
Flags : in System.Unsigned_Types.Unsigned := 0) return integer is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 22;
Error := Kernel.swi(Toolbox_ObjectMiscOp,Register'Access,Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Get_Height: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
end if;
return integer(Register.R(0));
end Get_Height;
--
function Get_Help (Menu : in Object_ID;
Flags : in System.Unsigned_Types.Unsigned := 0) return string is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
Buffer_Size : integer;
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 17;
Register.R(3) := 0;
Register.R(4) := 0;
Error := Kernel.swi(Toolbox_ObjectMiscOp,Register'Access,Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Get_Help: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
return "";
end if;
Buffer_Size := integer(Register.R(4)) + 1;
declare
Buffer : string(1..Buffer_Size);
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 17;
Register.R(3) := Adr_To_Int(Buffer'Address);
Register.R(4) := int(Buffer_Size);
Error := Kernel.swi(Toolbox_ObjectMiscOp,Register'Access,Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Add_Last_Entry: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
return "";
end if;
return MemoryToString(Buffer'Address);
end;
end Get_Help;
--
function Get_Sub_Menu_Event (Menu : in Object_ID;
Component : in Component_ID;
Flags : in System.Unsigned_Types.Unsigned := 0) return Toolbox_Event_Code_Type is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 11;
Register.R(3) := int(Component);
Error := Kernel.swi(Toolbox_ObjectMiscOp,Register'Access,Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Get_Sub_Menu_Event: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
end if;
return Toolbox_Event_Code_Type(Register.R(0));
end Get_Sub_Menu_Event;
--
function Get_Sub_Menu_Show (Menu : in Object_ID;
Component : in Component_ID;
Flags : in System.Unsigned_Types.Unsigned := 0) return Object_ID is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 9;
Register.R(3) := int(Component);
Error := Kernel.swi(Toolbox_ObjectMiscOp,Register'Access,Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Get_Sub_Menu_Show: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
end if;
return Object_ID(Register.R(0));
end Get_Sub_Menu_Show;
--
function Get_Tick (Menu : in Object_ID;
Component : in Component_ID;
Flags : in System.Unsigned_Types.Unsigned := 0) return Menu_Tick_Type is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 1;
Register.R(3) := int(Component);
Error := Kernel.swi(Toolbox_ObjectMiscOp,Register'Access,Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Get_Tick: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
end if;
if integer(Register.R(0)) /= 0 then
return Ticked;
else
return UnTicked;
end if;
end Get_Tick;
--
function Get_Title (Menu : in Object_ID;
Flags : in System.Unsigned_Types.Unsigned := 0) return string is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
Buffer_Size : integer;
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 25;
Register.R(3) := 0;
Register.R(4) := 0;
Error := Kernel.swi(Toolbox_ObjectMiscOp,Register'Access,Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Get_Title: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
return "";
end if;
Buffer_Size := integer(Register.R(4)) + 1;
declare
Buffer : string(1..Buffer_Size);
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 25;
Register.R(3) := Adr_To_Int(Buffer'Address);
Register.R(4) := int(Buffer_Size);
Error := Kernel.swi(Toolbox_ObjectMiscOp,Register'Access,Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Get_Title: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
return "";
end if;
return MemoryToString(Buffer'Address);
end;
end Get_Title;
--
function Get_Width (Menu : in Object_ID;
Flags : in System.Unsigned_Types.Unsigned := 0) return integer is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 23;
Error := Kernel.swi(Toolbox_ObjectMiscOp,Register'Access,Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Get_Width: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
end if;
return integer(Register.R(0));
end Get_Width;
--
procedure Remove_Entry (Menu : in Object_ID;
ID : in integer;
Flags: in System.Unsigned_Types.Unsigned := 0) is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(integer(Menu));
Register.R(2) := 21;
Register.R(3) := int(ID);
Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Remove_Entry: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
end if;
end Remove_Entry;
--
procedure Remove_Entries (Menu : in Object_ID;
Nr : in integer;
Start: in integer :=0;
Flags: in System.Unsigned_Types.Unsigned := 0) is
begin
for i in Start..(Start+Nr-1) loop
Remove_Entry(Menu,i);
end loop;
end Remove_Entries;
--
procedure Set_Click_Event (Menu : in Object_ID;
Component : in Component_ID;
Event : in Toolbox_Event_Code_Type;
Flags : in System.Unsigned_Types.Unsigned := 0) is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 14;
Register.R(3) := int(Component);
Register.R(4) := int(Event);
Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Set_Click_Event: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
end if;
end Set_Click_Event;
--
procedure Set_Click_Show (Menu : in Object_ID;
Component : in Component_ID;
Object : in Object_ID;
Show : in Menu_Show_Type := Persistent;
Flags : in System.Unsigned_Types.Unsigned := 0) is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 12;
Register.R(3) := int(Component);
Register.R(4) := int(Object);
Register.R(5) := int(Menu_Show_Type'Pos(Show));
Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Set_Click_Show: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
end if;
end Set_Click_Show;
--
procedure Set_Entry_Help (Menu : in Object_ID;
Component : in Component_ID;
Help : in string;
Flags : in System.Unsigned_Types.Unsigned := 0) is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
Null_Help : String := Help & ASCII.NUL;
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 18;
Register.R(3) := int(Component);
Register.R(4) := Adr_To_Int(Null_Help'Address);
Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Set_Entry_Help: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
end if;
end Set_Entry_Help;
--
procedure Set_Entry_Sprite (Menu : in Object_ID;
Component : in Component_ID;
Sprite : in string;
Flags : in System.Unsigned_Types.Unsigned := 0) is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
Null_Sprite : String := Sprite & ASCII.NUL;
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 6;
Register.R(3) := int(Component);
Register.R(4) := Adr_To_Int(Null_Sprite'Address);
Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Set_Entry_Sprite: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
end if;
end Set_Entry_Sprite;
--
procedure Set_Entry_Text (Menu : in Object_ID;
Component : in Component_ID;
Text : in string;
Flags : in System.Unsigned_Types.Unsigned := 0) is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
Null_Text : String := Text & ASCII.NUL;
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 4;
Register.R(3) := int(Component);
Register.R(4) := Adr_To_Int(Null_Text'Address);
Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Set_Entry_Text: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
end if;
end Set_Entry_Text;
--
procedure Set_Fade (Menu : in Object_ID;
Component : in Component_ID;
Fade : in Menu_Fade_Type;
Flags : in System.Unsigned_Types.Unsigned := 0) is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 2;
Register.R(3) := int(Component);
Register.R(4) := int(Menu_Fade_Type'Pos(Fade));
Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Set_Fade: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
end if;
end Set_Fade;
--
procedure Set_Help (Menu : in Object_ID;
Help : in string;
Flags : in System.Unsigned_Types.Unsigned := 0) is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
Null_Help : String := Help & ASCII.NUL;
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 16;
Register.R(3) := Adr_To_Int(Null_Help'Address);
Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Set_Help: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
end if;
end Set_Help;
--
procedure Set_Sub_Menu_Event (Menu : in Object_ID;
Component : in Component_ID;
Event : in Toolbox_Event_Code_Type;
Flags : in System.Unsigned_Types.Unsigned := 0) is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 10;
Register.R(3) := int(Component);
Register.R(4) := int(Event);
Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Set_Sub_Menu_Event: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
end if;
end Set_Sub_Menu_Event;
--
procedure Set_Sub_Menu_Show (Menu : in Object_ID;
Component : in Component_ID;
Object : in Object_ID;
Flags : in System.Unsigned_Types.Unsigned := 0) is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 8;
Register.R(3) := int(Component);
Register.R(4) := int(Object);
Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Set_Sub_Menu_Show: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
end if;
end Set_Sub_Menu_Show;
--
procedure Set_Tick (Menu : in Object_ID;
Component : in Component_ID;
Tick : in Menu_Tick_Type;
Flags : in System.Unsigned_Types.Unsigned := 0) is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 0;
Register.R(3) := int(Component);
Register.R(4) := int(Menu_Tick_Type'Pos(Tick));
Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Set_Tick: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
end if;
end Set_Tick;
--
procedure Set_Title (Menu : in Object_ID;
Title : in string;
Flags : in System.Unsigned_Types.Unsigned := 0) is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
Null_Title : String := Title & ASCII.NUL;
begin
Register.R(0) := int(Unsigned_to_Int(Flags));
Register.R(1) := int(Menu);
Register.R(2) := 24;
Register.R(3) := Adr_To_Int(Null_Title'Address);
Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access);
if Error /= null then
pragma Debug(Reporter.Report("ToolboxMenu.Set_Title: " & To_Ada(Error.ErrMess)));
OS.Raise_Error(Error);
end if;
end Set_Title;
--
end RASCAL.ToolboxMenu;
|
-- THIS GENERIC PROCEDURE IS INTENDED FOR USE IN CONJUNCTION WITH THE
-- ACVC CHAPTER 13 C TESTS. IT IS INSTANTIATED FOR A TYPE WHOSE
-- REPRESENTATION IS TO BE CHECKED, AND THEN THE PROCEDURE REP_CHECK
-- IS CALLED WITH TWO ARGUMENTS, THE FIRST IS A VALUE OF THE TYPE TO
-- BE CHECKED, AND THE SECOND IS A STRING DESCRIBING OR NAMING THE
-- TYPE (FOR USE IN A CALL TO FAILED IF THE REPRESENTATION CHECK FAILS)
-- THE CHECK IS TO CONVERT THE VALUE TO A PACKED BOOLEAN ARRAY WITH A
-- LENGTH CORRESPONDING TO THE 'SIZE OF THE TYPE, AND THEN CONVERT IT
-- BACK AGAIN AND CHECK THAT THE SAME VALUE IS OBTAINED. THE
-- CONVERSIONS ARE PERFORMED USING APPROPRIATE INSTANTIATIONS OF
-- UNCHECKED_CONVERSION.
-- AUTHOR: ROBERT B. K. DEWAR, UNCOPYRIGHTED, PUBLIC DOMAIN USE
-- AUTHORIZED
-- DHH 03/27/89 CHANGED REP_CHECK TO LENGTH_CHECK BY ADDING A THIRD
-- PARAMETER TO GIVE LENGTH EXPECTED AND BY DOING A BIT TO
-- BIT COPY OF THE UNCHECKED CONVERSION BOOLEAN ARRAY SO
-- A STRAIGHT COMPARE OF THE TWO VALUES CAN BE DONE.
GENERIC
TYPE TEST_TYPE IS PRIVATE;
PROCEDURE LENGTH_CHECK (TEST_VALUE : TEST_TYPE;
EXPECTED_LENGTH : INTEGER;
TYPE_ID : STRING);
WITH UNCHECKED_CONVERSION;
WITH REPORT; USE REPORT;
PROCEDURE LENGTH_CHECK (TEST_VALUE : TEST_TYPE;
EXPECTED_LENGTH : INTEGER;
TYPE_ID : STRING) IS
LEN : CONSTANT INTEGER := EXPECTED_LENGTH;
TYPE BIT_ARRAY_TYPE IS ARRAY (1 .. LEN) OF BOOLEAN;
PRAGMA PACK (BIT_ARRAY_TYPE);
TYPE NEW_BIT_ARRAY_TYPE IS ARRAY (1 .. 3) OF BIT_ARRAY_TYPE;
FUNCTION TO_BITS IS NEW UNCHECKED_CONVERSION (TEST_TYPE,
BIT_ARRAY_TYPE);
FUNCTION FROM_BITS IS NEW UNCHECKED_CONVERSION (BIT_ARRAY_TYPE,
TEST_TYPE);
BIT_ARRAY : BIT_ARRAY_TYPE := (OTHERS => FALSE);
BIT_ARRAY_NEW : NEW_BIT_ARRAY_TYPE := (OTHERS => (OTHERS => FALSE));
BEGIN
BIT_ARRAY := TO_BITS (TEST_VALUE);
FOR I IN 1 .. LEN LOOP
BIT_ARRAY_NEW(IDENT_INT(1)) (IDENT_INT(I)) := BIT_ARRAY(I);
END LOOP;
IF TEST_VALUE /= FROM_BITS (BIT_ARRAY_NEW(1)) THEN
FAILED ("CHECK ON REPRESENTATION FOR " & TYPE_ID & " FAILED.");
END IF;
END LENGTH_CHECK;
|
-----------------------------------------------------------------------
-- util-http-clients-mockups -- HTTP Clients
-- Copyright (C) 2011, 2012 Stephane Carrez
-- Written by Stephane Carrez (Stephane.Carrez@gmail.com)
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Util.Files;
with Util.Http.Mockups;
package body Util.Http.Clients.Mockups is
use Ada.Strings.Unbounded;
Manager : aliased File_Http_Manager;
-- ------------------------------
-- Register the Http manager.
-- ------------------------------
procedure Register is
begin
Default_Http_Manager := Manager'Access;
end Register;
-- ------------------------------
-- Set the path of the file that contains the response for the next
-- <b>Do_Get</b> and <b>Do_Post</b> calls.
-- ------------------------------
procedure Set_File (Path : in String) is
begin
Manager.File := To_Unbounded_String (Path);
end Set_File;
procedure Create (Manager : in File_Http_Manager;
Http : in out Client'Class) is
pragma Unreferenced (Manager);
begin
Http.Delegate := new Util.Http.Mockups.Mockup_Request;
end Create;
procedure Do_Get (Manager : in File_Http_Manager;
Http : in Client'Class;
URI : in String;
Reply : out Response'Class) is
pragma Unreferenced (Http, URI);
Rep : constant Util.Http.Mockups.Mockup_Response_Access
:= new Util.Http.Mockups.Mockup_Response;
Content : Ada.Strings.Unbounded.Unbounded_String;
begin
Reply.Delegate := Rep.all'Access;
Util.Files.Read_File (Path => To_String (Manager.File),
Into => Content,
Max_Size => 100000);
Rep.Set_Body (To_String (Content));
Rep.Set_Status (SC_OK);
end Do_Get;
procedure Do_Post (Manager : in File_Http_Manager;
Http : in Client'Class;
URI : in String;
Data : in String;
Reply : out Response'Class) is
pragma Unreferenced (Data);
begin
Manager.Do_Get (Http, URI, Reply);
end Do_Post;
end Util.Http.Clients.Mockups;
|
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
package body String_Sets_Utils is
function From_Vector (V : Vector) return Set
is
Return_Value : Set;
begin
for E of V loop
Return_Value.Include (E);
end loop;
return Return_Value;
end From_Vector;
function To_String (S : Set) return String
is
Return_Value : Unbounded_String;
C : String_Sets.Cursor := S.First;
begin
while C /= String_Sets.No_Element loop
Append (Return_Value, Element (C));
C := Next (C);
if C /= String_Sets.No_Element then
Append (Return_Value, ", ");
end if;
end loop;
return "{" & To_String (Return_Value) & "}";
end To_String;
end String_Sets_Utils;
|
------------------------------------------------------------------------------
-- --
-- GNAT LIBRARY COMPONENTS --
-- --
-- A D A . S T R I N G S . W I D E _ 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;
function Ada.Strings.Wide_Hash
(Key : Wide_String) return Containers.Hash_Type;
pragma Pure (Ada.Strings.Wide_Hash);
|
procedure Puzzle_11 is
begin
null;
end Puzzle_11;
|
------------------------------------------------------------------------------
-- --
-- Hardware Abstraction Layer for STM32 Targets --
-- --
-- Copyright (C) 2014, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
package body STM32F4.RCC is
HSE_VALUE : constant := 8_000_000; -- External oscillator in Hz
HSI_VALUE : constant := 16_000_000; -- Internal oscillator in Hz
HPRE_Presc_Table : constant array (Bits_4) of Word :=
(1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 8, 16, 64, 128, 256, 512);
PPRE_Presc_Table : constant array (Bits_3) of Word :=
(1, 1, 1, 1, 2, 4, 8, 16);
-------------------------
-- Get_Clock_Frequency --
-------------------------
function System_Clock_Frequencies return RCC_System_Clocks is
RCC_CFGR_SWS : constant := 16#C#;
Source : constant Word := Register.CFGR and RCC_CFGR_SWS;
Result : RCC_System_Clocks;
begin
case Source is
when 16#00# =>
-- HSI as source
Result.SYSCLK := HSI_VALUE;
when 16#04# =>
-- HSE as source
Result.SYSCLK := HSE_VALUE;
when 16#08# =>
-- PLL as source
declare
Pllsource : constant Word :=
(Register.PLLCFGR and 16#00400000#) / (2**22);
Pllm : constant Word := Register.PLLCFGR and 16#0000003F#;
Plln : constant Word := (Register.PLLCFGR and 16#00007FC0#) / (2**6);
Pllp : constant Word := (((Register.PLLCFGR and 16#00030000#) / (2**16)) + 1) * 2;
Pllvco : Word;
begin
if Pllsource /= 0 then
Pllvco := (HSE_VALUE / Pllm) * Plln;
else
Pllvco := (HSI_VALUE / Pllm) * Plln;
end if;
Result.SYSCLK := Pllvco / Pllp;
end;
when others =>
Result.SYSCLK := HSI_VALUE;
end case;
declare
HPRE : constant Bits_4 := Bits_4 ((Register.CFGR and 16#00F0#) / (2**4));
PPRE1 : constant Bits_3 := Bits_3 ((Register.CFGR and 16#1C00#) / (2**10));
PPRE2 : constant Bits_3 := Bits_3 ((Register.CFGR and 16#E000#) / (2**13));
TIMPR : constant Word := (Register.DCKCFGR / (2**24)) and 1;
begin
Result.HCLK := Result.SYSCLK / HPRE_Presc_Table (HPRE);
Result.PCLK1 := Result.HCLK / PPRE_Presc_Table (PPRE1);
Result.PCLK2 := Result.HCLK / PPRE_Presc_Table (PPRE2);
-- Timer clocks
-- See Dedicated clock cfg register documentation.
if TIMPR = 0 then
if PPRE_Presc_Table (PPRE1) = 1 then
Result.TIMCLK1 := Result.PCLK1;
else
Result.TIMCLK1 := Result.PCLK1 * 2;
end if;
if PPRE_Presc_Table (PPRE2) = 1 then
Result.TIMCLK2 := Result.PCLK2;
else
Result.TIMCLK2 := Result.PCLK2 * 2;
end if;
else
if PPRE_Presc_Table (PPRE1) in 1 .. 4 then
Result.TIMCLK1 := Result.HCLK;
else
Result.TIMCLK1 := Result.PCLK1 * 4;
end if;
if PPRE_Presc_Table (PPRE2) in 1 .. 4 then
Result.TIMCLK2 := Result.HCLK;
else
Result.TIMCLK2 := Result.PCLK1 * 4;
end if;
end if;
end;
return Result;
end System_Clock_Frequencies;
------------------------
-- Set_PLLSAI_Factors --
------------------------
procedure Set_PLLSAI_Factors (LCD : Bits_3;
SAI1 : Bits_4;
VCO : Bits_9;
DivR : Bits_2) is
begin
Register.PLLSAICFGR := (Word (VCO) * (2**6)) or
(Word (SAI1) * (2**24)) or
(Word (LCD) * (2**28));
Register.DCKCFGR := Register.DCKCFGR and (not (16#30000#));
Register.DCKCFGR := Register.DCKCFGR or (Word(DivR) * (2**16));
end Set_PLLSAI_Factors;
-------------------
-- Enable_PLLSAI --
-------------------
procedure Enable_PLLSAI is
begin
Register.CR := Register.CR or (2**28);
-- Wait for PLLSAI activation
loop
exit when (Register.CR and (2**29)) /= 0;
end loop;
end Enable_PLLSAI;
---------------------------------------------------------------------------
------- Enable/Disable/Reset Routines -----------------------------------
---------------------------------------------------------------------------
procedure GPIOA_Clock_Enable is
begin
Register.AHB1ENR := Register.AHB1ENR or AHB1ENR_GPIOAEN;
end GPIOA_Clock_Enable;
procedure GPIOB_Clock_Enable is
begin
Register.AHB1ENR := Register.AHB1ENR or AHB1ENR_GPIOBEN;
end GPIOB_Clock_Enable;
procedure GPIOC_Clock_Enable is
begin
Register.AHB1ENR := Register.AHB1ENR or AHB1ENR_GPIOCEN;
end GPIOC_Clock_Enable;
procedure GPIOD_Clock_Enable is
begin
Register.AHB1ENR := Register.AHB1ENR or AHB1ENR_GPIODEN;
end GPIOD_Clock_Enable;
procedure GPIOE_Clock_Enable is
begin
Register.AHB1ENR := Register.AHB1ENR or AHB1ENR_GPIOEEN;
end GPIOE_Clock_Enable;
procedure GPIOF_Clock_Enable is
begin
Register.AHB1ENR := Register.AHB1ENR or AHB1ENR_GPIOFEN;
end GPIOF_Clock_Enable;
procedure GPIOG_Clock_Enable is
begin
Register.AHB1ENR := Register.AHB1ENR or AHB1ENR_GPIOGEN;
end GPIOG_Clock_Enable;
procedure GPIOH_Clock_Enable is
begin
Register.AHB1ENR := Register.AHB1ENR or AHB1ENR_GPIOHEN;
end GPIOH_Clock_Enable;
procedure GPIOI_Clock_Enable is
begin
Register.AHB1ENR := Register.AHB1ENR or AHB1ENR_GPIOIEN;
end GPIOI_Clock_Enable;
procedure GPIOJ_Clock_Enable is
begin
Register.AHB1ENR := Register.AHB1ENR or AHB1ENR_GPIOJEN;
end GPIOJ_Clock_Enable;
procedure GPIOK_Clock_Enable is
begin
Register.AHB1ENR := Register.AHB1ENR or AHB1ENR_GPIOKEN;
end GPIOK_Clock_Enable;
procedure CRC_Clock_Enable is
begin
Register.AHB1ENR := Register.AHB1ENR or AHB1ENR_CRCEN;
end CRC_Clock_Enable;
procedure BKPSRAM_Clock_Enable is
begin
Register.AHB1ENR := Register.AHB1ENR or AHB1ENR_BKPSRAMEN;
end BKPSRAM_Clock_Enable;
procedure CCMDATARAMEN_Clock_Enable is
begin
Register.AHB1ENR := Register.AHB1ENR or AHB1ENR_CCMDATARAMEN;
end CCMDATARAMEN_Clock_Enable;
procedure DMA1_Clock_Enable is
begin
Register.AHB1ENR := Register.AHB1ENR or AHB1ENR_DMA1EN;
end DMA1_Clock_Enable;
procedure DMA2_Clock_Enable is
begin
Register.AHB1ENR := Register.AHB1ENR or AHB1ENR_DMA2EN;
end DMA2_Clock_Enable;
procedure GPIOA_Clock_Disable is
begin
Register.AHB1ENR := Register.AHB1ENR and not AHB1ENR_GPIOAEN;
end GPIOA_Clock_Disable;
procedure GPIOB_Clock_Disable is
begin
Register.AHB1ENR := Register.AHB1ENR and not AHB1ENR_GPIOBEN;
end GPIOB_Clock_Disable;
procedure GPIOC_Clock_Disable is
begin
Register.AHB1ENR := Register.AHB1ENR and not AHB1ENR_GPIOCEN;
end GPIOC_Clock_Disable;
procedure GPIOD_Clock_Disable is
begin
Register.AHB1ENR := Register.AHB1ENR and not AHB1ENR_GPIODEN;
end GPIOD_Clock_Disable;
procedure GPIOE_Clock_Disable is
begin
Register.AHB1ENR := Register.AHB1ENR and not AHB1ENR_GPIOEEN;
end GPIOE_Clock_Disable;
procedure GPIOF_Clock_Disable is
begin
Register.AHB1ENR := Register.AHB1ENR and not AHB1ENR_GPIOFEN;
end GPIOF_Clock_Disable;
procedure GPIOG_Clock_Disable is
begin
Register.AHB1ENR := Register.AHB1ENR and not AHB1ENR_GPIOGEN;
end GPIOG_Clock_Disable;
procedure GPIOH_Clock_Disable is
begin
Register.AHB1ENR := Register.AHB1ENR and not AHB1ENR_GPIOHEN;
end GPIOH_Clock_Disable;
procedure GPIOI_Clock_Disable is
begin
Register.AHB1ENR := Register.AHB1ENR and not AHB1ENR_GPIOIEN;
end GPIOI_Clock_Disable;
procedure GPIOJ_Clock_Disable is
begin
Register.AHB1ENR := Register.AHB1ENR and not AHB1ENR_GPIOJEN;
end GPIOJ_Clock_Disable;
procedure GPIOK_Clock_Disable is
begin
Register.AHB1ENR := Register.AHB1ENR and not AHB1ENR_GPIOKEN;
end GPIOK_Clock_Disable;
procedure CRC_Clock_Disable is
begin
Register.AHB1ENR := Register.AHB1ENR and not AHB1ENR_CRCEN;
end CRC_Clock_Disable;
procedure BKPSRAM_Clock_Disable is
begin
Register.AHB1ENR := Register.AHB1ENR and not AHB1ENR_BKPSRAMEN;
end BKPSRAM_Clock_Disable;
procedure CCMDATARAMEN_Clock_Disable is
begin
Register.AHB1ENR := Register.AHB1ENR and not AHB1ENR_CCMDATARAMEN;
end CCMDATARAMEN_Clock_Disable;
procedure DMA1_Clock_Disable is
begin
Register.AHB1ENR := Register.AHB1ENR and not AHB1ENR_DMA1EN;
end DMA1_Clock_Disable;
procedure DMA2_Clock_Disable is
begin
Register.AHB1ENR := Register.AHB1ENR and not AHB1ENR_DMA2EN;
end DMA2_Clock_Disable;
procedure RNG_Clock_Enable is
begin
Register.AHB2ENR := Register.AHB2ENR or AHB2ENR_RNGEN;
end RNG_Clock_Enable;
procedure RNG_Clock_Disable is
begin
Register.AHB2ENR := Register.AHB2ENR and not AHB2ENR_RNGEN;
end RNG_Clock_Disable;
procedure TIM2_Clock_Enable is
begin
Register.APB1ENR := Register.APB1ENR or APB1ENR_TIM2EN;
end TIM2_Clock_Enable;
procedure TIM3_Clock_Enable is
begin
Register.APB1ENR := Register.APB1ENR or APB1ENR_TIM3EN;
end TIM3_Clock_Enable;
procedure TIM4_Clock_Enable is
begin
Register.APB1ENR := Register.APB1ENR or APB1ENR_TIM4EN;
end TIM4_Clock_Enable;
procedure TIM5_Clock_Enable is
begin
Register.APB1ENR := Register.APB1ENR or APB1ENR_TIM5EN;
end TIM5_Clock_Enable;
procedure TIM6_Clock_Enable is
begin
Register.APB1ENR := Register.APB1ENR or APB1ENR_TIM6EN;
end TIM6_Clock_Enable;
procedure TIM7_Clock_Enable is
begin
Register.APB1ENR := Register.APB1ENR or APB1ENR_TIM7EN;
end TIM7_Clock_Enable;
procedure TIM12_Clock_Enable is
begin
Register.APB1ENR := Register.APB1ENR or APB1ENR_TIM12EN;
end TIM12_Clock_Enable;
procedure TIM13_Clock_Enable is
begin
Register.APB1ENR := Register.APB1ENR or APB1ENR_TIM13EN;
end TIM13_Clock_Enable;
procedure TIM14_Clock_Enable is
begin
Register.APB1ENR := Register.APB1ENR or APB1ENR_TIM14EN;
end TIM14_Clock_Enable;
procedure WWDG_Clock_Enable is
begin
Register.APB1ENR := Register.APB1ENR or APB1ENR_WWDGEN;
end WWDG_Clock_Enable;
procedure SPI2_Clock_Enable is
begin
Register.APB1ENR := Register.APB1ENR or APB1ENR_SPI2EN;
end SPI2_Clock_Enable;
procedure SPI3_Clock_Enable is
begin
Register.APB1ENR := Register.APB1ENR or APB1ENR_SPI3EN;
end SPI3_Clock_Enable;
procedure USART2_Clock_Enable is
begin
Register.APB1ENR := Register.APB1ENR or APB1ENR_USART2EN;
end USART2_Clock_Enable;
procedure USART3_Clock_Enable is
begin
Register.APB1ENR := Register.APB1ENR or APB1ENR_USART3EN;
end USART3_Clock_Enable;
procedure UART4_Clock_Enable is
begin
Register.APB1ENR := Register.APB1ENR or APB1ENR_UART4EN;
end UART4_Clock_Enable;
procedure UART5_Clock_Enable is
begin
Register.APB1ENR := Register.APB1ENR or APB1ENR_UART5EN;
end UART5_Clock_Enable;
procedure UART7_Clock_Enable is
begin
Register.APB1ENR := Register.APB1ENR or APB1ENR_UART7EN;
end UART7_Clock_Enable;
procedure UART8_Clock_Enable is
begin
Register.APB1ENR := Register.APB1ENR or APB1ENR_UART8EN;
end UART8_Clock_Enable;
procedure I2C1_Clock_Enable is
begin
Register.APB1ENR := Register.APB1ENR or APB1ENR_I2C1EN;
end I2C1_Clock_Enable;
procedure I2C2_Clock_Enable is
begin
Register.APB1ENR := Register.APB1ENR or APB1ENR_I2C2EN;
end I2C2_Clock_Enable;
procedure I2C3_Clock_Enable is
begin
Register.APB1ENR := Register.APB1ENR or APB1ENR_I2C3EN;
end I2C3_Clock_Enable;
procedure PWR_Clock_Enable is
begin
Register.APB1ENR := Register.APB1ENR or APB1ENR_PWREN;
end PWR_Clock_Enable;
procedure TIM2_Clock_Disable is
begin
Register.APB1ENR := Register.APB1ENR and not APB1ENR_TIM2EN;
end TIM2_Clock_Disable;
procedure TIM3_Clock_Disable is
begin
Register.APB1ENR := Register.APB1ENR and not APB1ENR_TIM3EN;
end TIM3_Clock_Disable;
procedure TIM4_Clock_Disable is
begin
Register.APB1ENR := Register.APB1ENR and not APB1ENR_TIM4EN;
end TIM4_Clock_Disable;
procedure TIM5_Clock_Disable is
begin
Register.APB1ENR := Register.APB1ENR and not APB1ENR_TIM5EN;
end TIM5_Clock_Disable;
procedure TIM6_Clock_Disable is
begin
Register.APB1ENR := Register.APB1ENR and not APB1ENR_TIM6EN;
end TIM6_Clock_Disable;
procedure TIM7_Clock_Disable is
begin
Register.APB1ENR := Register.APB1ENR and not APB1ENR_TIM7EN;
end TIM7_Clock_Disable;
procedure TIM12_Clock_Disable is
begin
Register.APB1ENR := Register.APB1ENR and not APB1ENR_TIM12EN;
end TIM12_Clock_Disable;
procedure TIM13_Clock_Disable is
begin
Register.APB1ENR := Register.APB1ENR and not APB1ENR_TIM13EN;
end TIM13_Clock_Disable;
procedure TIM14_Clock_Disable is
begin
Register.APB1ENR := Register.APB1ENR and not APB1ENR_TIM14EN;
end TIM14_Clock_Disable;
procedure WWDG_Clock_Disable is
begin
Register.APB1ENR := Register.APB1ENR and not APB1ENR_WWDGEN;
end WWDG_Clock_Disable;
procedure SPI2_Clock_Disable is
begin
Register.APB1ENR := Register.APB1ENR and not APB1ENR_SPI2EN;
end SPI2_Clock_Disable;
procedure SPI3_Clock_Disable is
begin
Register.APB1ENR := Register.APB1ENR and not APB1ENR_SPI3EN;
end SPI3_Clock_Disable;
procedure USART2_Clock_Disable is
begin
Register.APB1ENR := Register.APB1ENR and not APB1ENR_USART2EN;
end USART2_Clock_Disable;
procedure USART3_Clock_Disable is
begin
Register.APB1ENR := Register.APB1ENR and not APB1ENR_USART3EN;
end USART3_Clock_Disable;
procedure UART4_Clock_Disable is
begin
Register.APB1ENR := Register.APB1ENR and not APB1ENR_UART4EN;
end UART4_Clock_Disable;
procedure UART5_Clock_Disable is
begin
Register.APB1ENR := Register.APB1ENR and not APB1ENR_UART5EN;
end UART5_Clock_Disable;
procedure UART7_Clock_Disable is
begin
Register.APB1ENR := Register.APB1ENR and not APB1ENR_UART7EN;
end UART7_Clock_Disable;
procedure UART8_Clock_Disable is
begin
Register.APB1ENR := Register.APB1ENR and not APB1ENR_UART8EN;
end UART8_Clock_Disable;
procedure I2C1_Clock_Disable is
begin
Register.APB1ENR := Register.APB1ENR and not APB1ENR_I2C1EN;
end I2C1_Clock_Disable;
procedure I2C2_Clock_Disable is
begin
Register.APB1ENR := Register.APB1ENR and not APB1ENR_I2C2EN;
end I2C2_Clock_Disable;
procedure I2C3_Clock_Disable is
begin
Register.APB1ENR := Register.APB1ENR and not APB1ENR_I2C3EN;
end I2C3_Clock_Disable;
procedure PWR_Clock_Disable is
begin
Register.APB1ENR := Register.APB1ENR and not APB1ENR_PWREN;
end PWR_Clock_Disable;
procedure TIM1_Clock_Enable is
begin
Register.APB2ENR := Register.APB2ENR or APB2ENR_TIM1EN;
end TIM1_Clock_Enable;
procedure TIM8_Clock_Enable is
begin
Register.APB2ENR := Register.APB2ENR or APB2ENR_TIM8EN;
end TIM8_Clock_Enable;
procedure USART1_Clock_Enable is
begin
Register.APB2ENR := Register.APB2ENR or APB2ENR_USART1EN;
end USART1_Clock_Enable;
procedure USART6_Clock_Enable is
begin
Register.APB2ENR := Register.APB2ENR or APB2ENR_USART6EN;
end USART6_Clock_Enable;
procedure ADC1_Clock_Enable is
begin
Register.APB2ENR := Register.APB2ENR or APB2ENR_ADC1EN;
end ADC1_Clock_Enable;
procedure SDIO_Clock_Enable is
begin
Register.APB2ENR := Register.APB2ENR or APB2ENR_SDIOEN;
end SDIO_Clock_Enable;
procedure SPI1_Clock_Enable is
begin
Register.APB2ENR := Register.APB2ENR or APB2ENR_SPI1EN;
end SPI1_Clock_Enable;
procedure SPI4_Clock_Enable is
begin
Register.APB2ENR := Register.APB2ENR or APB2ENR_SPI4EN;
end SPI4_Clock_Enable;
procedure SYSCFG_Clock_Enable is
begin
Register.APB2ENR := Register.APB2ENR or APB2ENR_SYSCFGEN;
end SYSCFG_Clock_Enable;
procedure TIM9_Clock_Enable is
begin
Register.APB2ENR := Register.APB2ENR or APB2ENR_TIM9EN;
end TIM9_Clock_Enable;
procedure TIM10_Clock_Enable is
begin
Register.APB2ENR := Register.APB2ENR or APB2ENR_TIM10EN;
end TIM10_Clock_Enable;
procedure TIM11_Clock_Enable is
begin
Register.APB2ENR := Register.APB2ENR or APB2ENR_TIM11EN;
end TIM11_Clock_Enable;
procedure SPI5_Clock_Enable is
begin
Register.APB2ENR := Register.APB2ENR or APB2ENR_SPI5EN;
end SPI5_Clock_Enable;
procedure SPI6_Clock_Enable is
begin
Register.APB2ENR := Register.APB2ENR or APB2ENR_SPI6EN;
end SPI6_Clock_Enable;
procedure LTDC_Clock_Enable is
begin
Register.APB2ENR := Register.APB2ENR or APB2ENR_LTDCEN;
end LTDC_Clock_Enable;
procedure TIM1_Clock_Disable is
begin
Register.APB2ENR := Register.APB2ENR and not APB2ENR_TIM1EN;
end TIM1_Clock_Disable;
procedure TIM8_Clock_Disable is
begin
Register.APB2ENR := Register.APB2ENR and not APB2ENR_TIM8EN;
end TIM8_Clock_Disable;
procedure USART1_Clock_Disable is
begin
Register.APB2ENR := Register.APB2ENR and not APB2ENR_USART1EN;
end USART1_Clock_Disable;
procedure USART6_Clock_Disable is
begin
Register.APB2ENR := Register.APB2ENR and not APB2ENR_USART6EN;
end USART6_Clock_Disable;
procedure ADC1_Clock_Disable is
begin
Register.APB2ENR := Register.APB2ENR and not APB2ENR_ADC1EN;
end ADC1_Clock_Disable;
procedure SDIO_Clock_Disable is
begin
Register.APB2ENR := Register.APB2ENR and not APB2ENR_SDIOEN;
end SDIO_Clock_Disable;
procedure SPI1_Clock_Disable is
begin
Register.APB2ENR := Register.APB2ENR and not APB2ENR_SPI1EN;
end SPI1_Clock_Disable;
procedure SPI4_Clock_Disable is
begin
Register.APB2ENR := Register.APB2ENR and not APB2ENR_SPI4EN;
end SPI4_Clock_Disable;
procedure SYSCFG_Clock_Disable is
begin
Register.APB2ENR := Register.APB2ENR and not APB2ENR_SYSCFGEN;
end SYSCFG_Clock_Disable;
procedure TIM9_Clock_Disable is
begin
Register.APB2ENR := Register.APB2ENR and not APB2ENR_TIM9EN;
end TIM9_Clock_Disable;
procedure TIM10_Clock_Disable is
begin
Register.APB2ENR := Register.APB2ENR and not APB2ENR_TIM10EN;
end TIM10_Clock_Disable;
procedure TIM11_Clock_Disable is
begin
Register.APB2ENR := Register.APB2ENR and not APB2ENR_TIM11EN;
end TIM11_Clock_Disable;
procedure SPI5_Clock_Disable is
begin
Register.APB2ENR := Register.APB2ENR and not APB2ENR_SPI5EN;
end SPI5_Clock_Disable;
procedure SPI6_Clock_Disable is
begin
Register.APB2ENR := Register.APB2ENR and not APB2ENR_SPI6EN;
end SPI6_Clock_Disable;
procedure LTDC_Clock_Disable is
begin
Register.APB2ENR := Register.APB2ENR and not APB2ENR_LTDCEN;
end LTDC_Clock_Disable;
procedure AHB1_Force_Reset is
begin
Register.AHB1RSTR := 16#FFFF_FFFF#;
end AHB1_Force_Reset;
procedure GPIOA_Force_Reset is
begin
Register.AHB1RSTR := Register.AHB1RSTR or AHB1RSTR_GPIOARST;
end GPIOA_Force_Reset;
procedure GPIOB_Force_Reset is
begin
Register.AHB1RSTR := Register.AHB1RSTR or AHB1RSTR_GPIOBRST;
end GPIOB_Force_Reset;
procedure GPIOC_Force_Reset is
begin
Register.AHB1RSTR := Register.AHB1RSTR or AHB1RSTR_GPIOCRST;
end GPIOC_Force_Reset;
procedure GPIOD_Force_Reset is
begin
Register.AHB1RSTR := Register.AHB1RSTR or AHB1RSTR_GPIODRST;
end GPIOD_Force_Reset;
procedure GPIOE_Force_Reset is
begin
Register.AHB1RSTR := Register.AHB1RSTR or AHB1RSTR_GPIOERST;
end GPIOE_Force_Reset;
procedure GPIOH_Force_Reset is
begin
Register.AHB1RSTR := Register.AHB1RSTR or AHB1RSTR_GPIOHRST;
end GPIOH_Force_Reset;
procedure CRC_Force_Reset is
begin
Register.AHB1RSTR := Register.AHB1RSTR or AHB1RSTR_CRCRST;
end CRC_Force_Reset;
procedure DMA1_Force_Reset is
begin
Register.AHB1RSTR := Register.AHB1RSTR or AHB1RSTR_DMA1RST;
end DMA1_Force_Reset;
procedure DMA2_Force_Reset is
begin
Register.AHB1RSTR := Register.AHB1RSTR or AHB1RSTR_DMA2RST;
end DMA2_Force_Reset;
procedure AHB1_Release_Reset is
begin
Register.AHB1RSTR := 0;
end AHB1_Release_Reset;
procedure GPIOA_Release_Reset is
begin
Register.AHB1RSTR := Register.AHB1RSTR and not AHB1RSTR_GPIOARST;
end GPIOA_Release_Reset;
procedure GPIOB_Release_Reset is
begin
Register.AHB1RSTR := Register.AHB1RSTR and not AHB1RSTR_GPIOBRST;
end GPIOB_Release_Reset;
procedure GPIOC_Release_Reset is
begin
Register.AHB1RSTR := Register.AHB1RSTR and not AHB1RSTR_GPIOCRST;
end GPIOC_Release_Reset;
procedure GPIOD_Release_Reset is
begin
Register.AHB1RSTR := Register.AHB1RSTR and not AHB1RSTR_GPIODRST;
end GPIOD_Release_Reset;
procedure GPIOE_Release_Reset is
begin
Register.AHB1RSTR := Register.AHB1RSTR and not AHB1RSTR_GPIOERST;
end GPIOE_Release_Reset;
procedure GPIOF_Release_Reset is
begin
Register.AHB1RSTR := Register.AHB1RSTR and not AHB1RSTR_GPIOFRST;
end GPIOF_Release_Reset;
procedure GPIOG_Release_Reset is
begin
Register.AHB1RSTR := Register.AHB1RSTR and not AHB1RSTR_GPIOGRST;
end GPIOG_Release_Reset;
procedure GPIOH_Release_Reset is
begin
Register.AHB1RSTR := Register.AHB1RSTR and not AHB1RSTR_GPIOHRST;
end GPIOH_Release_Reset;
procedure GPIOI_Release_Reset is
begin
Register.AHB1RSTR := Register.AHB1RSTR and not AHB1RSTR_GPIOIRST;
end GPIOI_Release_Reset;
procedure CRC_Release_Reset is
begin
Register.AHB1RSTR := Register.AHB1RSTR and not AHB1RSTR_CRCRST;
end CRC_Release_Reset;
procedure DMA1_Release_Reset is
begin
Register.AHB1RSTR := Register.AHB1RSTR and not AHB1RSTR_DMA1RST;
end DMA1_Release_Reset;
procedure DMA2_Release_Reset is
begin
Register.AHB1RSTR := Register.AHB1RSTR and not AHB1RSTR_DMA2RST;
end DMA2_Release_Reset;
procedure AHB2_Force_Reset is
begin
Register.AHB2RSTR := 16#FFFF_FFFF#;
end AHB2_Force_Reset;
procedure OTGFS_Force_Reset is
begin
Register.AHB2RSTR := Register.AHB2RSTR or AHB2RSTR_OTGFSRST;
end OTGFS_Force_Reset;
procedure AHB2_Release_Reset is
begin
Register.AHB2RSTR := 0;
end AHB2_Release_Reset;
procedure OTGFS_Release_Reset is
begin
Register.AHB2RSTR := Register.AHB2RSTR and not AHB2RSTR_OTGFSRST;
end OTGFS_Release_Reset;
procedure RNG_Force_Reset is
begin
Register.AHB2RSTR := Register.AHB2RSTR or AHB2RSTR_RNGRST;
end RNG_Force_Reset;
procedure RNG_Release_Reset is
begin
Register.AHB2RSTR := Register.AHB2RSTR and not AHB2RSTR_RNGRST;
end RNG_Release_Reset;
procedure APB1_Force_Reset is
begin
Register.APB1RSTR := 16#FFFF_FFFF#;
end APB1_Force_Reset;
procedure TIM2_Force_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR or APB1RSTR_TIM2RST;
end TIM2_Force_Reset;
procedure TIM3_Force_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR or APB1RSTR_TIM3RST;
end TIM3_Force_Reset;
procedure TIM4_Force_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR or APB1RSTR_TIM4RST;
end TIM4_Force_Reset;
procedure TIM5_Force_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR or APB1RSTR_TIM5RST;
end TIM5_Force_Reset;
procedure TIM6_Force_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR or APB1RSTR_TIM6RST;
end TIM6_Force_Reset;
procedure TIM7_Force_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR or APB1RSTR_TIM7RST;
end TIM7_Force_Reset;
procedure TIM12_Force_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR or APB1RSTR_TIM12RST;
end TIM12_Force_Reset;
procedure TIM13_Force_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR or APB1RSTR_TIM13RST;
end TIM13_Force_Reset;
procedure TIM14_Force_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR or APB1RSTR_TIM14RST;
end TIM14_Force_Reset;
procedure WWDG_Force_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR or APB1RSTR_WWDGRST;
end WWDG_Force_Reset;
procedure SPI2_Force_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR or APB1RSTR_SPI2RST;
end SPI2_Force_Reset;
procedure SPI3_Force_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR or APB1RSTR_SPI3RST;
end SPI3_Force_Reset;
procedure USART2_Force_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR or APB1RSTR_USART2RST;
end USART2_Force_Reset;
procedure I2C1_Force_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR or APB1RSTR_I2C1RST;
end I2C1_Force_Reset;
procedure I2C2_Force_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR or APB1RSTR_I2C2RST;
end I2C2_Force_Reset;
procedure I2C3_Force_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR or APB1RSTR_I2C3RST;
end I2C3_Force_Reset;
procedure PWR_Force_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR or APB1RSTR_PWRRST;
end PWR_Force_Reset;
procedure APB1_Release_Reset is
begin
Register.APB1RSTR := 0;
end APB1_Release_Reset;
procedure TIM2_Release_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR and not APB1RSTR_TIM2RST;
end TIM2_Release_Reset;
procedure TIM3_Release_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR and not APB1RSTR_TIM3RST;
end TIM3_Release_Reset;
procedure TIM4_Release_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR and not APB1RSTR_TIM4RST;
end TIM4_Release_Reset;
procedure TIM5_Release_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR and not APB1RSTR_TIM5RST;
end TIM5_Release_Reset;
procedure TIM6_Release_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR and not APB1RSTR_TIM6RST;
end TIM6_Release_Reset;
procedure TIM7_Release_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR and not APB1RSTR_TIM7RST;
end TIM7_Release_Reset;
procedure TIM12_Release_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR and not APB1RSTR_TIM12RST;
end TIM12_Release_Reset;
procedure TIM13_Release_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR and not APB1RSTR_TIM13RST;
end TIM13_Release_Reset;
procedure TIM14_Release_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR and not APB1RSTR_TIM14RST;
end TIM14_Release_Reset;
procedure WWDG_Release_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR and not APB1RSTR_WWDGRST;
end WWDG_Release_Reset;
procedure SPI2_Release_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR and not APB1RSTR_SPI2RST;
end SPI2_Release_Reset;
procedure SPI3_Release_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR and not APB1RSTR_SPI3RST;
end SPI3_Release_Reset;
procedure USART2_Release_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR and not APB1RSTR_USART2RST;
end USART2_Release_Reset;
procedure I2C1_Release_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR and not APB1RSTR_I2C1RST;
end I2C1_Release_Reset;
procedure I2C2_Release_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR and not APB1RSTR_I2C2RST;
end I2C2_Release_Reset;
procedure I2C3_Release_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR and not APB1RSTR_I2C3RST;
end I2C3_Release_Reset;
procedure PWR_Release_Reset is
begin
Register.APB1RSTR := Register.APB1RSTR and not APB1RSTR_PWRRST;
end PWR_Release_Reset;
procedure APB2_Force_Reset is
begin
Register.APB2RSTR := 16#FFFF_FFFF#;
end APB2_Force_Reset;
procedure TIM1_Force_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR or APB2RSTR_TIM1RST;
end TIM1_Force_Reset;
procedure TIM8_Force_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR or APB2RSTR_TIM8RST;
end TIM8_Force_Reset;
procedure USART1_Force_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR or APB2RSTR_USART1RST;
end USART1_Force_Reset;
procedure USART6_Force_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR or APB2RSTR_USART6RST;
end USART6_Force_Reset;
procedure ADC_Force_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR or APB2RSTR_ADCRST;
end ADC_Force_Reset;
procedure SDIO_Force_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR or APB2RSTR_SDIORST;
end SDIO_Force_Reset;
procedure SPI1_Force_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR or APB2RSTR_SPI1RST;
end SPI1_Force_Reset;
procedure SPI4_Force_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR or APB2RSTR_SPI4RST;
end SPI4_Force_Reset;
procedure SYSCFG_Force_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR or APB2RSTR_SYSCFGRST;
end SYSCFG_Force_Reset;
procedure TIM9_Force_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR or APB2RSTR_TIM9RST;
end TIM9_Force_Reset;
procedure TIM10_Force_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR or APB2RSTR_TIM10RST;
end TIM10_Force_Reset;
procedure TIM11_Force_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR or APB2RSTR_TIM11RST;
end TIM11_Force_Reset;
procedure SPI5_Force_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR or APB2RSTR_SPI5RST;
end SPI5_Force_Reset;
procedure SPI6_Force_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR or APB2RSTR_SPI6RST;
end SPI6_Force_Reset;
procedure LTDC_Force_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR or APB2RSTR_LTDCRST;
end LTDC_Force_Reset;
procedure APB2_Release_Reset is
begin
Register.APB2RSTR := 0;
end APB2_Release_Reset;
procedure TIM1_Release_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR and not APB2RSTR_TIM1RST;
end TIM1_Release_Reset;
procedure TIM8_Release_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR and not APB2RSTR_TIM8RST;
end TIM8_Release_Reset;
procedure USART1_Release_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR and not APB2RSTR_USART1RST;
end USART1_Release_Reset;
procedure USART6_Release_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR and not APB2RSTR_USART6RST;
end USART6_Release_Reset;
procedure ADC_Release_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR and not APB2RSTR_ADCRST;
end ADC_Release_Reset;
procedure SDIO_Release_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR and not APB2RSTR_SDIORST;
end SDIO_Release_Reset;
procedure SPI1_Release_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR and not APB2RSTR_SPI1RST;
end SPI1_Release_Reset;
procedure SPI4_Release_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR and not APB2RSTR_SPI4RST;
end SPI4_Release_Reset;
procedure SYSCFG_Release_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR and not APB2RSTR_SYSCFGRST;
end SYSCFG_Release_Reset;
procedure TIM9_Release_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR and not APB2RSTR_TIM9RST;
end TIM9_Release_Reset;
procedure TIM10_Release_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR and not APB2RSTR_TIM10RST;
end TIM10_Release_Reset;
procedure TIM11_Release_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR and not APB2RSTR_TIM11RST;
end TIM11_Release_Reset;
procedure SPI5_Release_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR and not APB2RSTR_SPI5RST;
end SPI5_Release_Reset;
procedure SPI6_Release_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR and not APB2RSTR_SPI6RST;
end SPI6_Release_Reset;
procedure LTDC_Release_Reset is
begin
Register.APB2RSTR := Register.APB2RSTR and not APB2RSTR_LTDCRST;
end LTDC_Release_Reset;
procedure FSMC_Clock_Enable is
begin
Register.AHB3ENR := Register.AHB3ENR or AHB3ENR_FSMCEN;
end FSMC_Clock_Enable;
procedure FSMC_Clock_Disable is
begin
Register.AHB3ENR := Register.AHB3ENR and not AHB3ENR_FSMCEN;
end FSMC_Clock_Disable;
end STM32F4.RCC;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUNTIME COMPONENTS --
-- --
-- S Y S T E M . P A C K _ 3 9 --
-- --
-- S p e c --
-- --
-- $Revision$
-- --
-- Copyright (C) 1992-1999 Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
-- MA 02111-3907, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- Handling of packed arrays with Component_Size = 39
package System.Pack_39 is
pragma Preelaborate (Pack_39);
Bits : constant := 39;
type Bits_39 is mod 2 ** Bits;
for Bits_39'Size use Bits;
function Get_39 (Arr : System.Address; N : Natural) return Bits_39;
-- Arr is the address of the packed array, N is the zero-based
-- subscript. This element is extracted and returned.
procedure Set_39 (Arr : System.Address; N : Natural; E : Bits_39);
-- Arr is the address of the packed array, N is the zero-based
-- subscript. This element is set to the given value.
end System.Pack_39;
|
------------------------------------------------------------------------------
-- --
-- GNAT LIBRARY COMPONENTS --
-- --
-- ADA.CONTAINERS.INDEFINITE_ORDERED_MULTISETS --
-- --
-- S p e c --
-- --
-- Copyright (C) 2004-2019, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- This unit was originally developed by Matthew J Heaney. --
------------------------------------------------------------------------------
-- The indefinite ordered multiset container is similar to the indefinite
-- ordered set, but with the difference that multiple equivalent elements are
-- allowed. It also provides additional operations, to iterate over items that
-- are equivalent.
private with Ada.Containers.Red_Black_Trees;
private with Ada.Finalization;
private with Ada.Streams;
with Ada.Iterator_Interfaces;
generic
type Element_Type (<>) is private;
with function "<" (Left, Right : Element_Type) return Boolean is <>;
with function "=" (Left, Right : Element_Type) return Boolean is <>;
package Ada.Containers.Indefinite_Ordered_Multisets is
pragma Annotate (CodePeer, Skip_Analysis);
pragma Preelaborate;
pragma Remote_Types;
function Equivalent_Elements (Left, Right : Element_Type) return Boolean;
-- Returns False if Left is less than Right, or Right is less than Left;
-- otherwise, it returns True.
type Set is tagged private
with Constant_Indexing => Constant_Reference,
Default_Iterator => Iterate,
Iterator_Element => Element_Type;
pragma Preelaborable_Initialization (Set);
type Cursor is private;
pragma Preelaborable_Initialization (Cursor);
Empty_Set : constant Set;
-- The default value for set objects declared without an explicit
-- initialization expression.
No_Element : constant Cursor;
-- The default value for cursor objects declared without an explicit
-- initialization expression.
function Has_Element (Position : Cursor) return Boolean;
-- Equivalent to Position /= No_Element
package Set_Iterator_Interfaces is new
Ada.Iterator_Interfaces (Cursor, Has_Element);
function "=" (Left, Right : Set) return Boolean;
-- If Left denotes the same set object as Right, then equality returns
-- True. If the length of Left is different from the length of Right, then
-- it returns False. Otherwise, set equality iterates over Left and Right,
-- comparing the element of Left to the element of Right using the equality
-- operator for elements. If the elements compare False, then the iteration
-- terminates and set equality returns False. Otherwise, if all elements
-- compare True, then set equality returns True.
function Equivalent_Sets (Left, Right : Set) return Boolean;
-- Similar to set equality, but with the difference that elements are
-- compared for equivalence instead of equality.
function To_Set (New_Item : Element_Type) return Set;
-- Constructs a set object with New_Item as its single element
function Length (Container : Set) return Count_Type;
-- Returns the total number of elements in Container
function Is_Empty (Container : Set) return Boolean;
-- Returns True if Container.Length is 0
procedure Clear (Container : in out Set);
-- Deletes all elements from Container
function Element (Position : Cursor) return Element_Type;
-- If Position equals No_Element, then Constraint_Error is raised.
-- Otherwise, function Element returns the element designed by Position.
procedure Replace_Element
(Container : in out Set;
Position : Cursor;
New_Item : Element_Type);
-- If Position equals No_Element, then Constraint_Error is raised. If
-- Position is associated with a set different from Container, then
-- Program_Error is raised. If New_Item is equivalent to the element
-- designated by Position, then if Container is locked (element tampering
-- has been attempted), Program_Error is raised; otherwise, the element
-- designated by Position is assigned the value of New_Item. If New_Item is
-- not equivalent to the element designated by Position, then if the
-- container is busy (cursor tampering has been attempted), Program_Error
-- is raised; otherwise, the element designed by Position is assigned the
-- value of New_Item, and the node is moved to its new position (in
-- canonical insertion order).
procedure Query_Element
(Position : Cursor;
Process : not null access procedure (Element : Element_Type));
-- If Position equals No_Element, then Constraint_Error is
-- raised. Otherwise, it calls Process with the element designated by
-- Position as the parameter. This call locks the container, so attempts to
-- change the value of the element while Process is executing (to "tamper
-- with elements") will raise Program_Error.
type Constant_Reference_Type
(Element : not null access constant Element_Type) is private
with Implicit_Dereference => Element;
function Constant_Reference
(Container : aliased Set;
Position : Cursor) return Constant_Reference_Type;
pragma Inline (Constant_Reference);
procedure Assign (Target : in out Set; Source : Set);
function Copy (Source : Set) return Set;
procedure Move (Target : in out Set; Source : in out Set);
-- If Target denotes the same object as Source, the operation does
-- nothing. If either Target or Source is busy (cursor tampering is
-- attempted), then it raises Program_Error. Otherwise, Target is cleared,
-- and the nodes from Source are moved (not copied) to Target (so Source
-- becomes empty).
procedure Insert
(Container : in out Set;
New_Item : Element_Type;
Position : out Cursor);
-- Insert adds New_Item to Container, and returns cursor Position
-- designating the newly inserted node. The node is inserted after any
-- existing elements less than or equivalent to New_Item (and before any
-- elements greater than New_Item). Note that the issue of where the new
-- node is inserted relative to equivalent elements does not arise for
-- unique-key containers, since in that case the insertion would simply
-- fail. For a multiple-key container (the case here), insertion always
-- succeeds, and is defined such that the new item is positioned after any
-- equivalent elements already in the container.
procedure Insert (Container : in out Set; New_Item : Element_Type);
-- Inserts New_Item in Container, but does not return a cursor designating
-- the newly-inserted node.
-- TODO: include Replace too???
--
-- procedure Replace
-- (Container : in out Set;
-- New_Item : Element_Type);
procedure Exclude (Container : in out Set; Item : Element_Type);
-- Deletes from Container all of the elements equivalent to Item
procedure Delete (Container : in out Set; Item : Element_Type);
-- Deletes from Container all of the elements equivalent to Item. If there
-- are no elements equivalent to Item, then it raises Constraint_Error.
procedure Delete (Container : in out Set; Position : in out Cursor);
-- If Position equals No_Element, then Constraint_Error is raised. If
-- Position is associated with a set different from Container, then
-- Program_Error is raised. Otherwise, the node designated by Position is
-- removed from Container, and Position is set to No_Element.
procedure Delete_First (Container : in out Set);
-- Removes the first node from Container
procedure Delete_Last (Container : in out Set);
-- Removes the last node from Container
procedure Union (Target : in out Set; Source : Set);
-- If Target is busy (cursor tampering is attempted), then Program_Error is
-- raised. Otherwise, it inserts each element of Source into Target.
-- Elements are inserted in the canonical order for multisets, such that
-- the elements from Source are inserted after equivalent elements already
-- in Target.
function Union (Left, Right : Set) return Set;
-- Returns a set comprising the all elements from Left and all of the
-- elements from Right. The elements from Right follow the equivalent
-- elements from Left.
function "or" (Left, Right : Set) return Set renames Union;
procedure Intersection (Target : in out Set; Source : Set);
-- If Target denotes the same object as Source, the operation does
-- nothing. If Target is busy (cursor tampering is attempted),
-- Program_Error is raised. Otherwise, the elements in Target having no
-- equivalent element in Source are deleted from Target.
function Intersection (Left, Right : Set) return Set;
-- If Left denotes the same object as Right, then the function returns a
-- copy of Left. Otherwise, it returns a set comprising the equivalent
-- elements from both Left and Right. Items are inserted in the result set
-- in canonical order, such that the elements from Left precede the
-- equivalent elements from Right.
function "and" (Left, Right : Set) return Set renames Intersection;
procedure Difference (Target : in out Set; Source : Set);
-- If Target is busy (cursor tampering is attempted), then Program_Error is
-- raised. Otherwise, the elements in Target that are equivalent to
-- elements in Source are deleted from Target.
function Difference (Left, Right : Set) return Set;
-- Returns a set comprising the elements from Left that have no equivalent
-- element in Right.
function "-" (Left, Right : Set) return Set renames Difference;
procedure Symmetric_Difference (Target : in out Set; Source : Set);
-- If Target is busy, then Program_Error is raised. Otherwise, the elements
-- in Target equivalent to elements in Source are deleted from Target, and
-- the elements in Source not equivalent to elements in Target are inserted
-- into Target.
function Symmetric_Difference (Left, Right : Set) return Set;
-- Returns a set comprising the union of the elements from Target having no
-- equivalent in Source, and the elements of Source having no equivalent in
-- Target.
function "xor" (Left, Right : Set) return Set renames Symmetric_Difference;
function Overlap (Left, Right : Set) return Boolean;
-- Returns True if Left contains an element equivalent to an element of
-- Right.
function Is_Subset (Subset : Set; Of_Set : Set) return Boolean;
-- Returns True if every element in Subset has an equivalent element in
-- Of_Set.
function First (Container : Set) return Cursor;
-- If Container is empty, the function returns No_Element. Otherwise, it
-- returns a cursor designating the smallest element.
function First_Element (Container : Set) return Element_Type;
-- Equivalent to Element (First (Container))
function Last (Container : Set) return Cursor;
-- If Container is empty, the function returns No_Element. Otherwise, it
-- returns a cursor designating the largest element.
function Last_Element (Container : Set) return Element_Type;
-- Equivalent to Element (Last (Container))
function Next (Position : Cursor) return Cursor;
-- If Position equals No_Element or Last (Container), the function returns
-- No_Element. Otherwise, it returns a cursor designating the node that
-- immediately follows (as per the insertion order) the node designated by
-- Position.
procedure Next (Position : in out Cursor);
-- Equivalent to Position := Next (Position)
function Previous (Position : Cursor) return Cursor;
-- If Position equals No_Element or First (Container), the function returns
-- No_Element. Otherwise, it returns a cursor designating the node that
-- immediately precedes (as per the insertion order) the node designated by
-- Position.
procedure Previous (Position : in out Cursor);
-- Equivalent to Position := Previous (Position)
function Find (Container : Set; Item : Element_Type) return Cursor;
-- Returns a cursor designating the first element in Container equivalent
-- to Item. If there is no equivalent element, it returns No_Element.
function Floor (Container : Set; Item : Element_Type) return Cursor;
-- If Container is empty, the function returns No_Element. If Item is
-- equivalent to elements in Container, it returns a cursor designating the
-- first equivalent element. Otherwise, it returns a cursor designating the
-- largest element less than Item, or No_Element if all elements are
-- greater than Item.
function Ceiling (Container : Set; Item : Element_Type) return Cursor;
-- If Container is empty, the function returns No_Element. If Item is
-- equivalent to elements of Container, it returns a cursor designating the
-- last equivalent element. Otherwise, it returns a cursor designating the
-- smallest element greater than Item, or No_Element if all elements are
-- less than Item.
function Contains (Container : Set; Item : Element_Type) return Boolean;
-- Equivalent to Container.Find (Item) /= No_Element
function "<" (Left, Right : Cursor) return Boolean;
-- Equivalent to Element (Left) < Element (Right)
function ">" (Left, Right : Cursor) return Boolean;
-- Equivalent to Element (Right) < Element (Left)
function "<" (Left : Cursor; Right : Element_Type) return Boolean;
-- Equivalent to Element (Left) < Right
function ">" (Left : Cursor; Right : Element_Type) return Boolean;
-- Equivalent to Right < Element (Left)
function "<" (Left : Element_Type; Right : Cursor) return Boolean;
-- Equivalent to Left < Element (Right)
function ">" (Left : Element_Type; Right : Cursor) return Boolean;
-- Equivalent to Element (Right) < Left
procedure Iterate
(Container : Set;
Process : not null access procedure (Position : Cursor));
-- Calls Process with a cursor designating each element of Container, in
-- order from Container.First to Container.Last.
procedure Reverse_Iterate
(Container : Set;
Process : not null access procedure (Position : Cursor));
-- Calls Process with a cursor designating each element of Container, in
-- order from Container.Last to Container.First.
procedure Iterate
(Container : Set;
Item : Element_Type;
Process : not null access procedure (Position : Cursor));
-- Call Process with a cursor designating each element equivalent to Item,
-- in order from Container.Floor (Item) to Container.Ceiling (Item).
procedure Reverse_Iterate
(Container : Set;
Item : Element_Type;
Process : not null access procedure (Position : Cursor));
-- Call Process with a cursor designating each element equivalent to Item,
-- in order from Container.Ceiling (Item) to Container.Floor (Item).
function Iterate
(Container : Set)
return Set_Iterator_Interfaces.Reversible_Iterator'class;
function Iterate
(Container : Set;
Start : Cursor)
return Set_Iterator_Interfaces.Reversible_Iterator'class;
generic
type Key_Type (<>) is private;
with function Key (Element : Element_Type) return Key_Type;
with function "<" (Left, Right : Key_Type) return Boolean is <>;
package Generic_Keys is
function Equivalent_Keys (Left, Right : Key_Type) return Boolean;
-- Returns False if Left is less than Right, or Right is less than Left;
-- otherwise, it returns True.
function Key (Position : Cursor) return Key_Type;
-- Equivalent to Key (Element (Position))
function Element (Container : Set; Key : Key_Type) return Element_Type;
-- Equivalent to Element (Find (Container, Key))
procedure Exclude (Container : in out Set; Key : Key_Type);
-- Deletes from Container any elements whose key is equivalent to Key
procedure Delete (Container : in out Set; Key : Key_Type);
-- Deletes from Container any elements whose key is equivalent to
-- Key. If there are no such elements, then it raises Constraint_Error.
function Find (Container : Set; Key : Key_Type) return Cursor;
-- Returns a cursor designating the first element in Container whose key
-- is equivalent to Key. If there is no equivalent element, it returns
-- No_Element.
function Floor (Container : Set; Key : Key_Type) return Cursor;
-- If Container is empty, the function returns No_Element. If Item is
-- equivalent to the keys of elements in Container, it returns a cursor
-- designating the first such element. Otherwise, it returns a cursor
-- designating the largest element whose key is less than Item, or
-- No_Element if all keys are greater than Item.
function Ceiling (Container : Set; Key : Key_Type) return Cursor;
-- If Container is empty, the function returns No_Element. If Item is
-- equivalent to the keys of elements of Container, it returns a cursor
-- designating the last such element. Otherwise, it returns a cursor
-- designating the smallest element whose key is greater than Item, or
-- No_Element if all keys are less than Item.
function Contains (Container : Set; Key : Key_Type) return Boolean;
-- Equivalent to Find (Container, Key) /= No_Element
procedure Update_Element -- Update_Element_Preserving_Key ???
(Container : in out Set;
Position : Cursor;
Process : not null access
procedure (Element : in out Element_Type));
-- If Position equals No_Element, then Constraint_Error is raised. If
-- Position is associated with a set object different from Container,
-- then Program_Error is raised. Otherwise, it makes a copy of the key
-- of the element designated by Position, and then calls Process with
-- the element as the parameter. Update_Element then compares the key
-- value obtained before calling Process to the key value obtained from
-- the element after calling Process. If the keys are equivalent then
-- the operation terminates. If Container is busy (cursor tampering has
-- been attempted), then Program_Error is raised. Otherwise, the node
-- is moved to its new position (in canonical order).
procedure Iterate
(Container : Set;
Key : Key_Type;
Process : not null access procedure (Position : Cursor));
-- Call Process with a cursor designating each element equivalent to
-- Key, in order from Floor (Container, Key) to
-- Ceiling (Container, Key).
procedure Reverse_Iterate
(Container : Set;
Key : Key_Type;
Process : not null access procedure (Position : Cursor));
-- Call Process with a cursor designating each element equivalent to
-- Key, in order from Ceiling (Container, Key) to
-- Floor (Container, Key).
end Generic_Keys;
private
pragma Inline (Next);
pragma Inline (Previous);
type Node_Type;
type Node_Access is access Node_Type;
type Element_Access is access Element_Type;
type Node_Type is limited record
Parent : Node_Access;
Left : Node_Access;
Right : Node_Access;
Color : Red_Black_Trees.Color_Type := Red_Black_Trees.Red;
Element : Element_Access;
end record;
package Tree_Types is new Red_Black_Trees.Generic_Tree_Types
(Node_Type,
Node_Access);
type Set is new Ada.Finalization.Controlled with record
Tree : Tree_Types.Tree_Type;
end record;
overriding procedure Adjust (Container : in out Set);
overriding procedure Finalize (Container : in out Set) renames Clear;
use Red_Black_Trees;
use Tree_Types, Tree_Types.Implementation;
use Ada.Finalization;
use Ada.Streams;
type Set_Access is access all Set;
for Set_Access'Storage_Size use 0;
-- In all predefined libraries the following type is controlled, for proper
-- management of tampering checks. For performance reason we omit this
-- machinery for multisets, which are used in a number of our tools.
type Reference_Control_Type is record
Container : Set_Access;
end record;
type Constant_Reference_Type
(Element : not null access constant Element_Type) is record
Control : Reference_Control_Type :=
raise Program_Error with "uninitialized reference";
-- The RM says, "The default initialization of an object of
-- type Constant_Reference_Type or Reference_Type propagates
-- Program_Error."
end record;
type Cursor is record
Container : Set_Access;
Node : Node_Access;
end record;
procedure Write
(Stream : not null access Root_Stream_Type'Class;
Item : Cursor);
for Cursor'Write use Write;
procedure Read
(Stream : not null access Root_Stream_Type'Class;
Item : out Cursor);
for Cursor'Read use Read;
No_Element : constant Cursor := Cursor'(null, null);
procedure Write
(Stream : not null access Root_Stream_Type'Class;
Container : Set);
for Set'Write use Write;
procedure Read
(Stream : not null access Root_Stream_Type'Class;
Container : out Set);
for Set'Read use Read;
procedure Read
(Stream : not null access Root_Stream_Type'Class;
Item : out Constant_Reference_Type);
for Constant_Reference_Type'Read use Read;
procedure Write
(Stream : not null access Root_Stream_Type'Class;
Item : Constant_Reference_Type);
for Constant_Reference_Type'Write use Write;
Empty_Set : constant Set := (Controlled with others => <>);
type Iterator is new Limited_Controlled and
Set_Iterator_Interfaces.Reversible_Iterator with
record
Container : Set_Access;
Node : Node_Access;
end record
with Disable_Controlled => not T_Check;
overriding procedure Finalize (Object : in out Iterator);
overriding function First (Object : Iterator) return Cursor;
overriding function Last (Object : Iterator) return Cursor;
overriding function Next
(Object : Iterator;
Position : Cursor) return Cursor;
overriding function Previous
(Object : Iterator;
Position : Cursor) return Cursor;
end Ada.Containers.Indefinite_Ordered_Multisets;
|
pragma Ada_2012;
with Ada.Strings.Fixed;
with Ada.Strings.Maps;
package body EU_Projects.Times.Time_Expressions.Parsing is
------------------------
-- Fill_With_Defaults --
------------------------
procedure Fill_With_Defaults (Container : in out Symbol_Table)
is
begin
Define_Function (Container => Container,
Name => To_Id ("max"),
N_Params => At_Least (1));
Define_Function (Container => Container,
Name => To_Id ("min"),
N_Params => At_Least (1));
Define_Function (Container => Container,
Name => To_Id ("lt"),
N_Params => Exactly (2));
Define_Function (Container => Container,
Name => To_Id ("le"),
N_Params => Exactly (2));
Define_Function (Container => Container,
Name => To_Id ("gt"),
N_Params => Exactly (2));
Define_Function (Container => Container,
Name => To_Id ("ge"),
N_Params => Exactly (2));
Define_Function (Container => Container,
Name => To_Id ("eq"),
N_Params => Exactly (2));
Define_Function (Container => Container,
Name => To_Id ("ne"),
N_Params => Exactly (2));
Define_Function (Container => Container,
Name => To_Id ("if"),
N_Params => Exactly (3));
end Fill_With_Defaults;
---------------------
-- Define_Variable --
---------------------
procedure Define_Variable
(Container : in out Symbol_Table; Name : Simple_Identifier)
is
begin
Internal_Parsing.Define_Variable (Container => Container.T,
Name => Name);
end Define_Variable;
---------------------
-- Define_Function --
---------------------
procedure Define_Function
(Container : in out Symbol_Table; Name : Simple_Identifier;
N_Params : Parameter_Count)
is
begin
Internal_Parsing.Define_Function (Container => Container.T,
Name => Name,
N_Params => N_Params.C);
end Define_Function;
-----------------
-- Read_Scalar --
-----------------
procedure Read_Scalar (Input : in String;
Success : out Boolean;
Consumed : out Natural;
Result : out Scalar_Type)
is
procedure Get_tbd (X : String;
First : out Natural;
Last : out Natural;
Found : out Boolean)
is
use Ada.Strings.Fixed;
Index : constant Natural := Index_Non_Blank (X);
begin
if (Index + 2 <= X'Last)
and then To_Upper (X (Index .. Index + 2)) = "TBD"
then
First := Index;
Last := Index + 2;
Found := Standard.True;
else
First := 0;
Last := 0;
Found := False;
end if;
end Get_tbd;
-------------
-- Get_Int --
-------------
procedure Get_Int (X : String;
First : out Natural;
Last : out Natural;
Found : out Boolean)
is
use Ada.Strings.Fixed;
use Ada.Strings.Maps;
Index : constant Natural := Index_Non_Blank (X);
Int_Chars : constant Character_Set := To_Set (Character_Range'('0', '9'));
begin
-- Ada.Text_Io.Put_Line ("Called [" & X & "]");
if Index = 0 or else not Is_In (X (Index), Int_Chars) then
First := 0;
Last := 0;
Found := False;
return;
end if;
Found := Standard.True;
Find_Token (Source => X (Index .. X'Last),
Set => Int_Chars,
Test => Ada.Strings.Inside,
First => First,
Last => Last);
-- Last should not be zero since we checked that X(Index) is a digit
pragma Assert (Last /= 0);
end Get_Int;
First : Natural;
Last : Natural;
Found : Boolean;
begin
Get_Int (Input, First, Last, Found);
if Found then
Consumed := Last - Input'First + 1;
Success := Standard.True;
-- Without any specifier, the time is in months
Result := Scalar_Type (Scalar (Integer'Value (Input (First .. Last)) * 4));
return;
end if;
Get_Tbd (Input, First, Last, Found);
if Found then
Consumed := Last - Input'First + 1;
Success := Standard.True;
Result := TBD;
return;
end if;
Consumed := 0;
Success := False;
end Read_Scalar;
end EU_Projects.Times.Time_Expressions.Parsing;
|
with GL; use GL;
with GLU; use GLU;
with Glut; use Glut;
with GNAT.OS_Lib;
package body ada_sphere_procs is
procedure display is
begin
glClear(GL_COLOR_BUFFER_BIT or GL_DEPTH_BUFFER_BIT);
glutSolidSphere(1.0, 10, 10);
glutSwapBuffers;
end display;
procedure reshape(w : Integer; h : Integer) is
begin
glViewport(0, 0, GLsizei(w), GLsizei(h));
end reshape;
procedure menu (value : Integer) is
begin
if (value = 666) then
GNAT.OS_Lib.OS_Exit (0);
end if;
end menu;
procedure init is
light_diffuse : array(0 .. 3) of aliased GLfloat :=
(1.0, 0.0, 0.0, 1.0);
light_position : array(0 .. 3) of aliased GLfloat :=
(1.0, 1.0, 1.0, 0.0);
begin
glClearColor(0.1, 0.1, 0.1, 0.0);
glLightfv(GL_LIGHT0, GL_DIFFUSE, light_diffuse(0)'access);
glLightfv(GL_LIGHT0, GL_POSITION, light_position(0)'access);
glFrontFace(GL_CW);
glEnable(GL_LIGHTING);
glEnable(GL_LIGHT0);
glEnable(GL_DEPTH_TEST);
glDepthFunc(GL_LESS);
glMatrixMode(GL_PROJECTION);
gluPerspective(40.0, 1.0, 1.0, 10.0);
glMatrixMode(GL_MODELVIEW);
gluLookAt(
0.0, 0.0, -5.0,
0.0, 0.0, 0.0,
0.0, 1.0, 0.0);
end init;
end ada_sphere_procs;
|
-- 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 = "Shodan"
type = "api"
function start()
setratelimit(2)
end
function vertical(ctx, domain)
if (api == nil or api.key == "") then
return
end
local page, err = request({
url=buildurl(domain),
headers={['Content-Type']="application/json"},
})
if (err ~= nil and err ~= "") then
return
end
local resp = json.decode(page)
if (resp == nil or #(resp.subdomains) == 0) then
return
end
for i, sub in pairs(resp.subdomains) do
sendnames(ctx, sub .. "." .. domain)
end
end
function buildurl(domain)
return "https://api.shodan.io/dns/domain/" .. domain .. "?key=" .. api.key
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
|
-- SPDX-License-Identifier: Apache-2.0
--
-- Copyright (c) 2018 onox <denkpadje@gmail.com>
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
with Ada.Unchecked_Conversion;
package GL.Pixels.Extensions is
pragma Preelaborate;
subtype Floating_Point_Format is Format range Red .. RG;
subtype Integer_Format is Format range RG_Integer .. BGRA_Integer
with Static_Predicate => Integer_Format /= Depth_Stencil;
-----------------------------------------------------------------------------
subtype Non_Packed_Data_Type is Data_Type range Byte .. Half_Float;
subtype Packed_Data_Type is Data_Type
range Unsigned_Byte_3_3_2 .. Float_32_Unsigned_Int_24_8_Rev;
subtype Floating_Point_Data_Type is Data_Type
with Static_Predicate => Floating_Point_Data_Type in
Half_Float | Float | Unsigned_Int_10F_11F_11F_Rev | Unsigned_Int_5_9_9_9_Rev;
-----------------------------------------------------------------------------
type Format_Type is (Float_Or_Normalized_Type, Int_Type, Unsigned_Int_Type, Depth_Type);
function Texture_Format_Type (Format : Pixels.Internal_Format) return Format_Type is
(case Format is
-- Shadow samplers
when Depth_Component16 | Depth_Component24 | Depth_Component32F |
Depth24_Stencil8 | Depth32F_Stencil8 =>
Depth_Type,
-- Floating point or (un)signed normalized fixed-point
when R8 | R8_SNorm | R16 | R16_SNorm | R16F | R32F =>
Float_Or_Normalized_Type,
when RG8 | RG8_SNorm | RG16 | RG16_SNorm | RG16F | RG32F =>
Float_Or_Normalized_Type,
when R3_G3_B2 | RGB4 | RGB5 | RGB8 | RGB8_SNorm | RGB10 | RGB12 |
RGB16 | RGB16_SNorm | RGB16F | RGB32F | R11F_G11F_B10F | RGB9_E5 | SRGB8 =>
Float_Or_Normalized_Type,
when RGBA2 | RGBA4 | RGB5_A1 | RGBA8 | RGBA8_SNorm | RGB10_A2 | RGBA12 |
RGBA16 | RGBA16_SNorm | RGBA16F | RGBA32F | SRGB8_Alpha8 =>
Float_Or_Normalized_Type,
-- Integer samplers
when R8I | R16I | R32I =>
Int_Type,
when RG8I | RG16I | RG32I =>
Int_Type,
when RGB8I | RGB16I | RGB32I =>
Int_Type,
when RGBA8I | RGBA16I | RGBA32I =>
Int_Type,
-- Unsigned integer samplers
when R8UI | R16UI | R32UI =>
Unsigned_Int_Type,
when RG8UI | RG16UI | RG32UI =>
Unsigned_Int_Type,
when RGB8UI | RGB16UI | RGB32UI =>
Unsigned_Int_Type,
when RGBA8UI | RGBA16UI | RGBA32UI | RGB10_A2UI =>
Unsigned_Int_Type,
when others =>
raise Constraint_Error with "Invalid format " & Format'Image & " for sampler");
function Image_Format_Type (Format : Pixels.Internal_Format) return Format_Type is
(case Format is
-- Floating point or (un)signed normalized fixed-point
when R8_SNorm | R16_SNorm | RG8_SNorm | RG16_SNorm | RGBA8_SNorm | RGBA16_SNorm =>
Float_Or_Normalized_Type,
when R8 | R16 | RG8 | RG16 =>
Float_Or_Normalized_Type,
when RGBA8 | RGB10_A2 | RGBA16 =>
Float_Or_Normalized_Type,
when R16F | R32F | R11F_G11F_B10F | RG16F | RG32F | RGBA16F | RGBA32F =>
Float_Or_Normalized_Type,
-- Integer samplers
when R8I | R16I | R32I =>
Int_Type,
when RG8I | RG16I | RG32I =>
Int_Type,
when RGBA8I | RGBA16I | RGBA32I =>
Int_Type,
-- Unsigned integer samplers
when R8UI | R16UI | R32UI =>
Unsigned_Int_Type,
when RG8UI | RG16UI | RG32UI =>
Unsigned_Int_Type,
when RGBA8UI | RGBA16UI | RGBA32UI | RGB10_A2UI =>
Unsigned_Int_Type,
when others =>
raise Constraint_Error with "Invalid format " & Format'Image & " for image sampler");
function Texture_Format (Format : Pixels.Internal_Format) return Pixels.Format is
(case Format is
when Depth_Component16 | Depth_Component24 | Depth_Component32F =>
Depth_Component,
when Depth24_Stencil8 | Depth32F_Stencil8 =>
Depth_Stencil,
when Stencil_Index8 =>
Stencil_Index,
when R8 | R8_SNorm | R16 | R16_SNorm | R16F | R32F =>
Red,
when RG8 | RG8_SNorm | RG16 | RG16_SNorm | RG16F | RG32F =>
RG,
when R3_G3_B2 | RGB4 | RGB5 | RGB8 | RGB8_SNorm | RGB10 | RGB12 |
RGB16 | RGB16_SNorm | RGB16F | RGB32F | R11F_G11F_B10F | RGB9_E5 | SRGB8 =>
RGB,
when RGBA2 | RGBA4 | RGB5_A1 | RGBA8 | RGBA8_SNorm | RGB10_A2 | RGBA12 |
RGBA16 | RGBA16_SNorm | RGBA16F | RGBA32F | SRGB8_Alpha8 =>
RGBA,
when R8I | R8UI | R16I | R16UI | R32I | R32UI =>
Red_Integer,
when RG8I | RG8UI | RG16I | RG16UI | RG32I | RG32UI =>
RG_Integer,
when RGB8I | RGB8UI | RGB16I | RGB16UI | RGB32I | RGB32UI =>
RGB_Integer,
when RGBA8I | RGBA8UI | RGBA16I | RGBA16UI | RGBA32I | RGBA32UI | RGB10_A2UI =>
RGBA_Integer);
function Texture_Data_Type (Format : Pixels.Internal_Format) return Pixels.Data_Type is
(case Format is
when Depth_Component16 =>
Unsigned_Short,
when Depth_Component24 =>
Unsigned_Int,
when Depth24_Stencil8 =>
Unsigned_Int_24_8,
when Depth32F_Stencil8 =>
Float_32_Unsigned_Int_24_8_Rev,
when Depth_Component32F =>
Float,
when Stencil_Index8 =>
Unsigned_Byte,
-- Educated guesses, might be wrong
-- Based on Table 8.13 of the OpenGL specification
when R3_G3_B2 =>
Unsigned_Byte_2_3_3_Rev,
when RGB5_A1 =>
Unsigned_Short_1_5_5_5_Rev,
when RGB9_E5 =>
Unsigned_Int_5_9_9_9_Rev,
when R11F_G11F_B10F =>
Unsigned_Int_10F_11F_11F_Rev,
when RGB10_A2UI | RGB10_A2 =>
Unsigned_Int_2_10_10_10_Rev,
when R8I | RG8I | RGB8I | RGBA8I | R8_SNorm | RG8_SNorm | RGB8_SNorm | RGBA8_SNorm =>
Byte,
when R8UI | RG8UI | RGB8UI | RGBA8UI | R8 | RG8 | RGB8 | SRGB8 | RGBA8 | SRGB8_Alpha8 =>
Unsigned_Byte,
when R16I | RG16I | RGB16I | RGBA16I |
R16_SNorm | RG16_SNorm | RGB16_SNorm | RGBA16_SNorm =>
Short,
when R16UI | RG16UI | RGB16UI | RGBA16UI | R16 | RG16 | RGB16 | RGBA16 =>
Unsigned_Short,
when R32I | RG32I | RGB32I | RGBA32I =>
Int,
when R32UI | RG32UI | RGB32UI | RGBA32UI =>
Unsigned_Int,
when R32F | RG32F | RGB32F | RGBA32F =>
Float,
when R16F | RG16F | RGB16F | RGBA16F =>
Half_Float,
-- Based on Table 8.8 and 8.27 of the OpenGL specification
when RGB4 | RGB5 | RGB10 | RGB12 | RGBA2 | RGBA4 | RGBA12 =>
raise Constraint_Error);
-----------------------------------------------------------------------------
function Compatible
(Format : Pixels.Format;
Data_Type : Pixels.Data_Type) return Boolean
is (not (Format in Integer_Format and Data_Type in Floating_Point_Data_Type));
-- Floating point types are incompatible with integer formats according
-- to Table 8.2 of the OpenGL specification
function Components (Format : Pixels.Format) return Component_Count is
(case Format is
when Red | Green | Blue | Red_Integer | Green_Integer | Blue_Integer => 1,
when RG | RG_Integer => 2,
when RGB | BGR | RGB_Integer | BGR_Integer => 3,
when RGBA | BGRA | RGBA_Integer | BGRA_Integer => 4,
when others => raise Constraint_Error with "Unexpected format " & Format'Image);
function Bytes (Data_Type : Non_Packed_Data_Type) return Byte_Count is
(case Data_Type is
when Byte | Unsigned_Byte => 1,
when Short | Unsigned_Short | Half_Float => 2,
when Int | Unsigned_Int | Float => 4);
function Packed_Bytes (Data_Type : Packed_Data_Type) return Byte_Count is
(case Data_Type is
-- Unsigned_Byte formats (Table 8.6)
when Unsigned_Byte_3_3_2 => 1,
when Unsigned_Byte_2_3_3_Rev => 1,
-- Unsigned_Short formats (Table 8.7)
when Unsigned_Short_5_6_5 => 2,
when Unsigned_Short_5_6_5_Rev => 2,
when Unsigned_Short_4_4_4_4 => 2,
when Unsigned_Short_4_4_4_4_Rev => 2,
when Unsigned_Short_5_5_5_1 => 2,
when Unsigned_Short_1_5_5_5_Rev => 2,
-- Unsigned_Int formats (Table 8.8)
when Unsigned_Int_8_8_8_8 => 4,
when Unsigned_Int_8_8_8_8_Rev => 4,
when Unsigned_Int_10_10_10_2 => 4,
when Unsigned_Int_2_10_10_10_Rev => 4,
when Unsigned_Int_24_8 => 4,
when Unsigned_Int_10F_11F_11F_Rev => 4,
when Unsigned_Int_5_9_9_9_Rev => 4,
-- Float_Unsigned_Int formats (Table 8.9)
when Float_32_Unsigned_Int_24_8_Rev => raise Constraint_Error);
function Byte_Alignment (Value : Alignment) return Byte_Count;
-----------------------------------------------------------------------------
subtype Compressed_Byte_Count is Types.Int range 8 .. 16
with Static_Predicate => Compressed_Byte_Count in 8 | 16;
function Block_Bytes (Format : Pixels.Compressed_Format) return Compressed_Byte_Count is
(case Format is
-- RGTC
when Compressed_Red_RGTC1 => 8,
when Compressed_Signed_Red_RGTC1 => 8,
when Compressed_RG_RGTC2 => 16,
when Compressed_Signed_RG_RGTC2 => 16,
-- BPTC
when Compressed_RGBA_BPTC_Unorm => 16,
when Compressed_SRGB_Alpha_BPTC_UNorm => 16,
when Compressed_RGB_BPTC_Signed_Float => 16,
when Compressed_RGB_BPTC_Unsigned_Float => 16,
-- EAC / ETC
when Compressed_R11_EAC => 8,
when Compressed_Signed_R11_EAC => 8,
when Compressed_RG11_EAC => 16,
when Compressed_Signed_RG11_EAC => 16,
when Compressed_RGB8_ETC2 => 8,
when Compressed_SRGB8_ETC2 => 8,
when Compressed_RGB8_Punchthrough_Alpha1_ETC2 => 8,
when Compressed_SRGB8_Punchthrough_Alpha1_ETC2 => 8,
when Compressed_RGBA8_ETC2_EAC => 16,
when Compressed_SRGB8_Alpha8_ETC2_EAC => 16,
-- ASTC
when Compressed_RGBA_ASTC_4x4_KHR => 16,
when Compressed_RGBA_ASTC_5x4_KHR => 16,
when Compressed_RGBA_ASTC_5x5_KHR => 16,
when Compressed_RGBA_ASTC_6x5_KHR => 16,
when Compressed_RGBA_ASTC_6x6_KHR => 16,
when Compressed_RGBA_ASTC_8x5_KHR => 16,
when Compressed_RGBA_ASTC_8x6_KHR => 16,
when Compressed_RGBA_ASTC_8x8_KHR => 16,
when Compressed_RGBA_ASTC_10x5_KHR => 16,
when Compressed_RGBA_ASTC_10x6_KHR => 16,
when Compressed_RGBA_ASTC_10x8_KHR => 16,
when Compressed_RGBA_ASTC_10x10_KHR => 16,
when Compressed_RGBA_ASTC_12x10_KHR => 16,
when Compressed_RGBA_ASTC_12x12_KHR => 16,
when Compressed_SRGB8_ALPHA8_ASTC_4x4_KHR => 16,
when Compressed_SRGB8_ALPHA8_ASTC_5x4_KHR => 16,
when Compressed_SRGB8_ALPHA8_ASTC_5x5_KHR => 16,
when Compressed_SRGB8_ALPHA8_ASTC_6x5_KHR => 16,
when Compressed_SRGB8_ALPHA8_ASTC_6x6_KHR => 16,
when Compressed_SRGB8_ALPHA8_ASTC_8x5_KHR => 16,
when Compressed_SRGB8_ALPHA8_ASTC_8x6_KHR => 16,
when Compressed_SRGB8_ALPHA8_ASTC_8x8_KHR => 16,
when Compressed_SRGB8_ALPHA8_ASTC_10x5_KHR => 16,
when Compressed_SRGB8_ALPHA8_ASTC_10x6_KHR => 16,
when Compressed_SRGB8_ALPHA8_ASTC_10x8_KHR => 16,
when Compressed_SRGB8_ALPHA8_ASTC_10x10_KHR => 16,
when Compressed_SRGB8_ALPHA8_ASTC_12x10_KHR => 16,
when Compressed_SRGB8_ALPHA8_ASTC_12x12_KHR => 16);
-----------------------------------------------------------------------------
function Depth_Stencil_Format (Format : Internal_Format) return Boolean is
(Format in Depth24_Stencil8 | Depth32F_Stencil8);
function Depth_Format (Format : Internal_Format) return Boolean is
(Format in Depth_Component16 | Depth_Component24 | Depth_Component32F);
function Stencil_Format (Format : Internal_Format) return Boolean is
(Format in Stencil_Index8);
private
function Convert is new Ada.Unchecked_Conversion
(Source => Alignment, Target => Types.Int);
function Byte_Alignment (Value : Alignment) return Byte_Count is
(Convert (Value));
end GL.Pixels.Extensions;
|
-- Copyright 2017-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 body Pck is
procedure Do_Nothing (A : System.Address) is
begin
null;
end Do_Nothing;
end pck;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
-- --
-- S Y S T E M . T A S K I N G . I N I T I A L I Z A T I O N --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-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. --
-- --
------------------------------------------------------------------------------
-- This package provides overall initialization of the tasking portion of the
-- RTS. This package must be elaborated before any tasking features are used.
package System.Tasking.Initialization is
procedure Remove_From_All_Tasks_List (T : Task_Id);
-- Remove T from All_Tasks_List. Call this function with RTS_Lock taken
procedure Finalize_Attributes (T : Task_Id);
-- Finalize all attributes from T. This is to be called just before the
-- ATCB is deallocated. It relies on the caller holding T.L write-lock
-- on entry.
---------------------------------
-- Tasking-Specific Soft Links --
---------------------------------
-------------------------
-- Abort Defer/Undefer --
-------------------------
-- Defer_Abort defers the effects of low-level abort and priority change
-- in the calling task until a matching Undefer_Abort call is executed.
-- Undefer_Abort DOES MORE than just undo the effects of one call to
-- Defer_Abort. It is the universal "polling point" for deferred
-- processing, including the following:
-- 1) base priority changes
-- 2) abort/ATC
-- Abort deferral MAY be nested (Self_ID.Deferral_Level is a count), but
-- to avoid waste and undetected errors, it generally SHOULD NOT be
-- nested. The symptom of over-deferring abort is that an exception may
-- fail to be raised, or an abort may fail to take place.
-- Therefore, there are two sets of the inlineable defer/undefer routines,
-- which are the ones to be used inside GNARL. One set allows nesting. The
-- other does not. People who maintain the GNARL should try to avoid using
-- the nested versions, or at least look very critically at the places
-- where they are used.
-- In general, any GNARL call that is potentially blocking, or whose
-- semantics require that it sometimes raise an exception, or that is
-- required to be an abort completion point, must be made with abort
-- Deferral_Level = 1.
-- In general, non-blocking GNARL calls, which may be made from inside a
-- protected action, are likely to need to allow nested abort deferral.
-- With some critical exceptions (which are supposed to be documented),
-- internal calls to the tasking runtime system assume abort is already
-- deferred, and do not modify the deferral level.
-- There is also a set of non-inlineable defer/undefer routines, for direct
-- call from the compiler. These are not inlineable because they may need
-- to be called via pointers ("soft links"). For the sake of efficiency,
-- the version with Self_ID as parameter should used wherever possible.
-- These are all nestable.
-- Non-nestable inline versions
procedure Defer_Abort (Self_ID : Task_Id);
pragma Inline (Defer_Abort);
procedure Undefer_Abort (Self_ID : Task_Id);
pragma Inline (Undefer_Abort);
-- Nestable inline versions
procedure Defer_Abort_Nestable (Self_ID : Task_Id);
pragma Inline (Defer_Abort_Nestable);
procedure Undefer_Abort_Nestable (Self_ID : Task_Id);
pragma Inline (Undefer_Abort_Nestable);
procedure Do_Pending_Action (Self_ID : Task_Id);
-- Only call with no locks, and when Self_ID.Pending_Action = True Perform
-- necessary pending actions (e.g. abort, priority change). This procedure
-- is usually called when needed as a result of calling Undefer_Abort,
-- although in the case of e.g. No_Abort restriction, it can be necessary
-- to force execution of pending actions.
function Check_Abort_Status return Integer;
-- Returns Boolean'Pos (True) iff abort signal should raise
-- Standard'Abort_Signal. Only used by IRIX currently.
--------------------------
-- Change Base Priority --
--------------------------
procedure Change_Base_Priority (T : Task_Id);
-- Change the base priority of T. Has to be called with the affected
-- task's ATCB write-locked. May temporarily release the lock.
----------------------
-- Task Lock/Unlock --
----------------------
procedure Task_Lock (Self_ID : Task_Id);
pragma Inline (Task_Lock);
procedure Task_Unlock (Self_ID : Task_Id);
pragma Inline (Task_Unlock);
-- These are versions of Lock_Task and Unlock_Task created for use
-- within the GNARL.
procedure Final_Task_Unlock (Self_ID : Task_Id);
-- This version is only for use in Terminate_Task, when the task is
-- relinquishing further rights to its own ATCB. There is a very
-- interesting potential race condition there, where the old task may run
-- concurrently with a new task that is allocated the old tasks (now
-- reused) ATCB. The critical thing here is to not make any reference to
-- the ATCB after the lock is released. See also comments on
-- Terminate_Task and Unlock.
procedure Wakeup_Entry_Caller
(Self_ID : Task_Id;
Entry_Call : Entry_Call_Link;
New_State : Entry_Call_State);
pragma Inline (Wakeup_Entry_Caller);
-- This is called at the end of service of an entry call, to abort the
-- caller if he is in an abortable part, and to wake up the caller if he
-- is on Entry_Caller_Sleep. Call it holding the lock of Entry_Call.Self.
--
-- Timed_Call or Simple_Call:
-- The caller is waiting on Entry_Caller_Sleep, in Wait_For_Completion,
-- or Wait_For_Completion_With_Timeout.
--
-- Conditional_Call:
-- The caller might be in Wait_For_Completion,
-- waiting for a rendezvous (possibly requeued without abort) to
-- complete.
--
-- Asynchronous_Call:
-- The caller may be executing in the abortable part an async. select,
-- or on a time delay, if Entry_Call.State >= Was_Abortable.
procedure Locked_Abort_To_Level
(Self_ID : Task_Id;
T : Task_Id;
L : ATC_Level_Base);
pragma Inline (Locked_Abort_To_Level);
-- Abort a task to a specified ATC level. Call this only with T locked
end System.Tasking.Initialization;
|
-- C52103A.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 LENGTHS MUST MATCH IN ARRAY AND SLICE ASSIGNMENTS.
-- MORE SPECIFICALLY, TEST THAT ARRAY ASSIGNMENTS WITH MATCHING
-- LENGTHS DO NOT CAUSE CONSTRAINT_ERROR TO BE RAISED AND
-- ARE PERFORMED CORRECTLY.
-- (OVERLAPS BETWEEN THE OPERANDS OF THE ASSIGNMENT STATEMENT
-- ARE TREATED ELSEWHERE.)
-- DIVISION A : STATICALLY-DETERMINABLE NON-NULL LENGTHS.
-- RM 07/20/81
-- SPS 2/18/83
WITH REPORT;
PROCEDURE C52103A IS
USE REPORT ;
BEGIN
TEST( "C52103A" , "CHECK THAT IN ARRAY ASSIGNMENTS AND IN SLICE" &
" ASSIGNMENTS THE LENGTHS MUST MATCH" );
-- IN THIS TEST WE CAN'T USE AGGREGATE ASSIGNMENT (EXCEPT WHEN
-- THE AGGREGATES ARE STRING LITERALS); THEREFORE:
--
-- (1) ARRAYS WILL BE INITIALIZED BY INDIVIDUAL ASSIGNMENTS;
-- (2) CAN'T USE NON-NULL CONSTANT ARRAYS.
-- WE ASSUME THAT IN AN ARRAY_TYPE_DEFINITION THE INDEX PORTION
-- AND THE COMPONENT_TYPE PORTION ARE FUNCTIONALLY ORTHOGONAL
-- ALSO AT THE IMPLEMENTATION LEVEL, I.E. THAT THE CORRECTNESS
-- OF THE ACCESSING MECHANISM FOR ARRAYS DOES NOT DEPEND ON
-- COMPONENT_TYPE. ACCORDINGLY WE ARE TESTING FOR SOME BUT
-- NOT ALL KINDS OF COMPONENT_TYPE. (COMPONENT_TYPES INCLUDED:
-- INTEGER , CHARACTER , BOOLEAN .)
-- CASES DISTINGUISHED: ( 8 SELECTED CASES ARE IMPLEMENTED)
--
-- ( THE SELECTIONS ARE 7 , 8 , 9 ,
-- AND PRECISELY 5 CASES FROM THE
-- TWO 5-CASE SERIES 2-3-4-5-6 AND
-- 10-11-12-13-14)
--
-- ( IN THE CURRENT DIVISION, THE 5
-- FLOATING SELECTIONS ARE 2-11-4-
-- -13-6 ; THUS THE 8 SELECTIONS ARE
-- 2-11-4-13-6-7-8-9 (IN THIS ORDER)
-- .)
--
--
-- ( EACH DIVISION COMPRISES 3 FILES,
-- COVERING RESPECTIVELY THE FIRST
-- 3 , NEXT 2 , AND LAST 3 OF THE 8
-- SELECTIONS FOR THE DIVISION.)
--
--
-- (1) ARRAY OBJECTS DECLARED IN THE SAME DECLARATION.
-- (TWO-DIMENSIONAL; NON-CONSTRAINABLE TYPEMARK.)
--
-- (THIS WILL BE THE ONLY CASE INVOLVING OBJECTS DECLARED
-- IN THE SAME DECLARATION.)
--
--
-- (2) MULTIDIMENSIONAL ARRAY OBJECTS WHOSE TYPEMARKS WERE
-- DEFINED WITHOUT EVER USING THE "BOX" COMPOUND SYMBOL.
-- (TWO-DIMENSIONAL ARRAYS OF INTEGERS.)
--
-- (SLICING IS ILLEGAL; SINCE IN THIS TEST WE ARE NEVER
-- USING AGGREGATES
-- (EXCEPT FOR ONE-DIMENSIONAL ARRAYS OF CHARACTERS;
-- SEE (5) )
-- AND WE ARE NOT USING CONVERSION-TO-CONSTRAINED-TYPEMARKS
-- (AS IN T1(ARR) , WHERE ARR IS AN ARRAY
-- OBJECT AND T1 IS AN ARRAY TYPEMARK SIMILAR
-- -- AS MORE PRECISELY SPECIFIED IN RM 4.6(B) --
-- TO THE TYPEMARK OF ARR ),
-- THE ARRAY ASSIGNMENT CANNOT INVOLVE ANY SLIDING,
-- AND THE TYPEMARKS ARE ESSENTIALLY THE SAME.)
--
--
-- (3) UNSLICED ONE-DIMENSIONAL ARRAY OBJECTS WHOSE TYPEMARKS
-- WERE DEFINED WITHOUT EVER USING THE "BOX" SYMBOL
-- AND FOR WHICH THE COMPONENT TYPE IS NOT 'CHARACTER' .
-- ((ONE-DIMENSIONAL) ARRAYS OF INTEGERS.)
--
-- (SINCE WE ARE NOT USING AGGREGATES
-- AND WE ARE NOT USING CONVERSION-TO-CONSTRAINED-TYPEMARKS,
-- THE ARRAY ASSIGNMENT CANNOT INVOLVE ANY SLIDING,
-- AND THE TYPEMARKS ARE ESSENTIALLY THE SAME.)
--
--
-- (4) SLICED ONE-DIMENSIONAL ARRAY OBJECTS WHOSE TYPEMARKS
-- WERE DEFINED WITHOUT EVER USING THE "BOX" SYMBOL
-- AND FOR WHICH THE COMPONENT TYPE IS NOT 'CHARACTER' .
-- ((ONE-DIMENSIONAL) ARRAYS OF INTEGERS.)
--
-- (THE ASSIGNMENT MAY REQUIRE SLIDING.)
--
-- (MOST SUBSEQUENT SUBCASES IN THIS TEST (OTHER THAN NULL
-- ASSIGNMENTS) WILL INVOLVE SLIDING; WE ASSUME THAT
-- SUBCASES WHICH WORK IN CONJUNCTION WITH SLIDING WORK
-- ALSO WHEN NO SLIDING IS INVOLVED.)
--
--
-- (5) UNSLICED ONE-DIMENSIONAL ARRAY OBJECTS WHOSE TYPEMARKS
-- WERE DEFINED WITHOUT EVER USING THE "BOX" SYMBOL
-- AND FOR WHICH THE COMPONENT TYPE IS 'CHARACTER' .
--
-- (STRING LITERALS ARE THE ONLY AGGREGATES WE ARE USING
-- IN THIS TEST. TO FORCE SLIDING, THE LOWER LIMIT IMPLIED
-- BY THE TYPEMARK WILL NOT BE 1 .)
--
--
-- (6) SLICED ONE-DIMENSIONAL ARRAY OBJECTS WHOSE TYPEMARKS
-- WERE DEFINED WITHOUT EVER USING THE "BOX" SYMBOL
-- AND FOR WHICH THE COMPONENT TYPE IS 'CHARACTER' .
--
--
-- (7) UNSLICED OBJECTS OF THE PREDEFINED TYPE 'STRING' (BY
-- THEMSELVES).
--
--
-- (8) SLICED OBJECTS OF THE PREDEFINED TYPE 'STRING' , WITH
-- STRING LITERALS.
--
--
-- (9) SLICED OBJECTS OF THE PREDEFINED TYPE 'STRING' (BY
-- THEMSELVES).
--
--
-- (-) CONSTRAINABLE TYPES: ONLY SUBTESTS 2, 3, 4, 5, 6
-- WILL BE REPLICATED -- AS SUBTESTS 10, 11, 12, 13, 14 .
--
--
-- (10) MULTIDIMENSIONAL ARRAY OBJECTS WHOSE TYPEMARKS WERE
-- DEFINED USING THE "BOX" COMPOUND SYMBOL.
-- (TWO-DIMENSIONAL ARRAYS OF INTEGERS.)
--
--
-- (11) UNSLICED ONE-DIMENSIONAL ARRAY OBJECTS WHOSE TYPEMARKS
-- WERE DEFINED USING THE "BOX" SYMBOL
-- AND FOR WHICH THE COMPONENT TYPE IS NOT 'CHARACTER' .
-- ((ONE-DIMENSIONAL) ARRAYS OF INTEGERS.)
--
--
-- (12) SLICED ONE-DIMENSIONAL ARRAY OBJECTS WHOSE TYPEMARKS
-- WERE DEFINED USING THE "BOX" SYMBOL
-- AND FOR WHICH THE COMPONENT TYPE IS NOT 'CHARACTER' .
-- ((ONE-DIMENSIONAL) ARRAYS OF BOOLEANS.)
--
--
-- (13) UNSLICED ONE-DIMENSIONAL ARRAY OBJECTS WHOSE TYPEMARKS
-- WERE DEFINED USING THE "BOX" SYMBOL
-- AND FOR WHICH THE COMPONENT TYPE IS 'CHARACTER' .
--
-- (STRING LITERALS ARE THE ONLY AGGREGATES WE ARE USING
-- IN THIS TEST. TO FORCE SLIDING, THE LOWER LIMIT IMPLIED
-- BY THE TYPEMARK WILL NOT BE 1 .)
--
--
-- (14) SLICED ONE-DIMENSIONAL ARRAY OBJECTS WHOSE TYPEMARKS
-- WERE DEFINED USING THE "BOX" SYMBOL
-- AND FOR WHICH THE COMPONENT TYPE IS 'CHARACTER' .
--
--
--
-- (-) SPECIAL CASES: NULL ARRAYS....... TREATED IN DIVISION B.
-- SUPERLONG ARRAYS.. (TREATED FOR DYNAMIC
-- ARRAYS ONLY,
-- DIVISIONS C AND D .)
--
--
-- (-) THE DYNAMIC-ARRAY COUNTERPARTS OF THESE TESTS ARE IN DI-
-- VISIONS C (FOR NON-NULL ARRAYS) AND D (FOR NULL ARRAYS).
--
--
-------------------------------------------------------------------
-- (2) MULTIDIMENSIONAL ARRAY OBJECTS WHOSE TYPEMARKS WERE
-- DEFINED WITHOUT EVER USING THE "BOX" COMPOUND SYMBOL.
-- (TWO-DIMENSIONAL ARRAYS OF INTEGERS.)
DECLARE
TYPE TA21 IS ARRAY( INTEGER RANGE 1..5 , INTEGER RANGE 0..7
) OF INTEGER ;
SUBTYPE TA22 IS TA21 ;
ARR21 : TA21 ;
ARR22 : TA22 ;
BEGIN
-- INITIALIZATION OF RHS ARRAY:
FOR I IN 1..5 LOOP
FOR J IN 0..7 LOOP
ARR21( I , J ) := I * I * J ;
END LOOP;
END LOOP;
-- ARRAY ASSIGNMENT:
ARR22 := ARR21 ;
-- CHECKING THE VALUES AFTER THE ARRAY ASSIGNMENT:
FOR I IN 1..5 LOOP
FOR J IN 0..7 LOOP
IF ARR22( I , J ) /= ( I-0 ) * ( I-0 ) * ( J-0 )
THEN
FAILED( "ARRAY ASSIGNMENT NOT CORRECT" );
END IF;
END LOOP;
END LOOP;
EXCEPTION
WHEN OTHERS =>
FAILED( "EXCEPTION RAISED - SUBTEST 2" );
END ;
-------------------------------------------------------------------
-- (11) UNSLICED ONE-DIMENSIONAL ARRAY OBJECTS WHOSE TYPEMARKS
-- WERE DEFINED USING THE "BOX" SYMBOL
-- AND FOR WHICH THE COMPONENT TYPE IS NOT 'CHARACTER' .
-- ((ONE-DIMENSIONAL) ARRAYS OF INTEGERS.)
DECLARE
TYPE TABOX1 IS ARRAY( INTEGER RANGE <> ) OF INTEGER ;
SUBTYPE TABOX11 IS TABOX1( 1..5 ) ;
ARRX11 : TABOX11 ;
ARRX12 : TABOX1( 5..9 );
BEGIN
-- INITIALIZATION OF RHS ARRAY:
FOR I IN 1..5 LOOP
ARRX11( I ) := I * I ;
END LOOP;
-- ARRAY ASSIGNMENT:
ARRX12 := ARRX11 ;
-- CHECKING THE VALUES AFTER THE ARRAY ASSIGNMENT:
FOR I IN 5..9 LOOP
IF ARRX12( I ) /= ( I-4 ) * ( I-4 )
THEN
FAILED( "ARRAY ASSIGNMENT NOT CORRECT (11)" );
END IF;
END LOOP;
EXCEPTION
WHEN OTHERS =>
FAILED( "EXCEPTION RAISED - SUBTEST 11" );
END ;
-------------------------------------------------------------------
-- (4) SLICED ONE-DIMENSIONAL ARRAY OBJECTS WHOSE TYPEMARKS
-- WERE DEFINED WITHOUT EVER USING THE "BOX" SYMBOL
-- AND FOR WHICH THE COMPONENT TYPE IS NOT 'CHARACTER' .
-- ((ONE-DIMENSIONAL) ARRAYS OF BOOLEANS.)
DECLARE
TYPE TA42 IS ARRAY( INTEGER RANGE 1..5 ) OF BOOLEAN ;
SUBTYPE TA41 IS TA42 ;
ARR41 : TA41 ;
ARR42 : TA42 ;
BEGIN
-- INITIALIZATION OF RHS ARRAY:
FOR I IN 1..5 LOOP
ARR41( I ) := FALSE ; -- VALUES WILL BE: F T F F T
END LOOP;
ARR41(2) := TRUE ;
ARR41(5) := TRUE ; -- RHS VALUES ARE: F T F F T
-- INITIALIZATION OF UNUSED COMPONENT OF LHS ARRAY:
ARR42( 1 ) := TRUE ;
-- SLICE ASSIGNMENT:
ARR42(2..5) := ARR41(1..4) ;
-- CHECKING THE VALUES AFTER THE SLICE ASSIGNMENT:
FOR I IN 2..5 LOOP
IF ARR42( I ) /= FALSE AND I /= 3
THEN
FAILED( "SLICE ASSIGNMENT NOT CORRECT (VALUES)" );
ELSIF ARR42( I ) /= TRUE AND I = 3
THEN
FAILED( "SLICE ASSIGNMENT NOT CORRECT (VALUES)" );
END IF;
END LOOP;
IF ARR42( 1 ) /= TRUE
THEN
FAILED( "SLICE ASSIGNMENT NOT CORRECT (SLIDING)" );
END IF;
EXCEPTION
WHEN OTHERS =>
FAILED( "EXCEPTION RAISED - SUBTEST 4" );
END ;
-------------------------------------------------------------------
RESULT ;
END C52103A;
|
with Libadalang.Analysis; use Libadalang.Analysis;
with Libadalang.Common; use Libadalang.Common;
with Rejuvenation.Match_Patterns; use Rejuvenation.Match_Patterns;
with Rejuvenation.Patterns; use Rejuvenation.Patterns;
with Placeholder_Relations; use Placeholder_Relations;
with Rewriters_Minimal_Parentheses; use Rewriters_Minimal_Parentheses;
with Rewriters_Find_And_Replace; use Rewriters_Find_And_Replace;
with Rewriters_Sequence; use Rewriters_Sequence;
-- Our experience so far is that you don't want to apply
-- any patch without reviewing.
-- Some rewrite opportunities are caused by
-- programmer errors, such as copy, paste, not modified errors.
-- By making the change, one loses the ability to spot the
-- real error, and make the necessary, correct change.
-- TODO: make smart rewrite - e.g. only RMP once
-- So rewriters is minimal required / rewriters can be removed
-- if they will be called anyway!
package Predefined_Rewriters is
----------------------------------------------------------------------------
-- Expressions
----------------------------------------------------------------------------
RMP : aliased constant Rewriter_Minimal_Parentheses;
Rewriter_Definition_Equal : aliased constant Rewriter_Find_And_Replace;
Rewriter_Definition_Different : aliased constant Rewriter_Find_And_Replace;
Rewriter_Definition_Minus : aliased constant Rewriter_Find_And_Replace;
Rewriter_Definition_Divide : aliased constant Rewriter_Find_And_Replace;
Rewriter_Definition_Modulo : aliased constant Rewriter_Find_And_Replace;
Rewriter_Definition_Remainder : aliased constant Rewriter_Find_And_Replace;
Rewriter_Idempotence_And : aliased constant Rewriter_Find_And_Replace;
Rewriter_Idempotence_Or : aliased constant Rewriter_Find_And_Replace;
Rewriter_Complementation_And : aliased constant Rewriter_Find_And_Replace;
Rewriter_Complementation_Or : aliased constant Rewriter_Find_And_Replace;
Rewriter_Not_Not : aliased constant Rewriter_Find_And_Replace;
Rewriter_Not_Equal : aliased constant Rewriter_Find_And_Replace;
Rewriter_Not_Different : aliased constant Rewriter_Find_And_Replace;
Rewriter_Not_Greater_Than : aliased constant Rewriter_Find_And_Replace;
Rewriter_Not_Greater_Equal : aliased constant Rewriter_Find_And_Replace;
Rewriter_Not_Less_Than : aliased constant Rewriter_Find_And_Replace;
Rewriter_Not_Less_Equal : aliased constant Rewriter_Find_And_Replace;
Rewriter_Not_In : aliased constant Rewriter_Find_And_Replace;
Rewriter_Not_Not_In : aliased constant Rewriter_Find_And_Replace;
Rewriter_And_Then : aliased constant Rewriter_Find_And_Replace;
Rewriter_Or_Else : aliased constant Rewriter_Find_And_Replace;
Rewriter_Equal_True : aliased constant Rewriter_Find_And_Replace;
Rewriter_Equal_False : aliased constant Rewriter_Find_And_Replace;
Rewriter_Different_True : aliased constant Rewriter_Find_And_Replace;
Rewriter_Different_False : aliased constant Rewriter_Find_And_Replace;
Rewrite_De_Morgan_Not_And : aliased constant Rewriter_Find_And_Replace;
Rewrite_De_Morgan_Not_Or : aliased constant Rewriter_Find_And_Replace;
Rewrite_De_Morgan_Not_All_Range :
aliased constant Rewriter_Find_And_Replace;
Rewrite_De_Morgan_Not_All_Elements :
aliased constant Rewriter_Find_And_Replace;
Rewrite_De_Morgan_Not_Some_Range :
aliased constant Rewriter_Find_And_Replace;
Rewrite_De_Morgan_Not_Some_Elements :
aliased constant Rewriter_Find_And_Replace;
Rewriter_If_True_Expression :
aliased constant Rewriter_Find_And_Replace;
Rewriter_If_False_Expression :
aliased constant Rewriter_Find_And_Replace;
Rewriter_If_Identical_Expression :
aliased constant Rewriter_Find_And_Replace;
Rewriter_If_Different_Expression :
aliased constant Rewriter_Find_And_Replace;
Rewriter_If_Not_Condition_Expression :
aliased constant Rewriter_Find_And_Replace;
Rewriter_If_Not_In_Expression :
aliased constant Rewriter_Find_And_Replace;
Rewriter_Boolean_If_Condition_Expression :
aliased constant Rewriter_Find_And_Replace;
Rewriter_Boolean_If_Not_Condition_Expression :
aliased constant Rewriter_Find_And_Replace;
Rewriter_Integer_Max_Greater_Than :
aliased constant Rewriter_Find_And_Replace;
Rewriter_Integer_Max_Greater_Equal :
aliased constant Rewriter_Find_And_Replace;
Rewriter_Integer_Max_Less_Than : aliased constant Rewriter_Find_And_Replace;
Rewriter_Integer_Max_Less_Equal :
aliased constant Rewriter_Find_And_Replace;
Rewriter_Integer_Min_Greater_Than :
aliased constant Rewriter_Find_And_Replace;
Rewriter_Integer_Min_Greater_Equal :
aliased constant Rewriter_Find_And_Replace;
Rewriter_Integer_Min_Less_Than :
aliased constant Rewriter_Find_And_Replace;
Rewriter_Integer_Min_Less_Equal :
aliased constant Rewriter_Find_And_Replace;
Rewriter_Concat_Before_If_Expression :
aliased constant Rewriter_Find_And_Replace;
Rewriter_Concat_After_If_Expression :
aliased constant Rewriter_Find_And_Replace;
Rewriter_Plus_Before_If_Expression :
aliased constant Rewriter_Find_And_Replace;
Rewriter_Plus_After_If_Expression :
aliased constant Rewriter_Find_And_Replace;
Rewriter_Case_Expression_Binary_With_Others :
aliased constant Rewriter_Find_And_Replace;
Rewriter_Double : aliased constant Rewriter_Find_And_Replace;
Rewriter_Equals_To_In_Range : aliased constant Rewriter_Find_And_Replace;
Rewriter_Combine_In_Range_And_Equal :
aliased constant Rewriter_Find_And_Replace;
Rewriter_Combine_In_Ranges : aliased constant Rewriter_Find_And_Replace;
Rewriter_Differents_To_Not_In_Range :
aliased constant Rewriter_Find_And_Replace;
Rewriter_Combine_Not_In_Range_And_Different :
aliased constant Rewriter_Find_And_Replace;
Rewriter_Combine_Not_In_Ranges : aliased constant Rewriter_Find_And_Replace;
----------------------------------------------------------------------------
-- Statements
----------------------------------------------------------------------------
Rewriter_Unnecessary_Null_Stmt : aliased constant Rewriter_Find_And_Replace;
Rewriter_If_True_Stmt : aliased constant Rewriter_Find_And_Replace;
Rewriter_If_False_Stmt : aliased constant Rewriter_Find_And_Replace;
Rewriter_If_Different_Stmt : aliased constant Rewriter_Find_And_Replace;
Rewriter_If_Not_Condition_Stmt : aliased constant Rewriter_Find_And_Replace;
Rewriter_If_Not_In_Stmt : aliased constant Rewriter_Find_And_Replace;
Rewriter_Use_Elsif : aliased constant Rewriter_Find_And_Replace;
Rewriter_Null_Then_Branch : aliased constant Rewriter_Find_And_Replace;
Rewriter_Null_Else_Branch : aliased constant Rewriter_Find_And_Replace;
Rewriter_If_Identical_Branches_Stmt :
aliased constant Rewriter_Find_And_Replace;
Rewriter_If_Identical_Tails_Stmt :
aliased constant Rewriter_Find_And_Replace;
Rewriter_If_Argument_Stmt : aliased constant Rewriter_Find_And_Replace;
Rewriter_If_Assignment_Stmt : aliased constant Rewriter_Find_And_Replace;
Rewriter_If_Return_Stmt : aliased constant Rewriter_Find_And_Replace;
Rewriter_If_Return_Stmts : aliased constant Rewriter_Find_And_Replace;
Rewriter_Case_Single : aliased constant Rewriter_Find_And_Replace;
Rewriter_Case_Binary_With_Others :
aliased constant Rewriter_Find_And_Replace;
Rewriter_Case_Identical_Branches :
aliased constant Rewriter_Find_And_Replace;
Rewriter_Return_Expression : aliased constant Rewriter_Find_And_Replace;
Rewriter_Declare_And_Overwrite : aliased constant Rewriter_Find_And_Replace;
Rewriter_For_All_Range_And_Then :
aliased constant Rewriter_Find_And_Replace;
Rewriter_For_All_Elements_And_Then :
aliased constant Rewriter_Find_And_Replace;
Rewriter_For_Some_Range_Or_Else :
aliased constant Rewriter_Find_And_Replace;
Rewriter_For_Some_Elements_Or_Else :
aliased constant Rewriter_Find_And_Replace;
Rewriter_For_All_Range_Exit : aliased constant Rewriter_Find_And_Replace;
Rewriter_For_All_Elements_Exit : aliased constant Rewriter_Find_And_Replace;
Rewriter_For_Some_Range_Exit : aliased constant Rewriter_Find_And_Replace;
Rewriter_For_Some_Elements_Exit :
aliased constant Rewriter_Find_And_Replace;
Rewriter_For_All_Range_Return : aliased constant Rewriter_Find_And_Replace;
Rewriter_For_All_Elements_Return :
aliased constant Rewriter_Find_And_Replace;
Rewriter_For_Some_Range_Return : aliased constant Rewriter_Find_And_Replace;
Rewriter_For_Some_Elements_Return :
aliased constant Rewriter_Find_And_Replace;
Rewriter_For_All_Range_All : aliased constant Rewriter_Find_And_Replace;
Rewriter_For_All_Elements_All : aliased constant Rewriter_Find_And_Replace;
Rewriter_For_Some_Range_All : aliased constant Rewriter_Find_And_Replace;
Rewriter_For_Some_Elements_All : aliased constant Rewriter_Find_And_Replace;
Rewriter_Append : aliased constant Rewriter_Find_And_Replace;
Rewriter_Append_To_Unbounded_String :
aliased constant Rewriter_Find_And_Replace;
----------------------------------------------------------------------------
-- Declarations
----------------------------------------------------------------------------
Rewriter_Declarations_Combine : aliased constant Rewriter_Find_And_Replace;
Rewriter_For_Attribute_Use : aliased constant Rewriter_Find_And_Replace;
Rewriter_For_Attribute_Use_Aliased :
aliased constant Rewriter_Find_And_Replace;
Rewriter_For_Attribute_Use_Array :
aliased constant Rewriter_Find_And_Replace;
Rewriter_For_Attribute_Use_Pragma_Var :
aliased constant Rewriter_Find_And_Replace;
Rewriter_For_Attribute_Use_Pragma_All :
aliased constant Rewriter_Find_And_Replace;
private
function Is_Boolean_Expression
(Match : Match_Pattern; Placeholder_Name : String) return Boolean;
function Is_Integer_Expression
(Match : Match_Pattern; Placeholder_Name : String) return Boolean;
function Is_Float_Expression
(Match : Match_Pattern; Placeholder_Name : String) return Boolean;
function Is_String_Expression
(Match : Match_Pattern; Placeholder_Name : String) return Boolean;
function Is_Unbounded_String
(Match : Match_Pattern; Placeholder_Name : String) return Boolean;
function Is_Referenced_Decl_Defined_In_AStrUnb
(N : Name)
return Boolean;
function Accept_Boolean (Match : Match_Pattern) return Boolean is
(Is_Boolean_Expression (Match, "$S_Expr"));
function Accept_Unbounded_String (Match : Match_Pattern) return Boolean is
(Is_Unbounded_String (Match, "$S_Var"));
function Accept_No_Side_Effects (Match : Match_Pattern) return Boolean is
(not Has_Side_Effect (Match, "$S_Expr"));
function Accept_Multiple_No_Side_Effects
(Match : Match_Pattern) return Boolean is
(not Has_Side_Effect (Match, "$M_Expr"));
function Accept_Boolean_No_Side_Effects
(Match : Match_Pattern) return Boolean is
(Is_Boolean_Expression (Match, "$S_Expr")
and then not Has_Side_Effect (Match, "$S_Expr"));
function Accept_Integer_No_Side_Effects
(Match : Match_Pattern) return Boolean is
(Is_Integer_Expression (Match, "$S_Expr")
and then not Has_Side_Effect (Match, "$S_Expr"));
RMP : aliased constant Rewriter_Minimal_Parentheses :=
Make_Rewriter_Minimal_Parentheses;
Rewriter_Definition_Equal : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("$S_Expr = $S_Expr", Expr_Rule),
Make_Pattern ("true", Expr_Rule), Accept_No_Side_Effects'Access);
Rewriter_Definition_Different :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("$S_Expr /= $S_Expr", Expr_Rule),
Make_Pattern ("false", Expr_Rule), Accept_No_Side_Effects'Access);
Rewriter_Definition_Minus : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("$S_Expr - $S_Expr", Expr_Rule),
Make_Pattern ("0", Expr_Rule), Accept_Integer_No_Side_Effects'Access);
-- TODO can it be correct for integers & float at the same time?
Rewriter_Definition_Divide : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("$S_Expr / $S_Expr", Expr_Rule),
Make_Pattern ("1", Expr_Rule), Accept_Integer_No_Side_Effects'Access);
-- TODO can it be correct for integers & float at the same time?
Rewriter_Definition_Modulo : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("$S_Expr mod $S_Expr", Expr_Rule),
Make_Pattern ("0", Expr_Rule), Accept_No_Side_Effects'Access);
-- mod only defined for integers
Rewriter_Definition_Remainder :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("$S_Expr rem $S_Expr", Expr_Rule),
Make_Pattern ("0", Expr_Rule), Accept_No_Side_Effects'Access);
-- rem only defined for integers
Rewriter_Idempotence_And : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("$S_Expr and then $S_Expr", Expr_Rule),
Make_Pattern ("$S_Expr", Expr_Rule), Accept_No_Side_Effects'Access);
Rewriter_Idempotence_Or : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("$S_Expr or else $S_Expr", Expr_Rule),
Make_Pattern ("$S_Expr", Expr_Rule), Accept_No_Side_Effects'Access);
Rewriter_Complementation_And : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("$S_Expr and then not $S_Expr", Expr_Rule),
Make_Pattern ("false", Expr_Rule), Accept_No_Side_Effects'Access);
-- TODO include variants with
-- * swapped order of A and not A
-- * parenthesis around not argument
-- (only needed when additional parenthesis
-- are allowed, e.g. for readability)
Rewriter_Complementation_Or : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("$S_Expr or else not $S_Expr", Expr_Rule),
Make_Pattern ("true", Expr_Rule), Accept_No_Side_Effects'Access);
-- TODO include variants with
-- * swapped order of A and not A
-- * parenthesis around not argument
-- (only needed when additional parenthesis
-- are allowed, e.g. for readability)
Rewriter_Not_Not : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("not (not $S_Cond)", Expr_Rule),
Make_Pattern ("$S_Cond", Expr_Rule));
-- also known as "Double negation"
Rewriter_Not_Equal : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("not ($S_Left = $S_Right)", Expr_Rule),
Make_Pattern ("($S_Left /= $S_Right)", Expr_Rule),
Rewriters => To_Vector (RMP'Access, 1));
Rewriter_Not_Different : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("not ($S_Left /= $S_Right)", Expr_Rule),
Make_Pattern ("($S_Left = $S_Right)", Expr_Rule),
Rewriters => To_Vector (RMP'Access, 1));
function Accept_Usage_Less_Equal (Match : Match_Pattern) return Boolean is
(not Is_Within_Base_Subp_Body (Match, "<="));
-- do not change the implementation of the "<=" operator
Rewriter_Not_Greater_Than : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("not ($S_Left > $S_Right)", Expr_Rule),
Make_Pattern ("($S_Left <= $S_Right)", Expr_Rule),
Accept_Usage_Less_Equal'Access,
Rewriters => To_Vector (RMP'Access, 1));
function Accept_Usage_Less_Than (Match : Match_Pattern) return Boolean is
(not Is_Within_Base_Subp_Body (Match, "<"));
-- do not change the implementation of the "<" operator
Rewriter_Not_Greater_Equal : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("not ($S_Left >= $S_Right)", Expr_Rule),
Make_Pattern ("($S_Left < $S_Right)", Expr_Rule),
Accept_Usage_Less_Than'Access, Rewriters => To_Vector (RMP'Access, 1));
function Accept_Usage_Greater_Equal
(Match : Match_Pattern) return Boolean is
(not Is_Within_Base_Subp_Body (Match, ">="));
-- do not change the implementation of the ">=" operator
Rewriter_Not_Less_Than : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("not ($S_Left < $S_Right)", Expr_Rule),
Make_Pattern ("($S_Left >= $S_Right)", Expr_Rule),
Accept_Usage_Greater_Equal'Access,
Rewriters => To_Vector (RMP'Access, 1));
function Accept_Usage_Greater_Than (Match : Match_Pattern) return Boolean is
(not Is_Within_Base_Subp_Body (Match, ">"));
-- do not change the implementation of the ">" operator
Rewriter_Not_Less_Equal : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("not ($S_Left <= $S_Right)", Expr_Rule),
Make_Pattern ("($S_Left > $S_Right)", Expr_Rule),
Accept_Usage_Greater_Than'Access,
Rewriters => To_Vector (RMP'Access, 1));
Rewriter_Not_In : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("not ($S_Var in $M_Values)", Expr_Rule),
Make_Pattern ("($S_Var not in $M_Values)", Expr_Rule),
Rewriters => To_Vector (RMP'Access, 1));
Rewriter_Not_Not_In : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("not ($S_Var not in $M_Values)", Expr_Rule),
Make_Pattern ("($S_Var in $M_Values)", Expr_Rule),
Rewriters => To_Vector (RMP'Access, 1));
Rewriters_Not : constant Rewriters_Sequence.Vector :=
Rewriter_Not_Not'Access & Rewriter_Not_Equal'Access &
Rewriter_Not_Different'Access & Rewriter_Not_Greater_Than'Access &
Rewriter_Not_Greater_Equal'Access & Rewriter_Not_Less_Than'Access &
Rewriter_Not_Less_Equal'Access & Rewriter_Not_In'Access &
Rewriter_Not_Not_In'Access;
Rewriter_And_Then : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("$S_Left and $S_Expr", Expr_Rule),
Make_Pattern ("$S_Left and then $S_Expr", Expr_Rule),
Accept_Boolean_No_Side_Effects'Access);
Rewriter_Or_Else : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("$S_Left or $S_Expr", Expr_Rule),
Make_Pattern ("$S_Left or else $S_Expr", Expr_Rule),
Accept_Boolean_No_Side_Effects'Access);
Rewriter_Equal_True : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("$S_Expr = true", Expr_Rule),
Make_Pattern ("$S_Expr", Expr_Rule), Accept_Boolean'Access);
-- TODO: do we also need the symmetric variant: true = $S_Expr?
Rewriter_Equal_False : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("$S_Expr = false", Expr_Rule),
Make_Pattern ("not $S_Expr", Expr_Rule), Accept_Boolean'Access);
-- TODO: do we also need the symmetric variant: false = $S_Expr?
Rewriter_Different_True : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("$S_Expr /= true", Expr_Rule),
Make_Pattern ("not $S_Expr", Expr_Rule), Accept_Boolean'Access);
-- TODO: do we also need the symmetric variant: true /= $S_Expr?
Rewriter_Different_False : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("$S_Expr /= false", Expr_Rule),
Make_Pattern ("$S_Expr", Expr_Rule), Accept_Boolean'Access);
-- TODO: do we also need the symmetric variant: false /= $S_Expr?
Rewrite_De_Morgan_Not_And : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("not ($S_A and then $S_B)", Expr_Rule),
Make_Pattern ("(not ($S_A)) or else (not ($S_B))", Expr_Rule),
Rewriters => Rewriters_Not & RMP'Access);
-- TODO: should we also have the reverse direction?
-- enables e.g. if statements to swap their branches!
Rewrite_De_Morgan_Not_Or : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("not ($S_A or else $S_B)", Expr_Rule),
Make_Pattern ("(not ($S_A)) and then (not ($S_B))", Expr_Rule),
Rewriters => Rewriters_Not & RMP'Access);
Rewrite_De_Morgan_Not_All_Range :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("not (for all $S_I in $S_Range => $S_Cond)", Expr_Rule),
Make_Pattern
("(for some $S_I in $S_Range => not ($S_Cond))", Expr_Rule),
Rewriters => Rewriters_Not & RMP'Access);
Rewrite_De_Morgan_Not_All_Elements :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("not (for all $S_E of $S_Elements => $S_Cond)", Expr_Rule),
Make_Pattern
("(for some $S_E of $S_Elements => not ($S_Cond))", Expr_Rule),
Rewriters => Rewriters_Not & RMP'Access);
Rewrite_De_Morgan_Not_Some_Range :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("not (for some $S_I in $S_Range => $S_Cond)", Expr_Rule),
Make_Pattern
("(for all $S_I in $S_Range => not ($S_Cond))", Expr_Rule),
Rewriters => Rewriters_Not & RMP'Access);
Rewrite_De_Morgan_Not_Some_Elements :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("not (for some $S_E of $S_Elements => $S_Cond)", Expr_Rule),
Make_Pattern
("(for all $S_E of $S_Elements => not ($S_Cond))", Expr_Rule),
Rewriters => Rewriters_Not & RMP'Access);
Rewriter_If_True_Expression :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("if true then $S_Val_True else $S_Val_False", Expr_Rule),
Make_Pattern
("$S_Val_True", Expr_Rule));
Rewriter_If_False_Expression :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("if false then $S_Val_True else $S_Val_False", Expr_Rule),
Make_Pattern
("$S_Val_False", Expr_Rule));
Rewriter_If_Identical_Expression :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("if $S_Expr then $S_Val else $S_Val", Expr_Rule),
Make_Pattern
("$S_Val", Expr_Rule),
Accept_No_Side_Effects'Access);
Rewriter_If_Different_Expression :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("if $S_A /= $S_B then $S_Val_True else $S_Val_False", Expr_Rule),
Make_Pattern
("if $S_A = $S_B then $S_Val_False else $S_Val_True", Expr_Rule));
Rewriter_If_Not_Condition_Expression :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("if not $S_Cond then $S_Val_True else $S_Val_False", Expr_Rule),
Make_Pattern
("if $S_Cond then $S_Val_False else $S_Val_True", Expr_Rule),
Rewriters => To_Vector (RMP'Access, 1) & RMP'Access);
Rewriter_If_Not_In_Expression :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("if $S_Expr not in $M_Values then $S_Val_True else $S_Val_False",
Expr_Rule),
Make_Pattern
("if $S_Expr in $M_Values then $S_Val_False else $S_Val_True",
Expr_Rule),
Rewriters => To_Vector (RMP'Access, 1));
Rewriter_Boolean_If_Condition_Expression :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("if $S_Cond then true else false", Expr_Rule),
Make_Pattern ("$S_Cond", Expr_Rule));
-- TODO: check true & false are booleans
Rewriter_Boolean_If_Not_Condition_Expression :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("if $S_Cond then false else true", Expr_Rule),
Make_Pattern ("not ($S_Cond)", Expr_Rule),
Rewriters => Rewriters_Not & RMP'Access);
-- TODO: check true & false are booleans
function Accept_Extreme (Match : Match_Pattern) return Boolean is
(Is_Integer_Expression (Match, "$S_X")
and then not Has_Side_Effect (Match, "$S_X")
and then Is_Integer_Expression (Match, "$S_Y")
and then not Has_Side_Effect (Match, "$S_Y"));
Rewriter_Integer_Max_Greater_Than :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("if $S_X > $S_Y then $S_X else $S_Y", Expr_Rule),
Make_Pattern ("Integer'Max ($S_X, $S_Y)", Expr_Rule),
Accept_Extreme'Access);
Rewriter_Integer_Max_Greater_Equal :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("if $S_X >= $S_Y then $S_X else $S_Y", Expr_Rule),
Make_Pattern ("Integer'Max ($S_X, $S_Y)", Expr_Rule),
Accept_Extreme'Access);
Rewriter_Integer_Max_Less_Than :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("if $S_X < $S_Y then $S_Y else $S_X", Expr_Rule),
Make_Pattern ("Integer'Max ($S_X, $S_Y)", Expr_Rule),
Accept_Extreme'Access);
Rewriter_Integer_Max_Less_Equal :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("if $S_X <= $S_Y then $S_Y else $S_X", Expr_Rule),
Make_Pattern ("Integer'Max ($S_X, $S_Y)", Expr_Rule),
Accept_Extreme'Access);
Rewriter_Integer_Min_Greater_Than :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("if $S_X > $S_Y then $S_Y else $S_X", Expr_Rule),
Make_Pattern ("Integer'Min ($S_X, $S_Y)", Expr_Rule),
Accept_Extreme'Access);
Rewriter_Integer_Min_Greater_Equal :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("if $S_X >= $S_Y then $S_Y else $S_X", Expr_Rule),
Make_Pattern ("Integer'Min ($S_X, $S_Y)", Expr_Rule),
Accept_Extreme'Access);
Rewriter_Integer_Min_Less_Than :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("if $S_X < $S_Y then $S_X else $S_Y", Expr_Rule),
Make_Pattern ("Integer'Min ($S_X, $S_Y)", Expr_Rule),
Accept_Extreme'Access);
Rewriter_Integer_Min_Less_Equal :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("if $S_X <= $S_Y then $S_X else $S_Y", Expr_Rule),
Make_Pattern ("Integer'Min ($S_X, $S_Y)", Expr_Rule),
Accept_Extreme'Access);
function Accept_Independent (Match : Match_Pattern) return Boolean is
(Are_Independent (Match, "$S_Cond", "$S_Expr"));
Rewriter_Concat_Before_If_Expression :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("if $S_Cond then $S_Expr & $S_True else $S_Expr & $S_False",
Expr_Rule),
Make_Pattern
("$S_Expr & (if $S_Cond then $S_True else $S_False)", Expr_Rule),
Accept_Independent'Access, Rewriters => To_Vector (RMP'Access, 1));
Rewriter_Concat_After_If_Expression :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("if $S_Cond then $S_True & $S_Expr else $S_False & $S_Expr",
Expr_Rule),
Make_Pattern
("(if $S_Cond then $S_True else $S_False) & $S_Expr", Expr_Rule),
Rewriters => To_Vector (RMP'Access, 1));
-- TODO: how to generalize to other BinOp like +, *,
-- and then, or else, ...?
-- TODO: place in fixed-point rewriter to push as much out as possible
-- TODO: double check that this rewrite is correct
-- (i.e. $S_Cond will always be executed before $S_Expr)
-- for all possible operators (including x ** 0 == 1)
Rewriter_Plus_Before_If_Expression :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("if $S_Cond then $S_Expr + $S_True else $S_Expr + $S_False",
Expr_Rule),
Make_Pattern
("$S_Expr + (if $S_Cond then $S_True else $S_False)", Expr_Rule),
Accept_Independent'Access, Rewriters => To_Vector (RMP'Access, 1));
Rewriter_Plus_After_If_Expression :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("if $S_Cond then $S_True + $S_Expr else $S_False + $S_Expr",
Expr_Rule),
Make_Pattern
("(if $S_Cond then $S_True else $S_False) + $S_Expr", Expr_Rule),
Rewriters => To_Vector (RMP'Access, 1));
Rewriters_If_Expression : constant Rewriters_Sequence.Vector :=
-- Outcommented some rewriters to prevent triggering known bug:
-- See issue: https://github.com/TNO/Renaissance-Ada/issues/18
Rewriter_If_True_Expression'Access &
Rewriter_If_False_Expression'Access &
-- Rewriter_If_Identical_Expression'Access &
Rewriter_If_Different_Expression'Access &
Rewriter_If_Not_Condition_Expression'Access &
Rewriter_If_Not_In_Expression'Access &
Rewriter_Boolean_If_Condition_Expression'Access &
Rewriter_Boolean_If_Not_Condition_Expression'Access &
-- Rewriter_Integer_Max_Greater_Than'Access &
-- Rewriter_Integer_Max_Greater_Equal'Access &
-- Rewriter_Integer_Max_Less_Than'Access &
-- Rewriter_Integer_Max_Less_Equal'Access &
-- Rewriter_Integer_Min_Greater_Than'Access &
-- Rewriter_Integer_Min_Greater_Equal'Access &
-- Rewriter_Integer_Min_Less_Than'Access &
-- Rewriter_Integer_Min_Less_Equal'Access &
-- Rewriter_Concat_Before_If_Expression'Access &
Rewriter_Concat_After_If_Expression'Access &
-- Rewriter_Plus_Before_If_Expression'Access &
Rewriter_Plus_After_If_Expression'Access;
Rewriter_Case_Expression_Binary_With_Others :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("case $S_Expr is when $M_Values => $S_Val_In, " &
"when others => $S_Val_Out",
Expr_Rule),
Make_Pattern
("if ($S_Expr) in $M_Values then $S_Val_In else $S_Val_Out",
Expr_Rule),
Rewriters => Rewriters_If_Expression & RMP'Access);
-- TODO - comparable to If expressions
-- once we have clear how to handle case statements
-- with arbitrary number of alternatives
--
-- * Concat Before Case Expression
-- * Concat After Case Expression
-- TODO - comparable to Case Statement
-- once we use Ada2022, that provides declaration expressions
--
-- * Case Single Expression
Rewriter_Double : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("$S_Expr + $S_Expr", Expr_Rule),
Make_Pattern ("2 * ($S_Expr)", Expr_Rule),
Accept_No_Side_Effects'Access, Rewriters => To_Vector (RMP'Access, 1));
-- We check for side effects:
-- f(3) + f(3) has side effects (in f) twice
-- while 2 * (f(3)) has side effects only once
--
-- However how important is the side effect?
-- Might be perfectly acceptable to log only once
-- that f is entered, and f returns!
Rewriter_Equals_To_In_Range : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("$S_Var = $S_Val1 or else $S_Var = $S_Val2", Expr_Rule),
Make_Pattern ("$S_Var in $S_Val1 | $S_Val2", Expr_Rule));
Rewriter_Combine_In_Range_And_Equal :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("$S_Var in $M_Vals or else $S_Var = $S_Val", Expr_Rule),
Make_Pattern ("$S_Var in $M_Vals | $S_Val", Expr_Rule));
-- TODO: put in fix-point rewriter to make range as big as possible
Rewriter_Combine_In_Ranges : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("$S_Var in $M_Vals_1 or else $S_Var in $M_Vals_2", Expr_Rule),
Make_Pattern ("$S_Var in $M_Vals_1 | $M_Vals_2", Expr_Rule));
-- TODO: put in fix-point rewriter to make range as big as possible
Rewriter_Differents_To_Not_In_Range :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("$S_Var /= $S_Val1 and then $S_Var /= $S_Val2", Expr_Rule),
Make_Pattern ("$S_Var not in $S_Val1 | $S_Val2", Expr_Rule));
Rewriter_Combine_Not_In_Range_And_Different :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("$S_Var not in $M_Vals and then $S_Var /= $S_Val", Expr_Rule),
Make_Pattern ("$S_Var not in $M_Vals | $S_Val", Expr_Rule));
-- TODO: put in fix-point rewriter to make range as big as possible
Rewriter_Combine_Not_In_Ranges :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("$S_Var not in $M_Vals_1 and then $S_Var not in $M_Vals_2",
Expr_Rule),
Make_Pattern ("$S_Var not in $M_Vals_1 | $M_Vals_2", Expr_Rule));
-- TODO: put in fix-point rewriter to make range as big as possible
------------------------------------------------------------------------------
-- Statements
------------------------------------------------------------------------------
Rewriter_Unnecessary_Null_Stmt :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("$S_Stmt; null;", Stmts_Rule),
Make_Pattern ("$S_Stmt;", Stmt_Rule));
-- TODO: do we also need the swapped version? i.e. "null; $S_Stmts;"
Rewriter_If_True_Stmt : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("if true then $M_Stmts_True; else $M_Stmts_False; end if;",
If_Stmt_Rule),
Make_Pattern ("$M_Stmts_True;", Stmts_Rule),
Rewriters => To_Vector (Rewriter_Unnecessary_Null_Stmt'Access, 1));
-- Warning: by removing $M_Stmts_False; some with/use clauses
-- might become obsolete and the compiler will
-- produce warnings!
Rewriter_If_False_Stmt : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("if false then $M_Stmts_True; else $M_Stmts_False; end if;",
If_Stmt_Rule),
Make_Pattern ("$M_Stmts_False;", Stmts_Rule),
Rewriters => To_Vector (Rewriter_Unnecessary_Null_Stmt'Access, 1));
-- Warning: by removing $M_Stmts_True; some with/use clauses
-- might become obsolete and the compiler will
-- produce warnings!
-- Rewrite only when else branch is NOT empty
Rewriter_If_Different_Stmt : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("if $S_A /= $S_B then $M_Stmts_True; " &
"else $S_Stmt_False; $M_Stmts_False; end if;",
If_Stmt_Rule),
Make_Pattern
("if $S_A = $S_B then $S_Stmt_False; $M_Stmts_False; " &
"else $M_Stmts_True; end if;",
If_Stmt_Rule));
-- Rewrite only when else branch is NOT empty
Rewriter_If_Not_Condition_Stmt :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("if not $S_Cond then $M_Stmts_True; " &
"else $S_Stmt_False; $M_Stmts_False; end if;",
If_Stmt_Rule),
Make_Pattern
("if $S_Cond then $S_Stmt_False; $M_Stmts_False; " &
"else $M_Stmts_True; end if;",
If_Stmt_Rule),
Rewriters => To_Vector (RMP'Access, 1));
-- Rewrite only when else branch is NOT empty
Rewriter_If_Not_In_Stmt : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("if $S_Expr not in $M_Values " & "then $M_Stmts_True; " &
"else $S_Stmt_False; $M_Stmts_False; " & "end if;",
If_Stmt_Rule),
Make_Pattern
("if $S_Expr in $M_Values " &
"then $S_Stmt_False; $M_Stmts_False; " & "else $M_Stmts_True; " &
"end if;",
If_Stmt_Rule));
Rewriter_Use_Elsif : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("if $S_Cond1 then $M_Stmts_True1; else " &
"if $S_Cond2 then $M_Stmts_True2; else $M_Stmts_False2; end if; " &
"end if;",
If_Stmt_Rule),
Make_Pattern
("if $S_Cond1 then $M_Stmts_True1; " &
"elsif $S_Cond2 then $M_Stmts_True2; else $M_Stmts_False2;" &
"end if;",
If_Stmt_Rule));
Rewriter_Null_Then_Branch : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("if $S_Cond then null; else $S_Stmt; $M_Stmts; end if;",
If_Stmt_Rule),
Make_Pattern
("if not ($S_Cond) then $S_Stmt; $M_Stmts; end if;", If_Stmt_Rule),
Rewriters => Rewriters_Not);
Rewriter_Null_Else_Branch : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("if $S_Cond then $M_Stmts; else null; end if;", If_Stmt_Rule),
Make_Pattern ("if $S_Cond then $M_Stmts; end if;", If_Stmt_Rule));
Rewriter_If_Identical_Branches_Stmt :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("if $S_Expr then $M_Stmts; else $M_Stmts; end if;", If_Stmt_Rule),
Make_Pattern ("$M_Stmts;", Stmt_Rule), Accept_No_Side_Effects'Access);
-- We can't rewrite when $S_Expr has a side effect,
-- because it would change the behaviour of the program.
Rewriter_If_Identical_Tails_Stmt :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("if $S_Cond then $M_Stmts_True; $S_Stmt; " &
"else $M_Stmts_False; $S_Stmt; end if;",
If_Stmt_Rule),
Make_Pattern
("if $S_Cond then $M_Stmts_True; " &
"else $M_Stmts_False; end if; $S_Stmt;",
Stmts_Rule),
Rewriters =>
Rewriter_Null_Then_Branch'Access & Rewriter_Null_Else_Branch'Access);
-- TODO: put in fix-point rewriter to remove the whole identical tail
-- not just the last statement.
function Accept_All_Independent (Match : Match_Pattern) return Boolean is
(Are_Independent (Match, "$S_Cond", "$M_Args_Before")
and then Are_Independent (Match, "$S_Cond", "$M_Args_After"));
-- Note that the order of evaluation of parameters is NOT specified in Ada
-- see e.g. http://www.ada-auth.org/standards/12rat/html/Rat12-4-2.html
-- hence also $M_Args_After might be effected and might have an effect!
-- Note that our current implementation doesn't handle this pattern
-- as one would expected, since we have no backtracking implemented yet.
-- So, any match in the current implementation will have
-- an empty list for $M_Args_Before.
Rewriter_If_Argument_Stmt : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("if $S_Cond then " &
"$S_Subp ($M_Args_Before, $M_Name => $S_Val_True, $M_Args_After);" &
"else " &
"$S_Subp ($M_Args_Before, $M_Name => $S_Val_False, $M_Args_After);"
& "end if;",
If_Stmt_Rule),
Make_Pattern
("$S_Subp ($M_Args_Before," &
"$M_Name => (if $S_Cond then $S_Val_True else $S_Val_False)," &
"$M_Args_After);",
Call_Stmt_Rule),
Accept_All_Independent'Access, Rewriters => Rewriters_If_Expression);
Rewriter_If_Assignment_Stmt : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("if $S_Cond then" & " $S_Var := $S_Val_True;" & "else" &
" $S_Var := $S_Val_False;" & "end if;",
If_Stmt_Rule),
Make_Pattern
("$S_Var := (if $S_Cond then $S_Val_True else $S_Val_False);",
Stmt_Rule),
Rewriters => Rewriters_If_Expression);
Rewriter_If_Return_Stmt : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("if $S_Cond then return $S_Expr_True; " &
"else return $S_Expr_False; end if;",
If_Stmt_Rule),
Make_Pattern
("return (if $S_Cond then $S_Expr_True else $S_Expr_False);",
Return_Stmt_Rule),
Rewriters => Rewriters_If_Expression);
Rewriter_If_Return_Stmts : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("if $S_Cond then return $S_Expr_True; end if; " &
"return $S_Expr_False;",
Stmts_Rule),
Make_Pattern
("return (if $S_Cond then $S_Expr_True else $S_Expr_False);",
Return_Stmt_Rule),
Rewriters => Rewriters_If_Expression);
Rewriter_Case_Single : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("case $S_Expr is when $M_Values => $M_Stmts; end case;",
Case_Stmt_Rule),
Make_Pattern ("$M_Stmts;", Stmt_Rule), Accept_No_Side_Effects'Access);
-- In case of a case statement with a single alternative (single when branch),
-- the condition "($S_Expr) in $M_Values" is True:
-- Ada requires and the compiler enforces that
-- all possible values are included in the set of alternatives.
-- When the evaluation of the expression has a side effect,
-- we can't leave it out.
Rewriter_Case_Binary_With_Others :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("case $S_Expr is when $M_Values => $M_Stmts_In; " &
"when others => $M_Stmts_Out; end case;",
Case_Stmt_Rule),
Make_Pattern
("if ($S_Expr) in $M_Values then $M_Stmts_In; " &
"else $M_Stmts_Out; end if;",
If_Stmt_Rule),
Rewriters =>
Rewriter_Null_Else_Branch'Access & Rewriter_Null_Then_Branch'Access &
RMP'Access);
Rewriter_Case_Identical_Branches :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("case $S_Expr is " & "when $M_1_Vals => $M_Stmts;" &
"when $M_2_Vals => $M_Stmts;" & "end case;",
Case_Stmt_Rule),
Make_Pattern ("$M_Stmts;", Stmt_Rule), Accept_No_Side_Effects'Access);
-- TODO: How to make a concrete pattern matching
-- an arbitrary number of alternatives?
-- Or at least 2..N, where N is the largest number of alternatives
-- in a case statement in the code base
-- TODO - comparable to If statements
-- once we have clear how to handle case statements
-- with arbitrary number of alternatives
--
-- * Case Argument
-- * Case Assignment
--
-- And also
-- * Case combine alternatives
-- i.e. change "when $M_X => $M_Stmts; when $M_Y => $M_Stmts;"
-- to "when $M_X | $M_Y => $M_Stmts;"
Rewriter_Return_Expression : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("declare $S_Var : constant $S_Type := $S_Expr; " &
"begin return $S_Var; end;",
Block_Stmt_Rule),
Make_Pattern ("return $S_Expr;", Return_Stmt_Rule));
function Accept_Variable (Match : Match_Pattern) return Boolean is
(not Is_Referenced_In (Match, "$S_Var", "$S_Cond")
and then not Is_Referenced_In (Match, "$S_Var", "$S_Val_True")
and then Are_Independent (Match, "$S_Val_False", "$S_Cond")
and then not Has_Effect_On (Match, "$S_Val_False", "$S_Val_True")
and then not Has_Effect_On (Match, "$S_Val_False", "$M_Stmts"));
-- To ensure semantically correct rewrite, we have
-- to check that
-- 1. $S_Var is NOT used in both $S_Cond and $S_Val_True
-- 2. swapping the order of execution of $S_Val_False and $S_Cond
-- does not result in a different outcome
-- (due to effects from one on the other)
-- 3. the execution of $S_Val_False doesn't effect
-- the outcome of $S_Val_True
-- 4. the execution of $S_Val_False doesn't effect
-- the outcome of $M_Stmts
-- TODO: can we split this rewriter?
-- Also add the constant keyword when appropriate!
Rewriter_Declare_And_Overwrite :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("declare $S_Var : $S_Type := $S_Val_False; " &
"begin if $S_Cond then $S_Var := $S_Val_True; end if; " &
"$M_Stmts; end;",
Stmt_Rule),
Make_Pattern
("declare $S_Var : $S_Type := " &
"(if $S_Cond then $S_Val_True else $S_Val_False); " &
"begin $M_Stmts; end;",
Stmt_Rule),
Accept_Variable'Access, Rewriters => Rewriters_If_Expression);
function Accept_Single_Variable (Match : Match_Pattern) return Boolean is
(not Is_Referenced_In (Match, "$S_I", "$S_Var"));
-- prevent rewrite when $S_Var is an array access using $S_I
Rewriter_For_All_Range_And_Then :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("for $S_I in $S_Range " &
"loop $S_Var := $S_Var and then $S_Cond; end loop;",
Loop_Stmt_Rule),
Make_Pattern
("$S_Var := $S_Var and then (for all $S_I in $S_Range => $S_Cond);",
Stmt_Rule),
Accept_Single_Variable'Access);
Rewriter_For_All_Elements_And_Then :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("for $S_E of $S_Elements loop " &
"$S_Var := $S_Var and then $S_Cond;" & "end loop;",
Loop_Stmt_Rule),
Make_Pattern
("$S_Var := $S_Var and then " &
"(for all $S_E of $S_Elements => $S_Cond);",
Stmt_Rule));
Rewriter_For_Some_Range_Or_Else :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("for $S_I in $S_Range " &
"loop $S_Var := $S_Var or else $S_Cond; end loop;",
Loop_Stmt_Rule),
Make_Pattern
("$S_Var := $S_Var or else (for some $S_I in $S_Range => $S_Cond);",
Stmt_Rule),
Accept_Single_Variable'Access);
Rewriter_For_Some_Elements_Or_Else :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("for $S_E of $S_Elements loop " &
"$S_Var := $S_Var or else $S_Cond;" & "end loop;",
Loop_Stmt_Rule),
Make_Pattern
("$S_Var := $S_Var or else " &
"(for some $S_E of $S_Elements => $S_Cond);",
Stmt_Rule));
Rewriter_For_All_Range_Exit : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("declare $S_Var : Boolean := true; begin " &
"for $S_I in $S_Range " &
"loop if $S_Cond then $S_Var := false; exit; end if; end loop; " &
"$M_Stmts; end;",
Block_Stmt_Rule),
Make_Pattern
("declare $S_Var : Boolean := " &
"(for all $S_I in $S_Range => not ($S_Cond)); " &
"begin $M_Stmts; end;",
Block_Stmt_Rule),
Rewriters => Rewriters_Not);
Rewriter_For_All_Elements_Exit :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("declare $S_Var : Boolean := true; begin " &
"for $S_E of $S_Elements loop " &
"if $S_Cond then $S_Var := false; exit; end if; " & "end loop; " &
"$M_Stmts; end;",
Block_Stmt_Rule),
Make_Pattern
("declare $S_Var : Boolean := " &
"(for all $S_E of $S_Elements => not ($S_Cond)); " &
"begin $M_Stmts; end;",
Block_Stmt_Rule),
Rewriters => Rewriters_Not);
Rewriter_For_Some_Range_Exit : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("declare $S_Var : Boolean := false; begin " &
"for $S_I in $S_Range " &
"loop if $S_Cond then $S_Var := true; exit; end if; end loop; " &
"$M_Stmts; end;",
Block_Stmt_Rule),
Make_Pattern
("declare $S_Var : Boolean := " &
"(for some $S_I in $S_Range => $S_Cond); " & "begin $M_Stmts; end;",
Block_Stmt_Rule));
Rewriter_For_Some_Elements_Exit :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("declare $S_Var : Boolean := false; begin " &
"for $S_E of $S_Elements loop " &
"if $S_Cond then $S_Var := true; exit; end if; " & "end loop; " &
"$M_Stmts; end;",
Block_Stmt_Rule),
Make_Pattern
("declare $S_Var : Boolean := " &
"(for some $S_E of $S_Elements => $S_Cond); " &
"begin $M_Stmts; end;",
Block_Stmt_Rule));
Rewriter_For_All_Range_Return :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("for $S_I in $S_Range " &
"loop if $S_Cond then return false; end if; end loop; " &
"return true;",
Stmts_Rule),
Make_Pattern
("return (for all $S_I in $S_Range => not ($S_Cond));",
Return_Stmt_Rule),
Rewriters => Rewriters_Not);
Rewriter_For_All_Elements_Return :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("for $S_E of $S_Elements " &
"loop if $S_Cond then return false; end if; end loop; " &
"return true;",
Stmts_Rule),
Make_Pattern
("return (for all $S_E of $S_Elements => not ($S_Cond));",
Return_Stmt_Rule),
Rewriters => Rewriters_Not);
Rewriter_For_Some_Range_Return :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("for $S_I in $S_Range " &
"loop if $S_Cond then return true; end if; end loop; " &
"return false;",
Stmts_Rule),
Make_Pattern
("return (for some $S_I in $S_Range => $S_Cond);",
Return_Stmt_Rule));
Rewriter_For_Some_Elements_Return :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("for $S_E of $S_Elements " &
"loop if $S_Cond then return true; end if; end loop; " &
"return false;",
Stmts_Rule),
Make_Pattern
("return (for some $S_E of $S_Elements => $S_Cond);",
Return_Stmt_Rule));
Rewriter_For_All_Range_All : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("declare $S_Var : Boolean := true; begin " &
"for $S_I in $S_Range " &
"loop if $S_Expr then $S_Var := false; end if; end loop; " &
"$M_Stmts; end;",
Block_Stmt_Rule),
Make_Pattern
("declare $S_Var : Boolean := " &
"(for all $S_I in $S_Range => not ($S_Expr)); " &
"begin $M_Stmts; end;",
Block_Stmt_Rule),
Accept_No_Side_Effects'Access,
Rewriters_Not);
Rewriter_For_All_Elements_All :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("declare $S_Var : Boolean := true; begin " &
"for $S_E of $S_Elements loop " &
"if $S_Expr then $S_Var := false; end if; " & "end loop; " &
"$M_Stmts; end;",
Block_Stmt_Rule),
Make_Pattern
("declare $S_Var : Boolean := " &
"(for all $S_E of $S_Elements => not ($S_Expr)); " &
"begin $M_Stmts; end;",
Block_Stmt_Rule),
Accept_No_Side_Effects'Access,
Rewriters_Not);
Rewriter_For_Some_Range_All : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("declare $S_Var : Boolean := false; begin " &
"for $S_I in $S_Range " &
"loop if $S_Expr then $S_Var := true; end if; end loop; " &
"$M_Stmts; end;",
Block_Stmt_Rule),
Make_Pattern
("declare $S_Var : Boolean := " &
"(for some $S_I in $S_Range => $S_Expr); " & "begin $M_Stmts; end;",
Block_Stmt_Rule),
Accept_No_Side_Effects'Access);
Rewriter_For_Some_Elements_All :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("declare $S_Var : Boolean := false; begin " &
"for $S_E of $S_Elements loop " &
"if $S_Expr then $S_Var := true; end if; " & "end loop; " &
"$M_Stmts; end;",
Block_Stmt_Rule),
Make_Pattern
("declare $S_Var : Boolean := " &
"(for some $S_E of $S_Elements => $S_Expr); " &
"begin $M_Stmts; end;",
Block_Stmt_Rule),
Accept_No_Side_Effects'Access);
function Accept_Append_To_Unbounded_String
(Match : Match_Pattern)
return Boolean
is
(Is_String_Expression (Match, "$S_Expr") and then
Is_Referenced_Decl_Defined_In_AStrUnb
(Match.Get_Nodes.First_Element.As_Call_Stmt.F_Call));
Rewriter_Append_To_Unbounded_String :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("Append ($S_Var, To_Unbounded_String ($M_Source => $S_Expr));",
Call_Stmt_Rule),
Make_Pattern
("Append ($S_Var, $S_Expr);", Call_Stmt_Rule),
Accept_Append_To_Unbounded_String'Access);
Rewriter_Append : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern ("$S_Var := $S_Var & $S_Tail;", Assignment_Stmt_Rule),
Make_Pattern ("Append ($S_Var, $S_Tail);", Call_Stmt_Rule),
Accept_Unbounded_String'Access);
-- When issue 18 is solved, chain Rewriter_Append_To_Unbounded_String
-- after the Append rewrite to remove the unnecessary conversions as well
----------------------------------------------------------------------------
-- Declarations
----------------------------------------------------------------------------
Rewriter_Declarations_Combine :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("$M_X : $S_Type := $M_Expr;" & "$M_Y : $S_Type := $M_Expr;",
Basic_Decls_Rule),
Make_Pattern ("$M_X, $M_Y : $S_Type := $M_Expr;", Basic_Decl_Rule),
Accept_Multiple_No_Side_Effects'Access);
Rewriter_For_Attribute_Use : aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("$S_Var : $S_Type := $M_Value with $M_Aspects;" &
"for $S_Var'$S_Attribute use $S_Expr;",
Basic_Decls_Rule),
Make_Pattern
("$S_Var : $S_Type := $M_Value " &
"with $M_Aspects, $S_Attribute => $S_Expr;",
Basic_Decl_Rule));
Rewriter_For_Attribute_Use_Aliased :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("$S_Var : aliased $S_Type := $M_Value with $M_Aspects;" &
"for $S_Var'$S_Attribute use $S_Expr;",
Basic_Decls_Rule),
Make_Pattern
("$S_Var : aliased $S_Type := $M_Value " &
"with $M_Aspects, $S_Attribute => $S_Expr;",
Basic_Decl_Rule));
Rewriter_For_Attribute_Use_Array :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("$S_Var : array ($M_Ranges) of $S_Type := " &
"$M_Value with $M_Aspects;" &
"for $S_Var'$S_Attribute use $S_Expr;",
Basic_Decls_Rule),
Make_Pattern
("$S_Var : array ($M_Ranges) of $S_Type := $M_Value " &
"with $M_Aspects, $S_Attribute => $S_Expr;",
Basic_Decl_Rule));
Rewriter_For_Attribute_Use_Pragma_Var :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("$S_Var : $S_Type := $M_Value with $M_Aspects;" &
"pragma Warnings (Off, $S_Var);" &
"for $S_Var'$S_Attribute use $S_Expr;",
Basic_Decls_Rule),
Make_Pattern
("$S_Var : $S_Type := $M_Value " &
"with $M_Aspects, $S_Attribute => $S_Expr;" &
"pragma Warnings (Off, $S_Var);",
Basic_Decls_Rule));
Rewriter_For_Attribute_Use_Pragma_All :
aliased constant Rewriter_Find_And_Replace :=
Make_Rewriter_Find_And_Replace
(Make_Pattern
("$S_Var : $S_Type := $M_Value with $M_Aspects;" &
"pragma Warnings (Off);" & "for $S_Var'$S_Attribute use $S_Expr;",
Basic_Decls_Rule),
Make_Pattern
("$S_Var : $S_Type := $M_Value " &
"with $M_Aspects, $S_Attribute => $S_Expr;" &
"pragma Warnings (Off);",
Basic_Decls_Rule));
end Predefined_Rewriters;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- This file is generated, don't edit it.
------------------------------------------------------------------------------
with AMF.Elements.Generic_Hash;
function AMF.UML.Collaborations.Hash is
new AMF.Elements.Generic_Hash (UML_Collaboration, UML_Collaboration_Access);
|
-- OEML _ REST API
-- This section will provide necessary information about the `CoinAPI OEML REST API` protocol. This API is also available in the Postman application: <a href=\"https://postman.coinapi.io/\" target=\"_blank\">https://postman.coinapi.io/</a>
--
-- The version of the OpenAPI document: v1
-- Contact: support@coinapi.io
--
-- NOTE: This package is auto generated by OpenAPI-Generator 5.2.0.
-- https://openapi-generator.tech
-- Do not edit the class manually.
package body .Models is
pragma Style_Checks ("-mr");
pragma Warnings (Off, "*use clause for package*");
use Swagger.Streams;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in RejectReason_Type) is
begin
Into.Start_Entity (Name);
Into.End_Entity (Name);
end Serialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in RejectReason_Type_Vectors.Vector) is
begin
Into.Start_Array (Name);
for Item of Value loop
Serialize (Into, "", Item);
end loop;
Into.End_Array (Name);
end Serialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out RejectReason_Type) is
Object : Swagger.Value_Type;
begin
Swagger.Streams.Deserialize (From, Name, Object);
end Deserialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out RejectReason_Type_Vectors.Vector) is
List : Swagger.Value_Array_Type;
Item : RejectReason_Type;
begin
Value.Clear;
Swagger.Streams.Deserialize (From, Name, List);
for Data of List loop
Deserialize (Data, "", Item);
Value.Append (Item);
end loop;
end Deserialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in MessageReject_Type) is
begin
Into.Start_Entity (Name);
Into.Write_Entity ("type", Value.P_Type);
Serialize (Into, "reject_reason", Value.Reject_Reason);
Into.Write_Entity ("exchange_id", Value.Exchange_Id);
Into.Write_Entity ("message", Value.Message);
Into.Write_Entity ("rejected_message", Value.Rejected_Message);
Into.End_Entity (Name);
end Serialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in MessageReject_Type_Vectors.Vector) is
begin
Into.Start_Array (Name);
for Item of Value loop
Serialize (Into, "", Item);
end loop;
Into.End_Array (Name);
end Serialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out MessageReject_Type) is
Object : Swagger.Value_Type;
begin
Swagger.Streams.Deserialize (From, Name, Object);
Swagger.Streams.Deserialize (Object, "type", Value.P_Type);
Deserialize (Object, "reject_reason", Value.Reject_Reason);
Swagger.Streams.Deserialize (Object, "exchange_id", Value.Exchange_Id);
Swagger.Streams.Deserialize (Object, "message", Value.Message);
Swagger.Streams.Deserialize (Object, "rejected_message", Value.Rejected_Message);
end Deserialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out MessageReject_Type_Vectors.Vector) is
List : Swagger.Value_Array_Type;
Item : MessageReject_Type;
begin
Value.Clear;
Swagger.Streams.Deserialize (From, Name, List);
for Data of List loop
Deserialize (Data, "", Item);
Value.Append (Item);
end loop;
end Deserialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in ValidationError_Type) is
begin
Into.Start_Entity (Name);
Into.Write_Entity ("type", Value.P_Type);
Into.Write_Entity ("title", Value.Title);
Serialize (Into, "status", Value.Status);
Into.Write_Entity ("traceId", Value.Trace_Id);
Into.Write_Entity ("errors", Value.Errors);
Into.End_Entity (Name);
end Serialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in ValidationError_Type_Vectors.Vector) is
begin
Into.Start_Array (Name);
for Item of Value loop
Serialize (Into, "", Item);
end loop;
Into.End_Array (Name);
end Serialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out ValidationError_Type) is
Object : Swagger.Value_Type;
begin
Swagger.Streams.Deserialize (From, Name, Object);
Swagger.Streams.Deserialize (Object, "type", Value.P_Type);
Swagger.Streams.Deserialize (Object, "title", Value.Title);
Swagger.Streams.Deserialize (Object, "status", Value.Status);
Swagger.Streams.Deserialize (Object, "traceId", Value.Trace_Id);
Swagger.Streams.Deserialize (Object, "errors", Value.Errors);
end Deserialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out ValidationError_Type_Vectors.Vector) is
List : Swagger.Value_Array_Type;
Item : ValidationError_Type;
begin
Value.Clear;
Swagger.Streams.Deserialize (From, Name, List);
for Data of List loop
Deserialize (Data, "", Item);
Value.Append (Item);
end loop;
end Deserialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrdType_Type) is
begin
Into.Start_Entity (Name);
Into.End_Entity (Name);
end Serialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrdType_Type_Vectors.Vector) is
begin
Into.Start_Array (Name);
for Item of Value loop
Serialize (Into, "", Item);
end loop;
Into.End_Array (Name);
end Serialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrdType_Type) is
Object : Swagger.Value_Type;
begin
Swagger.Streams.Deserialize (From, Name, Object);
end Deserialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrdType_Type_Vectors.Vector) is
List : Swagger.Value_Array_Type;
Item : OrdType_Type;
begin
Value.Clear;
Swagger.Streams.Deserialize (From, Name, List);
for Data of List loop
Deserialize (Data, "", Item);
Value.Append (Item);
end loop;
end Deserialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrdStatus_Type) is
begin
Into.Start_Entity (Name);
Into.End_Entity (Name);
end Serialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrdStatus_Type_Vectors.Vector) is
begin
Into.Start_Array (Name);
for Item of Value loop
Serialize (Into, "", Item);
end loop;
Into.End_Array (Name);
end Serialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrdStatus_Type) is
Object : Swagger.Value_Type;
begin
Swagger.Streams.Deserialize (From, Name, Object);
end Deserialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrdStatus_Type_Vectors.Vector) is
List : Swagger.Value_Array_Type;
Item : OrdStatus_Type;
begin
Value.Clear;
Swagger.Streams.Deserialize (From, Name, List);
for Data of List loop
Deserialize (Data, "", Item);
Value.Append (Item);
end loop;
end Deserialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrderCancelAllRequest_Type) is
begin
Into.Start_Entity (Name);
Into.Write_Entity ("exchange_id", Value.Exchange_Id);
Into.End_Entity (Name);
end Serialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrderCancelAllRequest_Type_Vectors.Vector) is
begin
Into.Start_Array (Name);
for Item of Value loop
Serialize (Into, "", Item);
end loop;
Into.End_Array (Name);
end Serialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrderCancelAllRequest_Type) is
Object : Swagger.Value_Type;
begin
Swagger.Streams.Deserialize (From, Name, Object);
Swagger.Streams.Deserialize (Object, "exchange_id", Value.Exchange_Id);
end Deserialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrderCancelAllRequest_Type_Vectors.Vector) is
List : Swagger.Value_Array_Type;
Item : OrderCancelAllRequest_Type;
begin
Value.Clear;
Swagger.Streams.Deserialize (From, Name, List);
for Data of List loop
Deserialize (Data, "", Item);
Value.Append (Item);
end loop;
end Deserialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrderCancelSingleRequest_Type) is
begin
Into.Start_Entity (Name);
Into.Write_Entity ("exchange_id", Value.Exchange_Id);
Into.Write_Entity ("exchange_order_id", Value.Exchange_Order_Id);
Into.Write_Entity ("client_order_id", Value.Client_Order_Id);
Into.End_Entity (Name);
end Serialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrderCancelSingleRequest_Type_Vectors.Vector) is
begin
Into.Start_Array (Name);
for Item of Value loop
Serialize (Into, "", Item);
end loop;
Into.End_Array (Name);
end Serialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrderCancelSingleRequest_Type) is
Object : Swagger.Value_Type;
begin
Swagger.Streams.Deserialize (From, Name, Object);
Swagger.Streams.Deserialize (Object, "exchange_id", Value.Exchange_Id);
Swagger.Streams.Deserialize (Object, "exchange_order_id", Value.Exchange_Order_Id);
Swagger.Streams.Deserialize (Object, "client_order_id", Value.Client_Order_Id);
end Deserialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrderCancelSingleRequest_Type_Vectors.Vector) is
List : Swagger.Value_Array_Type;
Item : OrderCancelSingleRequest_Type;
begin
Value.Clear;
Swagger.Streams.Deserialize (From, Name, List);
for Data of List loop
Deserialize (Data, "", Item);
Value.Append (Item);
end loop;
end Deserialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrdSide_Type) is
begin
Into.Start_Entity (Name);
Into.End_Entity (Name);
end Serialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrdSide_Type_Vectors.Vector) is
begin
Into.Start_Array (Name);
for Item of Value loop
Serialize (Into, "", Item);
end loop;
Into.End_Array (Name);
end Serialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrdSide_Type) is
Object : Swagger.Value_Type;
begin
Swagger.Streams.Deserialize (From, Name, Object);
end Deserialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrdSide_Type_Vectors.Vector) is
List : Swagger.Value_Array_Type;
Item : OrdSide_Type;
begin
Value.Clear;
Swagger.Streams.Deserialize (From, Name, List);
for Data of List loop
Deserialize (Data, "", Item);
Value.Append (Item);
end loop;
end Deserialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in TimeInForce_Type) is
begin
Into.Start_Entity (Name);
Into.End_Entity (Name);
end Serialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in TimeInForce_Type_Vectors.Vector) is
begin
Into.Start_Array (Name);
for Item of Value loop
Serialize (Into, "", Item);
end loop;
Into.End_Array (Name);
end Serialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out TimeInForce_Type) is
Object : Swagger.Value_Type;
begin
Swagger.Streams.Deserialize (From, Name, Object);
end Deserialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out TimeInForce_Type_Vectors.Vector) is
List : Swagger.Value_Array_Type;
Item : TimeInForce_Type;
begin
Value.Clear;
Swagger.Streams.Deserialize (From, Name, List);
for Data of List loop
Deserialize (Data, "", Item);
Value.Append (Item);
end loop;
end Deserialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrderNewSingleRequest_Type) is
begin
Into.Start_Entity (Name);
Into.Write_Entity ("exchange_id", Value.Exchange_Id);
Into.Write_Entity ("client_order_id", Value.Client_Order_Id);
Into.Write_Entity ("symbol_id_exchange", Value.Symbol_Id_Exchange);
Into.Write_Entity ("symbol_id_coinapi", Value.Symbol_Id_Coinapi);
Serialize (Into, "amount_order", Value.Amount_Order);
Serialize (Into, "price", Value.Price);
Serialize (Into, "side", Value.Side);
Serialize (Into, "order_type", Value.Order_Type);
Serialize (Into, "time_in_force", Value.Time_In_Force);
Serialize (Into, "expire_time", Value.Expire_Time);
Serialize (Into, "exec_inst", Value.Exec_Inst);
Into.End_Entity (Name);
end Serialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrderNewSingleRequest_Type_Vectors.Vector) is
begin
Into.Start_Array (Name);
for Item of Value loop
Serialize (Into, "", Item);
end loop;
Into.End_Array (Name);
end Serialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrderNewSingleRequest_Type) is
Object : Swagger.Value_Type;
begin
Swagger.Streams.Deserialize (From, Name, Object);
Swagger.Streams.Deserialize (Object, "exchange_id", Value.Exchange_Id);
Swagger.Streams.Deserialize (Object, "client_order_id", Value.Client_Order_Id);
Swagger.Streams.Deserialize (Object, "symbol_id_exchange", Value.Symbol_Id_Exchange);
Swagger.Streams.Deserialize (Object, "symbol_id_coinapi", Value.Symbol_Id_Coinapi);
Swagger.Streams.Deserialize (Object, "amount_order", Value.Amount_Order);
Swagger.Streams.Deserialize (Object, "price", Value.Price);
Deserialize (Object, "side", Value.Side);
Deserialize (Object, "order_type", Value.Order_Type);
Deserialize (Object, "time_in_force", Value.Time_In_Force);
Swagger.Streams.Deserialize (Object, "expire_time", Value.Expire_Time);
Swagger.Streams.Deserialize (Object, "exec_inst", Value.Exec_Inst);
end Deserialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrderNewSingleRequest_Type_Vectors.Vector) is
List : Swagger.Value_Array_Type;
Item : OrderNewSingleRequest_Type;
begin
Value.Clear;
Swagger.Streams.Deserialize (From, Name, List);
for Data of List loop
Deserialize (Data, "", Item);
Value.Append (Item);
end loop;
end Deserialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in Fills_Type) is
begin
Into.Start_Entity (Name);
Serialize (Into, "time", Value.Time);
Serialize (Into, "price", Value.Price);
Serialize (Into, "amount", Value.Amount);
Into.End_Entity (Name);
end Serialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in Fills_Type_Vectors.Vector) is
begin
Into.Start_Array (Name);
for Item of Value loop
Serialize (Into, "", Item);
end loop;
Into.End_Array (Name);
end Serialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out Fills_Type) is
Object : Swagger.Value_Type;
begin
Swagger.Streams.Deserialize (From, Name, Object);
Swagger.Streams.Deserialize (Object, "time", Value.Time);
Swagger.Streams.Deserialize (Object, "price", Value.Price);
Swagger.Streams.Deserialize (Object, "amount", Value.Amount);
end Deserialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out Fills_Type_Vectors.Vector) is
List : Swagger.Value_Array_Type;
Item : Fills_Type;
begin
Value.Clear;
Swagger.Streams.Deserialize (From, Name, List);
for Data of List loop
Deserialize (Data, "", Item);
Value.Append (Item);
end loop;
end Deserialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrderExecutionReport_Type) is
begin
Into.Start_Entity (Name);
Into.Write_Entity ("exchange_id", Value.Exchange_Id);
Into.Write_Entity ("client_order_id", Value.Client_Order_Id);
Into.Write_Entity ("symbol_id_exchange", Value.Symbol_Id_Exchange);
Into.Write_Entity ("symbol_id_coinapi", Value.Symbol_Id_Coinapi);
Serialize (Into, "amount_order", Value.Amount_Order);
Serialize (Into, "price", Value.Price);
Serialize (Into, "side", Value.Side);
Serialize (Into, "order_type", Value.Order_Type);
Serialize (Into, "time_in_force", Value.Time_In_Force);
Serialize (Into, "expire_time", Value.Expire_Time);
Serialize (Into, "exec_inst", Value.Exec_Inst);
Into.Write_Entity ("client_order_id_format_exchange", Value.Client_Order_Id_Format_Exchange);
Into.Write_Entity ("exchange_order_id", Value.Exchange_Order_Id);
Serialize (Into, "amount_open", Value.Amount_Open);
Serialize (Into, "amount_filled", Value.Amount_Filled);
Serialize (Into, "avg_px", Value.Avg_Px);
Serialize (Into, "status", Value.Status);
Serialize (Into, "status_history", Value.Status_History);
Into.Write_Entity ("error_message", Value.Error_Message);
Serialize (Into, "fills", Value.Fills);
Into.End_Entity (Name);
end Serialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrderExecutionReport_Type_Vectors.Vector) is
begin
Into.Start_Array (Name);
for Item of Value loop
Serialize (Into, "", Item);
end loop;
Into.End_Array (Name);
end Serialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrderExecutionReport_Type) is
Object : Swagger.Value_Type;
begin
Swagger.Streams.Deserialize (From, Name, Object);
Swagger.Streams.Deserialize (Object, "exchange_id", Value.Exchange_Id);
Swagger.Streams.Deserialize (Object, "client_order_id", Value.Client_Order_Id);
Swagger.Streams.Deserialize (Object, "symbol_id_exchange", Value.Symbol_Id_Exchange);
Swagger.Streams.Deserialize (Object, "symbol_id_coinapi", Value.Symbol_Id_Coinapi);
Swagger.Streams.Deserialize (Object, "amount_order", Value.Amount_Order);
Swagger.Streams.Deserialize (Object, "price", Value.Price);
Deserialize (Object, "side", Value.Side);
Deserialize (Object, "order_type", Value.Order_Type);
Deserialize (Object, "time_in_force", Value.Time_In_Force);
Swagger.Streams.Deserialize (Object, "expire_time", Value.Expire_Time);
Swagger.Streams.Deserialize (Object, "exec_inst", Value.Exec_Inst);
Swagger.Streams.Deserialize (Object, "client_order_id_format_exchange", Value.Client_Order_Id_Format_Exchange);
Swagger.Streams.Deserialize (Object, "exchange_order_id", Value.Exchange_Order_Id);
Swagger.Streams.Deserialize (Object, "amount_open", Value.Amount_Open);
Swagger.Streams.Deserialize (Object, "amount_filled", Value.Amount_Filled);
Swagger.Streams.Deserialize (Object, "avg_px", Value.Avg_Px);
Deserialize (Object, "status", Value.Status);
Swagger.Streams.Deserialize (Object, "status_history", Value.Status_History);
Swagger.Streams.Deserialize (Object, "error_message", Value.Error_Message);
Deserialize (Object, "fills", Value.Fills);
end Deserialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrderExecutionReport_Type_Vectors.Vector) is
List : Swagger.Value_Array_Type;
Item : OrderExecutionReport_Type;
begin
Value.Clear;
Swagger.Streams.Deserialize (From, Name, List);
for Data of List loop
Deserialize (Data, "", Item);
Value.Append (Item);
end loop;
end Deserialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrderExecutionReportAllOf_Type) is
begin
Into.Start_Entity (Name);
Into.Write_Entity ("client_order_id_format_exchange", Value.Client_Order_Id_Format_Exchange);
Into.Write_Entity ("exchange_order_id", Value.Exchange_Order_Id);
Serialize (Into, "amount_open", Value.Amount_Open);
Serialize (Into, "amount_filled", Value.Amount_Filled);
Serialize (Into, "avg_px", Value.Avg_Px);
Serialize (Into, "status", Value.Status);
Serialize (Into, "status_history", Value.Status_History);
Into.Write_Entity ("error_message", Value.Error_Message);
Serialize (Into, "fills", Value.Fills);
Into.End_Entity (Name);
end Serialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrderExecutionReportAllOf_Type_Vectors.Vector) is
begin
Into.Start_Array (Name);
for Item of Value loop
Serialize (Into, "", Item);
end loop;
Into.End_Array (Name);
end Serialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrderExecutionReportAllOf_Type) is
Object : Swagger.Value_Type;
begin
Swagger.Streams.Deserialize (From, Name, Object);
Swagger.Streams.Deserialize (Object, "client_order_id_format_exchange", Value.Client_Order_Id_Format_Exchange);
Swagger.Streams.Deserialize (Object, "exchange_order_id", Value.Exchange_Order_Id);
Swagger.Streams.Deserialize (Object, "amount_open", Value.Amount_Open);
Swagger.Streams.Deserialize (Object, "amount_filled", Value.Amount_Filled);
Swagger.Streams.Deserialize (Object, "avg_px", Value.Avg_Px);
Deserialize (Object, "status", Value.Status);
Swagger.Streams.Deserialize (Object, "status_history", Value.Status_History);
Swagger.Streams.Deserialize (Object, "error_message", Value.Error_Message);
Deserialize (Object, "fills", Value.Fills);
end Deserialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrderExecutionReportAllOf_Type_Vectors.Vector) is
List : Swagger.Value_Array_Type;
Item : OrderExecutionReportAllOf_Type;
begin
Value.Clear;
Swagger.Streams.Deserialize (From, Name, List);
for Data of List loop
Deserialize (Data, "", Item);
Value.Append (Item);
end loop;
end Deserialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in BalanceData_Type) is
begin
Into.Start_Entity (Name);
Into.Write_Entity ("asset_id_exchange", Value.Asset_Id_Exchange);
Into.Write_Entity ("asset_id_coinapi", Value.Asset_Id_Coinapi);
Serialize (Into, "balance", Value.Balance);
Serialize (Into, "available", Value.Available);
Serialize (Into, "locked", Value.Locked);
Into.Write_Entity ("last_updated_by", Value.Last_Updated_By);
Serialize (Into, "rate_usd", Value.Rate_Usd);
Serialize (Into, "traded", Value.Traded);
Into.End_Entity (Name);
end Serialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in BalanceData_Type_Vectors.Vector) is
begin
Into.Start_Array (Name);
for Item of Value loop
Serialize (Into, "", Item);
end loop;
Into.End_Array (Name);
end Serialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out BalanceData_Type) is
Object : Swagger.Value_Type;
begin
Swagger.Streams.Deserialize (From, Name, Object);
Swagger.Streams.Deserialize (Object, "asset_id_exchange", Value.Asset_Id_Exchange);
Swagger.Streams.Deserialize (Object, "asset_id_coinapi", Value.Asset_Id_Coinapi);
Swagger.Streams.Deserialize (Object, "balance", Value.Balance);
Swagger.Streams.Deserialize (Object, "available", Value.Available);
Swagger.Streams.Deserialize (Object, "locked", Value.Locked);
Swagger.Streams.Deserialize (Object, "last_updated_by", Value.Last_Updated_By);
Swagger.Streams.Deserialize (Object, "rate_usd", Value.Rate_Usd);
Swagger.Streams.Deserialize (Object, "traded", Value.Traded);
end Deserialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out BalanceData_Type_Vectors.Vector) is
List : Swagger.Value_Array_Type;
Item : BalanceData_Type;
begin
Value.Clear;
Swagger.Streams.Deserialize (From, Name, List);
for Data of List loop
Deserialize (Data, "", Item);
Value.Append (Item);
end loop;
end Deserialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in Balance_Type) is
begin
Into.Start_Entity (Name);
Into.Write_Entity ("exchange_id", Value.Exchange_Id);
Serialize (Into, "data", Value.Data);
Into.End_Entity (Name);
end Serialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in Balance_Type_Vectors.Vector) is
begin
Into.Start_Array (Name);
for Item of Value loop
Serialize (Into, "", Item);
end loop;
Into.End_Array (Name);
end Serialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out Balance_Type) is
Object : Swagger.Value_Type;
begin
Swagger.Streams.Deserialize (From, Name, Object);
Swagger.Streams.Deserialize (Object, "exchange_id", Value.Exchange_Id);
Deserialize (Object, "data", Value.Data);
end Deserialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out Balance_Type_Vectors.Vector) is
List : Swagger.Value_Array_Type;
Item : Balance_Type;
begin
Value.Clear;
Swagger.Streams.Deserialize (From, Name, List);
for Data of List loop
Deserialize (Data, "", Item);
Value.Append (Item);
end loop;
end Deserialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in Position_Type) is
begin
Into.Start_Entity (Name);
Into.Write_Entity ("exchange_id", Value.Exchange_Id);
Serialize (Into, "data", Value.Data);
Into.End_Entity (Name);
end Serialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in Position_Type_Vectors.Vector) is
begin
Into.Start_Array (Name);
for Item of Value loop
Serialize (Into, "", Item);
end loop;
Into.End_Array (Name);
end Serialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out Position_Type) is
Object : Swagger.Value_Type;
begin
Swagger.Streams.Deserialize (From, Name, Object);
Swagger.Streams.Deserialize (Object, "exchange_id", Value.Exchange_Id);
Deserialize (Object, "data", Value.Data);
end Deserialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out Position_Type_Vectors.Vector) is
List : Swagger.Value_Array_Type;
Item : Position_Type;
begin
Value.Clear;
Swagger.Streams.Deserialize (From, Name, List);
for Data of List loop
Deserialize (Data, "", Item);
Value.Append (Item);
end loop;
end Deserialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in PositionData_Type) is
begin
Into.Start_Entity (Name);
Into.Write_Entity ("symbol_id_exchange", Value.Symbol_Id_Exchange);
Into.Write_Entity ("symbol_id_coinapi", Value.Symbol_Id_Coinapi);
Serialize (Into, "avg_entry_price", Value.Avg_Entry_Price);
Serialize (Into, "quantity", Value.Quantity);
Serialize (Into, "side", Value.Side);
Serialize (Into, "unrealized_pnl", Value.Unrealized_Pnl);
Serialize (Into, "leverage", Value.Leverage);
Into.Write_Entity ("cross_margin", Value.Cross_Margin);
Serialize (Into, "liquidation_price", Value.Liquidation_Price);
Into.Write_Entity ("raw_data", Value.Raw_Data);
Into.End_Entity (Name);
end Serialize;
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in PositionData_Type_Vectors.Vector) is
begin
Into.Start_Array (Name);
for Item of Value loop
Serialize (Into, "", Item);
end loop;
Into.End_Array (Name);
end Serialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out PositionData_Type) is
Object : Swagger.Value_Type;
begin
Swagger.Streams.Deserialize (From, Name, Object);
Swagger.Streams.Deserialize (Object, "symbol_id_exchange", Value.Symbol_Id_Exchange);
Swagger.Streams.Deserialize (Object, "symbol_id_coinapi", Value.Symbol_Id_Coinapi);
Swagger.Streams.Deserialize (Object, "avg_entry_price", Value.Avg_Entry_Price);
Swagger.Streams.Deserialize (Object, "quantity", Value.Quantity);
Deserialize (Object, "side", Value.Side);
Swagger.Streams.Deserialize (Object, "unrealized_pnl", Value.Unrealized_Pnl);
Swagger.Streams.Deserialize (Object, "leverage", Value.Leverage);
Swagger.Streams.Deserialize (Object, "cross_margin", Value.Cross_Margin);
Swagger.Streams.Deserialize (Object, "liquidation_price", Value.Liquidation_Price);
Deserialize (Object, "raw_data", Value.Raw_Data);
end Deserialize;
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out PositionData_Type_Vectors.Vector) is
List : Swagger.Value_Array_Type;
Item : PositionData_Type;
begin
Value.Clear;
Swagger.Streams.Deserialize (From, Name, List);
for Data of List loop
Deserialize (Data, "", Item);
Value.Append (Item);
end loop;
end Deserialize;
end .Models;
|
-- reference:
-- http://www.mudpedia.org/mediawiki/index.php/Xterm_256_colors
with System.Address_To_Named_Access_Conversions;
with System.Formatting;
with System.Long_Long_Integer_Types;
with System.Once;
with C.stdlib;
package body System.Native_Text_IO.Terminal_Colors is
use type C.char_array;
use type C.char_ptr;
use type C.signed_int;
use type C.size_t;
subtype Word_Unsigned is Long_Long_Integer_Types.Word_Unsigned;
function strlen (s : not null access constant C.char) return C.size_t
with Import,
Convention => Intrinsic, External_Name => "__builtin_strlen";
package char_ptr_Conv is
new Address_To_Named_Access_Conversions (C.char, C.char_ptr);
TERM_Variable : constant C.char_array (0 .. 4) := "TERM" & C.char'Val (0);
xterm_256color : constant String (1 .. 14) := "xterm-256color";
Support_256_Color_Flag : aliased Once.Flag := 0;
Support_256_Color : Boolean;
procedure Support_256_Color_Init;
procedure Support_256_Color_Init is
TERM : C.char_ptr;
begin
TERM := C.stdlib.getenv (TERM_Variable (0)'Access);
if TERM /= null
and then strlen (TERM) = xterm_256color'Length
then
declare
TERM_All : String (1 .. xterm_256color'Length);
for TERM_All'Address use char_ptr_Conv.To_Address (TERM);
begin
Support_256_Color := TERM_All = xterm_256color;
end;
else
Support_256_Color := False;
end if;
end Support_256_Color_Init;
procedure Initialize;
procedure Initialize is
begin
Once.Initialize (
Support_256_Color_Flag'Access,
Support_256_Color_Init'Access);
end Initialize;
function RGB_To_256_Color (Item : Ada.Colors.RGB) return Color;
function RGB_To_256_Color (Item : Ada.Colors.RGB) return Color is
subtype B is Ada.Colors.Brightness'Base;
function Color_Scale (Item : B) return Color;
function Color_Scale (Item : B) return Color is
begin
if Item < (0.0 + 16#5F.0#) / 2.0 / 255.0 then
return 0;
elsif Item < (16#5F.0# + 16#87.0#) / 2.0 / 255.0 then
return 1;
elsif Item < (16#87.0# + 16#AF.0#) / 2.0 / 255.0 then
return 2;
elsif Item < (16#AF.0# + 16#D7.0#) / 2.0 / 255.0 then
return 3;
elsif Item < (16#D7.0# + 16#FF.0#) / 2.0 / 255.0 then
return 4;
else
return 5;
end if;
end Color_Scale;
begin
return 16
+ 36 * Color_Scale (Item.Red)
+ 6 * Color_Scale (Item.Green)
+ Color_Scale (Item.Blue);
end RGB_To_256_Color;
function Brightness_To_Grayscale_256_Color (Item : Ada.Colors.Brightness)
return Color;
function Brightness_To_Grayscale_256_Color (Item : Ada.Colors.Brightness)
return Color
is
subtype B is Ada.Colors.Brightness'Base;
Grayscale_Index : constant Integer :=
(Integer (B'Floor (Item * B'Pred (250.0))) + 5) / 10 - 1 + 232;
begin
if Grayscale_Index < 232 then
return 16; -- 16#00#
elsif Grayscale_Index <= 255 then -- in 232 .. 255
return Color (Grayscale_Index);
else
return 16 + 6#555#; -- 16#FF#
end if;
end Brightness_To_Grayscale_256_Color;
function RGB_To_System_Color (Item : Ada.Colors.RGB) return Color;
function RGB_To_System_Color (Item : Ada.Colors.RGB) return Color is
subtype B is Ada.Colors.Brightness'Base;
Result : Color;
begin
if Item.Red in 0.25 .. B'Pred (0.675)
and then Item.Green in 0.25 .. B'Pred (0.675)
and then Item.Blue in 0.25 .. B'Pred (0.675)
then -- Dark_Gray = (16#80#, 16#80#, 16#80#)
Result := 8;
elsif Item.Red >= 0.875
or else Item.Green >= 0.875
or else Item.Blue >= 0.875
then -- bright colors
Result := 8;
if Item.Red >= 0.875 then
Result := Result or 1;
end if;
if Item.Green >= 0.875 then
Result := Result or 2;
end if;
if Item.Blue >= 0.875 then
Result := Result or 4;
end if;
else -- dark colors
Result := 0;
if Item.Red >= 0.375 then
Result := Result or 1;
end if;
if Item.Green >= 0.375 then
Result := Result or 2;
end if;
if Item.Blue >= 0.375 then
Result := Result or 4;
end if;
end if;
return Result;
end RGB_To_System_Color;
function Brightness_To_Grayscale_System_Color (Item : Ada.Colors.Brightness)
return Color;
function Brightness_To_Grayscale_System_Color (Item : Ada.Colors.Brightness)
return Color is
begin
-- [0.000 .. 0.250) => 0
-- [0.250 .. 0.625) => 16#80# = 8
-- [0.625 .. 0.875) => 16#C0# = 7
-- [0.875 .. 1.000] => 16#FF# = 15
return RGB_To_System_Color ((Red => Item, Green => Item, Blue => Item));
end Brightness_To_Grayscale_System_Color;
-- implementation
function RGB_To_Color (Item : Ada.Colors.RGB) return Color is
begin
Initialize;
if Support_256_Color then
return RGB_To_256_Color (Item);
else
return RGB_To_System_Color (Item);
end if;
end RGB_To_Color;
function Brightness_To_Grayscale_Color (Item : Ada.Colors.Brightness)
return Color is
begin
Initialize;
if Support_256_Color then
return Brightness_To_Grayscale_256_Color (Item);
else
return Brightness_To_Grayscale_System_Color (Item);
end if;
end Brightness_To_Grayscale_Color;
procedure Set (
Handle : Handle_Type;
Reset : Boolean;
Bold_Changing : Boolean;
Bold : Boolean;
Underline_Changing : Boolean;
Underline : Boolean;
Blink_Changing : Boolean;
Blink : Boolean;
Reversed_Changing : Boolean;
Reversed : Boolean;
Foreground_Changing : Boolean;
Foreground : Color;
Background_Changing : Boolean;
Background : Color)
is
Seq : String (1 .. 256);
Last : Natural;
Error : Boolean;
begin
Seq (1) := Character'Val (16#1B#);
Seq (2) := '[';
Last := 2;
-- changing
if Reset then
Last := Last + 1;
Seq (Last) := '0';
end if;
if Bold_Changing and then Bold then
if Last > 2 then
Last := Last + 1;
Seq (Last) := ';';
end if;
Last := Last + 1;
Seq (Last) := '1';
end if;
if Underline_Changing and then Underline then
if Last > 2 then
Last := Last + 1;
Seq (Last) := ';';
end if;
Last := Last + 1;
Seq (Last) := '4';
end if;
if Blink_Changing and then Blink then
if Last > 2 then
Last := Last + 1;
Seq (Last) := ';';
end if;
Last := Last + 1;
Seq (Last) := '5';
end if;
if Reversed_Changing and then Reversed then
if Last > 2 then
Last := Last + 1;
Seq (Last) := ';';
end if;
Last := Last + 1;
Seq (Last) := '7';
end if;
if Foreground_Changing then
if Last > 2 then
Last := Last + 1;
Seq (Last) := ';';
end if;
declare
Color_Index : Word_Unsigned := Word_Unsigned (Foreground);
begin
if Foreground < 16#10# then
-- system color
if (Foreground and 8) = 0 then
Last := Last + 1;
Seq (Last) := '3';
else
Last := Last + 1;
Seq (Last) := '9';
Color_Index := Word_Unsigned (Foreground and 7);
end if;
else
-- 256 color
Seq (Last + 1 .. Last + 5) := "38;5;";
Last := Last + 5;
end if;
Formatting.Image (
Color_Index,
Seq (Last + 1 .. Seq'Last),
Last,
Error => Error);
end;
end if;
if Background_Changing then
if Last > 2 then
Last := Last + 1;
Seq (Last) := ';';
end if;
declare
Color_Index : Word_Unsigned := Word_Unsigned (Background);
begin
if Background < 16#10# then
-- system color
if (Background and 8) = 0 then
Last := Last + 1;
Seq (Last) := '4';
else
Last := Last + 1;
Seq (Last) := '1';
Last := Last + 1;
Seq (Last) := '0';
Color_Index := Word_Unsigned (Background and 7);
end if;
else
-- 256 color
Seq (Last + 1 .. Last + 5) := "48;5;";
Last := Last + 5;
end if;
Formatting.Image (
Color_Index,
Seq (Last + 1 .. Seq'Last),
Last,
Error => Error);
end;
end if;
-- setting
if Last > 2 then
Last := Last + 1;
Seq (Last) := 'm';
Write_Just (Handle, Seq (1 .. Last));
end if;
end Set;
procedure Reset (
Handle : Handle_Type)
is
Seq : constant String (1 .. 4) :=
(Character'Val (16#1b#), '[', '0', 'm');
begin
Write_Just (Handle, Seq);
end Reset;
end System.Native_Text_IO.Terminal_Colors;
|
-- Copyright 2011-2020 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
package Pck is
procedure Hello;
procedure There;
-- The name of that procedure needs to be greater (in terms
-- of alphabetical order) than the name of the procedure above.
end Pck;
|
-- Ada regular expression library
-- (c) Kristian Klomsten Skordal 2020 <kristian.skordal@wafflemail.net>
-- Report bugs and issues on <https://github.com/skordal/ada-regex>
with Ada.Strings.Unbounded;
with Regex.State_Machines; use Regex.State_Machines;
package body Regex.Matchers is
function Matches (Input : in Regular_Expression; Query : in String; Match_Id : out Natural) return Boolean is
Current_State : State_Machine_State_Access := Input.Get_Start_State;
begin
for Symbol of Query loop
declare
Transition_Found : Boolean := False;
begin
Find_Transition : for Transition of Current_State.Transitions loop
case Transition.Transition_On.Symbol_Type is
when Single_Character =>
if Transition.Transition_On.Char = Symbol then
Current_State := Transition.Target_State;
Transition_Found := True;
end if;
when Any_Character =>
Current_State := Transition.Target_State;
Transition_Found := True;
end case;
exit Find_Transition when Transition_Found;
end loop Find_Transition;
if not Transition_Found then
return False;
end if;
end;
end loop;
if Current_State.Accepting then
Match_Id := Current_State.Acceptance_Id;
end if;
return Current_State.Accepting;
end Matches;
function Matches (Input : in Regular_Expression; Query : in String) return Boolean is
Id : Natural;
begin
return Matches (Input, Query, Id);
end Matches;
function Get_Match (Input : in Regular_Expression; Query : in String; Complete_Match : out Boolean) return String
is
package Unbounded renames Ada.Strings.Unbounded;
use type Unbounded.Unbounded_String;
Current_State : State_Machine_State_Access := Input.Get_Start_State;
Match : Unbounded.Unbounded_String := Unbounded.Null_Unbounded_String;
begin
for Symbol of Query loop
declare
Transition_Found : Boolean := False;
begin
Find_Transition : for Transition of Current_State.Transitions loop
case Transition.Transition_On.Symbol_Type is
when Single_Character =>
if Transition.Transition_On.Char = Symbol then
Match := Match & Symbol;
Current_State := Transition.Target_State;
Transition_Found := True;
end if;
when Any_Character =>
Match := Match & Symbol;
Transition_Found := True;
end case;
exit Find_Transition when Transition_Found;
end loop Find_Transition;
exit when not Transition_Found;
end;
end loop;
Complete_Match := Current_State.Accepting;
return Unbounded.To_String (Match);
end Get_Match;
end Regex.Matchers;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . P A C K _ 5 4 --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2014, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with System.Storage_Elements;
with System.Unsigned_Types;
package body System.Pack_54 is
subtype Bit_Order is System.Bit_Order;
Reverse_Bit_Order : constant Bit_Order :=
Bit_Order'Val (1 - Bit_Order'Pos (System.Default_Bit_Order));
subtype Ofs is System.Storage_Elements.Storage_Offset;
subtype Uns is System.Unsigned_Types.Unsigned;
subtype N07 is System.Unsigned_Types.Unsigned range 0 .. 7;
use type System.Storage_Elements.Storage_Offset;
use type System.Unsigned_Types.Unsigned;
type Cluster is record
E0, E1, E2, E3, E4, E5, E6, E7 : Bits_54;
end record;
for Cluster use record
E0 at 0 range 0 * Bits .. 0 * Bits + Bits - 1;
E1 at 0 range 1 * Bits .. 1 * Bits + Bits - 1;
E2 at 0 range 2 * Bits .. 2 * Bits + Bits - 1;
E3 at 0 range 3 * Bits .. 3 * Bits + Bits - 1;
E4 at 0 range 4 * Bits .. 4 * Bits + Bits - 1;
E5 at 0 range 5 * Bits .. 5 * Bits + Bits - 1;
E6 at 0 range 6 * Bits .. 6 * Bits + Bits - 1;
E7 at 0 range 7 * Bits .. 7 * Bits + Bits - 1;
end record;
for Cluster'Size use Bits * 8;
for Cluster'Alignment use Integer'Min (Standard'Maximum_Alignment,
1 +
1 * Boolean'Pos (Bits mod 2 = 0) +
2 * Boolean'Pos (Bits mod 4 = 0));
-- Use maximum possible alignment, given the bit field size, since this
-- will result in the most efficient code possible for the field.
type Cluster_Ref is access Cluster;
type Rev_Cluster is new Cluster
with Bit_Order => Reverse_Bit_Order,
Scalar_Storage_Order => Reverse_Bit_Order;
type Rev_Cluster_Ref is access Rev_Cluster;
-- The following declarations are for the case where the address
-- passed to GetU_54 or SetU_54 is not guaranteed to be aligned.
-- These routines are used when the packed array is itself a
-- component of a packed record, and therefore may not be aligned.
type ClusterU is new Cluster;
for ClusterU'Alignment use 1;
type ClusterU_Ref is access ClusterU;
type Rev_ClusterU is new ClusterU
with Bit_Order => Reverse_Bit_Order,
Scalar_Storage_Order => Reverse_Bit_Order;
type Rev_ClusterU_Ref is access Rev_ClusterU;
------------
-- Get_54 --
------------
function Get_54
(Arr : System.Address;
N : Natural;
Rev_SSO : Boolean) return Bits_54
is
A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8);
C : Cluster_Ref with Address => A'Address, Import;
RC : Rev_Cluster_Ref with Address => A'Address, Import;
begin
if Rev_SSO then
case N07 (Uns (N) mod 8) is
when 0 => return RC.E0;
when 1 => return RC.E1;
when 2 => return RC.E2;
when 3 => return RC.E3;
when 4 => return RC.E4;
when 5 => return RC.E5;
when 6 => return RC.E6;
when 7 => return RC.E7;
end case;
else
case N07 (Uns (N) mod 8) is
when 0 => return C.E0;
when 1 => return C.E1;
when 2 => return C.E2;
when 3 => return C.E3;
when 4 => return C.E4;
when 5 => return C.E5;
when 6 => return C.E6;
when 7 => return C.E7;
end case;
end if;
end Get_54;
-------------
-- GetU_54 --
-------------
function GetU_54
(Arr : System.Address;
N : Natural;
Rev_SSO : Boolean) return Bits_54
is
A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8);
C : ClusterU_Ref with Address => A'Address, Import;
RC : Rev_ClusterU_Ref with Address => A'Address, Import;
begin
if Rev_SSO then
case N07 (Uns (N) mod 8) is
when 0 => return RC.E0;
when 1 => return RC.E1;
when 2 => return RC.E2;
when 3 => return RC.E3;
when 4 => return RC.E4;
when 5 => return RC.E5;
when 6 => return RC.E6;
when 7 => return RC.E7;
end case;
else
case N07 (Uns (N) mod 8) is
when 0 => return C.E0;
when 1 => return C.E1;
when 2 => return C.E2;
when 3 => return C.E3;
when 4 => return C.E4;
when 5 => return C.E5;
when 6 => return C.E6;
when 7 => return C.E7;
end case;
end if;
end GetU_54;
------------
-- Set_54 --
------------
procedure Set_54
(Arr : System.Address;
N : Natural;
E : Bits_54;
Rev_SSO : Boolean)
is
A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8);
C : Cluster_Ref with Address => A'Address, Import;
RC : Rev_Cluster_Ref with Address => A'Address, Import;
begin
if Rev_SSO then
case N07 (Uns (N) mod 8) is
when 0 => RC.E0 := E;
when 1 => RC.E1 := E;
when 2 => RC.E2 := E;
when 3 => RC.E3 := E;
when 4 => RC.E4 := E;
when 5 => RC.E5 := E;
when 6 => RC.E6 := E;
when 7 => RC.E7 := E;
end case;
else
case N07 (Uns (N) mod 8) is
when 0 => C.E0 := E;
when 1 => C.E1 := E;
when 2 => C.E2 := E;
when 3 => C.E3 := E;
when 4 => C.E4 := E;
when 5 => C.E5 := E;
when 6 => C.E6 := E;
when 7 => C.E7 := E;
end case;
end if;
end Set_54;
-------------
-- SetU_54 --
-------------
procedure SetU_54
(Arr : System.Address;
N : Natural;
E : Bits_54;
Rev_SSO : Boolean)
is
A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8);
C : ClusterU_Ref with Address => A'Address, Import;
RC : Rev_ClusterU_Ref with Address => A'Address, Import;
begin
if Rev_SSO then
case N07 (Uns (N) mod 8) is
when 0 => RC.E0 := E;
when 1 => RC.E1 := E;
when 2 => RC.E2 := E;
when 3 => RC.E3 := E;
when 4 => RC.E4 := E;
when 5 => RC.E5 := E;
when 6 => RC.E6 := E;
when 7 => RC.E7 := E;
end case;
else
case N07 (Uns (N) mod 8) is
when 0 => C.E0 := E;
when 1 => C.E1 := E;
when 2 => C.E2 := E;
when 3 => C.E3 := E;
when 4 => C.E4 := E;
when 5 => C.E5 := E;
when 6 => C.E6 := E;
when 7 => C.E7 := E;
end case;
end if;
end SetU_54;
end System.Pack_54;
|
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE boost_serialization>
<boost_serialization signature="serialization::archive" version="11">
<syndb class_id="0" tracking_level="0" version="0">
<userIPLatency>-1</userIPLatency>
<userIPName></userIPName>
<cdfg class_id="1" tracking_level="1" version="0" object_id="_0">
<name>fir</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>3</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>1</id>
<name>y</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>y</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</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>c</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>c</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>11</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>x</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>x</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>30</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_4">
<Value>
<Obj>
<type>0</type>
<id>9</id>
<name>x_read</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>x</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>49</item>
<item>50</item>
</oprand_edges>
<opcode>read</opcode>
</item>
<item class_id_reference="9" object_id="_5">
<Value>
<Obj>
<type>0</type>
<id>10</id>
<name></name>
<fileName>fir.c</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="11" tracking_level="0" version="0">
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</first>
<second class_id="12" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="13" tracking_level="0" version="0">
<first class_id="14" tracking_level="0" version="0">
<first>fir.c</first>
<second>fir</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_6">
<Value>
<Obj>
<type>0</type>
<id>12</id>
<name>acc</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>acc</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>53</item>
<item>54</item>
<item>55</item>
<item>56</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_7">
<Value>
<Obj>
<type>0</type>
<id>13</id>
<name>i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>58</item>
<item>59</item>
<item>60</item>
<item>61</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_8">
<Value>
<Obj>
<type>0</type>
<id>14</id>
<name>i_cast</name>
<fileName>fir.c</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir.c</first>
<second>fir</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>62</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_9">
<Value>
<Obj>
<type>0</type>
<id>15</id>
<name>tmp</name>
<fileName>fir.c</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir.c</first>
<second>fir</second>
</first>
<second>60</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>64</item>
<item>65</item>
<item>67</item>
</oprand_edges>
<opcode>bitselect</opcode>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>17</id>
<name></name>
<fileName>fir.c</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir.c</first>
<second>fir</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>68</item>
<item>69</item>
<item>70</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>20</id>
<name>tmp_1</name>
<fileName>fir.c</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir.c</first>
<second>fir</second>
</first>
<second>61</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>71</item>
<item>73</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name></name>
<fileName>fir.c</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir.c</first>
<second>fir</second>
</first>
<second>61</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>74</item>
<item>75</item>
<item>76</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>23</id>
<name>tmp_7</name>
<fileName>fir.c</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir.c</first>
<second>fir</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</oprand_edges>
<opcode>trunc</opcode>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>24</id>
<name>tmp_2</name>
<fileName>fir.c</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</fileDirectory>
<lineNumber>65</lineNumber>
<contextFuncName>fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir.c</first>
<second>fir</second>
</first>
<second>65</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>84</item>
<item>85</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>25</id>
<name>tmp_3</name>
<fileName>fir.c</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</fileDirectory>
<lineNumber>65</lineNumber>
<contextFuncName>fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir.c</first>
<second>fir</second>
</first>
<second>65</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>86</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>26</id>
<name>shift_reg_addr</name>
<fileName>fir.c</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</fileDirectory>
<lineNumber>65</lineNumber>
<contextFuncName>fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir.c</first>
<second>fir</second>
</first>
<second>65</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>87</item>
<item>89</item>
<item>90</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>27</id>
<name>data</name>
<fileName>fir.c</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</fileDirectory>
<lineNumber>65</lineNumber>
<contextFuncName>fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir.c</first>
<second>fir</second>
</first>
<second>65</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>data</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</oprand_edges>
<opcode>load</opcode>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>28</id>
<name>tmp_4</name>
<fileName>fir.c</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</fileDirectory>
<lineNumber>65</lineNumber>
<contextFuncName>fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir.c</first>
<second>fir</second>
</first>
<second>65</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>92</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>29</id>
<name>shift_reg_addr_1</name>
<fileName>fir.c</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</fileDirectory>
<lineNumber>65</lineNumber>
<contextFuncName>fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir.c</first>
<second>fir</second>
</first>
<second>65</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>93</item>
<item>94</item>
<item>95</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>30</id>
<name></name>
<fileName>fir.c</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</fileDirectory>
<lineNumber>65</lineNumber>
<contextFuncName>fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir.c</first>
<second>fir</second>
</first>
<second>65</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>96</item>
<item>97</item>
</oprand_edges>
<opcode>store</opcode>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>31</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>33</id>
<name></name>
<fileName>fir.c</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</fileDirectory>
<lineNumber>62</lineNumber>
<contextFuncName>fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir.c</first>
<second>fir</second>
</first>
<second>62</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>77</item>
<item>80</item>
</oprand_edges>
<opcode>store</opcode>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>34</id>
<name></name>
<fileName>fir.c</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</fileDirectory>
<lineNumber>64</lineNumber>
<contextFuncName>fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir.c</first>
<second>fir</second>
</first>
<second>64</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>81</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>36</id>
<name>data1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>data</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>99</item>
<item>100</item>
<item>101</item>
<item>102</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name>tmp_5</name>
<fileName>fir.c</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</fileDirectory>
<lineNumber>68</lineNumber>
<contextFuncName>fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir.c</first>
<second>fir</second>
</first>
<second>68</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>103</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name>c_addr</name>
<fileName>fir.c</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</fileDirectory>
<lineNumber>68</lineNumber>
<contextFuncName>fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir.c</first>
<second>fir</second>
</first>
<second>68</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>104</item>
<item>105</item>
<item>106</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>39</id>
<name>c_load</name>
<fileName>fir.c</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</fileDirectory>
<lineNumber>68</lineNumber>
<contextFuncName>fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir.c</first>
<second>fir</second>
</first>
<second>68</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>107</item>
</oprand_edges>
<opcode>load</opcode>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>tmp_6</name>
<fileName>fir.c</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</fileDirectory>
<lineNumber>68</lineNumber>
<contextFuncName>fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir.c</first>
<second>fir</second>
</first>
<second>68</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>108</item>
<item>109</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name>acc_1</name>
<fileName>fir.c</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</fileDirectory>
<lineNumber>68</lineNumber>
<contextFuncName>fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir.c</first>
<second>fir</second>
</first>
<second>68</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>acc</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>110</item>
<item>111</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>42</id>
<name>i_1</name>
<fileName>fir.c</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir.c</first>
<second>fir</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>112</item>
<item>114</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name></name>
<fileName>fir.c</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir.c</first>
<second>fir</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>45</id>
<name></name>
<fileName>fir.c</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</fileDirectory>
<lineNumber>70</lineNumber>
<contextFuncName>fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir.c</first>
<second>fir</second>
</first>
<second>70</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>117</item>
<item>118</item>
<item>119</item>
</oprand_edges>
<opcode>write</opcode>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>46</id>
<name></name>
<fileName>fir.c</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</fileDirectory>
<lineNumber>71</lineNumber>
<contextFuncName>fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir.c</first>
<second>fir</second>
</first>
<second>71</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>0</count>
<item_version>0</item_version>
</oprand_edges>
<opcode>ret</opcode>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>8</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_34">
<Value>
<Obj>
<type>2</type>
<id>52</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>0</content>
</item>
<item class_id_reference="16" object_id="_35">
<Value>
<Obj>
<type>2</type>
<id>57</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>10</content>
</item>
<item class_id_reference="16" object_id="_36">
<Value>
<Obj>
<type>2</type>
<id>66</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>4</content>
</item>
<item class_id_reference="16" object_id="_37">
<Value>
<Obj>
<type>2</type>
<id>72</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_38">
<Value>
<Obj>
<type>2</type>
<id>78</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>3</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_39">
<Value>
<Obj>
<type>2</type>
<id>83</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<const_type>0</const_type>
<content>15</content>
</item>
<item class_id_reference="16" object_id="_40">
<Value>
<Obj>
<type>2</type>
<id>88</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="_41">
<Value>
<Obj>
<type>2</type>
<id>113</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>31</content>
</item>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_42">
<Obj>
<type>3</type>
<id>11</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>9</item>
<item>10</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_43">
<Obj>
<type>3</type>
<id>18</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>5</count>
<item_version>0</item_version>
<item>12</item>
<item>13</item>
<item>14</item>
<item>15</item>
<item>17</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_44">
<Obj>
<type>3</type>
<id>22</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>20</item>
<item>21</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_45">
<Obj>
<type>3</type>
<id>32</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>9</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>
</node_objs>
</item>
<item class_id_reference="18" object_id="_46">
<Obj>
<type>3</type>
<id>35</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>33</item>
<item>34</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_47">
<Obj>
<type>3</type>
<id>44</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>8</count>
<item_version>0</item_version>
<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="_48">
<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>2</count>
<item_version>0</item_version>
<item>45</item>
<item>46</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>66</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_49">
<id>50</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>9</sink_obj>
</item>
<item class_id_reference="20" object_id="_50">
<id>51</id>
<edge_type>2</edge_type>
<source_obj>18</source_obj>
<sink_obj>10</sink_obj>
</item>
<item class_id_reference="20" object_id="_51">
<id>53</id>
<edge_type>1</edge_type>
<source_obj>52</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_52">
<id>54</id>
<edge_type>2</edge_type>
<source_obj>11</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_53">
<id>55</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_54">
<id>56</id>
<edge_type>2</edge_type>
<source_obj>44</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_55">
<id>58</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_56">
<id>59</id>
<edge_type>2</edge_type>
<source_obj>11</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_57">
<id>60</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_58">
<id>61</id>
<edge_type>2</edge_type>
<source_obj>44</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_59">
<id>62</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>14</sink_obj>
</item>
<item class_id_reference="20" object_id="_60">
<id>65</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_61">
<id>67</id>
<edge_type>1</edge_type>
<source_obj>66</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_62">
<id>68</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>17</sink_obj>
</item>
<item class_id_reference="20" object_id="_63">
<id>69</id>
<edge_type>2</edge_type>
<source_obj>22</source_obj>
<sink_obj>17</sink_obj>
</item>
<item class_id_reference="20" object_id="_64">
<id>70</id>
<edge_type>2</edge_type>
<source_obj>47</source_obj>
<sink_obj>17</sink_obj>
</item>
<item class_id_reference="20" object_id="_65">
<id>71</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_66">
<id>73</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_67">
<id>74</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_68">
<id>75</id>
<edge_type>2</edge_type>
<source_obj>32</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_69">
<id>76</id>
<edge_type>2</edge_type>
<source_obj>35</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_70">
<id>77</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_71">
<id>79</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>78</sink_obj>
</item>
<item class_id_reference="20" object_id="_72">
<id>80</id>
<edge_type>1</edge_type>
<source_obj>78</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_73">
<id>81</id>
<edge_type>2</edge_type>
<source_obj>44</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_74">
<id>82</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>23</sink_obj>
</item>
<item class_id_reference="20" object_id="_75">
<id>84</id>
<edge_type>1</edge_type>
<source_obj>83</source_obj>
<sink_obj>24</sink_obj>
</item>
<item class_id_reference="20" object_id="_76">
<id>85</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>24</sink_obj>
</item>
<item class_id_reference="20" object_id="_77">
<id>86</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>25</sink_obj>
</item>
<item class_id_reference="20" object_id="_78">
<id>87</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>26</sink_obj>
</item>
<item class_id_reference="20" object_id="_79">
<id>89</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>26</sink_obj>
</item>
<item class_id_reference="20" object_id="_80">
<id>90</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>26</sink_obj>
</item>
<item class_id_reference="20" object_id="_81">
<id>91</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>27</sink_obj>
</item>
<item class_id_reference="20" object_id="_82">
<id>92</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>28</sink_obj>
</item>
<item class_id_reference="20" object_id="_83">
<id>93</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>29</sink_obj>
</item>
<item class_id_reference="20" object_id="_84">
<id>94</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>29</sink_obj>
</item>
<item class_id_reference="20" object_id="_85">
<id>95</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>29</sink_obj>
</item>
<item class_id_reference="20" object_id="_86">
<id>96</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_87">
<id>97</id>
<edge_type>1</edge_type>
<source_obj>29</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_88">
<id>98</id>
<edge_type>2</edge_type>
<source_obj>44</source_obj>
<sink_obj>31</sink_obj>
</item>
<item class_id_reference="20" object_id="_89">
<id>99</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>36</sink_obj>
</item>
<item class_id_reference="20" object_id="_90">
<id>100</id>
<edge_type>2</edge_type>
<source_obj>35</source_obj>
<sink_obj>36</sink_obj>
</item>
<item class_id_reference="20" object_id="_91">
<id>101</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>36</sink_obj>
</item>
<item class_id_reference="20" object_id="_92">
<id>102</id>
<edge_type>2</edge_type>
<source_obj>32</source_obj>
<sink_obj>36</sink_obj>
</item>
<item class_id_reference="20" object_id="_93">
<id>103</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_94">
<id>104</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>38</sink_obj>
</item>
<item class_id_reference="20" object_id="_95">
<id>105</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>38</sink_obj>
</item>
<item class_id_reference="20" object_id="_96">
<id>106</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>38</sink_obj>
</item>
<item class_id_reference="20" object_id="_97">
<id>107</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>39</sink_obj>
</item>
<item class_id_reference="20" object_id="_98">
<id>108</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_99">
<id>109</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_100">
<id>110</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_101">
<id>111</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_102">
<id>112</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_103">
<id>114</id>
<edge_type>1</edge_type>
<source_obj>113</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_104">
<id>115</id>
<edge_type>2</edge_type>
<source_obj>18</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_105">
<id>118</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_106">
<id>119</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_107">
<id>141</id>
<edge_type>2</edge_type>
<source_obj>11</source_obj>
<sink_obj>18</sink_obj>
</item>
<item class_id_reference="20" object_id="_108">
<id>142</id>
<edge_type>2</edge_type>
<source_obj>18</source_obj>
<sink_obj>47</sink_obj>
</item>
<item class_id_reference="20" object_id="_109">
<id>143</id>
<edge_type>2</edge_type>
<source_obj>18</source_obj>
<sink_obj>22</sink_obj>
</item>
<item class_id_reference="20" object_id="_110">
<id>144</id>
<edge_type>2</edge_type>
<source_obj>22</source_obj>
<sink_obj>35</sink_obj>
</item>
<item class_id_reference="20" object_id="_111">
<id>145</id>
<edge_type>2</edge_type>
<source_obj>22</source_obj>
<sink_obj>32</sink_obj>
</item>
<item class_id_reference="20" object_id="_112">
<id>146</id>
<edge_type>2</edge_type>
<source_obj>32</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_113">
<id>147</id>
<edge_type>2</edge_type>
<source_obj>35</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_114">
<id>148</id>
<edge_type>2</edge_type>
<source_obj>44</source_obj>
<sink_obj>18</sink_obj>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_115">
<mId>1</mId>
<mTag>fir</mTag>
<mType>0</mType>
<sub_regions>
<count>3</count>
<item_version>0</item_version>
<item>2</item>
<item>3</item>
<item>4</item>
</sub_regions>
<basic_blocks>
<count>0</count>
<item_version>0</item_version>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>89</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_116">
<mId>2</mId>
<mTag>Entry</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_117">
<mId>3</mId>
<mTag>Shift_Accum_Loop</mTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>5</count>
<item_version>0</item_version>
<item>18</item>
<item>22</item>
<item>32</item>
<item>35</item>
<item>44</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>11</mMinTripCount>
<mMaxTripCount>11</mMaxTripCount>
<mMinLatency>88</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_118">
<mId>4</mId>
<mTag>Return</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
</cdfg_regions>
<fsm class_id="-1"></fsm>
<res class_id="25" tracking_level="1" version="0" object_id="_119">
<dp_component_resource class_id="26" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_component_resource>
<dp_expression_resource>
<count>0</count>
<item_version>0</item_version>
</dp_expression_resource>
<dp_fifo_resource>
<count>0</count>
<item_version>0</item_version>
</dp_fifo_resource>
<dp_memory_resource>
<count>0</count>
<item_version>0</item_version>
</dp_memory_resource>
<dp_multiplexer_resource>
<count>0</count>
<item_version>0</item_version>
</dp_multiplexer_resource>
<dp_register_resource>
<count>0</count>
<item_version>0</item_version>
</dp_register_resource>
<dp_component_map class_id="27" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_component_map>
<dp_expression_map>
<count>0</count>
<item_version>0</item_version>
</dp_expression_map>
<dp_fifo_map>
<count>0</count>
<item_version>0</item_version>
</dp_fifo_map>
<dp_memory_map>
<count>0</count>
<item_version>0</item_version>
</dp_memory_map>
</res>
<node_label_latency class_id="28" tracking_level="0" version="0">
<count>30</count>
<item_version>0</item_version>
<item class_id="29" tracking_level="0" version="0">
<first>9</first>
<second class_id="30" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>10</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>12</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>13</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>14</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>15</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>17</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>23</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>24</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>25</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>26</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>27</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>28</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>29</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>30</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>31</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>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>36</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>37</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>39</first>
<second>
<first>2</first>
<second>1</second>
</second>
</item>
<item>
<first>40</first>
<second>
<first>3</first>
<second>5</second>
</second>
</item>
<item>
<first>41</first>
<second>
<first>8</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>8</first>
<second>0</second>
</second>
</item>
<item>
<first>45</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>46</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="31" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="32" tracking_level="0" version="0">
<first>11</first>
<second class_id="33" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>18</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>22</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>32</first>
<second>
<first>1</first>
<second>2</second>
</second>
</item>
<item>
<first>35</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>44</first>
<second>
<first>2</first>
<second>8</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="34" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</regions>
<dp_fu_nodes class_id="35" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="36" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_expression>
<dp_fu_nodes_module>
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_module>
<dp_fu_nodes_io>
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_io>
<return_ports>
<count>0</count>
<item_version>0</item_version>
</return_ports>
<dp_mem_port_nodes class_id="37" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>0</count>
<item_version>0</item_version>
</dp_reg_nodes>
<dp_regname_nodes>
<count>0</count>
<item_version>0</item_version>
</dp_regname_nodes>
<dp_reg_phi>
<count>0</count>
<item_version>0</item_version>
</dp_reg_phi>
<dp_regname_phi>
<count>0</count>
<item_version>0</item_version>
</dp_regname_phi>
<dp_port_io_nodes class_id="38" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_port_io_nodes>
<port2core class_id="39" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
|
with HWIF_Types; use HWIF_Types;
with MMap;
with System.Storage_Elements;
with System;
pragma Elaborate(MMap);
package HWIF is
Addr : constant System.Address := MMap.Get_MMAP_RW;
function "+" (A : in System.Address;
B : in System.Storage_Elements.Storage_Offset)
return System.Address
renames System.Storage_Elements."+";
type Direction is (North, South, East, West);
type Direction_Octet is array (Direction) of Octet;
-- Vehicle traffic lights are a single octet.
-- 1 => green, 2 => amber, 4 => red.
Traffic_Light : Direction_Octet with Address => Addr;
pragma Volatile (Traffic_Light);
-- Pedestrian lights are also a single octet.
-- 1 => green, 2 => red.
Pedestrian_Light : Direction_Octet with Address => Addr+10;
pragma Volatile (Pedestrian_Light);
-- Pedestrian wait lights.
-- 1 => on.
Pedestrian_Wait : Direction_Octet with Address => Addr+20;
pragma Volatile (Pedestrian_Wait);
-- Pedestrian button.
-- 1 => currently pressed.
Pedestrian_Button : Direction_Octet with Address => Addr+30;
pragma Volatile (Pedestrian_Button);
-- Priority sensor for emergency vehicles.
-- 1 => signal currently being received.
Emergency_Vehicle_Sensor : Direction_Octet with Address => Addr+40;
pragma Volatile (Emergency_Vehicle_Sensor);
end HWIF;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . I M G _ D E C --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2019, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- Image for decimal fixed types where the size of the corresponding integer
-- type does not exceed Integer'Size (also used for Text_IO.Decimal_IO output)
package System.Img_Dec is
pragma Pure;
procedure Image_Decimal
(V : Integer;
S : in out String;
P : out Natural;
Scale : Integer);
-- Computes fixed_type'Image (V), where V is the integer value (in units of
-- delta) of a decimal type whose Scale is as given and stores the result
-- S (1 .. P), updating P to the value of L. The image is given by the
-- rules in RM 3.5(34) for fixed-point type image functions. The caller
-- guarantees that S is long enough to hold the result. S need not have a
-- lower bound of 1.
procedure Set_Image_Decimal
(V : Integer;
S : in out String;
P : in out Natural;
Scale : Integer;
Fore : Natural;
Aft : Natural;
Exp : Natural);
-- Sets the image of V, where V is the integer value (in units of delta)
-- of a decimal type with the given Scale, starting at S (P + 1), updating
-- P to point to the last character stored, the caller promises that the
-- buffer is large enough and no check is made for this. Constraint_Error
-- will not necessarily be raised if this requirement is violated, since
-- it is perfectly valid to compile this unit with checks off. The Fore,
-- Aft and Exp values can be set to any valid values for the case of use
-- by Text_IO.Decimal_IO. Note that there is no leading space stored.
procedure Set_Decimal_Digits
(Digs : in out String;
NDigs : Natural;
S : out String;
P : in out Natural;
Scale : Integer;
Fore : Natural;
Aft : Natural;
Exp : Natural);
-- This procedure has the same semantics as Set_Image_Decimal, except that
-- the value in Digs (1 .. NDigs) is given as a string of decimal digits
-- preceded by either a minus sign or a space (i.e. the integer image of
-- the value in units of delta). The call may destroy the value in Digs,
-- which is why Digs is in-out (this happens if rounding is required).
-- Set_Decimal_Digits is shared by all the decimal image routines.
end System.Img_Dec;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . T A G S --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2014, Free Software Foundation, Inc. --
-- --
-- This specification is derived from the Ada Reference Manual for use with --
-- GNAT. The copyright notice above, and the license provisions that follow --
-- apply solely to the contents of the part following the private keyword. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This is the HI-E version of this file. It provides full object oriented
-- semantics (including dynamic dispatching and support for abstract
-- interface types), assuming that tagged types are declared at the library
-- level. Some functionality has been removed in order to simplify this
-- run-time unit. Compared to the full version of this package, the following
-- subprograms have been removed:
-- Internal_Tag, Register_Tag, Descendant_Tag, Is_Descendant_At_Same_Level:
-- These subprograms are used for cross-referencing the external and
-- internal representation of tags. The implementation of these routines
-- was considered neither simple nor esential for this restricted run-time,
-- and hence these functions were removed.
-- Get_Entry_Index, Get_Offset_Index, Get_Prim_Op_Kind, Get_Tagged_Kind,
-- SSD, Set_Entry_Index, Set_Prim_Op_Kind, OSD: They are used with types
-- that implement limited interfaces and are only invoked when there are
-- selective waits and ATC's where the trigger is a call to an interface
-- operation. These functions have been removed because selective waits
-- and ATC's are not supported by the restricted run-time.
-- Displace, IW_Membership, Offset_To_Top, Set_Dynamic_Offset_To_Top,
-- Base_Address, Register_Interface_Offset: They are used with extended
-- support for interface types that is not part of the zfp runtime
-- (membership test applied to interfaces, tagged types with variable
-- size components covering interfaces, explicit dereference through
-- access to interfaces, and unchecked deallocation through access to
-- interfaces).
-- 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.
pragma Restrictions (No_Exception_Propagation);
with System;
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 External_Tag (T : Tag) return String;
function Parent_Tag (T : Tag) return Tag;
pragma Ada_05 (Parent_Tag);
Tag_Error : exception;
private
-- Structure of the GNAT Primary Dispatch Table
-- +--------------------+
-- | Predef_Prims ---------------------------> +------------+
-- +--------------------+ | table of |
-- |Typeinfo_Ptr/TSD_Ptr --> Type Specific Data | predefined |
-- Tag --> +--------------------+ +-------------------+ | primitives |
-- | table of | | inheritance depth | +------------+
-- : primitive ops : +-------------------+
-- | pointers | | access level |
-- +--------------------+ +-------------------+
-- | alignment |
-- +-------------------+
-- | expanded name |
-- +-------------------+
-- | external tag |
-- +-------------------+
-- | hash table link |
-- +-------------------+
-- | transportable |
-- +-------------------+
-- | needs finalization|
-- +-------------------+
-- | table of |
-- : ancestor :
-- | tags |
-- +-------------------+
-- The runtime information kept for each tagged type is separated into
-- three objects: the Dispatch Table of predefined primitives, the dispatch
-- table of user-defined primitives 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);
type Tag_Table is array (Natural range <>) of Tag;
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 Type_Specific_Data (Idepth : Natural) is record
-- 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 ARM 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.
Needs_Finalization : Boolean;
-- Used to dynamically check whether an object is controlled or not
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);
type Dispatch_Table_Wrapper (Num_Prims : Natural) is record
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 (that is, the Prims_Ptr
-- 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;
TSD : System.Address;
Prims_Ptr : 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, allocates the Dispatch_Table record accordingly.
end record;
-- The following type declaration is used by the compiler when the program
-- is compiled with restriction No_Dispatching_Calls
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
Max_Predef_Prims : constant Positive := 9;
-- Number of reserved slots for predefined ada primitives: Size, Read,
-- Write, Input, Output, "=", assignment, deep adjust, and deep finalize.
-- The compiler checks that this value 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);
end Ada.Tags;
|
with Ada.Unchecked_Deallocation;
with PB_Support.IO;
with PB_Support.Internal;
package body Google.Protobuf.Duration is
function Length (Self : Duration_Vector) return Natural is
begin
return Self.Length;
end Length;
procedure Clear (Self : in out Duration_Vector) is
begin
Self.Length := 0;
end Clear;
procedure Free is new Ada.Unchecked_Deallocation
(Duration_Array, Duration_Array_Access);
procedure Append (Self : in out Duration_Vector; V : Duration) is
Init_Length : constant Positive := Positive'Max (1, 256 / Duration'Size);
begin
if Self.Length = 0 then
Self.Data := new Duration_Array (1 .. Init_Length);
elsif Self.Length = Self.Data'Last then
Self.Data :=
new Duration_Array'
(Self.Data.all & Duration_Array'(1 .. Self.Length => <>));
end if;
Self.Length := Self.Length + 1;
Self.Data (Self.Length) := V;
end Append;
overriding procedure Adjust (Self : in out Duration_Vector) is
begin
if Self.Length > 0 then
Self.Data := new Duration_Array'(Self.Data (1 .. Self.Length));
end if;
end Adjust;
overriding procedure Finalize (Self : in out Duration_Vector) is
begin
if Self.Data /= null then
Free (Self.Data);
end if;
end Finalize;
not overriding function Get_Duration_Variable_Reference
(Self : aliased in out Duration_Vector;
Index : Positive)
return Duration_Variable_Reference is
begin
return (Element => Self.Data (Index)'Access);
end Get_Duration_Variable_Reference;
not overriding function Get_Duration_Constant_Reference
(Self : aliased Duration_Vector;
Index : Positive)
return Duration_Constant_Reference is
begin
return (Element => Self.Data (Index)'Access);
end Get_Duration_Constant_Reference;
procedure Read_Duration
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : out Duration) is
Key : aliased PB_Support.IO.Key;
begin
while PB_Support.IO.Read_Key (Stream, Key'Access) loop
case Key.Field is
when 1 =>
PB_Support.IO.Read_Varint (Stream, Key.Encoding, V.Seconds);
when 2 =>
PB_Support.IO.Read_Varint (Stream, Key.Encoding, V.Nanos);
when others =>
PB_Support.IO.Unknown_Field (Stream, Key.Encoding);
end case;
end loop;
end Read_Duration;
procedure Write_Duration
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : Duration) is
begin
if Stream.all not in PB_Support.Internal.Stream then
declare
WS : aliased PB_Support.Internal.Stream (Stream);
begin
Write_Duration (WS'Access, V);
return;
end;
end if;
declare
WS : PB_Support.Internal.Stream renames
PB_Support.Internal.Stream (Stream.all);
begin
WS.Start_Message;
WS.Write_Varint_Option (1, V.Seconds, 0);
WS.Write_Varint_Option (2, V.Nanos, 0);
if WS.End_Message then
Write_Duration (WS'Access, V);
end if;
end;
end Write_Duration;
end Google.Protobuf.Duration; |
-- Copyright 2011-2015 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
package body Pck is
procedure Do_Nothing (A : System.Address) is
begin
null;
end Do_Nothing;
function Foos return String is
begin
return "string";
end Foos;
end Pck;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- G N A T . S O C K E T S . T H I N --
-- --
-- S p e c --
-- --
-- Copyright (C) 2001-2005, AdaCore --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package provides a target dependent thin interface to the sockets
-- layer for use by the GNAT.Sockets package (g-socket.ads). This package
-- should not be directly with'ed by an applications program.
-- This is the default version
with Interfaces.C.Pointers;
with Interfaces.C.Strings;
with GNAT.Sockets.Constants;
with GNAT.OS_Lib;
with System;
package GNAT.Sockets.Thin is
-- This package is intended for hosts implementing BSD sockets with a
-- standard interface. It will be used as a default for all the platforms
-- that do not have a specific version of this file.
package C renames Interfaces.C;
use type C.int;
-- This is so we can declare the Failure constant below
Success : constant C.int := 0;
Failure : constant C.int := -1;
function Socket_Errno return Integer renames GNAT.OS_Lib.Errno;
-- Returns last socket error number
function Socket_Error_Message (Errno : Integer) return C.Strings.chars_ptr;
-- Returns the error message string for the error number Errno. If Errno is
-- not known it returns "Unknown system error".
function Host_Errno return Integer;
pragma Import (C, Host_Errno, "__gnat_get_h_errno");
-- Returns last host error number
subtype Fd_Set_Access is System.Address;
No_Fd_Set : constant Fd_Set_Access := System.Null_Address;
type time_t is
range -2 ** (8 * Constants.SIZEOF_tv_sec - 1)
.. 2 ** (8 * Constants.SIZEOF_tv_sec - 1) - 1;
for time_t'Size use 8 * Constants.SIZEOF_tv_sec;
pragma Convention (C, time_t);
type suseconds_t is
range -2 ** (8 * Constants.SIZEOF_tv_usec - 1)
.. 2 ** (8 * Constants.SIZEOF_tv_usec - 1) - 1;
for suseconds_t'Size use 8 * Constants.SIZEOF_tv_usec;
pragma Convention (C, suseconds_t);
type Timeval is record
Tv_Sec : time_t;
Tv_Usec : suseconds_t;
end record;
pragma Convention (C, Timeval);
type Timeval_Access is access all Timeval;
pragma Convention (C, Timeval_Access);
Immediat : constant Timeval := (0, 0);
type Int_Access is access all C.int;
pragma Convention (C, Int_Access);
-- Access to C integers
type Chars_Ptr_Array is array (C.size_t range <>) of
aliased C.Strings.chars_ptr;
package Chars_Ptr_Pointers is
new C.Pointers (C.size_t, C.Strings.chars_ptr, Chars_Ptr_Array,
C.Strings.Null_Ptr);
-- Arrays of C (char *)
type In_Addr is record
S_B1, S_B2, S_B3, S_B4 : C.unsigned_char;
end record;
pragma Convention (C, In_Addr);
-- Internet address
type In_Addr_Access is access all In_Addr;
pragma Convention (C, In_Addr_Access);
-- Access to internet address
Inaddr_Any : aliased constant In_Addr := (others => 0);
-- Any internet address (all the interfaces)
type In_Addr_Access_Array is array (C.size_t range <>)
of aliased In_Addr_Access;
pragma Convention (C, In_Addr_Access_Array);
package In_Addr_Access_Pointers is
new C.Pointers (C.size_t, In_Addr_Access, In_Addr_Access_Array, null);
-- Array of internet addresses
type Sockaddr is record
Sa_Family : C.unsigned_short;
Sa_Data : C.char_array (1 .. 14);
end record;
pragma Convention (C, Sockaddr);
-- Socket address
type Sockaddr_Access is access all Sockaddr;
pragma Convention (C, Sockaddr_Access);
-- Access to socket address
type Sockaddr_In is record
Sin_Family : C.unsigned_short := Constants.AF_INET;
Sin_Port : C.unsigned_short := 0;
Sin_Addr : In_Addr := Inaddr_Any;
Sin_Zero : C.char_array (1 .. 8) := (others => C.char'Val (0));
end record;
pragma Convention (C, Sockaddr_In);
-- Internet socket address
type Sockaddr_In_Access is access all Sockaddr_In;
pragma Convention (C, Sockaddr_In_Access);
-- Access to internet socket address
procedure Set_Length
(Sin : Sockaddr_In_Access;
Len : C.int);
pragma Inline (Set_Length);
-- Set Sin.Sin_Length to Len.
-- On this platform, nothing is done as there is no such field.
procedure Set_Family
(Sin : Sockaddr_In_Access;
Family : C.int);
pragma Inline (Set_Family);
-- Set Sin.Sin_Family to Family
procedure Set_Port
(Sin : Sockaddr_In_Access;
Port : C.unsigned_short);
pragma Inline (Set_Port);
-- Set Sin.Sin_Port to Port
procedure Set_Address
(Sin : Sockaddr_In_Access;
Address : In_Addr);
pragma Inline (Set_Address);
-- Set Sin.Sin_Addr to Address
type Hostent is record
H_Name : C.Strings.chars_ptr;
H_Aliases : Chars_Ptr_Pointers.Pointer;
H_Addrtype : C.int;
H_Length : C.int;
H_Addr_List : In_Addr_Access_Pointers.Pointer;
end record;
pragma Convention (C, Hostent);
-- Host entry
type Hostent_Access is access all Hostent;
pragma Convention (C, Hostent_Access);
-- Access to host entry
type Servent is record
S_Name : C.Strings.chars_ptr;
S_Aliases : Chars_Ptr_Pointers.Pointer;
S_Port : C.int;
S_Proto : C.Strings.chars_ptr;
end record;
pragma Convention (C, Servent);
-- Service entry
type Servent_Access is access all Servent;
pragma Convention (C, Servent_Access);
-- Access to service entry
type Two_Int is array (0 .. 1) of C.int;
pragma Convention (C, Two_Int);
-- Used with pipe()
function C_Accept
(S : C.int;
Addr : System.Address;
Addrlen : access C.int) return C.int;
function C_Bind
(S : C.int;
Name : System.Address;
Namelen : C.int) return C.int;
function C_Close
(Fd : C.int) return C.int;
function C_Connect
(S : C.int;
Name : System.Address;
Namelen : C.int) return C.int;
function C_Gethostbyaddr
(Addr : System.Address;
Len : C.int;
Typ : C.int) return Hostent_Access;
function C_Gethostbyname
(Name : C.char_array) return Hostent_Access;
function C_Gethostname
(Name : System.Address;
Namelen : C.int) return C.int;
function C_Getpeername
(S : C.int;
Name : System.Address;
Namelen : access C.int) return C.int;
function C_Getservbyname
(Name : C.char_array;
Proto : C.char_array) return Servent_Access;
function C_Getservbyport
(Port : C.int;
Proto : C.char_array) return Servent_Access;
function C_Getsockname
(S : C.int;
Name : System.Address;
Namelen : access C.int) return C.int;
function C_Getsockopt
(S : C.int;
Level : C.int;
Optname : C.int;
Optval : System.Address;
Optlen : access C.int) return C.int;
function C_Inet_Addr
(Cp : C.Strings.chars_ptr) return C.int;
function C_Ioctl
(S : C.int;
Req : C.int;
Arg : Int_Access) return C.int;
function C_Listen
(S : C.int;
Backlog : C.int) return C.int;
function C_Readv
(Fd : C.int;
Iov : System.Address;
Iovcnt : C.int) return C.int;
function C_Recv
(S : C.int;
Msg : System.Address;
Len : C.int;
Flags : C.int) return C.int;
function C_Recvfrom
(S : C.int;
Msg : System.Address;
Len : C.int;
Flags : C.int;
From : Sockaddr_In_Access;
Fromlen : access C.int) return C.int;
function C_Select
(Nfds : C.int;
Readfds : Fd_Set_Access;
Writefds : Fd_Set_Access;
Exceptfds : Fd_Set_Access;
Timeout : Timeval_Access) return C.int;
function C_Send
(S : C.int;
Msg : System.Address;
Len : C.int;
Flags : C.int) return C.int;
function C_Sendto
(S : C.int;
Msg : System.Address;
Len : C.int;
Flags : C.int;
To : Sockaddr_In_Access;
Tolen : C.int) return C.int;
function C_Setsockopt
(S : C.int;
Level : C.int;
Optname : C.int;
Optval : System.Address;
Optlen : C.int) return C.int;
function C_Shutdown
(S : C.int;
How : C.int) return C.int;
function C_Socket
(Domain : C.int;
Typ : C.int;
Protocol : C.int) return C.int;
function C_Strerror
(Errnum : C.int) return C.Strings.chars_ptr;
function C_System
(Command : System.Address) return C.int;
function C_Writev
(Fd : C.int;
Iov : System.Address;
Iovcnt : C.int) return C.int;
procedure Free_Socket_Set
(Set : Fd_Set_Access);
-- Free system-dependent socket set
procedure Get_Socket_From_Set
(Set : Fd_Set_Access;
Socket : Int_Access;
Last : Int_Access);
-- Get last socket in Socket and remove it from the socket
-- set. The parameter Last is a maximum value of the largest
-- socket. This hint is used to avoid scanning very large socket
-- sets. After a call to Get_Socket_From_Set, Last is set back to
-- the real largest socket in the socket set.
procedure Insert_Socket_In_Set
(Set : Fd_Set_Access;
Socket : C.int);
-- Insert socket in the socket set
function Is_Socket_In_Set
(Set : Fd_Set_Access;
Socket : C.int) return C.int;
-- Check whether Socket is in the socket set, return a non-zero
-- value if it is, zero if it is not.
procedure Last_Socket_In_Set
(Set : Fd_Set_Access;
Last : Int_Access);
-- Find the largest socket in the socket set. This is needed for select().
-- When Last_Socket_In_Set is called, parameter Last is a maximum value of
-- the largest socket. This hint is used to avoid scanning very large
-- socket sets. After the call, Last is set back to the real largest socket
-- in the socket set.
function New_Socket_Set
(Set : Fd_Set_Access) return Fd_Set_Access;
-- Allocate a new socket set which is a system-dependent structure and
-- initialize by copying Set if it is non-null, by making it empty
-- otherwise.
procedure Remove_Socket_From_Set
(Set : Fd_Set_Access;
Socket : C.int);
-- Remove socket from the socket set
procedure Finalize;
procedure Initialize (Process_Blocking_IO : Boolean);
private
pragma Import (C, C_Bind, "bind");
pragma Import (C, C_Close, "close");
pragma Import (C, C_Gethostbyaddr, "gethostbyaddr");
pragma Import (C, C_Gethostbyname, "gethostbyname");
pragma Import (C, C_Gethostname, "gethostname");
pragma Import (C, C_Getpeername, "getpeername");
pragma Import (C, C_Getservbyname, "getservbyname");
pragma Import (C, C_Getservbyport, "getservbyport");
pragma Import (C, C_Getsockname, "getsockname");
pragma Import (C, C_Getsockopt, "getsockopt");
pragma Import (C, C_Inet_Addr, "inet_addr");
pragma Import (C, C_Listen, "listen");
pragma Import (C, C_Readv, "readv");
pragma Import (C, C_Select, "select");
pragma Import (C, C_Setsockopt, "setsockopt");
pragma Import (C, C_Shutdown, "shutdown");
pragma Import (C, C_Strerror, "strerror");
pragma Import (C, C_System, "system");
pragma Import (C, C_Writev, "writev");
pragma Import (C, Free_Socket_Set, "__gnat_free_socket_set");
pragma Import (C, Get_Socket_From_Set, "__gnat_get_socket_from_set");
pragma Import (C, Is_Socket_In_Set, "__gnat_is_socket_in_set");
pragma Import (C, Last_Socket_In_Set, "__gnat_last_socket_in_set");
pragma Import (C, New_Socket_Set, "__gnat_new_socket_set");
pragma Import (C, Insert_Socket_In_Set, "__gnat_insert_socket_in_set");
pragma Import (C, Remove_Socket_From_Set, "__gnat_remove_socket_from_set");
end GNAT.Sockets.Thin;
|
------------------------------------------------------------------------------
-- --
-- GNAT LIBRARY COMPONENTS --
-- --
-- ADA.CONTAINERS.INDEFINITE_ORDERED_MAPS --
-- --
-- B o d y --
-- --
-- Copyright (C) 2004-2015, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- This unit was originally developed by Matthew J Heaney. --
------------------------------------------------------------------------------
with Ada.Unchecked_Deallocation;
with Ada.Containers.Helpers; use Ada.Containers.Helpers;
with Ada.Containers.Red_Black_Trees.Generic_Operations;
pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Operations);
with Ada.Containers.Red_Black_Trees.Generic_Keys;
pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Keys);
with System; use type System.Address;
package body Ada.Containers.Indefinite_Ordered_Maps is
pragma Suppress (All_Checks);
pragma Warnings (Off, "variable ""Busy*"" is not referenced");
pragma Warnings (Off, "variable ""Lock*"" is not referenced");
-- See comment in Ada.Containers.Helpers
-----------------------------
-- Node Access Subprograms --
-----------------------------
-- These subprograms provide a functional interface to access fields
-- of a node, and a procedural interface for modifying these values.
function Color (Node : Node_Access) return Color_Type;
pragma Inline (Color);
function Left (Node : Node_Access) return Node_Access;
pragma Inline (Left);
function Parent (Node : Node_Access) return Node_Access;
pragma Inline (Parent);
function Right (Node : Node_Access) return Node_Access;
pragma Inline (Right);
procedure Set_Parent (Node : Node_Access; Parent : Node_Access);
pragma Inline (Set_Parent);
procedure Set_Left (Node : Node_Access; Left : Node_Access);
pragma Inline (Set_Left);
procedure Set_Right (Node : Node_Access; Right : Node_Access);
pragma Inline (Set_Right);
procedure Set_Color (Node : Node_Access; Color : Color_Type);
pragma Inline (Set_Color);
-----------------------
-- Local Subprograms --
-----------------------
function Copy_Node (Source : Node_Access) return Node_Access;
pragma Inline (Copy_Node);
procedure Free (X : in out Node_Access);
function Is_Equal_Node_Node
(L, R : Node_Access) return Boolean;
pragma Inline (Is_Equal_Node_Node);
function Is_Greater_Key_Node
(Left : Key_Type;
Right : Node_Access) return Boolean;
pragma Inline (Is_Greater_Key_Node);
function Is_Less_Key_Node
(Left : Key_Type;
Right : Node_Access) return Boolean;
pragma Inline (Is_Less_Key_Node);
--------------------------
-- Local Instantiations --
--------------------------
package Tree_Operations is
new Red_Black_Trees.Generic_Operations (Tree_Types);
procedure Delete_Tree is
new Tree_Operations.Generic_Delete_Tree (Free);
function Copy_Tree is
new Tree_Operations.Generic_Copy_Tree (Copy_Node, Delete_Tree);
use Tree_Operations;
package Key_Ops is
new Red_Black_Trees.Generic_Keys
(Tree_Operations => Tree_Operations,
Key_Type => Key_Type,
Is_Less_Key_Node => Is_Less_Key_Node,
Is_Greater_Key_Node => Is_Greater_Key_Node);
procedure Free_Key is
new Ada.Unchecked_Deallocation (Key_Type, Key_Access);
procedure Free_Element is
new Ada.Unchecked_Deallocation (Element_Type, Element_Access);
function Is_Equal is
new Tree_Operations.Generic_Equal (Is_Equal_Node_Node);
---------
-- "<" --
---------
function "<" (Left, Right : Cursor) return Boolean is
begin
if Checks and then Left.Node = null then
raise Constraint_Error with "Left cursor of ""<"" equals No_Element";
end if;
if Checks and then Right.Node = null then
raise Constraint_Error with "Right cursor of ""<"" equals No_Element";
end if;
if Checks and then Left.Node.Key = null then
raise Program_Error with "Left cursor in ""<"" is bad";
end if;
if Checks and then Right.Node.Key = null then
raise Program_Error with "Right cursor in ""<"" is bad";
end if;
pragma Assert (Vet (Left.Container.Tree, Left.Node),
"Left cursor in ""<"" is bad");
pragma Assert (Vet (Right.Container.Tree, Right.Node),
"Right cursor in ""<"" is bad");
return Left.Node.Key.all < Right.Node.Key.all;
end "<";
function "<" (Left : Cursor; Right : Key_Type) return Boolean is
begin
if Checks and then Left.Node = null then
raise Constraint_Error with "Left cursor of ""<"" equals No_Element";
end if;
if Checks and then Left.Node.Key = null then
raise Program_Error with "Left cursor in ""<"" is bad";
end if;
pragma Assert (Vet (Left.Container.Tree, Left.Node),
"Left cursor in ""<"" is bad");
return Left.Node.Key.all < Right;
end "<";
function "<" (Left : Key_Type; Right : Cursor) return Boolean is
begin
if Checks and then Right.Node = null then
raise Constraint_Error with "Right cursor of ""<"" equals No_Element";
end if;
if Checks and then Right.Node.Key = null then
raise Program_Error with "Right cursor in ""<"" is bad";
end if;
pragma Assert (Vet (Right.Container.Tree, Right.Node),
"Right cursor in ""<"" is bad");
return Left < Right.Node.Key.all;
end "<";
---------
-- "=" --
---------
function "=" (Left, Right : Map) return Boolean is
begin
return Is_Equal (Left.Tree, Right.Tree);
end "=";
---------
-- ">" --
---------
function ">" (Left, Right : Cursor) return Boolean is
begin
if Checks and then Left.Node = null then
raise Constraint_Error with "Left cursor of "">"" equals No_Element";
end if;
if Checks and then Right.Node = null then
raise Constraint_Error with "Right cursor of "">"" equals No_Element";
end if;
if Checks and then Left.Node.Key = null then
raise Program_Error with "Left cursor in ""<"" is bad";
end if;
if Checks and then Right.Node.Key = null then
raise Program_Error with "Right cursor in ""<"" is bad";
end if;
pragma Assert (Vet (Left.Container.Tree, Left.Node),
"Left cursor in "">"" is bad");
pragma Assert (Vet (Right.Container.Tree, Right.Node),
"Right cursor in "">"" is bad");
return Right.Node.Key.all < Left.Node.Key.all;
end ">";
function ">" (Left : Cursor; Right : Key_Type) return Boolean is
begin
if Checks and then Left.Node = null then
raise Constraint_Error with "Left cursor of "">"" equals No_Element";
end if;
if Checks and then Left.Node.Key = null then
raise Program_Error with "Left cursor in ""<"" is bad";
end if;
pragma Assert (Vet (Left.Container.Tree, Left.Node),
"Left cursor in "">"" is bad");
return Right < Left.Node.Key.all;
end ">";
function ">" (Left : Key_Type; Right : Cursor) return Boolean is
begin
if Checks and then Right.Node = null then
raise Constraint_Error with "Right cursor of "">"" equals No_Element";
end if;
if Checks and then Right.Node.Key = null then
raise Program_Error with "Right cursor in ""<"" is bad";
end if;
pragma Assert (Vet (Right.Container.Tree, Right.Node),
"Right cursor in "">"" is bad");
return Right.Node.Key.all < Left;
end ">";
------------
-- Adjust --
------------
procedure Adjust is new Tree_Operations.Generic_Adjust (Copy_Tree);
procedure Adjust (Container : in out Map) is
begin
Adjust (Container.Tree);
end Adjust;
------------
-- Assign --
------------
procedure Assign (Target : in out Map; Source : Map) is
procedure Insert_Item (Node : Node_Access);
pragma Inline (Insert_Item);
procedure Insert_Items is
new Tree_Operations.Generic_Iteration (Insert_Item);
-----------------
-- Insert_Item --
-----------------
procedure Insert_Item (Node : Node_Access) is
begin
Target.Insert (Key => Node.Key.all, New_Item => Node.Element.all);
end Insert_Item;
-- Start of processing for Assign
begin
if Target'Address = Source'Address then
return;
end if;
Target.Clear;
Insert_Items (Source.Tree);
end Assign;
-------------
-- Ceiling --
-------------
function Ceiling (Container : Map; Key : Key_Type) return Cursor is
Node : constant Node_Access := Key_Ops.Ceiling (Container.Tree, Key);
begin
return (if Node = null then No_Element
else Cursor'(Container'Unrestricted_Access, Node));
end Ceiling;
-----------
-- Clear --
-----------
procedure Clear is new Tree_Operations.Generic_Clear (Delete_Tree);
procedure Clear (Container : in out Map) is
begin
Clear (Container.Tree);
end Clear;
-----------
-- Color --
-----------
function Color (Node : Node_Access) return Color_Type is
begin
return Node.Color;
end Color;
------------------------
-- Constant_Reference --
------------------------
function Constant_Reference
(Container : aliased Map;
Position : Cursor) return Constant_Reference_Type
is
begin
if Checks and then Position.Container = null then
raise Constraint_Error with
"Position cursor has no element";
end if;
if Checks and then Position.Container /= Container'Unrestricted_Access
then
raise Program_Error with
"Position cursor designates wrong map";
end if;
if Checks and then Position.Node.Element = null then
raise Program_Error with "Node has no element";
end if;
pragma Assert (Vet (Container.Tree, Position.Node),
"Position cursor in Constant_Reference is bad");
declare
TC : constant Tamper_Counts_Access :=
Container.Tree.TC'Unrestricted_Access;
begin
return R : constant Constant_Reference_Type :=
(Element => Position.Node.Element.all'Access,
Control => (Controlled with TC))
do
Lock (TC.all);
end return;
end;
end Constant_Reference;
function Constant_Reference
(Container : aliased Map;
Key : Key_Type) return Constant_Reference_Type
is
Node : constant Node_Access := Key_Ops.Find (Container.Tree, Key);
begin
if Checks and then Node = null then
raise Constraint_Error with "key not in map";
end if;
if Checks and then Node.Element = null then
raise Program_Error with "Node has no element";
end if;
declare
TC : constant Tamper_Counts_Access :=
Container.Tree.TC'Unrestricted_Access;
begin
return R : constant Constant_Reference_Type :=
(Element => Node.Element.all'Access,
Control => (Controlled with TC))
do
Lock (TC.all);
end return;
end;
end Constant_Reference;
--------------
-- Contains --
--------------
function Contains (Container : Map; Key : Key_Type) return Boolean is
begin
return Find (Container, Key) /= No_Element;
end Contains;
----------
-- Copy --
----------
function Copy (Source : Map) return Map is
begin
return Target : Map do
Target.Assign (Source);
end return;
end Copy;
---------------
-- Copy_Node --
---------------
function Copy_Node (Source : Node_Access) return Node_Access is
K : Key_Access := new Key_Type'(Source.Key.all);
E : Element_Access;
begin
E := new Element_Type'(Source.Element.all);
return new Node_Type'(Parent => null,
Left => null,
Right => null,
Color => Source.Color,
Key => K,
Element => E);
exception
when others =>
Free_Key (K);
Free_Element (E);
raise;
end Copy_Node;
------------
-- Delete --
------------
procedure Delete
(Container : in out Map;
Position : in out Cursor)
is
begin
if Checks and then Position.Node = null then
raise Constraint_Error with
"Position cursor of Delete equals No_Element";
end if;
if Checks and then
(Position.Node.Key = null or else Position.Node.Element = null)
then
raise Program_Error with "Position cursor of Delete is bad";
end if;
if Checks and then Position.Container /= Container'Unrestricted_Access
then
raise Program_Error with
"Position cursor of Delete designates wrong map";
end if;
pragma Assert (Vet (Container.Tree, Position.Node),
"Position cursor of Delete is bad");
Tree_Operations.Delete_Node_Sans_Free (Container.Tree, Position.Node);
Free (Position.Node);
Position.Container := null;
end Delete;
procedure Delete (Container : in out Map; Key : Key_Type) is
X : Node_Access := Key_Ops.Find (Container.Tree, Key);
begin
if Checks and then X = null then
raise Constraint_Error with "key not in map";
end if;
Delete_Node_Sans_Free (Container.Tree, X);
Free (X);
end Delete;
------------------
-- Delete_First --
------------------
procedure Delete_First (Container : in out Map) is
X : Node_Access := Container.Tree.First;
begin
if X /= null then
Tree_Operations.Delete_Node_Sans_Free (Container.Tree, X);
Free (X);
end if;
end Delete_First;
-----------------
-- Delete_Last --
-----------------
procedure Delete_Last (Container : in out Map) is
X : Node_Access := Container.Tree.Last;
begin
if X /= null then
Tree_Operations.Delete_Node_Sans_Free (Container.Tree, X);
Free (X);
end if;
end Delete_Last;
-------------
-- Element --
-------------
function Element (Position : Cursor) return Element_Type is
begin
if Checks and then Position.Node = null then
raise Constraint_Error with
"Position cursor of function Element equals No_Element";
end if;
if Checks and then Position.Node.Element = null then
raise Program_Error with
"Position cursor of function Element is bad";
end if;
pragma Assert (Vet (Position.Container.Tree, Position.Node),
"Position cursor of function Element is bad");
return Position.Node.Element.all;
end Element;
function Element (Container : Map; Key : Key_Type) return Element_Type is
Node : constant Node_Access := Key_Ops.Find (Container.Tree, Key);
begin
if Checks and then Node = null then
raise Constraint_Error with "key not in map";
end if;
return Node.Element.all;
end Element;
---------------------
-- Equivalent_Keys --
---------------------
function Equivalent_Keys (Left, Right : Key_Type) return Boolean is
begin
return (if Left < Right or else Right < Left then False else True);
end Equivalent_Keys;
-------------
-- Exclude --
-------------
procedure Exclude (Container : in out Map; Key : Key_Type) is
X : Node_Access := Key_Ops.Find (Container.Tree, Key);
begin
if X /= null then
Tree_Operations.Delete_Node_Sans_Free (Container.Tree, X);
Free (X);
end if;
end Exclude;
--------------
-- Finalize --
--------------
procedure Finalize (Object : in out Iterator) is
begin
if Object.Container /= null then
Unbusy (Object.Container.Tree.TC);
end if;
end Finalize;
----------
-- Find --
----------
function Find (Container : Map; Key : Key_Type) return Cursor is
Node : constant Node_Access := Key_Ops.Find (Container.Tree, Key);
begin
return (if Node = null then No_Element
else Cursor'(Container'Unrestricted_Access, Node));
end Find;
-----------
-- First --
-----------
function First (Container : Map) return Cursor is
T : Tree_Type renames Container.Tree;
begin
return (if T.First = null then No_Element
else Cursor'(Container'Unrestricted_Access, T.First));
end First;
function First (Object : Iterator) return Cursor is
begin
-- The value of the iterator object's Node component influences the
-- behavior of the First (and Last) selector function.
-- When the Node component is null, this means the iterator object was
-- constructed without a start expression, in which case the (forward)
-- iteration starts from the (logical) beginning of the entire sequence
-- of items (corresponding to Container.First for a forward iterator).
-- Otherwise, this is iteration over a partial sequence of items. When
-- the Node component is non-null, the iterator object was constructed
-- with a start expression, that specifies the position from which the
-- (forward) partial iteration begins.
if Object.Node = null then
return Object.Container.First;
else
return Cursor'(Object.Container, Object.Node);
end if;
end First;
-------------------
-- First_Element --
-------------------
function First_Element (Container : Map) return Element_Type is
T : Tree_Type renames Container.Tree;
begin
if Checks and then T.First = null then
raise Constraint_Error with "map is empty";
end if;
return T.First.Element.all;
end First_Element;
---------------
-- First_Key --
---------------
function First_Key (Container : Map) return Key_Type is
T : Tree_Type renames Container.Tree;
begin
if Checks and then T.First = null then
raise Constraint_Error with "map is empty";
end if;
return T.First.Key.all;
end First_Key;
-----------
-- Floor --
-----------
function Floor (Container : Map; Key : Key_Type) return Cursor is
Node : constant Node_Access := Key_Ops.Floor (Container.Tree, Key);
begin
return (if Node = null then No_Element
else Cursor'(Container'Unrestricted_Access, Node));
end Floor;
----------
-- Free --
----------
procedure Free (X : in out Node_Access) is
procedure Deallocate is
new Ada.Unchecked_Deallocation (Node_Type, Node_Access);
begin
if X = null then
return;
end if;
X.Parent := X;
X.Left := X;
X.Right := X;
begin
Free_Key (X.Key);
exception
when others =>
X.Key := null;
begin
Free_Element (X.Element);
exception
when others =>
X.Element := null;
end;
Deallocate (X);
raise;
end;
begin
Free_Element (X.Element);
exception
when others =>
X.Element := null;
Deallocate (X);
raise;
end;
Deallocate (X);
end Free;
------------------------
-- Get_Element_Access --
------------------------
function Get_Element_Access
(Position : Cursor) return not null Element_Access is
begin
return Position.Node.Element;
end Get_Element_Access;
-----------------
-- Has_Element --
-----------------
function Has_Element (Position : Cursor) return Boolean is
begin
return Position /= No_Element;
end Has_Element;
-------------
-- Include --
-------------
procedure Include
(Container : in out Map;
Key : Key_Type;
New_Item : Element_Type)
is
Position : Cursor;
Inserted : Boolean;
K : Key_Access;
E : Element_Access;
begin
Insert (Container, Key, New_Item, Position, Inserted);
if not Inserted then
TE_Check (Container.Tree.TC);
K := Position.Node.Key;
E := Position.Node.Element;
Position.Node.Key := new Key_Type'(Key);
declare
-- The element allocator may need an accessibility check in the
-- case the actual type is class-wide or has access discriminants
-- (see RM 4.8(10.1) and AI12-0035).
pragma Unsuppress (Accessibility_Check);
begin
Position.Node.Element := new Element_Type'(New_Item);
exception
when others =>
Free_Key (K);
raise;
end;
Free_Key (K);
Free_Element (E);
end if;
end Include;
------------
-- Insert --
------------
procedure Insert
(Container : in out Map;
Key : Key_Type;
New_Item : Element_Type;
Position : out Cursor;
Inserted : out Boolean)
is
function New_Node return Node_Access;
pragma Inline (New_Node);
procedure Insert_Post is
new Key_Ops.Generic_Insert_Post (New_Node);
procedure Insert_Sans_Hint is
new Key_Ops.Generic_Conditional_Insert (Insert_Post);
--------------
-- New_Node --
--------------
function New_Node return Node_Access is
Node : Node_Access := new Node_Type;
-- The element allocator may need an accessibility check in the case
-- the actual type is class-wide or has access discriminants (see
-- RM 4.8(10.1) and AI12-0035).
pragma Unsuppress (Accessibility_Check);
begin
Node.Key := new Key_Type'(Key);
Node.Element := new Element_Type'(New_Item);
return Node;
exception
when others =>
-- On exception, deallocate key and elem. Note that free
-- deallocates both the key and the elem.
Free (Node);
raise;
end New_Node;
-- Start of processing for Insert
begin
Insert_Sans_Hint
(Container.Tree,
Key,
Position.Node,
Inserted);
Position.Container := Container'Unrestricted_Access;
end Insert;
procedure Insert
(Container : in out Map;
Key : Key_Type;
New_Item : Element_Type)
is
Position : Cursor;
pragma Unreferenced (Position);
Inserted : Boolean;
begin
Insert (Container, Key, New_Item, Position, Inserted);
if Checks and then not Inserted then
raise Constraint_Error with "key already in map";
end if;
end Insert;
--------------
-- Is_Empty --
--------------
function Is_Empty (Container : Map) return Boolean is
begin
return Container.Tree.Length = 0;
end Is_Empty;
------------------------
-- Is_Equal_Node_Node --
------------------------
function Is_Equal_Node_Node (L, R : Node_Access) return Boolean is
begin
return (if L.Key.all < R.Key.all then False
elsif R.Key.all < L.Key.all then False
else L.Element.all = R.Element.all);
end Is_Equal_Node_Node;
-------------------------
-- Is_Greater_Key_Node --
-------------------------
function Is_Greater_Key_Node
(Left : Key_Type;
Right : Node_Access) return Boolean
is
begin
-- k > node same as node < k
return Right.Key.all < Left;
end Is_Greater_Key_Node;
----------------------
-- Is_Less_Key_Node --
----------------------
function Is_Less_Key_Node
(Left : Key_Type;
Right : Node_Access) return Boolean is
begin
return Left < Right.Key.all;
end Is_Less_Key_Node;
-------------
-- Iterate --
-------------
procedure Iterate
(Container : Map;
Process : not null access procedure (Position : Cursor))
is
procedure Process_Node (Node : Node_Access);
pragma Inline (Process_Node);
procedure Local_Iterate is
new Tree_Operations.Generic_Iteration (Process_Node);
------------------
-- Process_Node --
------------------
procedure Process_Node (Node : Node_Access) is
begin
Process (Cursor'(Container'Unrestricted_Access, Node));
end Process_Node;
Busy : With_Busy (Container.Tree.TC'Unrestricted_Access);
-- Start of processing for Iterate
begin
Local_Iterate (Container.Tree);
end Iterate;
function Iterate
(Container : Map) return Map_Iterator_Interfaces.Reversible_Iterator'Class
is
begin
-- The value of the Node component influences the behavior of the First
-- and Last selector functions of the iterator object. When the Node
-- component is null (as is the case here), this means the iterator
-- object was constructed without a start expression. This is a complete
-- iterator, meaning that the iteration starts from the (logical)
-- beginning of the sequence of items.
-- Note: For a forward iterator, Container.First is the beginning, and
-- for a reverse iterator, Container.Last is the beginning.
return It : constant Iterator :=
(Limited_Controlled with
Container => Container'Unrestricted_Access,
Node => null)
do
Busy (Container.Tree.TC'Unrestricted_Access.all);
end return;
end Iterate;
function Iterate
(Container : Map;
Start : Cursor)
return Map_Iterator_Interfaces.Reversible_Iterator'Class
is
begin
-- It was formerly the case that when Start = No_Element, the partial
-- iterator was defined to behave the same as for a complete iterator,
-- and iterate over the entire sequence of items. However, those
-- semantics were unintuitive and arguably error-prone (it is too easy
-- to accidentally create an endless loop), and so they were changed,
-- per the ARG meeting in Denver on 2011/11. However, there was no
-- consensus about what positive meaning this corner case should have,
-- and so it was decided to simply raise an exception. This does imply,
-- however, that it is not possible to use a partial iterator to specify
-- an empty sequence of items.
if Checks and then Start = No_Element then
raise Constraint_Error with
"Start position for iterator equals No_Element";
end if;
if Checks and then Start.Container /= Container'Unrestricted_Access then
raise Program_Error with
"Start cursor of Iterate designates wrong map";
end if;
pragma Assert (Vet (Container.Tree, Start.Node),
"Start cursor of Iterate is bad");
-- The value of the Node component influences the behavior of the First
-- and Last selector functions of the iterator object. When the Node
-- component is non-null (as is the case here), it means that this
-- is a partial iteration, over a subset of the complete sequence of
-- items. The iterator object was constructed with a start expression,
-- indicating the position from which the iteration begins. Note that
-- the start position has the same value irrespective of whether this
-- is a forward or reverse iteration.
return It : constant Iterator :=
(Limited_Controlled with
Container => Container'Unrestricted_Access,
Node => Start.Node)
do
Busy (Container.Tree.TC'Unrestricted_Access.all);
end return;
end Iterate;
---------
-- Key --
---------
function Key (Position : Cursor) return Key_Type is
begin
if Checks and then Position.Node = null then
raise Constraint_Error with
"Position cursor of function Key equals No_Element";
end if;
if Checks and then Position.Node.Key = null then
raise Program_Error with
"Position cursor of function Key is bad";
end if;
pragma Assert (Vet (Position.Container.Tree, Position.Node),
"Position cursor of function Key is bad");
return Position.Node.Key.all;
end Key;
----------
-- Last --
----------
function Last (Container : Map) return Cursor is
T : Tree_Type renames Container.Tree;
begin
return (if T.Last = null then No_Element
else Cursor'(Container'Unrestricted_Access, T.Last));
end Last;
function Last (Object : Iterator) return Cursor is
begin
-- The value of the iterator object's Node component influences the
-- behavior of the Last (and First) selector function.
-- When the Node component is null, this means the iterator object was
-- constructed without a start expression, in which case the (reverse)
-- iteration starts from the (logical) beginning of the entire sequence
-- (corresponding to Container.Last, for a reverse iterator).
-- Otherwise, this is iteration over a partial sequence of items. When
-- the Node component is non-null, the iterator object was constructed
-- with a start expression, that specifies the position from which the
-- (reverse) partial iteration begins.
if Object.Node = null then
return Object.Container.Last;
else
return Cursor'(Object.Container, Object.Node);
end if;
end Last;
------------------
-- Last_Element --
------------------
function Last_Element (Container : Map) return Element_Type is
T : Tree_Type renames Container.Tree;
begin
if Checks and then T.Last = null then
raise Constraint_Error with "map is empty";
end if;
return T.Last.Element.all;
end Last_Element;
--------------
-- Last_Key --
--------------
function Last_Key (Container : Map) return Key_Type is
T : Tree_Type renames Container.Tree;
begin
if Checks and then T.Last = null then
raise Constraint_Error with "map is empty";
end if;
return T.Last.Key.all;
end Last_Key;
----------
-- Left --
----------
function Left (Node : Node_Access) return Node_Access is
begin
return Node.Left;
end Left;
------------
-- Length --
------------
function Length (Container : Map) return Count_Type is
begin
return Container.Tree.Length;
end Length;
----------
-- Move --
----------
procedure Move is new Tree_Operations.Generic_Move (Clear);
procedure Move (Target : in out Map; Source : in out Map) is
begin
Move (Target => Target.Tree, Source => Source.Tree);
end Move;
----------
-- Next --
----------
function Next (Position : Cursor) return Cursor is
begin
if Position = No_Element then
return No_Element;
end if;
pragma Assert (Position.Node /= null);
pragma Assert (Position.Node.Key /= null);
pragma Assert (Position.Node.Element /= null);
pragma Assert (Vet (Position.Container.Tree, Position.Node),
"Position cursor of Next is bad");
declare
Node : constant Node_Access :=
Tree_Operations.Next (Position.Node);
begin
return (if Node = null then No_Element
else Cursor'(Position.Container, Node));
end;
end Next;
procedure Next (Position : in out Cursor) is
begin
Position := Next (Position);
end Next;
function Next
(Object : Iterator;
Position : Cursor) return Cursor
is
begin
if Position.Container = null then
return No_Element;
end if;
if Checks and then Position.Container /= Object.Container then
raise Program_Error with
"Position cursor of Next designates wrong map";
end if;
return Next (Position);
end Next;
------------
-- Parent --
------------
function Parent (Node : Node_Access) return Node_Access is
begin
return Node.Parent;
end Parent;
--------------
-- Previous --
--------------
function Previous (Position : Cursor) return Cursor is
begin
if Position = No_Element then
return No_Element;
end if;
pragma Assert (Position.Node /= null);
pragma Assert (Position.Node.Key /= null);
pragma Assert (Position.Node.Element /= null);
pragma Assert (Vet (Position.Container.Tree, Position.Node),
"Position cursor of Previous is bad");
declare
Node : constant Node_Access :=
Tree_Operations.Previous (Position.Node);
begin
return (if Node = null then No_Element
else Cursor'(Position.Container, Node));
end;
end Previous;
procedure Previous (Position : in out Cursor) is
begin
Position := Previous (Position);
end Previous;
function Previous
(Object : Iterator;
Position : Cursor) return Cursor
is
begin
if Position.Container = null then
return No_Element;
end if;
if Checks and then Position.Container /= Object.Container then
raise Program_Error with
"Position cursor of Previous designates wrong map";
end if;
return Previous (Position);
end Previous;
----------------------
-- Pseudo_Reference --
----------------------
function Pseudo_Reference
(Container : aliased Map'Class) return Reference_Control_Type
is
TC : constant Tamper_Counts_Access :=
Container.Tree.TC'Unrestricted_Access;
begin
return R : constant Reference_Control_Type := (Controlled with TC) do
Lock (TC.all);
end return;
end Pseudo_Reference;
-------------------
-- Query_Element --
-------------------
procedure Query_Element
(Position : Cursor;
Process : not null access procedure (Key : Key_Type;
Element : Element_Type))
is
begin
if Checks and then Position.Node = null then
raise Constraint_Error with
"Position cursor of Query_Element equals No_Element";
end if;
if Checks and then
(Position.Node.Key = null or else Position.Node.Element = null)
then
raise Program_Error with
"Position cursor of Query_Element is bad";
end if;
pragma Assert (Vet (Position.Container.Tree, Position.Node),
"Position cursor of Query_Element is bad");
declare
T : Tree_Type renames Position.Container.Tree;
Lock : With_Lock (T.TC'Unrestricted_Access);
K : Key_Type renames Position.Node.Key.all;
E : Element_Type renames Position.Node.Element.all;
begin
Process (K, E);
end;
end Query_Element;
----------
-- Read --
----------
procedure Read
(Stream : not null access Root_Stream_Type'Class;
Container : out Map)
is
function Read_Node
(Stream : not null access Root_Stream_Type'Class) return Node_Access;
pragma Inline (Read_Node);
procedure Read is
new Tree_Operations.Generic_Read (Clear, Read_Node);
---------------
-- Read_Node --
---------------
function Read_Node
(Stream : not null access Root_Stream_Type'Class) return Node_Access
is
Node : Node_Access := new Node_Type;
begin
Node.Key := new Key_Type'(Key_Type'Input (Stream));
Node.Element := new Element_Type'(Element_Type'Input (Stream));
return Node;
exception
when others =>
Free (Node); -- Note that Free deallocates key and elem too
raise;
end Read_Node;
-- Start of processing for Read
begin
Read (Stream, Container.Tree);
end Read;
procedure Read
(Stream : not null access Root_Stream_Type'Class;
Item : out Cursor)
is
begin
raise Program_Error with "attempt to stream map cursor";
end Read;
procedure Read
(Stream : not null access Root_Stream_Type'Class;
Item : out Reference_Type)
is
begin
raise Program_Error with "attempt to stream reference";
end Read;
procedure Read
(Stream : not null access Root_Stream_Type'Class;
Item : out Constant_Reference_Type)
is
begin
raise Program_Error with "attempt to stream reference";
end Read;
---------------
-- Reference --
---------------
function Reference
(Container : aliased in out Map;
Position : Cursor) return Reference_Type
is
begin
if Checks and then Position.Container = null then
raise Constraint_Error with
"Position cursor has no element";
end if;
if Checks and then Position.Container /= Container'Unrestricted_Access
then
raise Program_Error with
"Position cursor designates wrong map";
end if;
if Checks and then Position.Node.Element = null then
raise Program_Error with "Node has no element";
end if;
pragma Assert (Vet (Container.Tree, Position.Node),
"Position cursor in function Reference is bad");
declare
TC : constant Tamper_Counts_Access :=
Container.Tree.TC'Unrestricted_Access;
begin
return R : constant Reference_Type :=
(Element => Position.Node.Element.all'Access,
Control => (Controlled with TC))
do
Lock (TC.all);
end return;
end;
end Reference;
function Reference
(Container : aliased in out Map;
Key : Key_Type) return Reference_Type
is
Node : constant Node_Access := Key_Ops.Find (Container.Tree, Key);
begin
if Checks and then Node = null then
raise Constraint_Error with "key not in map";
end if;
if Checks and then Node.Element = null then
raise Program_Error with "Node has no element";
end if;
declare
TC : constant Tamper_Counts_Access :=
Container.Tree.TC'Unrestricted_Access;
begin
return R : constant Reference_Type :=
(Element => Node.Element.all'Access,
Control => (Controlled with TC))
do
Lock (TC.all);
end return;
end;
end Reference;
-------------
-- Replace --
-------------
procedure Replace
(Container : in out Map;
Key : Key_Type;
New_Item : Element_Type)
is
Node : constant Node_Access := Key_Ops.Find (Container.Tree, Key);
K : Key_Access;
E : Element_Access;
begin
if Checks and then Node = null then
raise Constraint_Error with "key not in map";
end if;
TE_Check (Container.Tree.TC);
K := Node.Key;
E := Node.Element;
Node.Key := new Key_Type'(Key);
declare
-- The element allocator may need an accessibility check in the case
-- the actual type is class-wide or has access discriminants (see
-- RM 4.8(10.1) and AI12-0035).
pragma Unsuppress (Accessibility_Check);
begin
Node.Element := new Element_Type'(New_Item);
exception
when others =>
Free_Key (K);
raise;
end;
Free_Key (K);
Free_Element (E);
end Replace;
---------------------
-- Replace_Element --
---------------------
procedure Replace_Element
(Container : in out Map;
Position : Cursor;
New_Item : Element_Type)
is
begin
if Checks and then Position.Node = null then
raise Constraint_Error with
"Position cursor of Replace_Element equals No_Element";
end if;
if Checks and then
(Position.Node.Key = null or else Position.Node.Element = null)
then
raise Program_Error with
"Position cursor of Replace_Element is bad";
end if;
if Checks and then Position.Container /= Container'Unrestricted_Access
then
raise Program_Error with
"Position cursor of Replace_Element designates wrong map";
end if;
TE_Check (Container.Tree.TC);
pragma Assert (Vet (Container.Tree, Position.Node),
"Position cursor of Replace_Element is bad");
declare
X : Element_Access := Position.Node.Element;
-- The element allocator may need an accessibility check in the case
-- the actual type is class-wide or has access discriminants (see
-- RM 4.8(10.1) and AI12-0035).
pragma Unsuppress (Accessibility_Check);
begin
Position.Node.Element := new Element_Type'(New_Item);
Free_Element (X);
end;
end Replace_Element;
---------------------
-- Reverse_Iterate --
---------------------
procedure Reverse_Iterate
(Container : Map;
Process : not null access procedure (Position : Cursor))
is
procedure Process_Node (Node : Node_Access);
pragma Inline (Process_Node);
procedure Local_Reverse_Iterate is
new Tree_Operations.Generic_Reverse_Iteration (Process_Node);
------------------
-- Process_Node --
------------------
procedure Process_Node (Node : Node_Access) is
begin
Process (Cursor'(Container'Unrestricted_Access, Node));
end Process_Node;
Busy : With_Busy (Container.Tree.TC'Unrestricted_Access);
-- Start of processing for Reverse_Iterate
begin
Local_Reverse_Iterate (Container.Tree);
end Reverse_Iterate;
-----------
-- Right --
-----------
function Right (Node : Node_Access) return Node_Access is
begin
return Node.Right;
end Right;
---------------
-- Set_Color --
---------------
procedure Set_Color (Node : Node_Access; Color : Color_Type) is
begin
Node.Color := Color;
end Set_Color;
--------------
-- Set_Left --
--------------
procedure Set_Left (Node : Node_Access; Left : Node_Access) is
begin
Node.Left := Left;
end Set_Left;
----------------
-- Set_Parent --
----------------
procedure Set_Parent (Node : Node_Access; Parent : Node_Access) is
begin
Node.Parent := Parent;
end Set_Parent;
---------------
-- Set_Right --
---------------
procedure Set_Right (Node : Node_Access; Right : Node_Access) is
begin
Node.Right := Right;
end Set_Right;
--------------------
-- Update_Element --
--------------------
procedure Update_Element
(Container : in out Map;
Position : Cursor;
Process : not null access procedure (Key : Key_Type;
Element : in out Element_Type))
is
begin
if Checks and then Position.Node = null then
raise Constraint_Error with
"Position cursor of Update_Element equals No_Element";
end if;
if Checks and then
(Position.Node.Key = null or else Position.Node.Element = null)
then
raise Program_Error with
"Position cursor of Update_Element is bad";
end if;
if Checks and then Position.Container /= Container'Unrestricted_Access
then
raise Program_Error with
"Position cursor of Update_Element designates wrong map";
end if;
pragma Assert (Vet (Container.Tree, Position.Node),
"Position cursor of Update_Element is bad");
declare
T : Tree_Type renames Position.Container.Tree;
Lock : With_Lock (T.TC'Unrestricted_Access);
K : Key_Type renames Position.Node.Key.all;
E : Element_Type renames Position.Node.Element.all;
begin
Process (K, E);
end;
end Update_Element;
-----------
-- Write --
-----------
procedure Write
(Stream : not null access Root_Stream_Type'Class;
Container : Map)
is
procedure Write_Node
(Stream : not null access Root_Stream_Type'Class;
Node : Node_Access);
pragma Inline (Write_Node);
procedure Write is
new Tree_Operations.Generic_Write (Write_Node);
----------------
-- Write_Node --
----------------
procedure Write_Node
(Stream : not null access Root_Stream_Type'Class;
Node : Node_Access)
is
begin
Key_Type'Output (Stream, Node.Key.all);
Element_Type'Output (Stream, Node.Element.all);
end Write_Node;
-- Start of processing for Write
begin
Write (Stream, Container.Tree);
end Write;
procedure Write
(Stream : not null access Root_Stream_Type'Class;
Item : Cursor)
is
begin
raise Program_Error with "attempt to stream map cursor";
end Write;
procedure Write
(Stream : not null access Root_Stream_Type'Class;
Item : Reference_Type)
is
begin
raise Program_Error with "attempt to stream reference";
end Write;
procedure Write
(Stream : not null access Root_Stream_Type'Class;
Item : Constant_Reference_Type)
is
begin
raise Program_Error with "attempt to stream reference";
end Write;
end Ada.Containers.Indefinite_Ordered_Maps;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- G N A T B I N D --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2006, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with ALI; use ALI;
with ALI.Util; use ALI.Util;
with Bcheck; use Bcheck;
with Binde; use Binde;
with Binderr; use Binderr;
with Bindgen; use Bindgen;
with Bindusg;
with Butil; use Butil;
with Casing; use Casing;
with Csets;
with Debug; use Debug;
with Fmap;
with Gnatvsn; use Gnatvsn;
with Namet; use Namet;
with Opt; use Opt;
with Osint; use Osint;
with Osint.B; use Osint.B;
with Output; use Output;
with Rident; use Rident;
with Snames;
with Switch; use Switch;
with Switch.B; use Switch.B;
with Targparm; use Targparm;
with Types; use Types;
with System.Case_Util; use System.Case_Util;
procedure Gnatbind is
Total_Errors : Nat := 0;
-- Counts total errors in all files
Total_Warnings : Nat := 0;
-- Total warnings in all files
Main_Lib_File : File_Name_Type;
-- Current main library file
Std_Lib_File : File_Name_Type;
-- Standard library
Text : Text_Buffer_Ptr;
Next_Arg : Positive;
Output_File_Name_Seen : Boolean := False;
Output_File_Name : String_Ptr := new String'("");
L_Switch_Seen : Boolean := False;
Mapping_File : String_Ptr := null;
function Gnatbind_Supports_Auto_Init return Boolean;
-- Indicates if automatic initialization of elaboration procedure
-- through the constructor mechanism is possible on the platform.
procedure List_Applicable_Restrictions;
-- List restrictions that apply to this partition if option taken
procedure Scan_Bind_Arg (Argv : String);
-- Scan and process binder specific arguments. Argv is a single argument.
-- All the one character arguments are still handled by Switch. This
-- routine handles -aO -aI and -I-.
function Is_Cross_Compiler return Boolean;
-- Returns True iff this is a cross-compiler
---------------------------------
-- Gnatbind_Supports_Auto_Init --
---------------------------------
function Gnatbind_Supports_Auto_Init return Boolean is
function gnat_binder_supports_auto_init return Integer;
pragma Import (C, gnat_binder_supports_auto_init,
"__gnat_binder_supports_auto_init");
begin
return gnat_binder_supports_auto_init /= 0;
end Gnatbind_Supports_Auto_Init;
-----------------------
-- Is_Cross_Compiler --
-----------------------
function Is_Cross_Compiler return Boolean is
Cross_Compiler : Integer;
pragma Import (C, Cross_Compiler, "__gnat_is_cross_compiler");
begin
return Cross_Compiler = 1;
end Is_Cross_Compiler;
----------------------------------
-- List_Applicable_Restrictions --
----------------------------------
procedure List_Applicable_Restrictions is
-- Define those restrictions that should be output if the gnatbind
-- -r switch is used. Not all restrictions are output for the reasons
-- given above in the list, and this array is used to test whether
-- the corresponding pragma should be listed. True means that it
-- should not be listed.
No_Restriction_List : constant array (All_Restrictions) of Boolean :=
(No_Exceptions => True,
-- Has unexpected Suppress (All_Checks) effect
No_Implicit_Conditionals => True,
-- This could modify and pessimize generated code
No_Implicit_Dynamic_Code => True,
-- This could modify and pessimize generated code
No_Implicit_Loops => True,
-- This could modify and pessimize generated code
No_Recursion => True,
-- Not checkable at compile time
No_Reentrancy => True,
-- Not checkable at compile time
Max_Entry_Queue_Length => True,
-- Not checkable at compile time
Max_Storage_At_Blocking => True,
-- Not checkable at compile time
others => False);
Additional_Restrictions_Listed : Boolean := False;
-- Set True if we have listed header for restrictions
begin
-- Loop through restrictions
for R in All_Restrictions loop
if not No_Restriction_List (R) then
-- We list a restriction if it is not violated, or if
-- it is violated but the violation count is exactly known.
if Cumulative_Restrictions.Violated (R) = False
or else (R in All_Parameter_Restrictions
and then
Cumulative_Restrictions.Unknown (R) = False)
then
if not Additional_Restrictions_Listed then
Write_Eol;
Write_Line
("The following additional restrictions may be" &
" applied to this partition:");
Additional_Restrictions_Listed := True;
end if;
Write_Str ("pragma Restrictions (");
declare
S : constant String := Restriction_Id'Image (R);
begin
Name_Len := S'Length;
Name_Buffer (1 .. Name_Len) := S;
end;
Set_Casing (Mixed_Case);
Write_Str (Name_Buffer (1 .. Name_Len));
if R in All_Parameter_Restrictions then
Write_Str (" => ");
Write_Int (Int (Cumulative_Restrictions.Count (R)));
end if;
Write_Str (");");
Write_Eol;
end if;
end if;
end loop;
end List_Applicable_Restrictions;
-------------------
-- Scan_Bind_Arg --
-------------------
procedure Scan_Bind_Arg (Argv : String) is
-- LLVM local
pragma Assert (Argv'First = 1);
begin
-- Now scan arguments that are specific to the binder and are not
-- handled by the common circuitry in Switch.
if Opt.Output_File_Name_Present
and then not Output_File_Name_Seen
then
Output_File_Name_Seen := True;
if Argv'Length = 0
or else (Argv'Length >= 1 and then Argv (1) = '-')
then
Fail ("output File_Name missing after -o");
else
Output_File_Name := new String'(Argv);
end if;
elsif Argv'Length >= 2 and then Argv (1) = '-' then
-- -I-
if Argv (2 .. Argv'Last) = "I-" then
Opt.Look_In_Primary_Dir := False;
-- -Idir
elsif Argv (2) = 'I' then
Add_Src_Search_Dir (Argv (3 .. Argv'Last));
Add_Lib_Search_Dir (Argv (3 .. Argv'Last));
-- -Ldir
elsif Argv (2) = 'L' then
if Argv'Length >= 3 then
-- Remember that the -L switch was specified, so that if this
-- is on OpenVMS, the export names are put in uppercase.
-- This is not known before the target parameters are read.
L_Switch_Seen := True;
Opt.Bind_For_Library := True;
Opt.Ada_Init_Name :=
new String'(Argv (3 .. Argv'Last) & Opt.Ada_Init_Suffix);
Opt.Ada_Final_Name :=
new String'(Argv (3 .. Argv'Last) & Opt.Ada_Final_Suffix);
Opt.Ada_Main_Name :=
new String'(Argv (3 .. Argv'Last) & Opt.Ada_Main_Name_Suffix);
-- This option (-Lxxx) implies -n
Opt.Bind_Main_Program := False;
else
Fail
("Prefix of initialization and finalization " &
"procedure names missing in -L");
end if;
-- -Sin -Slo -Shi -Sxx
elsif Argv'Length = 4
and then Argv (2) = 'S'
then
declare
C1 : Character := Argv (3);
C2 : Character := Argv (4);
begin
-- Fold to upper case
if C1 in 'a' .. 'z' then
C1 := Character'Val (Character'Pos (C1) - 32);
end if;
if C2 in 'a' .. 'z' then
C2 := Character'Val (Character'Pos (C2) - 32);
end if;
-- Test valid option and set mode accordingly
if C1 = 'E' and then C2 = 'V' then
null;
elsif C1 = 'I' and then C2 = 'N' then
null;
elsif C1 = 'L' and then C2 = 'O' then
null;
elsif C1 = 'H' and then C2 = 'I' then
null;
elsif (C1 in '0' .. '9' or else C1 in 'A' .. 'F')
and then
(C2 in '0' .. '9' or else C2 in 'A' .. 'F')
then
null;
-- Invalid -S switch, let Switch give error, set defalut of IN
else
Scan_Binder_Switches (Argv);
C1 := 'I';
C2 := 'N';
end if;
Initialize_Scalars_Mode1 := C1;
Initialize_Scalars_Mode2 := C2;
end;
-- -aIdir
elsif Argv'Length >= 3
and then Argv (2 .. 3) = "aI"
then
Add_Src_Search_Dir (Argv (4 .. Argv'Last));
-- -aOdir
elsif Argv'Length >= 3
and then Argv (2 .. 3) = "aO"
then
Add_Lib_Search_Dir (Argv (4 .. Argv'Last));
-- -nostdlib
elsif Argv (2 .. Argv'Last) = "nostdlib" then
Opt.No_Stdlib := True;
-- -nostdinc
elsif Argv (2 .. Argv'Last) = "nostdinc" then
Opt.No_Stdinc := True;
-- -static
elsif Argv (2 .. Argv'Last) = "static" then
Opt.Shared_Libgnat := False;
-- -shared
elsif Argv (2 .. Argv'Last) = "shared" then
Opt.Shared_Libgnat := True;
-- -F=mapping_file
elsif Argv'Length >= 4 and then Argv (2 .. 3) = "F=" then
if Mapping_File /= null then
Fail ("cannot specify several mapping files");
end if;
Mapping_File := new String'(Argv (4 .. Argv'Last));
-- -Mname
elsif Argv'Length >= 3 and then Argv (2) = 'M' then
if not Is_Cross_Compiler then
Write_Line
("gnatbind: -M not expected to be used on native platforms");
end if;
Opt.Bind_Alternate_Main_Name := True;
Opt.Alternate_Main_Name := new String'(Argv (3 .. Argv'Last));
-- All other options are single character and are handled by
-- Scan_Binder_Switches.
else
Scan_Binder_Switches (Argv);
end if;
-- Not a switch, so must be a file name (if non-empty)
elsif Argv'Length /= 0 then
if Argv'Length > 4
and then Argv (Argv'Last - 3 .. Argv'Last) = ".ali"
then
Add_File (Argv);
else
Add_File (Argv & ".ali");
end if;
end if;
end Scan_Bind_Arg;
-- Start of processing for Gnatbind
begin
-- Set default for Shared_Libgnat option
declare
Shared_Libgnat_Default : Character;
pragma Import
(C, Shared_Libgnat_Default, "__gnat_shared_libgnat_default");
SHARED : constant Character := 'H';
STATIC : constant Character := 'T';
begin
pragma Assert
(Shared_Libgnat_Default = SHARED
or else
Shared_Libgnat_Default = STATIC);
Shared_Libgnat := (Shared_Libgnat_Default = SHARED);
end;
-- Use low level argument routines to avoid dragging in the secondary stack
Next_Arg := 1;
Scan_Args : while Next_Arg < Arg_Count loop
declare
Next_Argv : String (1 .. Len_Arg (Next_Arg));
begin
Fill_Arg (Next_Argv'Address, Next_Arg);
Scan_Bind_Arg (Next_Argv);
end;
Next_Arg := Next_Arg + 1;
end loop Scan_Args;
if Use_Pragma_Linker_Constructor then
if Bind_Main_Program then
Fail ("switch -a must be used in conjunction with -n or -Lxxx");
elsif not Gnatbind_Supports_Auto_Init then
Fail ("automatic initialisation of elaboration " &
"not supported on this platform");
end if;
end if;
-- Test for trailing -o switch
if Opt.Output_File_Name_Present
and then not Output_File_Name_Seen
then
Fail ("output file name missing after -o");
end if;
-- Output usage if requested
if Usage_Requested then
Bindusg;
end if;
-- Check that the Ada binder file specified has extension .adb and that
-- the C binder file has extension .c
if Opt.Output_File_Name_Present
and then Output_File_Name_Seen
then
Check_Extensions : declare
Length : constant Natural := Output_File_Name'Length;
Last : constant Natural := Output_File_Name'Last;
begin
if Ada_Bind_File then
if Length <= 4
or else Output_File_Name (Last - 3 .. Last) /= ".adb"
then
Fail ("output file name should have .adb extension");
end if;
else
if Length <= 2
or else Output_File_Name (Last - 1 .. Last) /= ".c"
then
Fail ("output file name should have .c extension");
end if;
end if;
end Check_Extensions;
end if;
Osint.Add_Default_Search_Dirs;
-- Carry out package initializations. These are initializations which
-- might logically be performed at elaboration time, but Namet at least
-- can't be done that way (because it is used in the Compiler), and we
-- decide to be consistent. Like elaboration, the order in which these
-- calls are made is in some cases important.
Csets.Initialize;
Namet.Initialize;
Snames.Initialize;
-- Acquire target parameters
Targparm.Get_Target_Parameters;
-- Initialize Cumulative_Restrictions with the restrictions on the target
-- scanned from the system.ads file. Then as we read ALI files, we will
-- accumulate additional restrictions specified in other files.
Cumulative_Restrictions := Targparm.Restrictions_On_Target;
-- On OpenVMS, when -L is used, all external names used in pragmas Export
-- are in upper case. The reason is that on OpenVMS, the macro-assembler
-- MACASM-32, used to build Stand-Alone Libraries, only understands
-- uppercase.
if L_Switch_Seen and then OpenVMS_On_Target then
To_Upper (Opt.Ada_Init_Name.all);
To_Upper (Opt.Ada_Final_Name.all);
To_Upper (Opt.Ada_Main_Name.all);
end if;
-- Acquire configurable run-time mode
if Configurable_Run_Time_On_Target then
Configurable_Run_Time_Mode := True;
end if;
-- Output copyright notice if in verbose mode
if Verbose_Mode then
Write_Eol;
Write_Str ("GNATBIND ");
Write_Str (Gnat_Version_String);
Write_Eol;
Write_Str ("Copyright 1995-" &
Current_Year &
", Free Software Foundation, Inc.");
Write_Eol;
end if;
-- Output usage information if no files
if not More_Lib_Files then
Bindusg;
Exit_Program (E_Fatal);
end if;
-- If a mapping file was specified, initialize the file mapping
if Mapping_File /= null then
Fmap.Initialize (Mapping_File.all);
end if;
-- The block here is to catch the Unrecoverable_Error exception in the
-- case where we exceed the maximum number of permissible errors or some
-- other unrecoverable error occurs.
begin
-- Initialize binder packages
Initialize_Binderr;
Initialize_ALI;
Initialize_ALI_Source;
if Verbose_Mode then
Write_Eol;
end if;
-- Input ALI files
while More_Lib_Files loop
Main_Lib_File := Next_Main_Lib_File;
if Verbose_Mode then
if Check_Only then
Write_Str ("Checking: ");
else
Write_Str ("Binding: ");
end if;
Write_Name (Main_Lib_File);
Write_Eol;
end if;
Text := Read_Library_Info (Main_Lib_File, True);
declare
Id : ALI_Id;
pragma Warnings (Off, Id);
begin
Id := Scan_ALI
(F => Main_Lib_File,
T => Text,
Ignore_ED => False,
Err => False,
Ignore_Errors => Debug_Flag_I);
end;
Free (Text);
end loop;
-- No_Run_Time mode
if No_Run_Time_Mode then
-- Set standard configuration parameters
Suppress_Standard_Library_On_Target := True;
Configurable_Run_Time_Mode := True;
end if;
-- For main ALI files, even if they are interfaces, we get their
-- dependencies. To be sure, we reset the Interface flag for all main
-- ALI files.
for Index in ALIs.First .. ALIs.Last loop
ALIs.Table (Index).SAL_Interface := False;
end loop;
-- Add System.Standard_Library to list to ensure that these files are
-- included in the bind, even if not directly referenced from Ada code
-- This is suppressed if the appropriate targparm switch is set.
if not Suppress_Standard_Library_On_Target then
Name_Buffer (1 .. 12) := "s-stalib.ali";
Name_Len := 12;
Std_Lib_File := Name_Find;
Text := Read_Library_Info (Std_Lib_File, True);
declare
Id : ALI_Id;
pragma Warnings (Off, Id);
begin
Id :=
Scan_ALI
(F => Std_Lib_File,
T => Text,
Ignore_ED => False,
Err => False,
Ignore_Errors => Debug_Flag_I);
end;
Free (Text);
end if;
-- Acquire all information in ALI files that have been read in
for Index in ALIs.First .. ALIs.Last loop
Read_ALI (Index);
end loop;
-- Quit if some file needs compiling
if No_Object_Specified then
raise Unrecoverable_Error;
end if;
-- Build source file table from the ALI files we have read in
Set_Source_Table;
-- Check that main library file is a suitable main program
if Bind_Main_Program
and then ALIs.Table (ALIs.First).Main_Program = None
and then not No_Main_Subprogram
then
Error_Msg_Name_1 := Main_Lib_File;
Error_Msg ("% does not contain a unit that can be a main program");
end if;
-- Perform consistency and correctness checks
Check_Duplicated_Subunits;
Check_Versions;
Check_Consistency;
Check_Configuration_Consistency;
-- List restrictions that could be applied to this partition
if List_Restrictions then
List_Applicable_Restrictions;
end if;
-- Complete bind if no errors
if Errors_Detected = 0 then
Find_Elab_Order;
if Errors_Detected = 0 then
if Elab_Order_Output then
Write_Eol;
Write_Str ("ELABORATION ORDER");
Write_Eol;
for J in Elab_Order.First .. Elab_Order.Last loop
if not Units.Table (Elab_Order.Table (J)).SAL_Interface then
Write_Str (" ");
Write_Unit_Name
(Units.Table (Elab_Order.Table (J)).Uname);
Write_Eol;
end if;
end loop;
Write_Eol;
end if;
if not Check_Only then
Gen_Output_File (Output_File_Name.all);
end if;
end if;
end if;
Total_Errors := Total_Errors + Errors_Detected;
Total_Warnings := Total_Warnings + Warnings_Detected;
exception
when Unrecoverable_Error =>
Total_Errors := Total_Errors + Errors_Detected;
Total_Warnings := Total_Warnings + Warnings_Detected;
end;
-- All done. Set proper exit status
Finalize_Binderr;
Namet.Finalize;
if Total_Errors > 0 then
Exit_Program (E_Errors);
elsif Total_Warnings > 0 then
Exit_Program (E_Warnings);
else
-- Do not call Exit_Program (E_Success), so that finalization occurs
-- normally.
null;
end if;
end Gnatbind;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . T E X T _ I O . I N T E G E R _ A U X --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2014, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Ada.Text_IO.Generic_Aux; use Ada.Text_IO.Generic_Aux;
with System.Img_BIU; use System.Img_BIU;
with System.Img_Int; use System.Img_Int;
with System.Img_LLB; use System.Img_LLB;
with System.Img_LLI; use System.Img_LLI;
with System.Img_LLW; use System.Img_LLW;
with System.Img_WIU; use System.Img_WIU;
with System.Val_Int; use System.Val_Int;
with System.Val_LLI; use System.Val_LLI;
package body Ada.Text_IO.Integer_Aux is
-----------------------
-- Local Subprograms --
-----------------------
procedure Load_Integer
(File : File_Type;
Buf : out String;
Ptr : in out Natural);
-- This is an auxiliary routine that is used to load a possibly signed
-- integer literal value from the input file into Buf, starting at Ptr + 1.
-- On return, Ptr is set to the last character stored.
-------------
-- Get_Int --
-------------
procedure Get_Int
(File : File_Type;
Item : out Integer;
Width : Field)
is
Buf : String (1 .. Field'Last);
Ptr : aliased Integer := 1;
Stop : Integer := 0;
begin
if Width /= 0 then
Load_Width (File, Width, Buf, Stop);
String_Skip (Buf, Ptr);
else
Load_Integer (File, Buf, Stop);
end if;
Item := Scan_Integer (Buf, Ptr'Access, Stop);
Check_End_Of_Field (Buf, Stop, Ptr, Width);
end Get_Int;
-------------
-- Get_LLI --
-------------
procedure Get_LLI
(File : File_Type;
Item : out Long_Long_Integer;
Width : Field)
is
Buf : String (1 .. Field'Last);
Ptr : aliased Integer := 1;
Stop : Integer := 0;
begin
if Width /= 0 then
Load_Width (File, Width, Buf, Stop);
String_Skip (Buf, Ptr);
else
Load_Integer (File, Buf, Stop);
end if;
Item := Scan_Long_Long_Integer (Buf, Ptr'Access, Stop);
Check_End_Of_Field (Buf, Stop, Ptr, Width);
end Get_LLI;
--------------
-- Gets_Int --
--------------
procedure Gets_Int
(From : String;
Item : out Integer;
Last : out Positive)
is
Pos : aliased Integer;
begin
String_Skip (From, Pos);
Item := Scan_Integer (From, Pos'Access, From'Last);
Last := Pos - 1;
exception
when Constraint_Error =>
raise Data_Error;
end Gets_Int;
--------------
-- Gets_LLI --
--------------
procedure Gets_LLI
(From : String;
Item : out Long_Long_Integer;
Last : out Positive)
is
Pos : aliased Integer;
begin
String_Skip (From, Pos);
Item := Scan_Long_Long_Integer (From, Pos'Access, From'Last);
Last := Pos - 1;
exception
when Constraint_Error =>
raise Data_Error;
end Gets_LLI;
------------------
-- Load_Integer --
------------------
procedure Load_Integer
(File : File_Type;
Buf : out String;
Ptr : in out Natural)
is
Hash_Loc : Natural;
Loaded : Boolean;
begin
Load_Skip (File);
Load (File, Buf, Ptr, '+', '-');
Load_Digits (File, Buf, Ptr, Loaded);
if Loaded then
-- Deal with based literal. We recognize either the standard '#' or
-- the allowed alternative replacement ':' (see RM J.2(3)).
Load (File, Buf, Ptr, '#', ':', Loaded);
if Loaded then
Hash_Loc := Ptr;
Load_Extended_Digits (File, Buf, Ptr);
Load (File, Buf, Ptr, Buf (Hash_Loc));
end if;
-- Deal with exponent
Load (File, Buf, Ptr, 'E', 'e', Loaded);
if Loaded then
-- Note: it is strange to allow a minus sign, since the syntax
-- does not, but that is what ACVC test CE3704F, case (6) wants.
Load (File, Buf, Ptr, '+', '-');
Load_Digits (File, Buf, Ptr);
end if;
end if;
end Load_Integer;
-------------
-- Put_Int --
-------------
procedure Put_Int
(File : File_Type;
Item : Integer;
Width : Field;
Base : Number_Base)
is
Buf : String (1 .. Integer'Max (Field'Last, Width));
Ptr : Natural := 0;
begin
if Base = 10 and then Width = 0 then
Set_Image_Integer (Item, Buf, Ptr);
elsif Base = 10 then
Set_Image_Width_Integer (Item, Width, Buf, Ptr);
else
Set_Image_Based_Integer (Item, Base, Width, Buf, Ptr);
end if;
Put_Item (File, Buf (1 .. Ptr));
end Put_Int;
-------------
-- Put_LLI --
-------------
procedure Put_LLI
(File : File_Type;
Item : Long_Long_Integer;
Width : Field;
Base : Number_Base)
is
Buf : String (1 .. Integer'Max (Field'Last, Width));
Ptr : Natural := 0;
begin
if Base = 10 and then Width = 0 then
Set_Image_Long_Long_Integer (Item, Buf, Ptr);
elsif Base = 10 then
Set_Image_Width_Long_Long_Integer (Item, Width, Buf, Ptr);
else
Set_Image_Based_Long_Long_Integer (Item, Base, Width, Buf, Ptr);
end if;
Put_Item (File, Buf (1 .. Ptr));
end Put_LLI;
--------------
-- Puts_Int --
--------------
procedure Puts_Int
(To : out String;
Item : Integer;
Base : Number_Base)
is
Buf : String (1 .. Integer'Max (Field'Last, To'Length));
Ptr : Natural := 0;
begin
if Base = 10 then
Set_Image_Width_Integer (Item, To'Length, Buf, Ptr);
else
Set_Image_Based_Integer (Item, Base, To'Length, Buf, Ptr);
end if;
if Ptr > To'Length then
raise Layout_Error;
else
To (To'First .. To'First + Ptr - 1) := Buf (1 .. Ptr);
end if;
end Puts_Int;
--------------
-- Puts_LLI --
--------------
procedure Puts_LLI
(To : out String;
Item : Long_Long_Integer;
Base : Number_Base)
is
Buf : String (1 .. Integer'Max (Field'Last, To'Length));
Ptr : Natural := 0;
begin
if Base = 10 then
Set_Image_Width_Long_Long_Integer (Item, To'Length, Buf, Ptr);
else
Set_Image_Based_Long_Long_Integer (Item, Base, To'Length, Buf, Ptr);
end if;
if Ptr > To'Length then
raise Layout_Error;
else
To (To'First .. To'First + Ptr - 1) := Buf (1 .. Ptr);
end if;
end Puts_LLI;
end Ada.Text_IO.Integer_Aux;
|
-- Copyright (c) 1990 Regents of the University of California.
-- All rights reserved.
--
-- The primary authors of ayacc were David Taback and Deepak Tolani.
-- Enhancements were made by Ronald J. Schmalz.
--
-- Send requests for ayacc information to ayacc-info@ics.uci.edu
-- Send bug reports for ayacc to ayacc-bugs@ics.uci.edu
--
-- Redistribution and use in source and binary forms are permitted
-- provided that the above copyright notice and this paragraph are
-- duplicated in all such forms and that any documentation,
-- advertising materials, and other materials related to such
-- distribution and use acknowledge that the software was developed
-- by the University of California, Irvine. The name of the
-- University may not be used to endorse or promote products derived
-- from this software without specific prior written permission.
-- THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
-- IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
-- WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
-- Module : rule_table.ada
-- Component of : ayacc
-- Version : 1.2
-- Date : 11/21/86 12:34:14
-- SCCS File : disk21~/rschm/hasee/sccs/ayacc/sccs/sxrule_table.ada
-- $Header: rule_table.a,v 0.1 86/04/01 15:11:37 ada Exp $
-- $Log: rule_table.a,v $
-- Revision 0.1 86/04/01 15:11:37 ada
-- This version fixes some minor bugs with empty grammars
-- and $$ expansion. It also uses vads5.1b enhancements
-- such as pragma inline.
--
--
-- Revision 0.0 86/02/19 18:40:56 ada
--
-- These files comprise the initial version of Ayacc
-- designed and implemented by David Taback and Deepak Tolani.
-- Ayacc has been compiled and tested under the Verdix Ada compiler
-- version 4.06 on a vax 11/750 running Unix 4.2BSD.
--
with Symbol_Table;
use Symbol_Table;
package Rule_Table is
-- This package is used to store and access the rules
-- of the input grammar.
Max_Rules : constant := 1_000; -- An arbitrary upper bound.
-- if you raise this above 3_000
-- you will also need to make
-- changes in parse_table_body
-- and parse_template_file.
type Rule is range 0..Max_Rules - 1;
function Make_Rule(LHS: Grammar_Symbol) return Rule;
procedure Append_RHS(R: in Rule; RHS: in Grammar_Symbol);
function Get_LHS (R: Rule) return Grammar_Symbol;
function Get_RHS (R: Rule; Position: Positive) return Grammar_Symbol;
function Get_Null_Pos (R: Rule) return Natural;
function Get_Rule_Precedence (R: Rule) return Precedence;
function Length_of(R: Rule) return Natural;
function First_Rule return Rule;
function Last_Rule return Rule;
function Number_of_Rules return Natural;
procedure Set_Rule_Precedence (R: in Rule; Prec: in Precedence);
procedure Set_Null_Pos (R: in Rule; Position: in Natural);
procedure Handle_Nested_Rule (Current_Rule : in out Rule);
--RJS pragma inline(get_lhs, get_null_pos, get_rule_precedence, length_of);
--& pragma inline(first_rule, last_rule);
end Rule_Table;
|
--
-- Copyright (C) 2017, AdaCore
--
-- This spec has been automatically generated from STM32F46_79x.svd
pragma Ada_2012;
pragma Style_Checks (Off);
with System;
package Interfaces.STM32.PWR is
pragma Preelaborate;
pragma No_Elaboration_Code_All;
---------------
-- Registers --
---------------
subtype CR_LPDS_Field is Interfaces.STM32.Bit;
subtype CR_PDDS_Field is Interfaces.STM32.Bit;
subtype CR_CWUF_Field is Interfaces.STM32.Bit;
subtype CR_CSBF_Field is Interfaces.STM32.Bit;
subtype CR_PVDE_Field is Interfaces.STM32.Bit;
subtype CR_PLS_Field is Interfaces.STM32.UInt3;
subtype CR_DBP_Field is Interfaces.STM32.Bit;
subtype CR_FPDS_Field is Interfaces.STM32.Bit;
subtype CR_LPLVDS_Field is Interfaces.STM32.Bit;
subtype CR_MRLVDS_Field is Interfaces.STM32.Bit;
subtype CR_VOS_Field is Interfaces.STM32.UInt2;
subtype CR_ODEN_Field is Interfaces.STM32.Bit;
subtype CR_ODSWEN_Field is Interfaces.STM32.Bit;
subtype CR_UDEN_Field is Interfaces.STM32.UInt2;
-- power control register
type CR_Register is record
-- Low-power deep sleep
LPDS : CR_LPDS_Field := 16#0#;
-- Power down deepsleep
PDDS : CR_PDDS_Field := 16#0#;
-- Clear wakeup flag
CWUF : CR_CWUF_Field := 16#0#;
-- Clear standby flag
CSBF : CR_CSBF_Field := 16#0#;
-- Power voltage detector enable
PVDE : CR_PVDE_Field := 16#0#;
-- PVD level selection
PLS : CR_PLS_Field := 16#0#;
-- Disable backup domain write protection
DBP : CR_DBP_Field := 16#0#;
-- Flash power down in Stop mode
FPDS : CR_FPDS_Field := 16#0#;
-- Low-Power Regulator Low Voltage in deepsleep
LPLVDS : CR_LPLVDS_Field := 16#0#;
-- Main regulator low voltage in deepsleep mode
MRLVDS : CR_MRLVDS_Field := 16#0#;
-- unspecified
Reserved_12_13 : Interfaces.STM32.UInt2 := 16#0#;
-- Regulator voltage scaling output selection
VOS : CR_VOS_Field := 16#3#;
-- Over-drive enable
ODEN : CR_ODEN_Field := 16#0#;
-- Over-drive switching enabled
ODSWEN : CR_ODSWEN_Field := 16#0#;
-- Under-drive enable in stop mode
UDEN : CR_UDEN_Field := 16#0#;
-- unspecified
Reserved_20_31 : Interfaces.STM32.UInt12 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CR_Register use record
LPDS at 0 range 0 .. 0;
PDDS at 0 range 1 .. 1;
CWUF at 0 range 2 .. 2;
CSBF at 0 range 3 .. 3;
PVDE at 0 range 4 .. 4;
PLS at 0 range 5 .. 7;
DBP at 0 range 8 .. 8;
FPDS at 0 range 9 .. 9;
LPLVDS at 0 range 10 .. 10;
MRLVDS at 0 range 11 .. 11;
Reserved_12_13 at 0 range 12 .. 13;
VOS at 0 range 14 .. 15;
ODEN at 0 range 16 .. 16;
ODSWEN at 0 range 17 .. 17;
UDEN at 0 range 18 .. 19;
Reserved_20_31 at 0 range 20 .. 31;
end record;
subtype CSR_WUF_Field is Interfaces.STM32.Bit;
subtype CSR_SBF_Field is Interfaces.STM32.Bit;
subtype CSR_PVDO_Field is Interfaces.STM32.Bit;
subtype CSR_BRR_Field is Interfaces.STM32.Bit;
subtype CSR_EWUP_Field is Interfaces.STM32.Bit;
subtype CSR_BRE_Field is Interfaces.STM32.Bit;
subtype CSR_VOSRDY_Field is Interfaces.STM32.Bit;
subtype CSR_ODRDY_Field is Interfaces.STM32.Bit;
subtype CSR_ODSWRDY_Field is Interfaces.STM32.Bit;
subtype CSR_UDRDY_Field is Interfaces.STM32.UInt2;
-- power control/status register
type CSR_Register is record
-- Read-only. Wakeup flag
WUF : CSR_WUF_Field := 16#0#;
-- Read-only. Standby flag
SBF : CSR_SBF_Field := 16#0#;
-- Read-only. PVD output
PVDO : CSR_PVDO_Field := 16#0#;
-- Read-only. Backup regulator ready
BRR : CSR_BRR_Field := 16#0#;
-- unspecified
Reserved_4_7 : Interfaces.STM32.UInt4 := 16#0#;
-- Enable WKUP pin
EWUP : CSR_EWUP_Field := 16#0#;
-- Backup regulator enable
BRE : CSR_BRE_Field := 16#0#;
-- unspecified
Reserved_10_13 : Interfaces.STM32.UInt4 := 16#0#;
-- Regulator voltage scaling output selection ready bit
VOSRDY : CSR_VOSRDY_Field := 16#0#;
-- unspecified
Reserved_15_15 : Interfaces.STM32.Bit := 16#0#;
-- Read-only. Over-drive mode ready
ODRDY : CSR_ODRDY_Field := 16#0#;
-- Read-only. Over-drive mode switching ready
ODSWRDY : CSR_ODSWRDY_Field := 16#0#;
-- Under-drive ready flag
UDRDY : CSR_UDRDY_Field := 16#0#;
-- unspecified
Reserved_20_31 : Interfaces.STM32.UInt12 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CSR_Register use record
WUF at 0 range 0 .. 0;
SBF at 0 range 1 .. 1;
PVDO at 0 range 2 .. 2;
BRR at 0 range 3 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
EWUP at 0 range 8 .. 8;
BRE at 0 range 9 .. 9;
Reserved_10_13 at 0 range 10 .. 13;
VOSRDY at 0 range 14 .. 14;
Reserved_15_15 at 0 range 15 .. 15;
ODRDY at 0 range 16 .. 16;
ODSWRDY at 0 range 17 .. 17;
UDRDY at 0 range 18 .. 19;
Reserved_20_31 at 0 range 20 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- Power control
type PWR_Peripheral is record
-- power control register
CR : aliased CR_Register;
-- power control/status register
CSR : aliased CSR_Register;
end record
with Volatile;
for PWR_Peripheral use record
CR at 16#0# range 0 .. 31;
CSR at 16#4# range 0 .. 31;
end record;
-- Power control
PWR_Periph : aliased PWR_Peripheral
with Import, Address => System'To_Address (16#40007000#);
end Interfaces.STM32.PWR;
|
-----------------------------------------------------------------------
-- asf-navigations-render -- Navigator to render a page
-- Copyright (C) 2010, 2011 Stephane Carrez
-- Written by Stephane Carrez (Stephane.Carrez@gmail.com)
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
package ASF.Navigations.Render is
-- ------------------------------
-- Render page navigator
-- ------------------------------
-- The <b>Render_Navigator</b> defines the page that must be rendered for the response.
type Render_Navigator is new Navigation_Case with private;
type Render_Navigator_Access is access all Render_Navigator'Class;
-- Navigate to the next page or action according to the controller's navigator.
-- A navigator controller could redirect the user to another page, render a specific
-- view or return some raw content.
overriding
procedure Navigate (Controller : in Render_Navigator;
Context : in out ASF.Contexts.Faces.Faces_Context'Class);
-- Create a navigation case to render a view.
function Create_Render_Navigator (To_View : in String) return Navigation_Access;
private
type Render_Navigator is new Navigation_Case with record
View_Name : Unbounded_String;
end record;
end ASF.Navigations.Render;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Web Framework --
-- --
-- Testsuite Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2012, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- Test:T24
--
-- Description:
--
-- Node A sends to node C message with incorrect namespace of the Envelope
-- element. Node C returns back VersionMismatch Fault.
--
-- Messages:
--
-- Message sent from Node A
--
-- <?xml version='1.0' ?>
-- <env:Envelope xmlns:env="http://example.org/wrong-version/">
-- <env:Body>
-- <test:echoOk xmlns:test="http://example.org/ts-tests">
-- foo
-- </test:echoOk>
-- </env:Body>
-- </env:Envelope>
--
-- Message sent from Node C
--
-- <?xml version='1.0' ?>
-- <env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope">
-- <env:Body>
-- <env:Fault>
-- <env:Code>
-- <env:Value>env:VersionMismatch</env:Value>
-- </env:Code>
-- <env:Reason>
-- <env:Text xml:lang="en-US"> Wrong Version </env:Text>
-- </env:Reason>
-- </env:Fault>
-- </env:Body>
-- </env:Envelope>
------------------------------------------------------------------------------
package SOAPConf.Testcases.Test_T24 is
Scenario : constant Testcase_Data
:= (League.Strings.To_Universal_String
("<?xml version='1.0'?>"
& "<env:Envelope xmlns:env='http://example.org/wrong-version/'>"
& "<env:Body>"
& "<test:echoOk xmlns:test='http://example.org/ts-tests'>"
& "foo"
& "</test:echoOk>"
& "</env:Body>"
& "</env:Envelope>"),
League.Strings.To_Universal_String
("<?xml version='1.0'?>"
& "<env:Envelope"
& " xmlns:env='http://www.w3.org/2003/05/soap-envelope'>"
& "<env:Body>"
& "<env:Fault>"
& "<env:Code>"
& "<env:Value>env:VersionMismatch</env:Value>"
& "</env:Code>"
& "<env:Reason>"
& "<env:Text xml:lang='en-US'>Wrong Version</env:Text>"
& "</env:Reason>"
& "</env:Fault>"
& "</env:Body>"
& "</env:Envelope>"));
end SOAPConf.Testcases.Test_T24;
|
with Renaming8_Pkg3; use Renaming8_Pkg3;
package Renaming8_Pkg2 is
type Arr is array (Positive range 1 .. Last_Index) of Boolean;
type Rec is record
E : Arr;
end record;
function F return Rec;
end Renaming8_Pkg2;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Web Framework --
-- --
-- Tools Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2015, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with Asis.Definitions;
with Asis.Expressions;
package body Properties.Definitions.Range_Attribute is
generic
Prop : Wide_Wide_String;
function Bound
(Engine : access Engines.Contexts.Context;
Element : Asis.Definition)
return League.Strings.Universal_String;
-----------
-- Bound --
-----------
function Bound
(Engine : access Engines.Contexts.Context;
Element : Asis.Definition)
return League.Strings.Universal_String
is
Attr : constant Asis.Expression :=
Asis.Definitions.Range_Attribute (Element);
Args : constant Asis.Expression_List :=
Asis.Expressions.Attribute_Designator_Expressions (Attr);
Text : League.Strings.Universal_String;
Down : League.Strings.Universal_String;
begin
Text := Engine.Text.Get_Property
(Asis.Expressions.Prefix (Attr), Engines.Code);
Text.Append ("._");
Text.Append (Prop);
Text.Append ("[");
if Args'Length > 0 then
Down := Engine.Text.Get_Property (Args (Args'First), Engines.Code);
Text.Append (Down);
Text.Append ("-1]");
else
Text.Append ("0]");
end if;
return Text;
end Bound;
-----------
-- Lower --
-----------
function Lower
(Engine : access Engines.Contexts.Context;
Element : Asis.Definition;
Name : Engines.Text_Property)
return League.Strings.Universal_String
is
pragma Unreferenced (Name);
function Inst is new Bound ("first");
begin
return Inst (Engine, Element);
end Lower;
-----------
-- Upper --
-----------
function Upper
(Engine : access Engines.Contexts.Context;
Element : Asis.Definition;
Name : Engines.Text_Property)
return League.Strings.Universal_String
is
pragma Unreferenced (Name);
function Inst is new Bound ("last");
begin
return Inst (Engine, Element);
end Upper;
end Properties.Definitions.Range_Attribute;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME LIBRARY COMPONENTS --
-- --
-- S Y S T E M . C O M P A R E _ A R R A Y _ U N S I G N E D _ 6 4 --
-- --
-- S p e c --
-- --
-- Copyright (C) 2002-2019, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package contains functions for runtime comparisons on arrays whose
-- elements are 64-bit discrete type values to be treated as unsigned.
package System.Compare_Array_Unsigned_64 is
-- Note: although the functions in this package are in a sense Pure, the
-- package cannot be declared as Pure, since the arguments are addresses,
-- not the data, and the result is not pure wrt the address values.
function Compare_Array_U64
(Left : System.Address;
Right : System.Address;
Left_Len : Natural;
Right_Len : Natural) return Integer;
-- Compare the array starting at address Left of length Left_Len
-- with the array starting at address Right of length Right_Len.
-- The comparison is in the normal Ada semantic sense of array
-- comparison. The result is -1,0,+1 for Left<Right, Left=Right,
-- Left>Right respectively.
end System.Compare_Array_Unsigned_64;
|
with Ada.Text_IO;
with Ada.Exceptions; use Ada.Exceptions;
package body kv.avm.File_Reader is
procedure Parse_Input_File
(Self : in out Reader;
File_In : in String) is
File : Ada.Text_IO.File_Type;
Buffer : String(1..1024);
Length : Natural := 0;
Line : Natural := 0;
begin
Ada.Text_IO.Open(File, Ada.Text_IO.IN_FILE, File_In);
while not Ada.Text_IO.End_Of_File(File) loop
Ada.Text_IO.Get_Line(File, Buffer, Length);
Line := Line + 1;
Self.Parse_Line(Buffer(1..Length));
end loop;
Ada.Text_IO.Close(File);
exception
when Error: others =>
Ada.Text_IO.Put_Line("EXCEPTION: "&Exception_Information(Error));
Ada.Text_IO.Put_Line("File: "&File_In);
Ada.Text_IO.Put_Line("Line: "&Natural'IMAGE(Line)); -- Ada.Text_IO.Line gives wrong answers.
Ada.Text_IO.Put_Line("Code: "&Buffer(1..Length));
Ada.Text_IO.Close(File);
raise;
end Parse_Input_File;
end kv.avm.File_Reader;
|
-- basic_operations.adb
with Ada.Text_IO; use Ada.Text_IO;
procedure basic_operations is
TestInteger : Integer := 7;
TestNatural : Natural := 0;
TestPositive : Positive := 1;
begin
-- do some basic operations on the Integer
TestInteger := TestInteger - 14;
Put_Line("This is the integer: " & Integer'Image(TestInteger));
-- do some basic operations on the Natural
TestNatural := TestNatural + 25;
Put_Line("This is the natural: " & Natural'Image(TestNatural));
-- do some basic operations on the Positive
TestPositive := TestPositive + 8;
Put_Line("This is the positive: " & Positive'Image(TestPositive));
end basic_operations;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- G N A T . R E G I S T R Y --
-- --
-- B o d y --
-- --
-- $Revision$
-- --
-- Copyright (C) 2001 Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
-- MA 02111-1307, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Ada.Exceptions;
with Interfaces.C;
with System;
package body GNAT.Registry is
use Ada;
use System;
------------------------------
-- Binding to the Win32 API --
------------------------------
subtype LONG is Interfaces.C.long;
subtype ULONG is Interfaces.C.unsigned_long;
subtype DWORD is ULONG;
type PULONG is access all ULONG;
subtype PDWORD is PULONG;
subtype LPDWORD is PDWORD;
subtype Error_Code is LONG;
subtype REGSAM is LONG;
type PHKEY is access all HKEY;
ERROR_SUCCESS : constant Error_Code := 0;
REG_SZ : constant := 1;
function RegCloseKey (Key : HKEY) return LONG;
pragma Import (Stdcall, RegCloseKey, "RegCloseKey");
function RegCreateKeyEx
(Key : HKEY;
lpSubKey : Address;
Reserved : DWORD;
lpClass : Address;
dwOptions : DWORD;
samDesired : REGSAM;
lpSecurityAttributes : Address;
phkResult : PHKEY;
lpdwDisposition : LPDWORD)
return LONG;
pragma Import (Stdcall, RegCreateKeyEx, "RegCreateKeyExA");
function RegDeleteKey
(Key : HKEY;
lpSubKey : Address)
return LONG;
pragma Import (Stdcall, RegDeleteKey, "RegDeleteKeyA");
function RegDeleteValue
(Key : HKEY;
lpValueName : Address)
return LONG;
pragma Import (Stdcall, RegDeleteValue, "RegDeleteValueA");
function RegEnumValue
(Key : HKEY;
dwIndex : DWORD;
lpValueName : Address;
lpcbValueName : LPDWORD;
lpReserved : LPDWORD;
lpType : LPDWORD;
lpData : Address;
lpcbData : LPDWORD)
return LONG;
pragma Import (Stdcall, RegEnumValue, "RegEnumValueA");
function RegOpenKeyEx
(Key : HKEY;
lpSubKey : Address;
ulOptions : DWORD;
samDesired : REGSAM;
phkResult : PHKEY)
return LONG;
pragma Import (Stdcall, RegOpenKeyEx, "RegOpenKeyExA");
function RegQueryValueEx
(Key : HKEY;
lpValueName : Address;
lpReserved : LPDWORD;
lpType : LPDWORD;
lpData : Address;
lpcbData : LPDWORD)
return LONG;
pragma Import (Stdcall, RegQueryValueEx, "RegQueryValueExA");
function RegSetValueEx
(Key : HKEY;
lpValueName : Address;
Reserved : DWORD;
dwType : DWORD;
lpData : Address;
cbData : DWORD)
return LONG;
pragma Import (Stdcall, RegSetValueEx, "RegSetValueExA");
-----------------------
-- Local Subprograms --
-----------------------
function To_C_Mode (Mode : Key_Mode) return REGSAM;
-- Returns the Win32 mode value for the Key_Mode value.
procedure Check_Result (Result : LONG; Message : String);
-- Checks value Result and raise the exception Registry_Error if it is not
-- equal to ERROR_SUCCESS. Message and the error value (Result) is added
-- to the exception message.
------------------
-- Check_Result --
------------------
procedure Check_Result (Result : LONG; Message : String) is
use type LONG;
begin
if Result /= ERROR_SUCCESS then
Exceptions.Raise_Exception
(Registry_Error'Identity,
Message & " (" & LONG'Image (Result) & ')');
end if;
end Check_Result;
---------------
-- Close_Key --
---------------
procedure Close_Key (Key : HKEY) is
Result : LONG;
begin
Result := RegCloseKey (Key);
Check_Result (Result, "Close_Key");
end Close_Key;
----------------
-- Create_Key --
----------------
function Create_Key
(From_Key : HKEY;
Sub_Key : String;
Mode : Key_Mode := Read_Write)
return HKEY
is
use type REGSAM;
use type DWORD;
REG_OPTION_NON_VOLATILE : constant := 16#0#;
C_Sub_Key : constant String := Sub_Key & ASCII.Nul;
C_Class : constant String := "" & ASCII.Nul;
C_Mode : constant REGSAM := To_C_Mode (Mode);
New_Key : aliased HKEY;
Result : LONG;
Dispos : aliased DWORD;
begin
Result := RegCreateKeyEx
(From_Key,
C_Sub_Key (C_Sub_Key'First)'Address,
0,
C_Class (C_Class'First)'Address,
REG_OPTION_NON_VOLATILE,
C_Mode,
Null_Address,
New_Key'Unchecked_Access,
Dispos'Unchecked_Access);
Check_Result (Result, "Create_Key " & Sub_Key);
return New_Key;
end Create_Key;
----------------
-- Delete_Key --
----------------
procedure Delete_Key (From_Key : HKEY; Sub_Key : String) is
C_Sub_Key : constant String := Sub_Key & ASCII.Nul;
Result : LONG;
begin
Result := RegDeleteKey (From_Key, C_Sub_Key (C_Sub_Key'First)'Address);
Check_Result (Result, "Delete_Key " & Sub_Key);
end Delete_Key;
------------------
-- Delete_Value --
------------------
procedure Delete_Value (From_Key : HKEY; Sub_Key : String) is
C_Sub_Key : constant String := Sub_Key & ASCII.Nul;
Result : LONG;
begin
Result := RegDeleteValue (From_Key, C_Sub_Key (C_Sub_Key'First)'Address);
Check_Result (Result, "Delete_Value " & Sub_Key);
end Delete_Value;
-------------------------
-- For_Every_Key_Value --
-------------------------
procedure For_Every_Key_Value (From_Key : HKEY) is
use type LONG;
use type ULONG;
Index : ULONG := 0;
Result : LONG;
Sub_Key : String (1 .. 100);
pragma Warnings (Off, Sub_Key);
Value : String (1 .. 100);
pragma Warnings (Off, Value);
Size_Sub_Key : aliased ULONG;
Size_Value : aliased ULONG;
Type_Sub_Key : aliased DWORD;
Quit : Boolean;
begin
loop
Size_Sub_Key := Sub_Key'Length;
Size_Value := Value'Length;
Result := RegEnumValue
(From_Key, Index,
Sub_Key (1)'Address,
Size_Sub_Key'Unchecked_Access,
null,
Type_Sub_Key'Unchecked_Access,
Value (1)'Address,
Size_Value'Unchecked_Access);
exit when not (Result = ERROR_SUCCESS);
if Type_Sub_Key = REG_SZ then
Quit := False;
Action (Natural (Index) + 1,
Sub_Key (1 .. Integer (Size_Sub_Key)),
Value (1 .. Integer (Size_Value) - 1),
Quit);
exit when Quit;
Index := Index + 1;
end if;
end loop;
end For_Every_Key_Value;
----------------
-- Key_Exists --
----------------
function Key_Exists
(From_Key : HKEY;
Sub_Key : String)
return Boolean
is
New_Key : HKEY;
begin
New_Key := Open_Key (From_Key, Sub_Key);
Close_Key (New_Key);
-- We have been able to open the key so it exists
return True;
exception
when Registry_Error =>
-- An error occurred, the key was not found
return False;
end Key_Exists;
--------------
-- Open_Key --
--------------
function Open_Key
(From_Key : HKEY;
Sub_Key : String;
Mode : Key_Mode := Read_Only)
return HKEY
is
use type REGSAM;
C_Sub_Key : constant String := Sub_Key & ASCII.Nul;
C_Mode : constant REGSAM := To_C_Mode (Mode);
New_Key : aliased HKEY;
Result : LONG;
begin
Result := RegOpenKeyEx
(From_Key,
C_Sub_Key (C_Sub_Key'First)'Address,
0,
C_Mode,
New_Key'Unchecked_Access);
Check_Result (Result, "Open_Key " & Sub_Key);
return New_Key;
end Open_Key;
-----------------
-- Query_Value --
-----------------
function Query_Value
(From_Key : HKEY;
Sub_Key : String)
return String
is
use type LONG;
use type ULONG;
Value : String (1 .. 100);
pragma Warnings (Off, Value);
Size_Value : aliased ULONG;
Type_Value : aliased DWORD;
C_Sub_Key : constant String := Sub_Key & ASCII.Nul;
Result : LONG;
begin
Size_Value := Value'Length;
Result := RegQueryValueEx
(From_Key,
C_Sub_Key (C_Sub_Key'First)'Address,
null,
Type_Value'Unchecked_Access,
Value (Value'First)'Address,
Size_Value'Unchecked_Access);
Check_Result (Result, "Query_Value " & Sub_Key & " key");
return Value (1 .. Integer (Size_Value - 1));
end Query_Value;
---------------
-- Set_Value --
---------------
procedure Set_Value
(From_Key : HKEY;
Sub_Key : String;
Value : String)
is
C_Sub_Key : constant String := Sub_Key & ASCII.Nul;
C_Value : constant String := Value & ASCII.Nul;
Result : LONG;
begin
Result := RegSetValueEx
(From_Key,
C_Sub_Key (C_Sub_Key'First)'Address,
0,
REG_SZ,
C_Value (C_Value'First)'Address,
C_Value'Length);
Check_Result (Result, "Set_Value " & Sub_Key & " key");
end Set_Value;
---------------
-- To_C_Mode --
---------------
function To_C_Mode (Mode : Key_Mode) return REGSAM is
use type REGSAM;
KEY_READ : constant := 16#20019#;
KEY_WRITE : constant := 16#20006#;
begin
case Mode is
when Read_Only =>
return KEY_READ;
when Read_Write =>
return KEY_READ + KEY_WRITE;
end case;
end To_C_Mode;
end GNAT.Registry;
|
-- Copyright 2012-2016 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
with Pck; use Pck;
procedure A is
Nnn : String := "12345";
Www : Wide_String := "12345";
Rws : Wide_Wide_String := "12345";
begin
Do_Nothing (Nnn'Address); -- STOP
Do_Nothing (Www'Address);
Do_Nothing (Rws'Address);
end A;
|
-----------------------------------------------------------------------
-- security-openid-servlets - Servlets for OpenID 2.0 Authentication
-- Copyright (C) 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 Servlet.Security.Servlets;
package ASF.Security.Servlets renames Servlet.Security.Servlets;
|
-- SPDX-FileCopyrightText: 2019 Max Reznik <reznikmm@gmail.com>
--
-- SPDX-License-Identifier: MIT
-------------------------------------------------------------
package body Program.Nodes.Operator_Symbols is
function Create
(Operator_Symbol_Token : not null Program.Lexical_Elements
.Lexical_Element_Access)
return Operator_Symbol is
begin
return Result : Operator_Symbol :=
(Operator_Symbol_Token => Operator_Symbol_Token,
Corresponding_Defining_Operator_Symbol => null,
Enclosing_Element => null)
do
Initialize (Result);
end return;
end Create;
function Create
(Is_Part_Of_Implicit : Boolean := False;
Is_Part_Of_Inherited : Boolean := False;
Is_Part_Of_Instance : Boolean := False)
return Implicit_Operator_Symbol is
begin
return Result : Implicit_Operator_Symbol :=
(Corresponding_Defining_Operator_Symbol => null,
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 Corresponding_Defining_Operator_Symbol
(Self : Base_Operator_Symbol)
return Program.Elements.Defining_Operator_Symbols
.Defining_Operator_Symbol_Access is
begin
return Self.Corresponding_Defining_Operator_Symbol;
end Corresponding_Defining_Operator_Symbol;
overriding function Operator_Symbol_Token
(Self : Operator_Symbol)
return not null Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.Operator_Symbol_Token;
end Operator_Symbol_Token;
overriding function Image (Self : Operator_Symbol) return Text is
begin
return Self.Operator_Symbol_Token.Image;
end Image;
overriding function Is_Part_Of_Implicit
(Self : Implicit_Operator_Symbol)
return Boolean is
begin
return Self.Is_Part_Of_Implicit;
end Is_Part_Of_Implicit;
overriding function Is_Part_Of_Inherited
(Self : Implicit_Operator_Symbol)
return Boolean is
begin
return Self.Is_Part_Of_Inherited;
end Is_Part_Of_Inherited;
overriding function Is_Part_Of_Instance
(Self : Implicit_Operator_Symbol)
return Boolean is
begin
return Self.Is_Part_Of_Instance;
end Is_Part_Of_Instance;
overriding function Image (Self : Implicit_Operator_Symbol) return Text is
pragma Unreferenced (Self);
begin
return "";
end Image;
procedure Initialize (Self : in out Base_Operator_Symbol'Class) is
begin
null;
end Initialize;
overriding function Is_Operator_Symbol
(Self : Base_Operator_Symbol)
return Boolean is
pragma Unreferenced (Self);
begin
return True;
end Is_Operator_Symbol;
overriding function Is_Expression
(Self : Base_Operator_Symbol)
return Boolean is
pragma Unreferenced (Self);
begin
return True;
end Is_Expression;
overriding procedure Visit
(Self : not null access Base_Operator_Symbol;
Visitor : in out Program.Element_Visitors.Element_Visitor'Class) is
begin
Visitor.Operator_Symbol (Self);
end Visit;
overriding function To_Operator_Symbol_Text
(Self : in out Operator_Symbol)
return Program.Elements.Operator_Symbols.Operator_Symbol_Text_Access is
begin
return Self'Unchecked_Access;
end To_Operator_Symbol_Text;
overriding function To_Operator_Symbol_Text
(Self : in out Implicit_Operator_Symbol)
return Program.Elements.Operator_Symbols.Operator_Symbol_Text_Access is
pragma Unreferenced (Self);
begin
return null;
end To_Operator_Symbol_Text;
end Program.Nodes.Operator_Symbols;
|
-- CE2109B.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 DEFAULT MODES IN CREATE ARE SET CORRECTLY FOR
-- DIRECT_IO.
-- APPLICABILITY CRITERIA:
-- THIS TEST IS ONLY APPLICABLE TO IMPLEMENTATIONS WHICH SUPPORT
-- CREATE WITH INOUT_FILE MODE FOR DIRECT FILES.
-- HISTORY:
-- TBN 02/13/86
-- TBN 11/04/86 REVISED TEST TO OUTPUT A NON_APPLICABLE
-- RESULT WHEN FILES ARE NOT SUPPORTED.
-- DWC 08/12/87 CHANGED NOT_APPLICABLE MESSAGE, REMOVED
-- NAME_ERROR, AND CLOSED THE FILE.
-- LDC 05/26/88 CHANGED APPLICABILITY COMMENT FROM OUT_FILE TO
-- INOUT_FILE.
WITH REPORT; USE REPORT;
WITH DIRECT_IO;
PROCEDURE CE2109B IS
INCOMPLETE : EXCEPTION;
PACKAGE DIR IS NEW DIRECT_IO (INTEGER);
USE DIR;
FILE3 : DIR.FILE_TYPE;
BEGIN
TEST( "CE2109B", "CHECK DEFAULT MODE IN CREATE FOR DIRECT_IO");
BEGIN
CREATE (FILE3);
EXCEPTION
WHEN USE_ERROR =>
NOT_APPLICABLE ("CREATE OF DIRECT FILE WITH " &
"INOUT_FILE MODE NOT SUPPORTED");
RAISE INCOMPLETE;
WHEN OTHERS =>
FAILED ("UNEXPECTED EXCEPTION RAISED; DIRECT CREATE");
RAISE INCOMPLETE;
END;
IF MODE (FILE3) /= INOUT_FILE THEN
FAILED( "MODE INCORRECTLY SET FOR DIRECT_IO" );
END IF;
CLOSE (FILE3);
RESULT;
EXCEPTION
WHEN INCOMPLETE =>
RESULT;
END CE2109B;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S Y S T E M . L I B M _ S I N G L E . S Q R T --
-- --
-- B o d y --
-- --
-- Copyright (C) 2014-2021, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This is the Ada Cert Math specific implementation of sqrt when the FPU
-- has the sqrt instruction.
package body System.Libm_Single.Squareroot is
--------------
-- Fpu_Sqrt --
--------------
function Fpu_Sqrt (X : Float) return Float
with Import, Convention => Intrinsic, External_Name => "__builtin_sqrtf";
----------
-- Sqrt --
----------
function Sqrt (X : Float) return Float is
begin
return Fpu_Sqrt (X);
end Sqrt;
end System.Libm_Single.Squareroot;
|
------------------------------------------------------------------------------
-- --
-- GNAT LIBRARY COMPONENTS --
-- --
-- ADA.CONTAINERS.UNBOUNDED_PRIORITY_QUEUES --
-- --
-- B o d y --
-- --
-- Copyright (C) 2011-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. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- This unit was originally developed by Matthew J Heaney. --
------------------------------------------------------------------------------
package body Ada.Containers.Unbounded_Priority_Queues is
protected body Queue is
-----------------
-- Current_Use --
-----------------
function Current_Use return Count_Type is
begin
return Q_Elems.Length;
end Current_Use;
-------------
-- Dequeue --
-------------
entry Dequeue (Element : out Queue_Interfaces.Element_Type)
when Q_Elems.Length > 0
is
-- Grab the first item of the set, and remove it from the set
C : constant Cursor := First (Q_Elems);
begin
Element := Sets.Element (C).Item;
Delete_First (Q_Elems);
end Dequeue;
--------------------------------
-- Dequeue_Only_High_Priority --
--------------------------------
procedure Dequeue_Only_High_Priority
(At_Least : Queue_Priority;
Element : in out Queue_Interfaces.Element_Type;
Success : out Boolean)
is
-- Grab the first item. If it exists and has appropriate priority,
-- set Success to True, and remove that item. Otherwise, set Success
-- to False.
C : constant Cursor := First (Q_Elems);
begin
Success := Has_Element (C) and then
not Before (At_Least, Get_Priority (Sets.Element (C).Item));
if Success then
Element := Sets.Element (C).Item;
Delete_First (Q_Elems);
end if;
end Dequeue_Only_High_Priority;
-------------
-- Enqueue --
-------------
entry Enqueue (New_Item : Queue_Interfaces.Element_Type) when True is
begin
Insert (Q_Elems, (Next_Sequence_Number, New_Item));
Next_Sequence_Number := Next_Sequence_Number + 1;
-- If we reached a new high-water mark, increase Max_Length
if Q_Elems.Length > Max_Length then
pragma Assert (Max_Length + 1 = Q_Elems.Length);
Max_Length := Q_Elems.Length;
end if;
end Enqueue;
--------------
-- Peak_Use --
--------------
function Peak_Use return Count_Type is
begin
return Max_Length;
end Peak_Use;
end Queue;
end Ada.Containers.Unbounded_Priority_Queues;
|
package body STM32F4.Reset_Clock_Control is
HSE_VALUE : constant := 8_000_000; -- External oscillator in Hz
HSI_VALUE : constant := 16_000_000; -- Internal oscillator in Hz
HPRE_Presc_Table : constant array (Bits_4) of Word :=
(1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 8, 16, 64, 128, 256, 512);
PPRE_Presc_Table : constant array (Bits_3) of Word :=
(1, 1, 1, 1, 2, 4, 8, 16);
function Get_Clock_Frequency return RCC_Clock is
Source : constant Word := RCC.CFGR and 16#F#;
Ret : RCC_Clock;
begin
case Source is
when 16#00# =>
-- HSI as source
Ret.SYSCLK := HSI_VALUE;
when 16#04# =>
-- HSE as source
Ret.SYSCLK := HSE_VALUE;
when 16#08# =>
-- PLL as source
declare
Pllsource : constant Word :=
(RCC.PLLCFGR and 16#00400000#) / (2**22);
Pllm : constant Word := RCC.PLLCFGR and 16#0000003F#;
Plln : constant Word := (RCC.PLLCFGR and 16#00007FC0#) / (2**6);
Pllp : constant Word :=
(((RCC.PLLCFGR and 16#00030000#) / (2**16)) + 1) * 2;
Pllvco : Word;
begin
if Pllsource /= 0 then
Pllvco := (HSE_VALUE / Pllm) * Plln;
else
Pllvco := (HSI_VALUE / Pllm) * Plln;
end if;
Ret.SYSCLK := Pllvco / Pllp;
end;
when others =>
Ret.SYSCLK := HSI_VALUE;
end case;
declare
HPRE : constant Bits_4 := Bits_4 ((RCC.CFGR and 16#00F0#) / (2**4));
PPRE1 : constant Bits_3 := Bits_3 ((RCC.CFGR and 16#1C00#) / (2**10));
PPRE2 : constant Bits_3 := Bits_3 ((RCC.CFGR and 16#E000#) / (2**13));
TIMPR : constant Word := (RCC.DCKCFGR / (2**24)) and 1;
begin
Ret.HCLK := Ret.SYSCLK / HPRE_Presc_Table (HPRE);
Ret.PCLK1 := Ret.HCLK / PPRE_Presc_Table (PPRE1);
Ret.PCLK2 := Ret.PCLK1 / PPRE_Presc_Table (PPRE2);
-- Timer clocks
-- See Dedicated clock cfg register documentation.
if TIMPR = 0 then
if PPRE_Presc_Table (PPRE1) = 1 then
Ret.TIMCLK1 := Ret.PCLK1;
else
Ret.TIMCLK1 := Ret.PCLK1 * 2;
end if;
if PPRE_Presc_Table (PPRE2) = 1 then
Ret.TIMCLK2 := Ret.PCLK2;
else
Ret.TIMCLK2 := Ret.PCLK2 * 2;
end if;
else
if PPRE_Presc_Table (PPRE1) in 1 .. 4 then
Ret.TIMCLK1 := Ret.HCLK;
else
Ret.TIMCLK1 := Ret.PCLK1 * 4;
end if;
if PPRE_Presc_Table (PPRE2) in 1 .. 4 then
Ret.TIMCLK2 := Ret.HCLK;
else
Ret.TIMCLK2 := Ret.PCLK1 * 4;
end if;
end if;
end;
return Ret;
end Get_Clock_Frequency;
procedure Set_PLLSAI_Factors (LCD : Bits_3;
SAI1 : Bits_4;
VCO : Bits_9;
DivR : Bits_2) is
begin
RCC.PLLSAICFGR := (Word (VCO) * (2**6)) or
(Word (SAI1) * (2**24)) or
(Word (LCD) * (2**28));
RCC.DCKCFGR := RCC.DCKCFGR and (not (16#30000#));
RCC.DCKCFGR := RCC.DCKCFGR or (Word(DivR) * (2**16));
end Set_PLLSAI_Factors;
procedure Enable_PLLSAI is
begin
RCC.CR := RCC.CR or (2**28);
-- Wait for PLLSAI activation
loop
exit when (RCC.CR and (2**29)) /= 0;
end loop;
end Enable_PLLSAI;
procedure GPIOA_Clock_Enable is
begin
RCC.AHB1ENR := RCC.AHB1ENR or AHB1ENR_GPIOAEN;
end GPIOA_Clock_Enable;
procedure GPIOB_Clock_Enable is
begin
RCC.AHB1ENR := RCC.AHB1ENR or AHB1ENR_GPIOBEN;
end GPIOB_Clock_Enable;
procedure GPIOC_Clock_Enable is
begin
RCC.AHB1ENR := RCC.AHB1ENR or AHB1ENR_GPIOCEN;
end GPIOC_Clock_Enable;
procedure GPIOD_Clock_Enable is
begin
RCC.AHB1ENR := RCC.AHB1ENR or AHB1ENR_GPIODEN;
end GPIOD_Clock_Enable;
procedure GPIOE_Clock_Enable is
begin
RCC.AHB1ENR := RCC.AHB1ENR or AHB1ENR_GPIOEEN;
end GPIOE_Clock_Enable;
procedure GPIOF_Clock_Enable is
begin
RCC.AHB1ENR := RCC.AHB1ENR or AHB1ENR_GPIOFEN;
end GPIOF_Clock_Enable;
procedure GPIOG_Clock_Enable is
begin
RCC.AHB1ENR := RCC.AHB1ENR or AHB1ENR_GPIOGEN;
end GPIOG_Clock_Enable;
procedure GPIOH_Clock_Enable is
begin
RCC.AHB1ENR := RCC.AHB1ENR or AHB1ENR_GPIOHEN;
end GPIOH_Clock_Enable;
procedure GPIOI_Clock_Enable is
begin
RCC.AHB1ENR := RCC.AHB1ENR or AHB1ENR_GPIOIEN;
end GPIOI_Clock_Enable;
procedure GPIOJ_Clock_Enable is
begin
RCC.AHB1ENR := RCC.AHB1ENR or AHB1ENR_GPIOJEN;
end GPIOJ_Clock_Enable;
procedure GPIOK_Clock_Enable is
begin
RCC.AHB1ENR := RCC.AHB1ENR or AHB1ENR_GPIOKEN;
end GPIOK_Clock_Enable;
procedure CRC_Clock_Enable is
begin
RCC.AHB1ENR := RCC.AHB1ENR or AHB1ENR_CRCEN;
end CRC_Clock_Enable;
procedure BKPSRAM_Clock_Enable is
begin
RCC.AHB1ENR := RCC.AHB1ENR or AHB1ENR_BKPSRAMEN;
end BKPSRAM_Clock_Enable;
procedure CCMDATARAMEN_Clock_Enable is
begin
RCC.AHB1ENR := RCC.AHB1ENR or AHB1ENR_CCMDATARAMEN;
end CCMDATARAMEN_Clock_Enable;
procedure DMA1_Clock_Enable is
begin
RCC.AHB1ENR := RCC.AHB1ENR or AHB1ENR_DMA1EN;
end DMA1_Clock_Enable;
procedure DMA2_Clock_Enable is
begin
RCC.AHB1ENR := RCC.AHB1ENR or AHB1ENR_DMA2EN;
end DMA2_Clock_Enable;
procedure GPIOA_Clock_Disable is
begin
RCC.AHB1ENR := RCC.AHB1ENR and not AHB1ENR_GPIOAEN;
end GPIOA_Clock_Disable;
procedure GPIOB_Clock_Disable is
begin
RCC.AHB1ENR := RCC.AHB1ENR and not AHB1ENR_GPIOBEN;
end GPIOB_Clock_Disable;
procedure GPIOC_Clock_Disable is
begin
RCC.AHB1ENR := RCC.AHB1ENR and not AHB1ENR_GPIOCEN;
end GPIOC_Clock_Disable;
procedure GPIOD_Clock_Disable is
begin
RCC.AHB1ENR := RCC.AHB1ENR and not AHB1ENR_GPIODEN;
end GPIOD_Clock_Disable;
procedure GPIOE_Clock_Disable is
begin
RCC.AHB1ENR := RCC.AHB1ENR and not AHB1ENR_GPIOEEN;
end GPIOE_Clock_Disable;
procedure GPIOF_Clock_Disable is
begin
RCC.AHB1ENR := RCC.AHB1ENR and not AHB1ENR_GPIOFEN;
end GPIOF_Clock_Disable;
procedure GPIOG_Clock_Disable is
begin
RCC.AHB1ENR := RCC.AHB1ENR and not AHB1ENR_GPIOGEN;
end GPIOG_Clock_Disable;
procedure GPIOH_Clock_Disable is
begin
RCC.AHB1ENR := RCC.AHB1ENR and not AHB1ENR_GPIOHEN;
end GPIOH_Clock_Disable;
procedure GPIOI_Clock_Disable is
begin
RCC.AHB1ENR := RCC.AHB1ENR and not AHB1ENR_GPIOIEN;
end GPIOI_Clock_Disable;
procedure GPIOJ_Clock_Disable is
begin
RCC.AHB1ENR := RCC.AHB1ENR and not AHB1ENR_GPIOJEN;
end GPIOJ_Clock_Disable;
procedure GPIOK_Clock_Disable is
begin
RCC.AHB1ENR := RCC.AHB1ENR and not AHB1ENR_GPIOKEN;
end GPIOK_Clock_Disable;
procedure CRC_Clock_Disable is
begin
RCC.AHB1ENR := RCC.AHB1ENR and not AHB1ENR_CRCEN;
end CRC_Clock_Disable;
procedure BKPSRAM_Clock_Disable is
begin
RCC.AHB1ENR := RCC.AHB1ENR and not AHB1ENR_BKPSRAMEN;
end BKPSRAM_Clock_Disable;
procedure CCMDATARAMEN_Clock_Disable is
begin
RCC.AHB1ENR := RCC.AHB1ENR and not AHB1ENR_CCMDATARAMEN;
end CCMDATARAMEN_Clock_Disable;
procedure DMA1_Clock_Disable is
begin
RCC.AHB1ENR := RCC.AHB1ENR and not AHB1ENR_DMA1EN;
end DMA1_Clock_Disable;
procedure DMA2_Clock_Disable is
begin
RCC.AHB1ENR := RCC.AHB1ENR and not AHB1ENR_DMA2EN;
end DMA2_Clock_Disable;
procedure RNG_Clock_Enable is
begin
RCC.AHB2ENR := RCC.AHB2ENR or AHB2ENR_RNGEN;
end RNG_Clock_Enable;
procedure RNG_Clock_Disable is
begin
RCC.AHB2ENR := RCC.AHB2ENR and not AHB2ENR_RNGEN;
end RNG_Clock_Disable;
procedure TIM2_Clock_Enable is
begin
RCC.APB1ENR := RCC.APB1ENR or APB1ENR_TIM2EN;
end TIM2_Clock_Enable;
procedure TIM3_Clock_Enable is
begin
RCC.APB1ENR := RCC.APB1ENR or APB1ENR_TIM3EN;
end TIM3_Clock_Enable;
procedure TIM4_Clock_Enable is
begin
RCC.APB1ENR := RCC.APB1ENR or APB1ENR_TIM4EN;
end TIM4_Clock_Enable;
procedure TIM5_Clock_Enable is
begin
RCC.APB1ENR := RCC.APB1ENR or APB1ENR_TIM5EN;
end TIM5_Clock_Enable;
procedure TIM6_Clock_Enable is
begin
RCC.APB1ENR := RCC.APB1ENR or APB1ENR_TIM6EN;
end TIM6_Clock_Enable;
procedure TIM7_Clock_Enable is
begin
RCC.APB1ENR := RCC.APB1ENR or APB1ENR_TIM7EN;
end TIM7_Clock_Enable;
procedure WWDG_Clock_Enable is
begin
RCC.APB1ENR := RCC.APB1ENR or APB1ENR_WWDGEN;
end WWDG_Clock_Enable;
procedure SPI2_Clock_Enable is
begin
RCC.APB1ENR := RCC.APB1ENR or APB1ENR_SPI2EN;
end SPI2_Clock_Enable;
procedure SPI3_Clock_Enable is
begin
RCC.APB1ENR := RCC.APB1ENR or APB1ENR_SPI3EN;
end SPI3_Clock_Enable;
procedure USART2_Clock_Enable is
begin
RCC.APB1ENR := RCC.APB1ENR or APB1ENR_USART2EN;
end USART2_Clock_Enable;
procedure USART3_Clock_Enable is
begin
RCC.APB1ENR := RCC.APB1ENR or APB1ENR_USART3EN;
end USART3_Clock_Enable;
procedure UART4_Clock_Enable is
begin
RCC.APB1ENR := RCC.APB1ENR or APB1ENR_UART4EN;
end UART4_Clock_Enable;
procedure UART5_Clock_Enable is
begin
RCC.APB1ENR := RCC.APB1ENR or APB1ENR_UART5EN;
end UART5_Clock_Enable;
procedure UART7_Clock_Enable is
begin
RCC.APB1ENR := RCC.APB1ENR or APB1ENR_UART7EN;
end UART7_Clock_Enable;
procedure UART8_Clock_Enable is
begin
RCC.APB1ENR := RCC.APB1ENR or APB1ENR_UART8EN;
end UART8_Clock_Enable;
procedure I2C1_Clock_Enable is
begin
RCC.APB1ENR := RCC.APB1ENR or APB1ENR_I2C1EN;
end I2C1_Clock_Enable;
procedure I2C2_Clock_Enable is
begin
RCC.APB1ENR := RCC.APB1ENR or APB1ENR_I2C2EN;
end I2C2_Clock_Enable;
procedure I2C3_Clock_Enable is
begin
RCC.APB1ENR := RCC.APB1ENR or APB1ENR_I2C3EN;
end I2C3_Clock_Enable;
procedure PWR_Clock_Enable is
begin
RCC.APB1ENR := RCC.APB1ENR or APB1ENR_PWREN;
end PWR_Clock_Enable;
procedure TIM2_Clock_Disable is
begin
RCC.APB1ENR := RCC.APB1ENR and not APB1ENR_TIM2EN;
end TIM2_Clock_Disable;
procedure TIM3_Clock_Disable is
begin
RCC.APB1ENR := RCC.APB1ENR and not APB1ENR_TIM3EN;
end TIM3_Clock_Disable;
procedure TIM4_Clock_Disable is
begin
RCC.APB1ENR := RCC.APB1ENR and not APB1ENR_TIM4EN;
end TIM4_Clock_Disable;
procedure TIM5_Clock_Disable is
begin
RCC.APB1ENR := RCC.APB1ENR and not APB1ENR_TIM5EN;
end TIM5_Clock_Disable;
procedure TIM6_Clock_Disable is
begin
RCC.APB1ENR := RCC.APB1ENR and not APB1ENR_TIM6EN;
end TIM6_Clock_Disable;
procedure TIM7_Clock_Disable is
begin
RCC.APB1ENR := RCC.APB1ENR and not APB1ENR_TIM7EN;
end TIM7_Clock_Disable;
procedure WWDG_Clock_Disable is
begin
RCC.APB1ENR := RCC.APB1ENR and not APB1ENR_WWDGEN;
end WWDG_Clock_Disable;
procedure SPI2_Clock_Disable is
begin
RCC.APB1ENR := RCC.APB1ENR and not APB1ENR_SPI2EN;
end SPI2_Clock_Disable;
procedure SPI3_Clock_Disable is
begin
RCC.APB1ENR := RCC.APB1ENR and not APB1ENR_SPI3EN;
end SPI3_Clock_Disable;
procedure USART2_Clock_Disable is
begin
RCC.APB1ENR := RCC.APB1ENR and not APB1ENR_USART2EN;
end USART2_Clock_Disable;
procedure USART3_Clock_Disable is
begin
RCC.APB1ENR := RCC.APB1ENR and not APB1ENR_USART3EN;
end USART3_Clock_Disable;
procedure UART4_Clock_Disable is
begin
RCC.APB1ENR := RCC.APB1ENR and not APB1ENR_UART4EN;
end UART4_Clock_Disable;
procedure UART5_Clock_Disable is
begin
RCC.APB1ENR := RCC.APB1ENR and not APB1ENR_UART5EN;
end UART5_Clock_Disable;
procedure UART7_Clock_Disable is
begin
RCC.APB1ENR := RCC.APB1ENR and not APB1ENR_UART7EN;
end UART7_Clock_Disable;
procedure UART8_Clock_Disable is
begin
RCC.APB1ENR := RCC.APB1ENR and not APB1ENR_UART8EN;
end UART8_Clock_Disable;
procedure I2C1_Clock_Disable is
begin
RCC.APB1ENR := RCC.APB1ENR and not APB1ENR_I2C1EN;
end I2C1_Clock_Disable;
procedure I2C2_Clock_Disable is
begin
RCC.APB1ENR := RCC.APB1ENR and not APB1ENR_I2C2EN;
end I2C2_Clock_Disable;
procedure I2C3_Clock_Disable is
begin
RCC.APB1ENR := RCC.APB1ENR and not APB1ENR_I2C3EN;
end I2C3_Clock_Disable;
procedure PWR_Clock_Disable is
begin
RCC.APB1ENR := RCC.APB1ENR and not APB1ENR_PWREN;
end PWR_Clock_Disable;
procedure TIM1_Clock_Enable is
begin
RCC.APB2ENR := RCC.APB2ENR or APB2ENR_TIM1EN;
end TIM1_Clock_Enable;
procedure USART1_Clock_Enable is
begin
RCC.APB2ENR := RCC.APB2ENR or APB2ENR_USART1EN;
end USART1_Clock_Enable;
procedure USART6_Clock_Enable is
begin
RCC.APB2ENR := RCC.APB2ENR or APB2ENR_USART6EN;
end USART6_Clock_Enable;
procedure ADC1_Clock_Enable is
begin
RCC.APB2ENR := RCC.APB2ENR or APB2ENR_ADC1EN;
end ADC1_Clock_Enable;
procedure SDIO_Clock_Enable is
begin
RCC.APB2ENR := RCC.APB2ENR or APB2ENR_SDIOEN;
end SDIO_Clock_Enable;
procedure SPI1_Clock_Enable is
begin
RCC.APB2ENR := RCC.APB2ENR or APB2ENR_SPI1EN;
end SPI1_Clock_Enable;
procedure SPI4_Clock_Enable is
begin
RCC.APB2ENR := RCC.APB2ENR or APB2ENR_SPI4EN;
end SPI4_Clock_Enable;
procedure SYSCFG_Clock_Enable is
begin
RCC.APB2ENR := RCC.APB2ENR or APB2ENR_SYSCFGEN;
end SYSCFG_Clock_Enable;
procedure TIM9_Clock_Enable is
begin
RCC.APB2ENR := RCC.APB2ENR or APB2ENR_TIM9EN;
end TIM9_Clock_Enable;
procedure TIM10_Clock_Enable is
begin
RCC.APB2ENR := RCC.APB2ENR or APB2ENR_TIM10EN;
end TIM10_Clock_Enable;
procedure TIM11_Clock_Enable is
begin
RCC.APB2ENR := RCC.APB2ENR or APB2ENR_TIM11EN;
end TIM11_Clock_Enable;
procedure SPI5_Clock_Enable is
begin
RCC.APB2ENR := RCC.APB2ENR or APB2ENR_SPI5EN;
end SPI5_Clock_Enable;
procedure SPI6_Clock_Enable is
begin
RCC.APB2ENR := RCC.APB2ENR or APB2ENR_SPI6EN;
end SPI6_Clock_Enable;
procedure LTDC_Clock_Enable is
begin
RCC.APB2ENR := RCC.APB2ENR or APB2ENR_LTDCEN;
end LTDC_Clock_Enable;
procedure TIM1_Clock_Disable is
begin
RCC.APB2ENR := RCC.APB2ENR and not APB2ENR_TIM1EN;
end TIM1_Clock_Disable;
procedure USART1_Clock_Disable is
begin
RCC.APB2ENR := RCC.APB2ENR and not APB2ENR_USART1EN;
end USART1_Clock_Disable;
procedure USART6_Clock_Disable is
begin
RCC.APB2ENR := RCC.APB2ENR and not APB2ENR_USART6EN;
end USART6_Clock_Disable;
procedure ADC1_Clock_Disable is
begin
RCC.APB2ENR := RCC.APB2ENR and not APB2ENR_ADC1EN;
end ADC1_Clock_Disable;
procedure SDIO_Clock_Disable is
begin
RCC.APB2ENR := RCC.APB2ENR and not APB2ENR_SDIOEN;
end SDIO_Clock_Disable;
procedure SPI1_Clock_Disable is
begin
RCC.APB2ENR := RCC.APB2ENR and not APB2ENR_SPI1EN;
end SPI1_Clock_Disable;
procedure SPI4_Clock_Disable is
begin
RCC.APB2ENR := RCC.APB2ENR and not APB2ENR_SPI4EN;
end SPI4_Clock_Disable;
procedure SYSCFG_Clock_Disable is
begin
RCC.APB2ENR := RCC.APB2ENR and not APB2ENR_SYSCFGEN;
end SYSCFG_Clock_Disable;
procedure TIM9_Clock_Disable is
begin
RCC.APB2ENR := RCC.APB2ENR and not APB2ENR_TIM9EN;
end TIM9_Clock_Disable;
procedure TIM10_Clock_Disable is
begin
RCC.APB2ENR := RCC.APB2ENR and not APB2ENR_TIM10EN;
end TIM10_Clock_Disable;
procedure TIM11_Clock_Disable is
begin
RCC.APB2ENR := RCC.APB2ENR and not APB2ENR_TIM11EN;
end TIM11_Clock_Disable;
procedure SPI5_Clock_Disable is
begin
RCC.APB2ENR := RCC.APB2ENR and not APB2ENR_SPI5EN;
end SPI5_Clock_Disable;
procedure SPI6_Clock_Disable is
begin
RCC.APB2ENR := RCC.APB2ENR and not APB2ENR_SPI6EN;
end SPI6_Clock_Disable;
procedure LTDC_Clock_Disable is
begin
RCC.APB2ENR := RCC.APB2ENR and not APB2ENR_LTDCEN;
end LTDC_Clock_Disable;
procedure AHB1_Force_Reset is
begin
RCC.AHB1RSTR := 16#FFFF_FFFF#;
end AHB1_Force_Reset;
procedure GPIOA_Force_Reset is
begin
RCC.AHB1RSTR := RCC.AHB1RSTR or AHB1RSTR_GPIOARST;
end GPIOA_Force_Reset;
procedure GPIOB_Force_Reset is
begin
RCC.AHB1RSTR := RCC.AHB1RSTR or AHB1RSTR_GPIOBRST;
end GPIOB_Force_Reset;
procedure GPIOC_Force_Reset is
begin
RCC.AHB1RSTR := RCC.AHB1RSTR or AHB1RSTR_GPIOCRST;
end GPIOC_Force_Reset;
procedure GPIOD_Force_Reset is
begin
RCC.AHB1RSTR := RCC.AHB1RSTR or AHB1RSTR_GPIODRST;
end GPIOD_Force_Reset;
procedure GPIOE_Force_Reset is
begin
RCC.AHB1RSTR := RCC.AHB1RSTR or AHB1RSTR_GPIOERST;
end GPIOE_Force_Reset;
procedure GPIOH_Force_Reset is
begin
RCC.AHB1RSTR := RCC.AHB1RSTR or AHB1RSTR_GPIOHRST;
end GPIOH_Force_Reset;
procedure CRC_Force_Reset is
begin
RCC.AHB1RSTR := RCC.AHB1RSTR or AHB1RSTR_CRCRST;
end CRC_Force_Reset;
procedure DMA1_Force_Reset is
begin
RCC.AHB1RSTR := RCC.AHB1RSTR or AHB1RSTR_DMA1RST;
end DMA1_Force_Reset;
procedure DMA2_Force_Reset is
begin
RCC.AHB1RSTR := RCC.AHB1RSTR or AHB1RSTR_DMA2RST;
end DMA2_Force_Reset;
procedure AHB1_Release_Reset is
begin
RCC.AHB1RSTR := 0;
end AHB1_Release_Reset;
procedure GPIOA_Release_Reset is
begin
RCC.AHB1RSTR := RCC.AHB1RSTR and not AHB1RSTR_GPIOARST;
end GPIOA_Release_Reset;
procedure GPIOB_Release_Reset is
begin
RCC.AHB1RSTR := RCC.AHB1RSTR and not AHB1RSTR_GPIOBRST;
end GPIOB_Release_Reset;
procedure GPIOC_Release_Reset is
begin
RCC.AHB1RSTR := RCC.AHB1RSTR and not AHB1RSTR_GPIOCRST;
end GPIOC_Release_Reset;
procedure GPIOD_Release_Reset is
begin
RCC.AHB1RSTR := RCC.AHB1RSTR and not AHB1RSTR_GPIODRST;
end GPIOD_Release_Reset;
procedure GPIOE_Release_Reset is
begin
RCC.AHB1RSTR := RCC.AHB1RSTR and not AHB1RSTR_GPIOERST;
end GPIOE_Release_Reset;
procedure GPIOF_Release_Reset is
begin
RCC.AHB1RSTR := RCC.AHB1RSTR and not AHB1RSTR_GPIOFRST;
end GPIOF_Release_Reset;
procedure GPIOG_Release_Reset is
begin
RCC.AHB1RSTR := RCC.AHB1RSTR and not AHB1RSTR_GPIOGRST;
end GPIOG_Release_Reset;
procedure GPIOH_Release_Reset is
begin
RCC.AHB1RSTR := RCC.AHB1RSTR and not AHB1RSTR_GPIOHRST;
end GPIOH_Release_Reset;
procedure GPIOI_Release_Reset is
begin
RCC.AHB1RSTR := RCC.AHB1RSTR and not AHB1RSTR_GPIOIRST;
end GPIOI_Release_Reset;
procedure CRC_Release_Reset is
begin
RCC.AHB1RSTR := RCC.AHB1RSTR and not AHB1RSTR_CRCRST;
end CRC_Release_Reset;
procedure DMA1_Release_Reset is
begin
RCC.AHB1RSTR := RCC.AHB1RSTR and not AHB1RSTR_DMA1RST;
end DMA1_Release_Reset;
procedure DMA2_Release_Reset is
begin
RCC.AHB1RSTR := RCC.AHB1RSTR and not AHB1RSTR_DMA2RST;
end DMA2_Release_Reset;
procedure AHB2_Force_Reset is
begin
RCC.AHB2RSTR := 16#FFFF_FFFF#;
end AHB2_Force_Reset;
procedure OTGFS_Force_Reset is
begin
RCC.AHB2RSTR := RCC.AHB2RSTR or AHB2RSTR_OTGFSRST;
end OTGFS_Force_Reset;
procedure AHB2_Release_Reset is
begin
RCC.AHB2RSTR := 0;
end AHB2_Release_Reset;
procedure OTGFS_Release_Reset is
begin
RCC.AHB2RSTR := RCC.AHB2RSTR and not AHB2RSTR_OTGFSRST;
end OTGFS_Release_Reset;
procedure RNG_Force_Reset is
begin
RCC.AHB2RSTR := RCC.AHB2RSTR or AHB2RSTR_RNGRST;
end RNG_Force_Reset;
procedure RNG_Release_Reset is
begin
RCC.AHB2RSTR := RCC.AHB2RSTR and not AHB2RSTR_RNGRST;
end RNG_Release_Reset;
procedure APB1_Force_Reset is
begin
RCC.APB1RSTR := 16#FFFF_FFFF#;
end APB1_Force_Reset;
procedure TIM2_Force_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR or APB1RSTR_TIM2RST;
end TIM2_Force_Reset;
procedure TIM3_Force_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR or APB1RSTR_TIM3RST;
end TIM3_Force_Reset;
procedure TIM4_Force_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR or APB1RSTR_TIM4RST;
end TIM4_Force_Reset;
procedure TIM5_Force_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR or APB1RSTR_TIM5RST;
end TIM5_Force_Reset;
procedure TIM6_Force_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR or APB1RSTR_TIM6RST;
end TIM6_Force_Reset;
procedure TIM7_Force_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR or APB1RSTR_TIM7RST;
end TIM7_Force_Reset;
procedure WWDG_Force_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR or APB1RSTR_WWDGRST;
end WWDG_Force_Reset;
procedure SPI2_Force_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR or APB1RSTR_SPI2RST;
end SPI2_Force_Reset;
procedure SPI3_Force_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR or APB1RSTR_SPI3RST;
end SPI3_Force_Reset;
procedure USART2_Force_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR or APB1RSTR_USART2RST;
end USART2_Force_Reset;
procedure I2C1_Force_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR or APB1RSTR_I2C1RST;
end I2C1_Force_Reset;
procedure I2C2_Force_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR or APB1RSTR_I2C2RST;
end I2C2_Force_Reset;
procedure I2C3_Force_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR or APB1RSTR_I2C3RST;
end I2C3_Force_Reset;
procedure PWR_Force_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR or APB1RSTR_PWRRST;
end PWR_Force_Reset;
procedure APB1_Release_Reset is
begin
RCC.APB1RSTR := 0;
end APB1_Release_Reset;
procedure TIM2_Release_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR and not APB1RSTR_TIM2RST;
end TIM2_Release_Reset;
procedure TIM3_Release_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR and not APB1RSTR_TIM3RST;
end TIM3_Release_Reset;
procedure TIM4_Release_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR and not APB1RSTR_TIM4RST;
end TIM4_Release_Reset;
procedure TIM5_Release_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR and not APB1RSTR_TIM5RST;
end TIM5_Release_Reset;
procedure TIM6_Release_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR and not APB1RSTR_TIM6RST;
end TIM6_Release_Reset;
procedure TIM7_Release_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR and not APB1RSTR_TIM7RST;
end TIM7_Release_Reset;
procedure WWDG_Release_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR and not APB1RSTR_WWDGRST;
end WWDG_Release_Reset;
procedure SPI2_Release_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR and not APB1RSTR_SPI2RST;
end SPI2_Release_Reset;
procedure SPI3_Release_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR and not APB1RSTR_SPI3RST;
end SPI3_Release_Reset;
procedure USART2_Release_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR and not APB1RSTR_USART2RST;
end USART2_Release_Reset;
procedure I2C1_Release_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR and not APB1RSTR_I2C1RST;
end I2C1_Release_Reset;
procedure I2C2_Release_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR and not APB1RSTR_I2C2RST;
end I2C2_Release_Reset;
procedure I2C3_Release_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR and not APB1RSTR_I2C3RST;
end I2C3_Release_Reset;
procedure PWR_Release_Reset is
begin
RCC.APB1RSTR := RCC.APB1RSTR and not APB1RSTR_PWRRST;
end PWR_Release_Reset;
procedure APB2_Force_Reset is
begin
RCC.APB2RSTR := 16#FFFF_FFFF#;
end APB2_Force_Reset;
procedure TIM1_Force_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR or APB2RSTR_TIM1RST;
end TIM1_Force_Reset;
procedure USART1_Force_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR or APB2RSTR_USART1RST;
end USART1_Force_Reset;
procedure USART6_Force_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR or APB2RSTR_USART6RST;
end USART6_Force_Reset;
procedure ADC_Force_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR or APB2RSTR_ADCRST;
end ADC_Force_Reset;
procedure SDIO_Force_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR or APB2RSTR_SDIORST;
end SDIO_Force_Reset;
procedure SPI1_Force_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR or APB2RSTR_SPI1RST;
end SPI1_Force_Reset;
procedure SPI4_Force_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR or APB2RSTR_SPI4RST;
end SPI4_Force_Reset;
procedure SYSCFG_Force_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR or APB2RSTR_SYSCFGRST;
end SYSCFG_Force_Reset;
procedure TIM9_Force_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR or APB2RSTR_TIM9RST;
end TIM9_Force_Reset;
procedure TIM10_Force_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR or APB2RSTR_TIM10RST;
end TIM10_Force_Reset;
procedure TIM11_Force_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR or APB2RSTR_TIM11RST;
end TIM11_Force_Reset;
procedure SPI5_Force_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR or APB2RSTR_SPI5RST;
end SPI5_Force_Reset;
procedure SPI6_Force_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR or APB2RSTR_SPI6RST;
end SPI6_Force_Reset;
procedure LTDC_Force_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR or APB2RSTR_LTDCRST;
end LTDC_Force_Reset;
procedure APB2_Release_Reset is
begin
RCC.APB2RSTR := 0;
end APB2_Release_Reset;
procedure TIM1_Release_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR and not APB2RSTR_TIM1RST;
end TIM1_Release_Reset;
procedure USART1_Release_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR and not APB2RSTR_USART1RST;
end USART1_Release_Reset;
procedure USART6_Release_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR and not APB2RSTR_USART6RST;
end USART6_Release_Reset;
procedure ADC_Release_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR and not APB2RSTR_ADCRST;
end ADC_Release_Reset;
procedure SDIO_Release_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR and not APB2RSTR_SDIORST;
end SDIO_Release_Reset;
procedure SPI1_Release_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR and not APB2RSTR_SPI1RST;
end SPI1_Release_Reset;
procedure SPI4_Release_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR and not APB2RSTR_SPI4RST;
end SPI4_Release_Reset;
procedure SYSCFG_Release_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR and not APB2RSTR_SYSCFGRST;
end SYSCFG_Release_Reset;
procedure TIM9_Release_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR and not APB2RSTR_TIM9RST;
end TIM9_Release_Reset;
procedure TIM10_Release_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR and not APB2RSTR_TIM10RST;
end TIM10_Release_Reset;
procedure TIM11_Release_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR and not APB2RSTR_TIM11RST;
end TIM11_Release_Reset;
procedure SPI5_Release_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR and not APB2RSTR_SPI5RST;
end SPI5_Release_Reset;
procedure SPI6_Release_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR and not APB2RSTR_SPI6RST;
end SPI6_Release_Reset;
procedure LTDC_Release_Reset is
begin
RCC.APB2RSTR := RCC.APB2RSTR and not APB2RSTR_LTDCRST;
end LTDC_Release_Reset;
procedure FSMC_Clock_Enable is
begin
RCC.AHB3ENR := RCC.AHB3ENR and AHB3ENR_FSMCEN;
end FSMC_Clock_Enable;
procedure FSMC_Clock_Disable is
begin
RCC.AHB3ENR := RCC.AHB3ENR and not AHB3ENR_FSMCEN;
end FSMC_Clock_Disable;
end STM32F4.Reset_Clock_Control;
|
<?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>p_hls_fptosi_float_i</name>
<ret_bitwidth>32</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>1</id>
<name>x</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo class_id="6" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>x</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs class_id="7" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>25</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_2">
<Value>
<Obj>
<type>0</type>
<id>2</id>
<name>x_read</name>
<fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</fileName>
<fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory>
<lineNumber>51</lineNumber>
<contextFuncName>__hls_fptosi_float_i32</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="10" tracking_level="0" version="0">
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</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>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first>
<second>__hls_fptosi_float_i32</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>x</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>29</item>
<item>30</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>1</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_3">
<Value>
<Obj>
<type>0</type>
<id>3</id>
<name>p_Val2_s</name>
<fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</fileName>
<fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory>
<lineNumber>310</lineNumber>
<contextFuncName>fp_struct</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, 6, float&gt;</second>
</first>
<second>13</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, float&gt;</second>
</first>
<second>117</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first>
<second>__hls_fptosi_float_i32</second>
</first>
<second>51</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first>
<second>fp_struct</second>
</first>
<second>310</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>val</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</oprand_edges>
<opcode>bitcast</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>2</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>p_Result_s</name>
<fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</fileName>
<fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory>
<lineNumber>316</lineNumber>
<contextFuncName>fp_struct</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, 6, float&gt;</second>
</first>
<second>13</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, float&gt;</second>
</first>
<second>117</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first>
<second>__hls_fptosi_float_i32</second>
</first>
<second>51</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first>
<second>fp_struct</second>
</first>
<second>316</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>33</item>
<item>34</item>
<item>36</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>3</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>tmp_V</name>
<fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</fileName>
<fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory>
<lineNumber>317</lineNumber>
<contextFuncName>fp_struct</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, 6, float&gt;</second>
</first>
<second>13</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, float&gt;</second>
</first>
<second>117</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first>
<second>__hls_fptosi_float_i32</second>
</first>
<second>51</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first>
<second>fp_struct</second>
</first>
<second>317</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>38</item>
<item>39</item>
<item>41</item>
<item>43</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>4</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>tmp_V_1</name>
<fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</fileName>
<fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory>
<lineNumber>318</lineNumber>
<contextFuncName>fp_struct</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, 6, float&gt;</second>
</first>
<second>13</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, float&gt;</second>
</first>
<second>117</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first>
<second>__hls_fptosi_float_i32</second>
</first>
<second>51</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first>
<second>fp_struct</second>
</first>
<second>318</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>44</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>5</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>mantissa_V</name>
<fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName>
<fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory>
<lineNumber>15</lineNumber>
<contextFuncName>generic_cast_IEEE754&lt;int, 6, float&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, 6, float&gt;</second>
</first>
<second>15</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, float&gt;</second>
</first>
<second>117</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first>
<second>__hls_fptosi_float_i32</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>mantissa.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>25</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>46</item>
<item>48</item>
<item>49</item>
<item>51</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>6</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_8">
<Value>
<Obj>
<type>0</type>
<id>8</id>
<name>zext_ln682</name>
<fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName>
<fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory>
<lineNumber>15</lineNumber>
<contextFuncName>generic_cast_IEEE754&lt;int, 6, float&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, 6, float&gt;</second>
</first>
<second>15</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, float&gt;</second>
</first>
<second>117</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first>
<second>__hls_fptosi_float_i32</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>79</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>7</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_9">
<Value>
<Obj>
<type>0</type>
<id>9</id>
<name>zext_ln339</name>
<fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</fileName>
<fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory>
<lineNumber>339</lineNumber>
<contextFuncName>expv</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, 6, float&gt;</second>
</first>
<second>18</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, float&gt;</second>
</first>
<second>117</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first>
<second>__hls_fptosi_float_i32</second>
</first>
<second>51</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first>
<second>expv</second>
</first>
<second>339</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>8</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>10</id>
<name>add_ln339</name>
<fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</fileName>
<fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory>
<lineNumber>339</lineNumber>
<contextFuncName>expv</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, 6, float&gt;</second>
</first>
<second>18</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, float&gt;</second>
</first>
<second>117</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first>
<second>__hls_fptosi_float_i32</second>
</first>
<second>51</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first>
<second>expv</second>
</first>
<second>339</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>sh</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>55</item>
<item>56</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.30</m_delay>
<m_topoIndex>9</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>isNeg</name>
<fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName>
<fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory>
<lineNumber>18</lineNumber>
<contextFuncName>generic_cast_IEEE754&lt;int, 6, float&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, 6, float&gt;</second>
</first>
<second>18</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, float&gt;</second>
</first>
<second>117</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first>
<second>__hls_fptosi_float_i32</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>isNeg</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>58</item>
<item>59</item>
<item>61</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>10</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>12</id>
<name>sub_ln1311</name>
<fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName>
<fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory>
<lineNumber>18</lineNumber>
<contextFuncName>generic_cast_IEEE754&lt;int, 6, float&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, 6, float&gt;</second>
</first>
<second>18</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, float&gt;</second>
</first>
<second>117</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first>
<second>__hls_fptosi_float_i32</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>63</item>
<item>64</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.30</m_delay>
<m_topoIndex>11</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>13</id>
<name>sext_ln1311</name>
<fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName>
<fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory>
<lineNumber>18</lineNumber>
<contextFuncName>generic_cast_IEEE754&lt;int, 6, float&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, 6, float&gt;</second>
</first>
<second>18</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, float&gt;</second>
</first>
<second>117</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first>
<second>__hls_fptosi_float_i32</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>65</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>12</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>14</id>
<name>ush</name>
<fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName>
<fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory>
<lineNumber>18</lineNumber>
<contextFuncName>generic_cast_IEEE754&lt;int, 6, float&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, 6, float&gt;</second>
</first>
<second>18</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, float&gt;</second>
</first>
<second>117</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first>
<second>__hls_fptosi_float_i32</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>sh</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>66</item>
<item>67</item>
<item>68</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.72</m_delay>
<m_topoIndex>13</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>15</id>
<name>sext_ln1311_1</name>
<fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName>
<fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory>
<lineNumber>18</lineNumber>
<contextFuncName>generic_cast_IEEE754&lt;int, 6, float&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, 6, float&gt;</second>
</first>
<second>18</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, float&gt;</second>
</first>
<second>117</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first>
<second>__hls_fptosi_float_i32</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>69</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="_16">
<Value>
<Obj>
<type>0</type>
<id>16</id>
<name>sext_ln1311_2</name>
<fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName>
<fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory>
<lineNumber>18</lineNumber>
<contextFuncName>generic_cast_IEEE754&lt;int, 6, float&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, 6, float&gt;</second>
</first>
<second>18</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, float&gt;</second>
</first>
<second>117</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first>
<second>__hls_fptosi_float_i32</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>25</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>70</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="_17">
<Value>
<Obj>
<type>0</type>
<id>17</id>
<name>zext_ln1287</name>
<fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName>
<fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory>
<lineNumber>18</lineNumber>
<contextFuncName>generic_cast_IEEE754&lt;int, 6, float&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, 6, float&gt;</second>
</first>
<second>18</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, float&gt;</second>
</first>
<second>117</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first>
<second>__hls_fptosi_float_i32</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>79</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>16</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>18</id>
<name>r_V</name>
<fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName>
<fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory>
<lineNumber>18</lineNumber>
<contextFuncName>generic_cast_IEEE754&lt;int, 6, float&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, 6, float&gt;</second>
</first>
<second>18</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, float&gt;</second>
</first>
<second>117</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first>
<second>__hls_fptosi_float_i32</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>25</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>72</item>
<item>73</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>17</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>19</id>
<name>r_V_1</name>
<fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName>
<fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory>
<lineNumber>18</lineNumber>
<contextFuncName>generic_cast_IEEE754&lt;int, 6, float&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, 6, float&gt;</second>
</first>
<second>18</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, float&gt;</second>
</first>
<second>117</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first>
<second>__hls_fptosi_float_i32</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>79</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>74</item>
<item>75</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>18</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>20</id>
<name>tmp</name>
<fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName>
<fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory>
<lineNumber>21</lineNumber>
<contextFuncName>generic_cast_IEEE754&lt;int, 6, float&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, 6, float&gt;</second>
</first>
<second>21</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, float&gt;</second>
</first>
<second>117</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first>
<second>__hls_fptosi_float_i32</second>
</first>
<second>51</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>77</item>
<item>78</item>
<item>80</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>19</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name>zext_ln662</name>
<fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName>
<fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory>
<lineNumber>21</lineNumber>
<contextFuncName>generic_cast_IEEE754&lt;int, 6, float&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, 6, float&gt;</second>
</first>
<second>21</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, float&gt;</second>
</first>
<second>117</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first>
<second>__hls_fptosi_float_i32</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>81</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>20</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>22</id>
<name>tmp_17</name>
<fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName>
<fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory>
<lineNumber>21</lineNumber>
<contextFuncName>generic_cast_IEEE754&lt;int, 6, float&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, 6, float&gt;</second>
</first>
<second>21</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, float&gt;</second>
</first>
<second>117</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first>
<second>__hls_fptosi_float_i32</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>83</item>
<item>84</item>
<item>85</item>
<item>87</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>21</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>23</id>
<name>p_Val2_5</name>
<fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName>
<fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory>
<lineNumber>18</lineNumber>
<contextFuncName>generic_cast_IEEE754&lt;int, 6, float&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, 6, float&gt;</second>
</first>
<second>18</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, float&gt;</second>
</first>
<second>117</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first>
<second>__hls_fptosi_float_i32</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Val2__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>88</item>
<item>89</item>
<item>90</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>2.96</m_delay>
<m_topoIndex>22</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>result_V_1</name>
<fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName>
<fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory>
<lineNumber>59</lineNumber>
<contextFuncName>generic_cast_IEEE754&lt;int, 6, float&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, 6, float&gt;</second>
</first>
<second>59</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, float&gt;</second>
</first>
<second>117</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first>
<second>__hls_fptosi_float_i32</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>result.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>92</item>
<item>93</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.89</m_delay>
<m_topoIndex>23</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>p_Val2_6</name>
<fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName>
<fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory>
<lineNumber>59</lineNumber>
<contextFuncName>generic_cast_IEEE754&lt;int, 6, float&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, 6, float&gt;</second>
</first>
<second>59</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;int, float&gt;</second>
</first>
<second>117</second>
</item>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first>
<second>__hls_fptosi_float_i32</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Val2__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>94</item>
<item>95</item>
<item>96</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.70</m_delay>
<m_topoIndex>24</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>_ln51</name>
<fileName>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</fileName>
<fileDirectory>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</fileDirectory>
<lineNumber>51</lineNumber>
<contextFuncName>__hls_fptosi_float_i32</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2019.2/continuous/2019_11_06_2708876/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first>
<second>__hls_fptosi_float_i32</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>25</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>11</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_27">
<Value>
<Obj>
<type>2</type>
<id>35</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>31</content>
</item>
<item class_id_reference="16" object_id="_28">
<Value>
<Obj>
<type>2</type>
<id>40</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>23</content>
</item>
<item class_id_reference="16" object_id="_29">
<Value>
<Obj>
<type>2</type>
<id>42</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>30</content>
</item>
<item class_id_reference="16" object_id="_30">
<Value>
<Obj>
<type>2</type>
<id>47</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="_31">
<Value>
<Obj>
<type>2</type>
<id>50</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>0</content>
</item>
<item class_id_reference="16" object_id="_32">
<Value>
<Obj>
<type>2</type>
<id>54</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>385</content>
</item>
<item class_id_reference="16" object_id="_33">
<Value>
<Obj>
<type>2</type>
<id>60</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>8</content>
</item>
<item class_id_reference="16" object_id="_34">
<Value>
<Obj>
<type>2</type>
<id>62</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>0</const_type>
<content>127</content>
</item>
<item class_id_reference="16" object_id="_35">
<Value>
<Obj>
<type>2</type>
<id>79</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>24</content>
</item>
<item class_id_reference="16" object_id="_36">
<Value>
<Obj>
<type>2</type>
<id>86</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>55</content>
</item>
<item class_id_reference="16" object_id="_37">
<Value>
<Obj>
<type>2</type>
<id>91</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>0</content>
</item>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_38">
<Obj>
<type>3</type>
<id>27</id>
<name>__hls_fptosi_float_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>25</count>
<item_version>0</item_version>
<item>2</item>
<item>3</item>
<item>4</item>
<item>5</item>
<item>6</item>
<item>7</item>
<item>8</item>
<item>9</item>
<item>10</item>
<item>11</item>
<item>12</item>
<item>13</item>
<item>14</item>
<item>15</item>
<item>16</item>
<item>17</item>
<item>18</item>
<item>19</item>
<item>20</item>
<item>21</item>
<item>22</item>
<item>23</item>
<item>24</item>
<item>25</item>
<item>26</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>45</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_39">
<id>30</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>2</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_40">
<id>31</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>3</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_41">
<id>34</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>4</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_42">
<id>36</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>4</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_43">
<id>39</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>5</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_44">
<id>41</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>5</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_45">
<id>43</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>5</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_46">
<id>44</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>6</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_47">
<id>48</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>7</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_48">
<id>49</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>7</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_49">
<id>51</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>7</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_50">
<id>52</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>8</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_51">
<id>53</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>9</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_52">
<id>55</id>
<edge_type>1</edge_type>
<source_obj>54</source_obj>
<sink_obj>10</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_53">
<id>56</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>10</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_54">
<id>59</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>11</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_55">
<id>61</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>11</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_56">
<id>63</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>12</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_57">
<id>64</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>12</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_58">
<id>65</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>13</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_59">
<id>66</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>14</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_60">
<id>67</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>14</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_61">
<id>68</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>14</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_62">
<id>69</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>15</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_63">
<id>70</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>16</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_64">
<id>71</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_65">
<id>72</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>18</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_66">
<id>73</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>18</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_67">
<id>74</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>19</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_68">
<id>75</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>19</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_69">
<id>78</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>20</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_70">
<id>80</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>20</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_71">
<id>81</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_72">
<id>84</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_73">
<id>85</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_74">
<id>87</id>
<edge_type>1</edge_type>
<source_obj>86</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_75">
<id>88</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_76">
<id>89</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_77">
<id>90</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_78">
<id>92</id>
<edge_type>1</edge_type>
<source_obj>91</source_obj>
<sink_obj>24</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_79">
<id>93</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>24</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_80">
<id>94</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_81">
<id>95</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_82">
<id>96</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_83">
<id>97</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>26</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_84">
<mId>1</mId>
<mTag>__hls_fptosi_float_i</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>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="_85">
<states class_id="25" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="26" tracking_level="1" version="0" object_id="_86">
<id>1</id>
<operations class_id="27" tracking_level="0" version="0">
<count>25</count>
<item_version>0</item_version>
<item class_id="28" tracking_level="1" version="0" object_id="_87">
<id>2</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_88">
<id>3</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_89">
<id>4</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_90">
<id>5</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_91">
<id>6</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_92">
<id>7</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_93">
<id>8</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_94">
<id>9</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_95">
<id>10</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_96">
<id>11</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_97">
<id>12</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_98">
<id>13</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_99">
<id>14</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_100">
<id>15</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_101">
<id>16</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_102">
<id>17</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_103">
<id>18</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_104">
<id>19</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_105">
<id>20</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_106">
<id>21</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_107">
<id>22</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_108">
<id>23</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_109">
<id>24</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_110">
<id>25</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_111">
<id>26</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="29" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</transitions>
</fsm>
<res class_id="-1"></res>
<node_label_latency class_id="31" tracking_level="0" version="0">
<count>25</count>
<item_version>0</item_version>
<item class_id="32" tracking_level="0" version="0">
<first>2</first>
<second class_id="33" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>3</first>
<second>
<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>12</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>13</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>14</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>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>17</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>18</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>19</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>20</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>21</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>22</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>23</first>
<second>
<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>0</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="34" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="35" tracking_level="0" version="0">
<first>27</first>
<second class_id="36" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="37" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</regions>
<dp_fu_nodes class_id="38" tracking_level="0" version="0">
<count>24</count>
<item_version>0</item_version>
<item class_id="39" tracking_level="0" version="0">
<first>38</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>2</item>
</second>
</item>
<item>
<first>44</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>3</item>
</second>
</item>
<item>
<first>48</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>4</item>
</second>
</item>
<item>
<first>56</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>5</item>
</second>
</item>
<item>
<first>66</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>6</item>
</second>
</item>
<item>
<first>70</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>7</item>
</second>
</item>
<item>
<first>80</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>84</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>88</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>94</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>102</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>108</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>112</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>120</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>124</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>128</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>132</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>138</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>144</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>152</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>156</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>22</item>
</second>
</item>
<item>
<first>166</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>174</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>180</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="41" tracking_level="0" version="0">
<count>23</count>
<item_version>0</item_version>
<item class_id="42" tracking_level="0" version="0">
<first>add_ln339_fu_88</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>isNeg_fu_94</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>mantissa_V_fu_70</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>7</item>
</second>
</item>
<item>
<first>p_Result_s_fu_48</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>4</item>
</second>
</item>
<item>
<first>p_Val2_5_fu_166</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>p_Val2_6_fu_180</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>p_Val2_s_fu_44</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>3</item>
</second>
</item>
<item>
<first>r_V_1_fu_138</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>r_V_fu_132</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>result_V_1_fu_174</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>sext_ln1311_1_fu_120</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>sext_ln1311_2_fu_124</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>sext_ln1311_fu_108</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>sub_ln1311_fu_102</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>tmp_17_fu_156</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>22</item>
</second>
</item>
<item>
<first>tmp_V_1_fu_66</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>6</item>
</second>
</item>
<item>
<first>tmp_V_fu_56</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>5</item>
</second>
</item>
<item>
<first>tmp_fu_144</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>ush_fu_112</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>zext_ln1287_fu_128</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>zext_ln339_fu_84</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>zext_ln662_fu_152</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>zext_ln682_fu_80</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</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>1</count>
<item_version>0</item_version>
<item>
<first>x_read_read_fu_38</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>2</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="43" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>0</count>
<item_version>0</item_version>
</dp_reg_nodes>
<dp_regname_nodes>
<count>0</count>
<item_version>0</item_version>
</dp_regname_nodes>
<dp_reg_phi>
<count>0</count>
<item_version>0</item_version>
</dp_reg_phi>
<dp_regname_phi>
<count>0</count>
<item_version>0</item_version>
</dp_regname_phi>
<dp_port_io_nodes class_id="44" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="45" tracking_level="0" version="0">
<first>x</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>2</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core class_id="46" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
|
------------------------------------------------------------------------------
-- Copyright (c) 2016, 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. --
------------------------------------------------------------------------------
------------------------------------------------------------------------------
-- Simple_Webapps.Append_Servers provides an HTTP server that handle POST --
-- request by appending signed data to a given local file. --
------------------------------------------------------------------------------
with AWS.Dispatchers;
with AWS.Response;
with AWS.Status;
with Natools.S_Expressions.Lockable;
private with Ada.Strings.Unbounded;
private with Natools.Constant_Indefinite_Ordered_Maps;
private with Natools.References;
private with Natools.Storage_Pools;
private with Natools.S_Expressions.Atom_Refs;
private with Natools.S_Expressions.Printers.Pretty;
package Simple_Webapps.Append_Servers is
type Handler is new AWS.Dispatchers.Handler with private;
overriding function Dispatch
(Dispatcher : in Handler;
Request : in AWS.Status.Data)
return AWS.Response.Data;
overriding function Clone (Dispatcher : in Handler) return Handler;
not overriding procedure Reset
(Dispatcher : in out Handler;
Config_File : in String);
not overriding procedure Reset
(Dispatcher : in out Handler;
Config : in out Natools.S_Expressions.Lockable.Descriptor'Class;
File_Name : in String);
type Log_Procedure is not null access procedure (Message : in String);
procedure Discard_Log (Message : in String) is null;
Log : Log_Procedure := Discard_Log'Access;
-- Note that unlike its namesake in Simple_Webapps.Upload_Server,
-- this procedure is called from an AWS reponse callback without
-- any protection, so it should be made task-safe.
private
package Sx renames Natools.S_Expressions;
subtype String_Holder is Ada.Strings.Unbounded.Unbounded_String;
function Hold (S : String) return String_Holder
renames Ada.Strings.Unbounded.To_Unbounded_String;
function To_String (H : String_Holder) return String
renames Ada.Strings.Unbounded.To_String;
type Separator_Action is
(No_Separator, -- Received data is appended as-is
Force_Separator, -- Separator data is appended after each post
Separator_If_Needed); -- Separator data is appended when it's not a
-- suffix of the posted data
type Separator_Data (Action : Separator_Action := No_Separator) is record
case Action is
when No_Separator => null;
when Force_Separator | Separator_If_Needed =>
Data : Sx.Atom_Refs.Immutable_Reference;
end case;
end record;
type Endpoint is record
Data_Path : String_Holder;
Invalid_Log : String_Holder;
Key : Sx.Atom_Refs.Immutable_Reference;
Separator : Separator_Data;
Redirect : String_Holder;
Pretty_Printer : Sx.Printers.Pretty.Parameters;
end record;
procedure Append_Data
(Self : in Endpoint;
Data : in Sx.Atom);
procedure Log_Invalid
(Self : in Endpoint;
Data : in Sx.Atom;
Given_Signature : in Sx.Atom;
Expected_Signature : in Sx.Atom);
package Execution_Results is
type Enum is (OK, Invalid_Signature, File_Error);
type Data (State : Enum) is record
case State is
when OK =>
Redirect : String_Holder;
when Invalid_Signature | File_Error =>
null;
end case;
end record;
end Execution_Results;
function Execute
(Self : in Endpoint;
Data : in Sx.Atom;
Signature : in Sx.Atom)
return Execution_Results.Data;
package Endpoint_Maps is new Natools.Constant_Indefinite_Ordered_Maps
(String, Endpoint);
type Server_Data is record
Default_Printer : Sx.Printers.Pretty.Parameters;
Endpoints : Endpoint_Maps.Constant_Map;
Static_Path : String_Holder;
Template : String_Holder;
end record;
package Server_Refs is new Natools.References
(Server_Data,
Natools.Storage_Pools.Access_In_Default_Pool'Storage_Pool,
Natools.Storage_Pools.Access_In_Default_Pool'Storage_Pool);
type Handler is new AWS.Dispatchers.Handler with record
Ref : Server_Refs.Immutable_Reference;
end record;
end Simple_Webapps.Append_Servers;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . E X C E P T I O N S . I S _ N U L L _ O C C U R R E N C E --
-- --
-- S p e c --
-- --
-- Copyright (C) 2000-2020, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This is a GNAT-specific child function of Ada.Exceptions. It provides
-- clearly missing functionality for its parent package, and most reasonably
-- would simply be an added function to that package, but this change cannot
-- be made in a conforming manner.
function Ada.Exceptions.Is_Null_Occurrence
(X : Exception_Occurrence) return Boolean;
pragma Preelaborate (Ada.Exceptions.Is_Null_Occurrence);
-- This function yields True if X is Null_Occurrence, and False otherwise
|
------------------------------------------------------------------------------
-- --
-- GNAT ncurses Binding --
-- --
-- Terminal_Interface.Curses.Forms.Field_Types.Alpha --
-- --
-- B O D Y --
-- --
------------------------------------------------------------------------------
-- Copyright (c) 1998 Free Software Foundation, Inc. --
-- --
-- Permission is hereby granted, free of charge, to any person obtaining a --
-- copy of this software and associated documentation files (the --
-- "Software"), to deal in the Software without restriction, including --
-- without limitation the rights to use, copy, modify, merge, publish, --
-- distribute, distribute with modifications, sublicense, and/or sell --
-- copies of the Software, and to permit persons to whom the Software is --
-- furnished to do so, subject to the following conditions: --
-- --
-- The above copyright notice and this permission notice shall be included --
-- in all copies or substantial portions of the Software. --
-- --
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS --
-- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF --
-- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. --
-- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, --
-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR --
-- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR --
-- THE USE OR OTHER DEALINGS IN THE SOFTWARE. --
-- --
-- Except as contained in this notice, the name(s) of the above copyright --
-- holders shall not be used in advertising or otherwise to promote the --
-- sale, use or other dealings in this Software without prior written --
-- authorization. --
------------------------------------------------------------------------------
-- Author: Juergen Pfeifer, 1996
-- Version Control:
-- $Revision: 1.8 $
-- Binding Version 01.00
------------------------------------------------------------------------------
with Interfaces.C;
with Terminal_Interface.Curses.Aux; use Terminal_Interface.Curses.Aux;
package body Terminal_Interface.Curses.Forms.Field_Types.Alpha is
use type Interfaces.C.int;
procedure Set_Field_Type (Fld : in Field;
Typ : in Alpha_Field)
is
C_Alpha_Field_Type : C_Field_Type;
pragma Import (C, C_Alpha_Field_Type, "TYPE_ALPHA");
function Set_Fld_Type (F : Field := Fld;
Cft : C_Field_Type := C_Alpha_Field_Type;
Arg1 : C_Int) return C_Int;
pragma Import (C, Set_Fld_Type, "set_field_type");
Res : Eti_Error;
begin
Res := Set_Fld_Type (Arg1 => C_Int (Typ.Minimum_Field_Width));
if Res /= E_Ok then
Eti_Exception (Res);
end if;
Wrap_Builtin (Fld, Typ);
end Set_Field_Type;
end Terminal_Interface.Curses.Forms.Field_Types.Alpha;
|
-----------------------------------------------------------------------
-- awa-blogs-servlets -- Serve files saved in the storage service
-- Copyright (C) 2017, 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.Strings.Unbounded;
with Ada.Calendar;
with ADO;
with ASF.Requests;
with AWA.Storages.Servlets;
package AWA.Blogs.Servlets is
-- The <b>Storage_Servlet</b> represents the component that will handle
-- an HTTP request received by the server.
type Image_Servlet is new AWA.Storages.Servlets.Storage_Servlet with private;
-- Load the data content that correspond to the GET request and get the name as well
-- as mime-type and date.
procedure Load (Server : in Image_Servlet;
Request : in out ASF.Requests.Request'Class;
Name : out Ada.Strings.Unbounded.Unbounded_String;
Mime : out Ada.Strings.Unbounded.Unbounded_String;
Date : out Ada.Calendar.Time;
Data : out ADO.Blob_Ref);
-- Get the expected return mode (content disposition for download or inline).
overriding
function Get_Format (Server : in Image_Servlet;
Request : in ASF.Requests.Request'Class)
return AWA.Storages.Servlets.Get_Type;
private
type Image_Servlet is new AWA.Storages.Servlets.Storage_Servlet with null record;
end AWA.Blogs.Servlets;
|
-- This file is generated by SWIG. Please do *not* modify by hand.
--
with Interfaces.C.Pointers;
with Interfaces.C.Strings;
with System;
package clib.Pointers is
-- time_t_Pointer
--
type time_t_Pointer is access all clib.time_t;
-- time_t_Pointers
--
type time_t_Pointers is
array
(Interfaces.C.size_t range <>) of aliased clib.Pointers.time_t_Pointer;
-- FILE_Pointer
--
type FILE_Pointer is access all clib.FILE;
-- FILE_Pointers
--
type FILE_Pointers is
array
(Interfaces.C.size_t range <>) of aliased clib.Pointers.FILE_Pointer;
end clib.Pointers;
|
with Ada.Integer_Text_IO;
procedure Euler6 is
Sum_Of_Squares, Sum_Of_Ints: Integer := 0;
begin
for I in Integer range 1 .. 100 loop
Sum_Of_Squares := Sum_Of_Squares + I * I;
Sum_Of_Ints := Sum_Of_Ints + I;
end loop;
Ada.Integer_Text_IO.Put(Sum_Of_Ints * Sum_Of_Ints - Sum_Of_Squares);
end Euler6;
|
--
-- Copyright (C) 2006-2013, AdaCore
--
-- This package provides a general block copy mechanism analogous to that
-- provided by the C routine memmove allowing for copies with overlap.
with System; use System;
with Interfaces.C; use Interfaces.C;
package Memory_Move is
pragma Preelaborate;
procedure memmove (Dest : Address; Src : Address; N : size_t);
pragma Export (C, memmove, "memmove");
-- Copies N storage units from area starting at S2 to area starting
-- at S1 without any check for buffer overflow. The difference between
-- this memmove and memcpy is that with memmove, the storage areas may
-- overlap (forwards or backwards) and the result is correct (i.e. it
-- is as if S2 is first moved to a temporary area, and then this area
-- is copied to S1 in a separate step).
end Memory_Move;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- G N A T . B U B B L E _ S O R T _ A --
-- --
-- B o d y --
-- --
-- Copyright (C) 1995-2005, AdaCore --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
package body GNAT.Bubble_Sort_A is
----------
-- Sort --
----------
procedure Sort (N : Natural; Move : Move_Procedure; Lt : Lt_Function) is
Switched : Boolean;
begin
loop
Switched := False;
for J in 1 .. N - 1 loop
if Lt (J + 1, J) then
Move (J, 0);
Move (J + 1, J);
Move (0, J + 1);
Switched := True;
end if;
end loop;
exit when not Switched;
end loop;
end Sort;
end GNAT.Bubble_Sort_A;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S Y S T E M . V A L _ B O O L --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2005, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with System.Val_Util; use System.Val_Util;
package body System.Val_Bool is
-------------------
-- Value_Boolean --
-------------------
function Value_Boolean (Str : String) return Boolean is
F : Natural;
L : Natural;
S : String (Str'Range) := Str;
begin
Normalize_String (S, F, L);
if S (F .. L) = "TRUE" then
return True;
elsif S (F .. L) = "FALSE" then
return False;
else
raise Constraint_Error;
end if;
end Value_Boolean;
end System.Val_Bool;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Localization, Internationalization, Globalization for Ada --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2014, 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 Matreshka.CLDR.Collation_Data;
package Matreshka.CLDR.Collation_Rules_Parser is
procedure Parse_Collation_Rules
(Data : in out Matreshka.CLDR.Collation_Data.Collation_Information;
Buffer : Wide_Wide_String);
end Matreshka.CLDR.Collation_Rules_Parser;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUNTIME COMPONENTS --
-- --
-- A D A . A S Y N C H R O N O U S _ T A S K _ C O N T R O L --
-- --
-- B o d y --
-- --
-- $Revision$
-- --
-- Copyright (C) 1992,1993,1994,1995 Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
-- MA 02111-1307, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This is a dummy body, which will not normally be compiled when used with
-- standard versions of GNAT, which do not support this package. See comments
-- in spec for further details.
package body Ada.Asynchronous_Task_Control is
--------------
-- Continue --
--------------
procedure Continue (T : Ada.Task_Identification.Task_Id) is
begin
null;
end Continue;
----------
-- Hold --
----------
procedure Hold (T : Ada.Task_Identification.Task_Id) is
begin
raise Program_Error;
end Hold;
-------------
-- Is_Held --
-------------
function Is_Held (T : Ada.Task_Identification.Task_Id) return Boolean is
begin
return False;
end Is_Held;
end Ada.Asynchronous_Task_Control;
|
-- CE2109A.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 DEFAULT MODES IN CREATE ARE SET CORRECTLY FOR
-- SEQUENTIAL_IO.
-- APPLICABILITY CRITERIA:
-- THIS TEST IS ONLY APPLICABLE TO IMPLEMENTATIONS WHICH SUPPORT
-- CREATE WITH OUT_FILE MODE FOR SEQUENTIAL FILES.
-- HISTORY:
-- ABW 08/13/82
-- SPS 11/09/82
-- JBG 11/11/83
-- TBN 02/13/86 SPLIT TEST. PUT DIRECT_IO INTO CE2109B.ADA AND
-- TEXT_IO INTO CE2109C.ADA.
-- TBN 11/04/86 REVISED TEST TO OUTPUT A NON_APPLICABLE
-- RESULT WHEN FILES ARE NOT SUPPORTED.
-- DWC 08/12/87 CHANGED NOT_APPLICABLE MESSAGE, REMOVED
-- NAME_ERROR, AND CLOSED THE FILE.
WITH REPORT; USE REPORT;
WITH SEQUENTIAL_IO;
PROCEDURE CE2109A IS
INCOMPLETE : EXCEPTION;
PACKAGE SEQ IS NEW SEQUENTIAL_IO (INTEGER);
USE SEQ;
FILE2 : SEQ.FILE_TYPE;
BEGIN
TEST( "CE2109A", "CHECK DEFAULT MODE IN CREATE FOR SEQ_IO");
BEGIN
CREATE (FILE2);
EXCEPTION
WHEN USE_ERROR =>
NOT_APPLICABLE ("CREATE OF SEQUENTIAL FILE WITH " &
"OUT_FILE MODE NOT SUPPORTED");
RAISE INCOMPLETE;
WHEN OTHERS =>
FAILED ("UNEXPECTED EXCEPTION RAISED; SEQUENTIAL " &
"CREATE");
RAISE INCOMPLETE;
END;
IF MODE (FILE2) /= OUT_FILE THEN
FAILED( "MODE INCORRECTLY SET FOR SEQUENTIAL_IO" );
END IF;
CLOSE (FILE2);
RESULT;
EXCEPTION
WHEN INCOMPLETE =>
RESULT;
END CE2109A;
|
------------------------------------------------------------------------------
-- --
-- GNAT LIBRARY COMPONENTS --
-- --
-- G N A T . M O S T _ R E C E N T _ E X C E P T I O N --
-- --
-- S p e c --
-- --
-- Copyright (C) 2000-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. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package provides routines for accessing the most recently raised
-- exception. This may be useful for certain logging activities. It may
-- also be useful for mimicking implementation dependent capabilities in
-- Ada 83 compilers, but see also GNAT.Current_Exceptions for this usage.
with Ada.Exceptions;
package GNAT.Most_Recent_Exception is
-----------------
-- Subprograms --
-----------------
function Occurrence
return Ada.Exceptions.Exception_Occurrence;
-- Returns the Exception_Occurrence for the most recently raised exception
-- in the current task. If no exception has been raised in the current task
-- prior to the call, returns Null_Occurrence.
function Occurrence_Access
return Ada.Exceptions.Exception_Occurrence_Access;
-- Similar to the above, but returns an access to the occurrence value.
-- This value is in a task specific location, and may be validly accessed
-- as long as no further exception is raised in the calling task.
-- Note: unlike the routines in GNAT.Current_Exception, these functions
-- access the most recently raised exception, regardless of where they
-- are called. Consider the following example:
-- exception
-- when Constraint_Error =>
-- begin
-- ...
-- exception
-- when Tasking_Error => ...
-- end;
--
-- -- Assuming a Tasking_Error was raised in the inner block,
-- -- a call to GNAT.Most_Recent_Exception.Occurrence will
-- -- return information about this Tasking_Error exception,
-- -- not about the Constraint_Error exception being handled
-- -- by the current handler code.
end GNAT.Most_Recent_Exception;
|
-- part of OpenGLAda, (c) 2017 Felix Krause
-- released under the terms of the MIT license, see the file "COPYING"
with System;
with GL.API;
package body GL.Objects.Textures.With_1D_Loader is
procedure Load_Empty_Texture (Object : Target;
Level : Mipmap_Level;
Internal_Format : Pixels.Internal_Format;
Width : Types.Size) is
begin
API.Tex_Image_1D (Texture_Proxy (Object).Kind, Level, Internal_Format,
Width, 0,
Format_For_Loading_Empty_Texture (Internal_Format),
Pixels.Data_Type'First,
Image_Source (System.Null_Address));
Raise_Exception_On_OpenGL_Error;
end Load_Empty_Texture;
procedure Load_From_Data (Object : Fillable_Target;
Level : Mipmap_Level;
Internal_Format : Pixels.Internal_Format;
Width : Types.Size;
Source_Format : Pixels.Data_Format;
Source_Type : Pixels.Data_Type;
Source : Image_Source) is
begin
API.Tex_Image_1D (Texture_Proxy (Object).Kind, Level, Internal_Format,
Width, 0, Source_Format, Source_Type, Source);
Raise_Exception_On_OpenGL_Error;
end Load_From_Data;
procedure Load_Sub_Image_From_Data
(Object : Fillable_Target;
Level : Mipmap_Level;
X_Offset, Y_Offset : Int;
Width, Height : Size;
Format : Pixels.Data_Format;
Data_Type : Pixels.Data_Type;
Source : Image_Source) is
begin
API.Tex_Sub_Image_1D (Texture_Proxy (Object).Kind, Level, X_Offset, Y_Offset,
Width, Height, Format, Data_Type, Source);
Raise_Exception_On_OpenGL_Error;
end Load_Sub_Image_From_Data;
procedure Load_Compressed
(Object : Fillable_Target;
Level : Mipmap_Level;
Internal_Format : Pixels.Internal_Format;
Width, Image_Size : Types.Size;
Source : Image_Source) is
begin
API.Compressed_Tex_Image_1D
(Texture_Proxy (Object).Kind, Level, Internal_Format, Width, 0,
Image_Size, Source);
Raise_Exception_On_OpenGL_Error;
end Load_Compressed;
procedure Storage (Object : Target; Levels : Types.Size;
Internal_Format : Pixels.Internal_Format;
Width : Types.Size) is
begin
API.Tex_Storage_1D (Texture_Proxy (Object).Kind, Levels, Internal_Format,
Width);
Raise_Exception_On_OpenGL_Error;
end Storage;
end GL.Objects.Textures.With_1D_Loader;
|
pragma License (Unrestricted);
-- extended unit
with Ada.Strings.Generic_Unbounded.Generic_Functions;
with Ada.Strings.Wide_Functions;
package Ada.Strings.Unbounded_Wide_Strings.Functions is
new Generic_Functions (Wide_Functions);
pragma Preelaborate (Ada.Strings.Unbounded_Wide_Strings.Functions);
|
with ada.strings.unbounded;
use ada.strings.unbounded;
with ada.text_io;
use ada.text_io;
package text_file is
-- Ecriture une chaîne dans un fichier
procedure write_string_to_file(file_path, content : string);
-- Lire le fichier dans la chaîne
procedure read_file_to_string(file_path : string; content : out unbounded_string);
-- Lire le fichier (handle) dans la chaîne
procedure read_file_to_string(file_handle : in out file_type; content : out unbounded_string);
end text_file;
|
------------------------------------------------------------------------------
-- --
-- Hardware Abstraction Layer for STM32 Targets --
-- --
-- Copyright (C) 2014, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This file provides definitions for the DMA controllers on the STM32F4 (ARM
-- Cortex M4F) microcontrollers from ST Microelectronics.
-- See Application Note AN4031: "Using the STM32F2 and STM32F4 DMA controller"
-- and Reference Manual RM0090: "STM32F405xx/07xx, STM32F415xx/17xx,
-- STM32F42xxx and STM32F43xxx advanced ARM-based 32-bit MCUs" In the
-- application note, see especially section four, titled "Tips and
-- warnings while programming the DMA controller"
-- The basic call sequence, given a Controller and a Stream, is as follows:
-- 1) Configure
-- Configures the Controller and Stream per application requirements. This
-- is the primary setup call, specifying the static characteristics of all
-- the transfers to be performed on the stream, such as the direction, the
-- channel, and so forth. The Controller is disabled after the call.
-- 2) Configure_Data_Flow
-- Sets the dynamic parameters of a given transfer, i.e., the source and
-- destination addresses and the number of data items to transfer.
-- 3) Enable
-- Enables transfers on the Controller and Stream. Transfers will begin
-- immediately unless programmed otherwise.
-- You can enable some or all DMA interrupts prior to the call to Enable, if
-- required by your usage.
-- Ensure all the status flags are cleared prior to the call to Enable, since
-- a transfer will then begin. This can be accomplished by relying on the fact
-- that the board has just powered-up, by a call to Reset, or by a call to
-- Clear_All_Status.
-- Note that there are convenience routines that do steps two and three:
-- Start_Transfer
-- Start_Transfer_with_Interrupts
pragma Restrictions (No_Elaboration_Code);
with System; use System;
with Ada.Real_Time; use Ada.Real_Time;
package STM32F4.DMA is
type DMA_Controller is limited private;
-- Do not change the order of the enumerals in the types in this package.
-- The underlying canonical representation values are required.
--
-- TODO: put confirming rep clauses on them
type DMA_Stream_Selector is
(Stream_0,
Stream_1,
Stream_2,
Stream_3,
Stream_4,
Stream_5,
Stream_6,
Stream_7);
procedure Enable
(Unit : in out DMA_Controller;
Stream : DMA_Stream_Selector)
with Inline;
-- Before enabling a stream to start a new transfer, the event status flags
-- corresponding to the stream must be cleared. Note that the unit may not
-- be enabled by the time the call returns.
procedure Disable
(Unit : in out DMA_Controller;
Stream : DMA_Stream_Selector)
with
Post => not Enabled (Unit, Stream),
Inline;
function Enabled
(Unit : DMA_Controller;
Stream : DMA_Stream_Selector)
return Boolean with Inline;
procedure Reset
(Unit : in out DMA_Controller;
Stream : DMA_Stream_Selector)
with
Post =>
not Enabled (Unit, Stream) and
Operating_Mode (Unit, Stream) = Normal_Mode and
Current_Counter (Unit, Stream) = 0 and
Selected_Channel (Unit, Stream) = Channel_0 and
Transfer_Direction (Unit, Stream) = Peripheral_To_Memory and
not Double_Buffered (Unit, Stream) and
not Circular_Mode (Unit, Stream) and
Memory_Data_Width (Unit, Stream) = Bytes and
Peripheral_Data_Width (Unit, Stream) = Bytes and
Priority (Unit, Stream) = Priority_Low and
Current_Memory_Buffer (Unit, Stream) = Memory_Buffer_0 and
(for all Flag in DMA_Status_Flag =>
not Status (Unit, Stream, Flag)) and
(for all Interrupt in DMA_Interrupt =>
not Interrupt_Enabled (Unit, Stream, Interrupt));
-- In addition,
-- M_Burst = Memory_Burst_Single and
-- P_Burst = Peripheral_Burst_Single and
-- P_Inc_Offset_Size = 0 and
-- M_Inc_Mode = False and
-- P_Inc_Mode = False
-- Also clears the FIFO control register bits except sets bits to show FIFO
-- is empty, and to set the FIFO filling threshold selection to 1/2 full.
procedure Configure_Data_Flow
(Unit : in out DMA_Controller;
Stream : DMA_Stream_Selector;
Source : Address;
Destination : Address;
Data_Count : Half_Word)
with
Pre =>
not Enabled (Unit, Stream) and
Valid_Addresses (Source, Destination) and
Compatible_Alignments (Unit, Stream, Source, Destination);
-- Sets the source and destination arguments within the specified stream,
-- based on the direction previously specified by a call to procedure
-- Configure.
--
-- Sets the number of data items to be transferred (from 0 to 65535) on
-- the specified stream in the next transfer. This is the volume of data to
-- be transferred from source to destination. The number specified depends
-- only on the peripheral data format, as specified by the record component
-- Peripheral_Data_Format passed to a call to Configure. The value to be
-- specified is computed as follows:
--
-- If the peripheral data format is in units of bytes, the value is
-- equal to the total number of bytes contained in the data to be sent.
--
-- If the peripheral data format is in units of half-words, the value is
-- 1/2 the total number of bytes contained in the data to be sent.
--
-- If the peripheral data format is in units of words, the value is
-- 1/4 the total number of bytes contained in the data to be sent.
--
-- For example, to send a sequence of characters to a USART, the USART
-- peripheral format will be in units of bytes so the Data_Count argument
-- will be the number of characters (bytes) in the string to be sent.
-- In contrast, on a memory-to-memory transfer the most efficient approach
-- is to work in units of words. One would therefore specify word units for
-- the source and destination formats and then specify 1/4 the total number
-- of bytes involved (assuming a four-byte word).
procedure Start_Transfer
(Unit : in out DMA_Controller;
Stream : DMA_Stream_Selector;
Source : Address;
Destination : Address;
Data_Count : Half_Word)
with
Pre =>
Valid_Addresses (Source, Destination) and
Compatible_Alignments (Unit, Stream, Source, Destination) and
(for all Flag in DMA_Status_Flag => (not Status (Unit, Stream, Flag)));
-- Convenience routine: disables the stream, calls Configure_Data_Flow,
-- and then enables the stream to start the transfer. DMA interrupts are
-- not enabled by this routine, but could be enabled prior to the call.
-- The requirement to clear the flags first is due to the fact that
-- the transfer begins immediately at the end of this routine. The
-- value specified for Data_Count is as described for procedure
-- Configure_Data_Flow.
type DMA_Interrupt is
(Direct_Mode_Error_Interrupt,
Transfer_Error_Interrupt,
Half_Transfer_Complete_Interrupt,
Transfer_Complete_Interrupt,
FIFO_Error_Interrupt);
type Interrupt_Selections is array (DMA_Interrupt) of Boolean;
procedure Start_Transfer_with_Interrupts
(Unit : in out DMA_Controller;
Stream : DMA_Stream_Selector;
Source : Address;
Destination : Address;
Data_Count : Half_Word;
Enabled_Interrupts : Interrupt_Selections := (others => True))
with
Pre =>
Valid_Addresses (Source, Destination) and
Compatible_Alignments (Unit, Stream, Source, Destination) and
(for all Flag in DMA_Status_Flag => (not Status (Unit, Stream, Flag)));
-- Convenience routine: disables the stream, calls Configure_Data_Flow,
-- enables the selected DMA interrupts (by default, all of them), and
-- then enables the stream to start the transfer. All the selected DMA
-- interrupts are enabled, all the others are left unchanged. Interrupts
-- are selected for enablement by having a True value in the array at their
-- index location. The requirement to clear the flags first is due to the
-- fact that the transfer begins immediately at the end of this routine.
-- The value specified for Data_Count is as described for procedure
-- Configure_Data_Flow.
type DMA_Error_Code is
(DMA_No_Error,
DMA_Transfer_Error,
DMA_FIFO_Error,
DMA_Direct_Mode_Error,
DMA_Timeout_Error,
DMA_Device_Error);
procedure Abort_Transfer
(Unit : in out DMA_Controller;
Stream : DMA_Stream_Selector;
Result : out DMA_Error_Code)
with Post => not Enabled (Unit, Stream);
-- Disables the specified stream and then waits until the request is
-- effective. If a stream is disabled while a data transfer is ongoing, the
-- current datum will be transferred and the stream will be disabled only
-- after the transfer of this single datum completes.
type DMA_Transfer_Level is
(Full_Transfer,
Half_Transfer);
procedure Poll_For_Completion
(Unit : in out DMA_Controller;
Stream : DMA_Stream_Selector;
Expected_Level : DMA_Transfer_Level;
Timeout : Time_Span;
Result : out DMA_Error_Code);
procedure Set_Counter
(Unit : in out DMA_Controller;
Stream : DMA_Stream_Selector;
Data_Count : Half_Word)
with
Pre => not Enabled (Unit, Stream),
Post => Current_Counter (Unit, Stream) = Data_Count,
Inline;
-- Sets the number of data items to be transferred on the stream.
-- The Data_Count parameter specifies the number of data items to be
-- transferred (from 0 to 65535) on the next transfer. The value is
-- as described for procedure Configure_Data_Flow.
function Current_Counter
(Unit : DMA_Controller;
Stream : DMA_Stream_Selector)
return Half_Word
with Inline;
-- Returns the number of remaining data units to be transferred
function Circular_Mode
(Unit : DMA_Controller;
Stream : DMA_Stream_Selector)
return Boolean
with Inline;
procedure Enable_Interrupt
(Unit : in out DMA_Controller;
Stream : DMA_Stream_Selector;
Source : DMA_Interrupt)
with
Post => Interrupt_Enabled (Unit, Stream, Source);
-- The postcondition should not be relied upon completely because it is
-- possible, under just the wrong conditions, for the interrupt to be
-- disabled immediately, prior to return from this routine
procedure Disable_Interrupt
(Unit : in out DMA_Controller;
Stream : DMA_Stream_Selector;
Source : DMA_Interrupt)
with
Post => not Interrupt_Enabled (Unit, Stream, Source);
function Interrupt_Enabled
(Unit : DMA_Controller;
Stream : DMA_Stream_Selector;
Source : DMA_Interrupt)
return Boolean
with Inline;
type DMA_Status_Flag is
(FIFO_Error_Indicated,
Direct_Mode_Error_Indicated,
Transfer_Error_Indicated,
Half_Transfer_Complete_Indicated,
Transfer_Complete_Indicated);
procedure Clear_Status
(Unit : in out DMA_Controller;
Stream : DMA_Stream_Selector;
Flag : DMA_Status_Flag)
with
Post => not Status (Unit, Stream, Flag),
Inline;
procedure Clear_All_Status
(Unit : in out DMA_Controller;
Stream : DMA_Stream_Selector)
with Post =>
(for all Indicated in DMA_Status_Flag =>
not Status (Unit, Stream, Indicated));
function Status
(Unit : DMA_Controller;
Stream : DMA_Stream_Selector;
Flag : DMA_Status_Flag)
return Boolean
with Inline;
-- Returns whether the specified status flag is indicated
type DMA_Channel_Selector is
(Channel_0,
Channel_1,
Channel_2,
Channel_3,
Channel_4,
Channel_5,
Channel_6,
Channel_7);
function Selected_Channel
(Unit : DMA_Controller; Stream : DMA_Stream_Selector)
return DMA_Channel_Selector
with Inline;
type DMA_Data_Transfer_Direction is
(Peripheral_To_Memory,
Memory_To_Peripheral,
Memory_To_Memory);
-- Note that only DMA_2 is able to do Memory_To_Memory transfers, and that
-- in this direction the circular mode is not allowed and the internal FIFO
-- must be enabled.
function Transfer_Direction
(Unit : DMA_Controller; Stream : DMA_Stream_Selector)
return DMA_Data_Transfer_Direction
with Inline;
type DMA_Data_Transfer_Widths is
(Bytes,
HalfWords,
Words);
function Peripheral_Data_Width
(Unit : DMA_Controller; Stream : DMA_Stream_Selector)
return DMA_Data_Transfer_Widths
with Inline;
function Memory_Data_Width
(Unit : DMA_Controller; Stream : DMA_Stream_Selector)
return DMA_Data_Transfer_Widths
with Inline;
type DMA_Mode is
(Normal_Mode,
Peripheral_Flow_Control_Mode,
Circular_Mode);
function Operating_Mode
(Unit : DMA_Controller; Stream : DMA_Stream_Selector)
return DMA_Mode
with Inline;
type DMA_Priority_Level is
(Priority_Low,
Priority_Medium,
Priority_High,
Priority_Very_High);
function Priority
(Unit : DMA_Controller; Stream : DMA_Stream_Selector)
return DMA_Priority_Level
with Inline;
type Memory_Buffer_Target is (Memory_Buffer_0, Memory_Buffer_1);
function Current_Memory_Buffer
(Unit : DMA_Controller; Stream : DMA_Stream_Selector)
return Memory_Buffer_Target
with Inline;
procedure Select_Current_Memory_Buffer
(Unit : in out DMA_Controller;
Stream : DMA_Stream_Selector;
Buffer : Memory_Buffer_Target)
with Inline;
procedure Set_Memory_Buffer
(Unit : in out DMA_Controller;
Stream : DMA_Stream_Selector;
Buffer : Memory_Buffer_Target;
To : System.Address)
with Inline;
procedure Configure_Double_Buffered_Mode
(Unit : in out DMA_Controller;
Stream : DMA_Stream_Selector;
Buffer_0_Value : Address;
Buffer_1_Value : Address;
First_Buffer_Used : Memory_Buffer_Target)
with
Pre => not Enabled (Unit, Stream),
Post => not Enabled (Unit, Stream) and
Current_Memory_Buffer (Unit, Stream) = First_Buffer_Used;
-- A convenience routine that in effect calls Set_Memory_Buffer
-- once each for Buffer_1_Value and Buffer_2_Value, and then calls
-- Select_Current_Memory_Buffer so that First_Buffer_Used is the
-- buffer used first when the stream is enabled.
procedure Enable_Double_Buffered_Mode
(Unit : in out DMA_Controller;
Stream : DMA_Stream_Selector)
with
Pre => Circular_Mode (Unit, Stream) and
Transfer_Direction (Unit, Stream) /= Memory_To_Memory,
Post => Double_Buffered (Unit, Stream);
procedure Disable_Double_Buffered_Mode
(Unit : in out DMA_Controller;
Stream : DMA_Stream_Selector)
with Post => not Double_Buffered (Unit, Stream);
function Double_Buffered
(Unit : DMA_Controller;
Stream : DMA_Stream_Selector)
return Boolean
with Inline;
type DMA_FIFO_Threshold_Level is
(FIFO_Threshold_1_Quart_Full_Configuration,
FIFO_Threshold_Half_Full_Configuration,
FIFO_Threshold_3_Quarts_Full_Configuration,
FIFO_Threshold_Full_Configuration);
type DMA_FIFO_Filling_State is
(FIFO_Less1QuarterFull, -- less than 1 quarter full but not empty
FIFO_1QuarterFull, -- more than 1 quarter full
FIFO_HalfFull, -- more than 1 half full
FIFO_3QuartersFull, -- more than 3 quarters full
FIFO_Empty,
FIFO_Full);
type DMA_Memory_Burst is
(Memory_Burst_Single,
Memory_Burst_Inc4,
Memory_Burst_Inc8,
Memory_Burst_Inc16);
type DMA_Peripheral_Burst is
(Peripheral_Burst_Single,
Peripheral_Burst_Inc4,
Peripheral_Burst_Inc8,
Peripheral_Burst_Inc16);
type DMA_Stream_Configuration is record
-- These are the static, non-varying properties of the transactions
-- occurring on the streams to which they are applied (by a call to
-- Configure). Other, varying, properties are specified procedurally.
--
-- You are not required to specify a value for every component because
-- some are only referenced depending on the values for others. Note,
-- however, that the default values specified do not represent a valid
-- configuration as a whole.
Channel : DMA_Channel_Selector := DMA_Channel_Selector'First;
-- The channel in the multiplexed connections of controllers, streams,
-- and peripherals. It is vital to note that not all peripherals can
-- be connected to all streams. The possibilities are organized by
-- channels, per controller, as specified by the ST Micro Reference
-- Manual in the "DMA Request Mapping" tables.
Direction : DMA_Data_Transfer_Direction := DMA_Data_Transfer_Direction'First;
Increment_Peripheral_Address : Boolean := False;
-- Whether the peripheral address value should be incremented
-- automatically after each transfer
Increment_Memory_Address : Boolean := False;
-- Whether the memory address value should be incremented automatically
-- after each transfer
Peripheral_Data_Format : DMA_Data_Transfer_Widths := DMA_Data_Transfer_Widths'First;
-- The units of data (the format) in which the peripheral side of the
-- transaction is expressed. For example, a USART would work in terms
-- of bytes. See the description in Configure_Data_Flow.
Memory_Data_Format : DMA_Data_Transfer_Widths := DMA_Data_Transfer_Widths'First;
-- The units of data (the format) in which the memory side of the
-- transaction is expressed. See the description in Configure_Data_Flow.
Operation_Mode : DMA_Mode := DMA_Mode'First;
-- Note that the circular buffer mode cannot be used if memory-to-memory
-- data transfer is configured on the selected Stream
Priority : DMA_Priority_Level := DMA_Priority_Level'First;
-- The relative priority of the given stream to all other streams
FIFO_Enabled : Boolean := False;
-- Specifies whether the internal FIFO will be used for the transactions
-- occurring on the specified stream. By default the FIFO is disabled by
-- the hardware, and so the unit works in the so-called "direct mode"
-- instead. Per the Application Note, enabling the FIFO is highly
-- advantageous. Note that the direct mode cannot be used if
-- memory-to-memory data transfer is configured. The threshold and
-- burst sizes are only considered if the FIFO is enabled, and the
-- corresponding values are highly dependent upon one another!
FIFO_Threshold : DMA_FIFO_Threshold_Level := DMA_FIFO_Threshold_Level'First;
-- The threshold at which the FIFO is refilled. It is vital that the
-- threshold and burst sizes, if specified, are compatible. See the
-- Reference Manual and especially the Application Note.
Memory_Burst_Size : DMA_Memory_Burst := DMA_Memory_Burst'First;
-- Specifies the amount of data to be transferred in a single non-
-- interruptible transaction. Note: The burst mode is possible only if
-- the address increment mode is enabled.
Peripheral_Burst_Size : DMA_Peripheral_Burst := DMA_Peripheral_Burst'First;
-- Specifies the the amount of data to be transferred in
-- a single non-interruptible transaction. Note :The burst mode is
-- possible only if the address increment mode is enabled.
end record;
procedure Configure
(Unit : in out DMA_Controller;
Stream : DMA_Stream_Selector;
Config : DMA_Stream_Configuration)
with Post => not Enabled (Unit, Stream);
-- This is the primary stream configuration facility. All the static
-- properties of the transfers for the given stream are specified here,
-- and in some cases, nowhere else (such as the channel). The required
-- relationships between the parameters specified in the record are
-- not checked, other than by the hardware itself.
--
-- Note that not all required properties are specified here. In particular,
-- because they can vary per transfer, the source and destination
-- addresses, as well as the number of data items to be transferred,
-- are specified procedurally via calls to Configure_Data_Flow.
function Valid_Addresses (Source, Destination : Address) return Boolean is
(Source /= Null_Address and Destination /= Null_Address and
Source /= Destination);
-- Basic sanity checking for the values
function Aligned (This : Address; Width : DMA_Data_Transfer_Widths)
return Boolean with Inline;
-- Returns whether the address is aligned on a word, half-word, or byte
-- boundary
function Compatible_Alignments
(Unit : DMA_Controller;
Stream : DMA_Stream_Selector;
Source : Address;
Destination : Address)
return Boolean is
(case Transfer_Direction (Unit, Stream) is
when Peripheral_To_Memory | Memory_To_Memory =>
Aligned (Source, Peripheral_Data_Width (Unit, Stream))
and
Aligned (Destination, Memory_Data_Width (Unit, Stream)),
when Memory_To_Peripheral =>
Aligned (Source, Memory_Data_Width (Unit, Stream))
and
Aligned (Destination, Peripheral_Data_Width (Unit, Stream)));
-- Based on Ref Manual Table 44 and associated text, checks the alignments
-- of the addresses against the Peripheral_Data_Format (P_Data_Size) and
-- Memory_Data_Format (M_Data_Size) values for the given stream. We use an
-- expression function because the semantics are meant to be part of the
-- spec of the package, visible as a precondition.
private
type Stream_Config_Register is record
Reserved1 : Bits_4;
Channel : DMA_Channel_Selector;
M_Burst : DMA_Memory_Burst;
P_Burst : DMA_Peripheral_Burst;
Reserved2 : Bits_1;
Current_Target : Memory_Buffer_Target;
Double_Buffered : Boolean;
Priority : DMA_Priority_Level;
P_Inc_Offset_Size : Bits_1;
M_Data_Size : DMA_Data_Transfer_Widths;
P_Data_Size : DMA_Data_Transfer_Widths;
M_Inc_Mode : Boolean;
P_Inc_Mode : Boolean;
Circular_Mode : Boolean;
Direction : DMA_Data_Transfer_Direction;
P_Flow_Controller : Boolean;
TCI_Enabled : Boolean; -- transfer complete interrupt enabled
HTI_Enabled : Boolean; -- half-transfer complete enabled
TEI_Enabled : Boolean; -- transfer error interrupt enabled
DMEI_Enabled : Boolean; -- direct mode error interrupt enabled
Stream_Enabled : Boolean;
end record
with Atomic, Size => 32;
for Stream_Config_Register use record
Reserved1 at 0 range 28 .. 31;
Channel at 0 range 25 .. 27;
M_Burst at 0 range 23 .. 24;
P_Burst at 0 range 21 .. 22;
Reserved2 at 0 range 20 .. 20;
Current_Target at 0 range 19 .. 19;
Double_Buffered at 0 range 18 .. 18;
Priority at 0 range 16 .. 17;
P_Inc_Offset_Size at 0 range 15 .. 15;
M_Data_Size at 0 range 13 .. 14;
P_Data_Size at 0 range 11 .. 12;
M_Inc_Mode at 0 range 10 .. 10;
P_Inc_Mode at 0 range 9 .. 9;
Circular_Mode at 0 range 8 .. 8;
Direction at 0 range 6 .. 7;
P_Flow_Controller at 0 range 5 .. 5;
TCI_Enabled at 0 range 4 .. 4;
HTI_Enabled at 0 range 3 .. 3;
TEI_Enabled at 0 range 2 .. 2;
DMEI_Enabled at 0 range 1 .. 1;
Stream_Enabled at 0 range 0 .. 0;
end record;
for Stream_Config_Register'Bit_Order use Low_Order_First;
type FIFO_Control_Register is record
Reserved1 : Bits_16;
Reserved2 : Bits_8;
FIFO_Interrupt_Enabled : Boolean;
Reserved3 : Bits_1;
FIFO_Status : DMA_FIFO_Filling_State;
Direct_Mode_Enabled : Boolean;
FIFO_Threshold : DMA_FIFO_Threshold_Level;
end record
with Atomic, Size => 32;
for FIFO_Control_Register use record
Reserved1 at 0 range 16 .. 31;
Reserved2 at 0 range 8 .. 15;
FIFO_Interrupt_Enabled at 0 range 7 .. 7;
Reserved3 at 0 range 6 .. 6;
FIFO_Status at 0 range 3 .. 5;
Direct_Mode_Enabled at 0 range 2 .. 2;
FIFO_Threshold at 0 range 0 .. 1;
end record;
for FIFO_Control_Register'Bit_Order use Low_Order_First;
type DMA_Stream is record
CR : Stream_Config_Register;
NDTR : Word; -- note that the upper half must remain at reset value
PAR : Address; -- peripheral address register
M0AR : Address; -- memory 0 address register
M1AR : Address; -- memory 1 address register
FCR : FIFO_Control_Register;
end record
with Volatile, Size => 192; -- 24 bytes
for DMA_Stream use record
CR at 0 range 0 .. 31;
NDTR at 4 range 0 .. 31;
PAR at 8 range 0 .. 31;
M0AR at 12 range 0 .. 31;
M1AR at 16 range 0 .. 31;
FCR at 20 range 0 .. 31;
end record;
for DMA_Stream'Bit_Order use Low_Order_First;
type DMA_Streams is array (DMA_Stream_Selector) of DMA_Stream;
for DMA_Streams'Component_Size use 192;
type DMA_Controller is record
LISR : Word; -- contains flags for stream0 .. stream3
HISR : Word; -- contains flags for stream4 .. stream7
LIFCR : Word; -- DMA low interrupt flag clear register
HIFCR : Word; -- DMA high interrupt flag clear register
Streams : DMA_Streams;
end record
with Volatile, Size => 1664; -- 208 * 8
for DMA_Controller use record
LISR at 0 range 0 .. 31;
HISR at 4 range 0 .. 31;
LIFCR at 8 range 0 .. 31;
HIFCR at 12 range 0 .. 31;
Streams at 16 range 0 .. 8 * 192 - 1;
end record;
---------------------------
-- Set_Interrupt_Enabler --
---------------------------
procedure Set_Interrupt_Enabler
(This_Stream : in out DMA_Stream;
Source : DMA_Interrupt;
Value : Boolean);
-- An internal routine, used to enable and disable the specified interrupt
subtype Stream_Group is Integer range 0 .. 3;
subtype Bit_Numbers is Byte range 0 .. 31;
type Status_Flag_Bit_Numbers is array (Stream_Group) of Bit_Numbers;
Status_Flag_Bits : constant array (DMA_Status_Flag) of Status_Flag_Bit_Numbers :=
(FIFO_Error_Indicated => (0, 6, 16, 22),
Direct_Mode_Error_Indicated => (2, 8, 18, 24),
Transfer_Error_Indicated => (3, 9, 19, 25),
Half_Transfer_Complete_Indicated => (4, 10, 20, 26),
Transfer_Complete_Indicated => (5, 11, 21, 27));
-- DMA status flag bit numbers definitions. These are the bit numbers
-- for the flags within the given status registers. For example, the
-- FEIF flag for stream 0 and stream 4 is at bit 0 in the LISR and HISR,
-- respectively. For stream 1 and stream 5 that flag is at bit 6, and so
-- on. Alternatively, we could precompute the bit patterns and then
-- determine at run-time which pattern to use, but the array-based
-- approach seems clearer.
--
-- See the STMicro Reference Manual RM0090, Doc Id 018909 Rev 6, section
-- 10.5 for the bit numbers.
end STM32F4.DMA;
|
<?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>x_order_fir</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>1</id>
<name>gmem</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></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>4</if_type>
<array_size>0</array_size>
<bit_vecs class_id="7" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_2">
<Value>
<Obj>
<type>1</type>
<id>2</id>
<name>y_data</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>y.data</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</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="_3">
<Value>
<Obj>
<type>1</type>
<id>3</id>
<name>y_user_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>y.user.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</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>
<item class_id_reference="3" object_id="_4">
<Value>
<Obj>
<type>1</type>
<id>4</id>
<name>y_last_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>y.last.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</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>
<item class_id_reference="3" object_id="_5">
<Value>
<Obj>
<type>1</type>
<id>5</id>
<name>x_data</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>x.data</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_6">
<Value>
<Obj>
<type>1</type>
<id>6</id>
<name>x_user_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>x.user.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_7">
<Value>
<Obj>
<type>1</type>
<id>7</id>
<name>x_last_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>x.last.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_8">
<Value>
<Obj>
<type>1</type>
<id>8</id>
<name>coe</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>coe</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_9">
<Value>
<Obj>
<type>1</type>
<id>9</id>
<name>ctrl</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ctrl</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>66</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>12</id>
<name>ctrl_read</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ctrl</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>119</item>
<item>120</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.00</m_delay>
<m_topoIndex>1</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>13</id>
<name>coe_read</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>coe</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>121</item>
<item>122</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.00</m_delay>
<m_topoIndex>2</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>14</id>
<name>ctrl3</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>30</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>124</item>
<item>125</item>
<item>127</item>
<item>129</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>3</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>tmp_5</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>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>130</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>5</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>gmem_addr</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>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>131</item>
<item>132</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>6</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>17</id>
<name>coe1</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>30</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>133</item>
<item>134</item>
<item>135</item>
<item>136</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>4</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>18</id>
<name>tmp_9</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>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>137</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>8</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>19</id>
<name>gmem_addr_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>138</item>
<item>139</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>9</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>34</id>
<name>gmem_addr_rd_req</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>43</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="11" tracking_level="0" version="0">
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second class_id="12" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="13" tracking_level="0" version="0">
<first class_id="14" tracking_level="0" version="0">
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>43</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>141</item>
<item>142</item>
<item>143</item>
</oprand_edges>
<opcode>readreq</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>8.75</m_delay>
<m_topoIndex>7</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>35</id>
<name></name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>43</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>43</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>144</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.76</m_delay>
<m_topoIndex>10</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name>i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>fir_ctrl[1]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>146</item>
<item>147</item>
<item>148</item>
<item>149</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>11</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name>reload</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>reload</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>150</item>
<item>151</item>
<item>152</item>
<item>153</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>12</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>39</id>
<name>indvar</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>43</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>43</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>155</item>
<item>156</item>
<item>157</item>
<item>158</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>13</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>exitcond</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>43</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>43</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>159</item>
<item>161</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.95</m_delay>
<m_topoIndex>14</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>42</id>
<name>indvar_next</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>43</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>43</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>162</item>
<item>164</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.56</m_delay>
<m_topoIndex>15</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name></name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>43</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>43</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>165</item>
<item>166</item>
<item>167</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>16</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>48</id>
<name>fir_ctrl_0</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>43</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>43</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>fir_ctrl[0]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>169</item>
<item>170</item>
<item>506</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>8.75</m_delay>
<m_topoIndex>18</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>49</id>
<name>tmp_10</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>43</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>43</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>171</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>17</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>50</id>
<name>fir_ctrl_1_1</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>43</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>43</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>fir_ctrl[1]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>172</item>
<item>173</item>
<item>174</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.69</m_delay>
<m_topoIndex>19</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>51</id>
<name>reload_1</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>43</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>43</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>reload</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>175</item>
<item>176</item>
<item>177</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.69</m_delay>
<m_topoIndex>20</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>53</id>
<name></name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>43</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>43</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>178</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>21</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>55</id>
<name>tmp</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>47</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>179</item>
<item>181</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.47</m_delay>
<m_topoIndex>22</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>56</id>
<name></name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>47</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>182</item>
<item>183</item>
<item>184</item>
</oprand_edges>
<opcode>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>23</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>58</id>
<name>tmp_12</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>48</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>48</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>185</item>
<item>186</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>24</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>59</id>
<name>tmp_1</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>48</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>48</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>188</item>
<item>189</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.55</m_delay>
<m_topoIndex>25</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>60</id>
<name>p_add7_i32_shr</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>48</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>48</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>30</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>190</item>
<item>191</item>
<item>192</item>
<item>193</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>26</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>61</id>
<name>tmp_s</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>48</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>48</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>194</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>27</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>62</id>
<name>gmem_addr_1_rd_req</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>48</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>48</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>195</item>
<item>196</item>
<item>197</item>
<item>507</item>
</oprand_edges>
<opcode>readreq</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>8.75</m_delay>
<m_topoIndex>28</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>63</id>
<name></name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>48</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>48</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>198</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.76</m_delay>
<m_topoIndex>29</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>65</id>
<name>indvar1</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>48</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>48</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>30</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>200</item>
<item>201</item>
<item>202</item>
<item>203</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="_40">
<Value>
<Obj>
<type>0</type>
<id>66</id>
<name>exitcond1</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>48</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>48</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>205</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.46</m_delay>
<m_topoIndex>31</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>67</id>
<name>indvar_next1</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>48</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>48</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>30</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>206</item>
<item>208</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.49</m_delay>
<m_topoIndex>32</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_42">
<Value>
<Obj>
<type>0</type>
<id>68</id>
<name></name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>48</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>48</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>209</item>
<item>210</item>
<item>211</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="_43">
<Value>
<Obj>
<type>0</type>
<id>73</id>
<name>indvar2</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>48</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>48</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>212</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>35</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_44">
<Value>
<Obj>
<type>0</type>
<id>74</id>
<name>gmem_addr_1_read</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>48</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>48</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>213</item>
<item>214</item>
<item>508</item>
<item>509</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>8.75</m_delay>
<m_topoIndex>34</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_45">
<Value>
<Obj>
<type>0</type>
<id>75</id>
<name>coef_addr</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>48</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>48</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>215</item>
<item>217</item>
<item>218</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>36</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_46">
<Value>
<Obj>
<type>0</type>
<id>76</id>
<name></name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>48</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>48</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>219</item>
<item>220</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>3.25</m_delay>
<m_topoIndex>37</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_47">
<Value>
<Obj>
<type>0</type>
<id>78</id>
<name></name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>48</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>48</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>221</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>38</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_48">
<Value>
<Obj>
<type>0</type>
<id>80</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>222</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>39</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_49">
<Value>
<Obj>
<type>0</type>
<id>82</id>
<name></name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>52</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>52</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>223</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.76</m_delay>
<m_topoIndex>40</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_50">
<Value>
<Obj>
<type>0</type>
<id>84</id>
<name>i1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>224</item>
<item>225</item>
<item>226</item>
<item>227</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>41</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_51">
<Value>
<Obj>
<type>0</type>
<id>85</id>
<name>acc</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>acc</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>228</item>
<item>229</item>
<item>230</item>
<item>231</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>42</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_52">
<Value>
<Obj>
<type>0</type>
<id>86</id>
<name>tmp_2</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>52</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>52</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>232</item>
<item>233</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.47</m_delay>
<m_topoIndex>43</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_53">
<Value>
<Obj>
<type>0</type>
<id>87</id>
<name></name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>52</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>52</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>234</item>
<item>235</item>
<item>236</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>44</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_54">
<Value>
<Obj>
<type>0</type>
<id>93</id>
<name>i_1</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>237</item>
<item>239</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.55</m_delay>
<m_topoIndex>45</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_55">
<Value>
<Obj>
<type>0</type>
<id>94</id>
<name>tmp_6</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>55</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>240</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>46</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_56">
<Value>
<Obj>
<type>0</type>
<id>95</id>
<name>shift_reg_addr</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>55</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>241</item>
<item>242</item>
<item>243</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>47</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_57">
<Value>
<Obj>
<type>0</type>
<id>96</id>
<name>shift_reg_load</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>244</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>1</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>1</m_isLCDNode>
<m_isStartOfPath>1</m_isStartOfPath>
<m_delay>3.25</m_delay>
<m_topoIndex>48</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_58">
<Value>
<Obj>
<type>0</type>
<id>97</id>
<name>tmp_7</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>55</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>245</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>49</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_59">
<Value>
<Obj>
<type>0</type>
<id>98</id>
<name>coef_addr_1</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>55</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>246</item>
<item>247</item>
<item>248</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>50</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_60">
<Value>
<Obj>
<type>0</type>
<id>99</id>
<name>coef_load_1</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>249</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.25</m_delay>
<m_topoIndex>51</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_61">
<Value>
<Obj>
<type>0</type>
<id>100</id>
<name>tmp_8</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>250</item>
<item>251</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>8.51</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>101</id>
<name>acc_2</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>acc</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</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>2.55</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>102</id>
<name>shift_reg_addr_1</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>56</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>254</item>
<item>255</item>
<item>256</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="_64">
<Value>
<Obj>
<type>0</type>
<id>103</id>
<name></name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>56</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>257</item>
<item>258</item>
<item>2147483647</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>1</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>1</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.25</m_delay>
<m_topoIndex>53</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_65">
<Value>
<Obj>
<type>0</type>
<id>105</id>
<name></name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>52</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>52</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>259</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>56</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_66">
<Value>
<Obj>
<type>0</type>
<id>107</id>
<name>empty_4</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>34</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>261</item>
<item>262</item>
<item>263</item>
<item>264</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>58</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_67">
<Value>
<Obj>
<type>0</type>
<id>108</id>
<name>x_data_tmp</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>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>265</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>59</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_68">
<Value>
<Obj>
<type>0</type>
<id>109</id>
<name>x_user_V_tmp</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>266</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>60</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_69">
<Value>
<Obj>
<type>0</type>
<id>110</id>
<name>x_last_V_tmp</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>267</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>61</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_70">
<Value>
<Obj>
<type>0</type>
<id>111</id>
<name>coef_load</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>59</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>59</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>270</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.25</m_delay>
<m_topoIndex>57</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_71">
<Value>
<Obj>
<type>0</type>
<id>112</id>
<name>tmp_3</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>59</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>59</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>271</item>
<item>272</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>8.51</m_delay>
<m_topoIndex>62</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_72">
<Value>
<Obj>
<type>0</type>
<id>113</id>
<name>acc_1</name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>59</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>59</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>acc</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>273</item>
<item>274</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.55</m_delay>
<m_topoIndex>64</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_73">
<Value>
<Obj>
<type>0</type>
<id>114</id>
<name></name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>275</item>
<item>278</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>3.25</m_delay>
<m_topoIndex>63</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_74">
<Value>
<Obj>
<type>0</type>
<id>115</id>
<name></name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>59</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>59</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>7</count>
<item_version>0</item_version>
<item>280</item>
<item>281</item>
<item>282</item>
<item>283</item>
<item>284</item>
<item>285</item>
<item>286</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>65</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_75">
<Value>
<Obj>
<type>0</type>
<id>116</id>
<name></name>
<fileName>fir_src/x_order_fir.cpp</fileName>
<fileDirectory>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</fileDirectory>
<lineNumber>66</lineNumber>
<contextFuncName>x_order_fir</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fir_src/x_order_fir.cpp</first>
<second>x_order_fir</second>
</first>
<second>66</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>66</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>14</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_76">
<Value>
<Obj>
<type>2</type>
<id>126</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>2</content>
</item>
<item class_id_reference="16" object_id="_77">
<Value>
<Obj>
<type>2</type>
<id>128</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>31</content>
</item>
<item class_id_reference="16" object_id="_78">
<Value>
<Obj>
<type>2</type>
<id>145</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>4</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_79">
<Value>
<Obj>
<type>2</type>
<id>154</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_80">
<Value>
<Obj>
<type>2</type>
<id>160</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="_81">
<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>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_82">
<Value>
<Obj>
<type>2</type>
<id>180</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>0</content>
</item>
<item class_id_reference="16" object_id="_83">
<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>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>4</content>
</item>
<item class_id_reference="16" object_id="_84">
<Value>
<Obj>
<type>2</type>
<id>199</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>30</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_85">
<Value>
<Obj>
<type>2</type>
<id>207</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>30</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_86">
<Value>
<Obj>
<type>2</type>
<id>216</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="_87">
<Value>
<Obj>
<type>2</type>
<id>238</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>4294967295</content>
</item>
<item class_id_reference="16" object_id="_88">
<Value>
<Obj>
<type>2</type>
<id>268</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>3</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_89">
<Value>
<Obj>
<type>2</type>
<id>276</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>3</const_type>
<content>0</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="_90">
<Obj>
<type>3</type>
<id>36</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>10</count>
<item_version>0</item_version>
<item>12</item>
<item>13</item>
<item>14</item>
<item>15</item>
<item>16</item>
<item>17</item>
<item>18</item>
<item>19</item>
<item>34</item>
<item>35</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_91">
<Obj>
<type>3</type>
<id>44</id>
<name>burst.rd.header</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>37</item>
<item>38</item>
<item>39</item>
<item>40</item>
<item>42</item>
<item>43</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_92">
<Obj>
<type>3</type>
<id>54</id>
<name>burst.rd.body</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>48</item>
<item>49</item>
<item>50</item>
<item>51</item>
<item>53</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_93">
<Obj>
<type>3</type>
<id>57</id>
<name>burst.rd.end</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>55</item>
<item>56</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_94">
<Obj>
<type>3</type>
<id>64</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>6</count>
<item_version>0</item_version>
<item>58</item>
<item>59</item>
<item>60</item>
<item>61</item>
<item>62</item>
<item>63</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_95">
<Obj>
<type>3</type>
<id>69</id>
<name>burst.rd.header9</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>65</item>
<item>66</item>
<item>67</item>
<item>68</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_96">
<Obj>
<type>3</type>
<id>79</id>
<name>burst.rd.body10</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>73</item>
<item>74</item>
<item>75</item>
<item>76</item>
<item>78</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_97">
<Obj>
<type>3</type>
<id>81</id>
<name>._crit_edge.loopexit</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>80</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_98">
<Obj>
<type>3</type>
<id>83</id>
<name>._crit_edge</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_99">
<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>4</count>
<item_version>0</item_version>
<item>84</item>
<item>85</item>
<item>86</item>
<item>87</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_100">
<Obj>
<type>3</type>
<id>106</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>12</count>
<item_version>0</item_version>
<item>93</item>
<item>94</item>
<item>95</item>
<item>96</item>
<item>97</item>
<item>98</item>
<item>99</item>
<item>100</item>
<item>101</item>
<item>102</item>
<item>103</item>
<item>105</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_101">
<Obj>
<type>3</type>
<id>117</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>10</count>
<item_version>0</item_version>
<item>107</item>
<item>108</item>
<item>109</item>
<item>110</item>
<item>111</item>
<item>112</item>
<item>113</item>
<item>114</item>
<item>115</item>
<item>116</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>158</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_102">
<id>120</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>12</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_103">
<id>122</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>13</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_104">
<id>125</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>14</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_105">
<id>127</id>
<edge_type>1</edge_type>
<source_obj>126</source_obj>
<sink_obj>14</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_106">
<id>129</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>14</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_107">
<id>130</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>15</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_108">
<id>131</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>16</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_109">
<id>132</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>16</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_110">
<id>134</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_111">
<id>135</id>
<edge_type>1</edge_type>
<source_obj>126</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_112">
<id>136</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_113">
<id>137</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>18</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_114">
<id>138</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>19</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_115">
<id>139</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>19</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_116">
<id>142</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>34</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_117">
<id>143</id>
<edge_type>1</edge_type>
<source_obj>126</source_obj>
<sink_obj>34</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_118">
<id>144</id>
<edge_type>2</edge_type>
<source_obj>44</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_119">
<id>146</id>
<edge_type>1</edge_type>
<source_obj>145</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_120">
<id>147</id>
<edge_type>2</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="_121">
<id>148</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_122">
<id>149</id>
<edge_type>2</edge_type>
<source_obj>54</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_123">
<id>150</id>
<edge_type>1</edge_type>
<source_obj>145</source_obj>
<sink_obj>38</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_124">
<id>151</id>
<edge_type>2</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="_125">
<id>152</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>38</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_126">
<id>153</id>
<edge_type>2</edge_type>
<source_obj>54</source_obj>
<sink_obj>38</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_127">
<id>155</id>
<edge_type>1</edge_type>
<source_obj>154</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_128">
<id>156</id>
<edge_type>2</edge_type>
<source_obj>36</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_129">
<id>157</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_130">
<id>158</id>
<edge_type>2</edge_type>
<source_obj>54</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_131">
<id>159</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_132">
<id>161</id>
<edge_type>1</edge_type>
<source_obj>160</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_133">
<id>162</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_134">
<id>164</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_135">
<id>165</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_136">
<id>166</id>
<edge_type>2</edge_type>
<source_obj>54</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_137">
<id>167</id>
<edge_type>2</edge_type>
<source_obj>57</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_138">
<id>170</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>48</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_139">
<id>171</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>49</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_140">
<id>172</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_141">
<id>173</id>
<edge_type>1</edge_type>
<source_obj>48</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_142">
<id>174</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_143">
<id>175</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>51</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_144">
<id>176</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>51</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_145">
<id>177</id>
<edge_type>1</edge_type>
<source_obj>48</source_obj>
<sink_obj>51</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_146">
<id>178</id>
<edge_type>2</edge_type>
<source_obj>44</source_obj>
<sink_obj>53</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_147">
<id>179</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>55</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_148">
<id>181</id>
<edge_type>1</edge_type>
<source_obj>180</source_obj>
<sink_obj>55</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_149">
<id>182</id>
<edge_type>1</edge_type>
<source_obj>55</source_obj>
<sink_obj>56</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_150">
<id>183</id>
<edge_type>2</edge_type>
<source_obj>64</source_obj>
<sink_obj>56</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_151">
<id>184</id>
<edge_type>2</edge_type>
<source_obj>83</source_obj>
<sink_obj>56</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_152">
<id>185</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_153">
<id>186</id>
<edge_type>1</edge_type>
<source_obj>126</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_154">
<id>188</id>
<edge_type>1</edge_type>
<source_obj>187</source_obj>
<sink_obj>59</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_155">
<id>189</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>59</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_156">
<id>191</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>60</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_157">
<id>192</id>
<edge_type>1</edge_type>
<source_obj>126</source_obj>
<sink_obj>60</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_158">
<id>193</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>60</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_159">
<id>194</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="_160">
<id>196</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_161">
<id>197</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_162">
<id>198</id>
<edge_type>2</edge_type>
<source_obj>69</source_obj>
<sink_obj>63</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_163">
<id>200</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_164">
<id>201</id>
<edge_type>2</edge_type>
<source_obj>64</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_165">
<id>202</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_166">
<id>203</id>
<edge_type>2</edge_type>
<source_obj>79</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_167">
<id>204</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="_168">
<id>205</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>66</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_169">
<id>206</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>67</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_170">
<id>208</id>
<edge_type>1</edge_type>
<source_obj>207</source_obj>
<sink_obj>67</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_171">
<id>209</id>
<edge_type>1</edge_type>
<source_obj>66</source_obj>
<sink_obj>68</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_172">
<id>210</id>
<edge_type>2</edge_type>
<source_obj>79</source_obj>
<sink_obj>68</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_173">
<id>211</id>
<edge_type>2</edge_type>
<source_obj>81</source_obj>
<sink_obj>68</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_174">
<id>212</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>73</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_175">
<id>214</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_176">
<id>215</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_177">
<id>217</id>
<edge_type>1</edge_type>
<source_obj>216</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_178">
<id>218</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_179">
<id>219</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>76</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_180">
<id>220</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="_181">
<id>221</id>
<edge_type>2</edge_type>
<source_obj>69</source_obj>
<sink_obj>78</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_182">
<id>222</id>
<edge_type>2</edge_type>
<source_obj>83</source_obj>
<sink_obj>80</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_183">
<id>223</id>
<edge_type>2</edge_type>
<source_obj>88</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_184">
<id>224</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_185">
<id>225</id>
<edge_type>2</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="_186">
<id>226</id>
<edge_type>1</edge_type>
<source_obj>93</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_187">
<id>227</id>
<edge_type>2</edge_type>
<source_obj>106</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_188">
<id>228</id>
<edge_type>1</edge_type>
<source_obj>180</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_189">
<id>229</id>
<edge_type>2</edge_type>
<source_obj>83</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_190">
<id>230</id>
<edge_type>1</edge_type>
<source_obj>101</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_191">
<id>231</id>
<edge_type>2</edge_type>
<source_obj>106</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_192">
<id>232</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_193">
<id>233</id>
<edge_type>1</edge_type>
<source_obj>180</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_194">
<id>234</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="_195">
<id>235</id>
<edge_type>2</edge_type>
<source_obj>106</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_196">
<id>236</id>
<edge_type>2</edge_type>
<source_obj>117</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_197">
<id>237</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_198">
<id>239</id>
<edge_type>1</edge_type>
<source_obj>238</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_199">
<id>240</id>
<edge_type>1</edge_type>
<source_obj>93</source_obj>
<sink_obj>94</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_200">
<id>241</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_201">
<id>242</id>
<edge_type>1</edge_type>
<source_obj>216</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_202">
<id>243</id>
<edge_type>1</edge_type>
<source_obj>94</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_203">
<id>244</id>
<edge_type>1</edge_type>
<source_obj>95</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_204">
<id>245</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>97</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_205">
<id>246</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_206">
<id>247</id>
<edge_type>1</edge_type>
<source_obj>216</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_207">
<id>248</id>
<edge_type>1</edge_type>
<source_obj>97</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_208">
<id>249</id>
<edge_type>1</edge_type>
<source_obj>98</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_209">
<id>250</id>
<edge_type>1</edge_type>
<source_obj>99</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_210">
<id>251</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_211">
<id>252</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_212">
<id>253</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_213">
<id>254</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_214">
<id>255</id>
<edge_type>1</edge_type>
<source_obj>216</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_215">
<id>256</id>
<edge_type>1</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="_216">
<id>257</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_217">
<id>258</id>
<edge_type>1</edge_type>
<source_obj>102</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_218">
<id>259</id>
<edge_type>2</edge_type>
<source_obj>88</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_219">
<id>262</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>107</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_220">
<id>263</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>107</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_221">
<id>264</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>107</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_222">
<id>265</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="_223">
<id>266</id>
<edge_type>1</edge_type>
<source_obj>107</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_224">
<id>267</id>
<edge_type>1</edge_type>
<source_obj>107</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_225">
<id>269</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>268</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_226">
<id>270</id>
<edge_type>1</edge_type>
<source_obj>268</source_obj>
<sink_obj>111</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_227">
<id>271</id>
<edge_type>1</edge_type>
<source_obj>111</source_obj>
<sink_obj>112</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_228">
<id>272</id>
<edge_type>1</edge_type>
<source_obj>108</source_obj>
<sink_obj>112</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_229">
<id>273</id>
<edge_type>1</edge_type>
<source_obj>112</source_obj>
<sink_obj>113</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_230">
<id>274</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>113</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_231">
<id>275</id>
<edge_type>1</edge_type>
<source_obj>108</source_obj>
<sink_obj>114</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_232">
<id>277</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>276</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_233">
<id>278</id>
<edge_type>1</edge_type>
<source_obj>276</source_obj>
<sink_obj>114</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_234">
<id>281</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_235">
<id>282</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_236">
<id>283</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_237">
<id>284</id>
<edge_type>1</edge_type>
<source_obj>113</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_238">
<id>285</id>
<edge_type>1</edge_type>
<source_obj>109</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_239">
<id>286</id>
<edge_type>1</edge_type>
<source_obj>110</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_240">
<id>491</id>
<edge_type>2</edge_type>
<source_obj>36</source_obj>
<sink_obj>44</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_241">
<id>492</id>
<edge_type>2</edge_type>
<source_obj>44</source_obj>
<sink_obj>57</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_242">
<id>493</id>
<edge_type>2</edge_type>
<source_obj>44</source_obj>
<sink_obj>54</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_243">
<id>494</id>
<edge_type>2</edge_type>
<source_obj>54</source_obj>
<sink_obj>44</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_244">
<id>495</id>
<edge_type>2</edge_type>
<source_obj>57</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_245">
<id>496</id>
<edge_type>2</edge_type>
<source_obj>57</source_obj>
<sink_obj>64</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_246">
<id>497</id>
<edge_type>2</edge_type>
<source_obj>64</source_obj>
<sink_obj>69</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_247">
<id>498</id>
<edge_type>2</edge_type>
<source_obj>69</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_248">
<id>499</id>
<edge_type>2</edge_type>
<source_obj>69</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_249">
<id>500</id>
<edge_type>2</edge_type>
<source_obj>79</source_obj>
<sink_obj>69</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_250">
<id>501</id>
<edge_type>2</edge_type>
<source_obj>81</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_251">
<id>502</id>
<edge_type>2</edge_type>
<source_obj>83</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_252">
<id>503</id>
<edge_type>2</edge_type>
<source_obj>88</source_obj>
<sink_obj>117</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_253">
<id>504</id>
<edge_type>2</edge_type>
<source_obj>88</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_254">
<id>505</id>
<edge_type>2</edge_type>
<source_obj>106</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_255">
<id>506</id>
<edge_type>4</edge_type>
<source_obj>34</source_obj>
<sink_obj>48</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_256">
<id>507</id>
<edge_type>4</edge_type>
<source_obj>34</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_257">
<id>508</id>
<edge_type>4</edge_type>
<source_obj>34</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_258">
<id>509</id>
<edge_type>4</edge_type>
<source_obj>62</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_259">
<id>2147483647</id>
<edge_type>1</edge_type>
<source_obj>103</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_260">
<mId>1</mId>
<mTag>x_order_fir</mTag>
<mType>0</mType>
<sub_regions>
<count>8</count>
<item_version>0</item_version>
<item>2</item>
<item>3</item>
<item>4</item>
<item>5</item>
<item>6</item>
<item>7</item>
<item>8</item>
<item>9</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"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_261">
<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>36</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>7</mMinLatency>
<mMaxLatency>7</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_262">
<mId>3</mId>
<mTag>memcpy.fir_ctrl.ctrl</mTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>44</item>
<item>54</item>
</basic_blocks>
<mII>1</mII>
<mDepth>3</mDepth>
<mMinTripCount>2</mMinTripCount>
<mMaxTripCount>2</mMaxTripCount>
<mMinLatency>3</mMinLatency>
<mMaxLatency>3</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_263">
<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>57</item>
<item>64</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>7</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_264">
<mId>5</mId>
<mTag>memcpy.x_order_fir(data_t*, data_t*, int*, int*)::coef.coe</mTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>69</item>
<item>79</item>
</basic_blocks>
<mII>1</mII>
<mDepth>3</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>-1</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_265">
<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>81</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="_266">
<mId>7</mId>
<mTag>Region 3</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>83</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="_267">
<mId>8</mId>
<mTag>calc_loop</mTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>88</item>
<item>106</item>
</basic_blocks>
<mII>2</mII>
<mDepth>4</mDepth>
<mMinTripCount>10</mMinTripCount>
<mMaxTripCount>1023</mMaxTripCount>
<mMinLatency>21</mMinLatency>
<mMaxLatency>2047</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_268">
<mId>9</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>117</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>4</mMinLatency>
<mMaxLatency>4</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
</cdfg_regions>
<fsm class_id="24" tracking_level="1" version="0" object_id="_269">
<states class_id="25" tracking_level="0" version="0">
<count>32</count>
<item_version>0</item_version>
<item class_id="26" tracking_level="1" version="0" object_id="_270">
<id>1</id>
<operations class_id="27" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="28" tracking_level="1" version="0" object_id="_271">
<id>12</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_272">
<id>13</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_273">
<id>14</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_274">
<id>17</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_275">
<id>2</id>
<operations>
<count>3</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_276">
<id>15</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_277">
<id>16</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_278">
<id>34</id>
<stage>7</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_279">
<id>3</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_280">
<id>34</id>
<stage>6</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_281">
<id>4</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_282">
<id>34</id>
<stage>5</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_283">
<id>5</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_284">
<id>34</id>
<stage>4</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_285">
<id>6</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_286">
<id>34</id>
<stage>3</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_287">
<id>7</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_288">
<id>34</id>
<stage>2</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_289">
<id>8</id>
<operations>
<count>18</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_290">
<id>18</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_291">
<id>19</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_292">
<id>20</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_293">
<id>21</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_294">
<id>22</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_295">
<id>23</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_296">
<id>24</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_297">
<id>25</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_298">
<id>26</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_299">
<id>27</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_300">
<id>28</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_301">
<id>29</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_302">
<id>30</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_303">
<id>31</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_304">
<id>32</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_305">
<id>33</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_306">
<id>34</id>
<stage>1</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_307">
<id>35</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_308">
<id>9</id>
<operations>
<count>8</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_309">
<id>37</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_310">
<id>38</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_311">
<id>39</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_312">
<id>40</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_313">
<id>41</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_314">
<id>42</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_315">
<id>43</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_316">
<id>49</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_317">
<id>10</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_318">
<id>48</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_319">
<id>11</id>
<operations>
<count>7</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_320">
<id>45</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_321">
<id>46</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_322">
<id>47</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_323">
<id>50</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_324">
<id>51</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_325">
<id>52</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_326">
<id>53</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_327">
<id>12</id>
<operations>
<count>5</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_328">
<id>55</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_329">
<id>56</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_330">
<id>58</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_331">
<id>59</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_332">
<id>60</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_333">
<id>13</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_334">
<id>61</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_335">
<id>62</id>
<stage>7</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_336">
<id>14</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_337">
<id>62</id>
<stage>6</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_338">
<id>15</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_339">
<id>62</id>
<stage>5</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_340">
<id>16</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_341">
<id>62</id>
<stage>4</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_342">
<id>17</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_343">
<id>62</id>
<stage>3</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_344">
<id>18</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_345">
<id>62</id>
<stage>2</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_346">
<id>19</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_347">
<id>62</id>
<stage>1</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_348">
<id>63</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_349">
<id>20</id>
<operations>
<count>4</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_350">
<id>65</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_351">
<id>66</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_352">
<id>67</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_353">
<id>68</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_354">
<id>21</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_355">
<id>74</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_356">
<id>22</id>
<operations>
<count>8</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_357">
<id>70</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_358">
<id>71</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_359">
<id>72</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_360">
<id>73</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_361">
<id>75</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_362">
<id>76</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_363">
<id>77</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_364">
<id>78</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_365">
<id>23</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_366">
<id>80</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_367">
<id>82</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_368">
<id>24</id>
<operations>
<count>11</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_369">
<id>84</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_370">
<id>85</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_371">
<id>86</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_372">
<id>87</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_373">
<id>93</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_374">
<id>94</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_375">
<id>95</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_376">
<id>96</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_377">
<id>97</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_378">
<id>98</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_379">
<id>99</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_380">
<id>25</id>
<operations>
<count>4</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_381">
<id>96</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_382">
<id>99</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_383">
<id>102</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_384">
<id>103</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_385">
<id>26</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_386">
<id>100</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_387">
<id>27</id>
<operations>
<count>7</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_388">
<id>89</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_389">
<id>90</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_390">
<id>91</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_391">
<id>92</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_392">
<id>101</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_393">
<id>104</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_394">
<id>105</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_395">
<id>28</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_396">
<id>111</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_397">
<id>29</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_398">
<id>111</id>
<stage>1</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_399">
<id>30</id>
<operations>
<count>6</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_400">
<id>107</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_401">
<id>108</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_402">
<id>109</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_403">
<id>110</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_404">
<id>112</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_405">
<id>114</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_406">
<id>31</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_407">
<id>113</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_408">
<id>115</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_409">
<id>32</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_410">
<id>115</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_411">
<id>116</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="29" tracking_level="0" version="0">
<count>35</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="1" version="0" object_id="_412">
<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="_413">
<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="_414">
<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="_415">
<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="_416">
<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="_417">
<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="_418">
<inState>7</inState>
<outState>8</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_419">
<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="_420">
<inState>12</inState>
<outState>13</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>55</first>
<second>0</second>
</first>
<second>1</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_421">
<inState>12</inState>
<outState>23</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>55</first>
<second>0</second>
</first>
<second>0</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_422">
<inState>13</inState>
<outState>14</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_423">
<inState>14</inState>
<outState>15</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_424">
<inState>15</inState>
<outState>16</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_425">
<inState>16</inState>
<outState>17</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_426">
<inState>17</inState>
<outState>18</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_427">
<inState>18</inState>
<outState>19</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_428">
<inState>19</inState>
<outState>20</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_429">
<inState>23</inState>
<outState>24</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_430">
<inState>28</inState>
<outState>29</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_431">
<inState>29</inState>
<outState>30</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_432">
<inState>30</inState>
<outState>31</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_433">
<inState>31</inState>
<outState>32</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_434">
<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="_435">
<inState>11</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="_436">
<inState>9</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>
<first>
<first>40</first>
<second>0</second>
</first>
<second>0</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_437">
<inState>9</inState>
<outState>10</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>40</first>
<second>0</second>
</first>
<second>1</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_438">
<inState>21</inState>
<outState>22</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_439">
<inState>22</inState>
<outState>20</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_440">
<inState>20</inState>
<outState>23</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>66</first>
<second>0</second>
</first>
<second>0</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_441">
<inState>20</inState>
<outState>21</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>66</first>
<second>0</second>
</first>
<second>1</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_442">
<inState>25</inState>
<outState>26</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_443">
<inState>26</inState>
<outState>27</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_444">
<inState>27</inState>
<outState>24</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_445">
<inState>24</inState>
<outState>28</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>86</first>
<second>0</second>
</first>
<second>0</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_446">
<inState>24</inState>
<outState>25</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>86</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>66</count>
<item_version>0</item_version>
<item class_id="38" tracking_level="0" version="0">
<first>12</first>
<second class_id="39" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>13</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>14</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>15</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>16</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>17</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>18</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>19</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>34</first>
<second>
<first>1</first>
<second>6</second>
</second>
</item>
<item>
<first>35</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>37</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>39</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>40</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>42</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>43</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>49</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>50</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>51</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>53</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>55</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>56</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>58</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>59</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>60</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>61</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>62</first>
<second>
<first>12</first>
<second>6</second>
</second>
</item>
<item>
<first>63</first>
<second>
<first>18</first>
<second>0</second>
</second>
</item>
<item>
<first>65</first>
<second>
<first>19</first>
<second>0</second>
</second>
</item>
<item>
<first>66</first>
<second>
<first>19</first>
<second>0</second>
</second>
</item>
<item>
<first>67</first>
<second>
<first>19</first>
<second>0</second>
</second>
</item>
<item>
<first>68</first>
<second>
<first>19</first>
<second>0</second>
</second>
</item>
<item>
<first>73</first>
<second>
<first>21</first>
<second>0</second>
</second>
</item>
<item>
<first>74</first>
<second>
<first>20</first>
<second>0</second>
</second>
</item>
<item>
<first>75</first>
<second>
<first>21</first>
<second>0</second>
</second>
</item>
<item>
<first>76</first>
<second>
<first>21</first>
<second>0</second>
</second>
</item>
<item>
<first>78</first>
<second>
<first>21</first>
<second>0</second>
</second>
</item>
<item>
<first>80</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>82</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>84</first>
<second>
<first>23</first>
<second>0</second>
</second>
</item>
<item>
<first>85</first>
<second>
<first>26</first>
<second>0</second>
</second>
</item>
<item>
<first>86</first>
<second>
<first>23</first>
<second>0</second>
</second>
</item>
<item>
<first>87</first>
<second>
<first>23</first>
<second>0</second>
</second>
</item>
<item>
<first>93</first>
<second>
<first>23</first>
<second>0</second>
</second>
</item>
<item>
<first>94</first>
<second>
<first>23</first>
<second>0</second>
</second>
</item>
<item>
<first>95</first>
<second>
<first>23</first>
<second>0</second>
</second>
</item>
<item>
<first>96</first>
<second>
<first>23</first>
<second>1</second>
</second>
</item>
<item>
<first>97</first>
<second>
<first>23</first>
<second>0</second>
</second>
</item>
<item>
<first>98</first>
<second>
<first>23</first>
<second>0</second>
</second>
</item>
<item>
<first>99</first>
<second>
<first>23</first>
<second>1</second>
</second>
</item>
<item>
<first>100</first>
<second>
<first>25</first>
<second>0</second>
</second>
</item>
<item>
<first>101</first>
<second>
<first>26</first>
<second>0</second>
</second>
</item>
<item>
<first>102</first>
<second>
<first>24</first>
<second>0</second>
</second>
</item>
<item>
<first>103</first>
<second>
<first>24</first>
<second>0</second>
</second>
</item>
<item>
<first>105</first>
<second>
<first>26</first>
<second>0</second>
</second>
</item>
<item>
<first>107</first>
<second>
<first>29</first>
<second>0</second>
</second>
</item>
<item>
<first>108</first>
<second>
<first>29</first>
<second>0</second>
</second>
</item>
<item>
<first>109</first>
<second>
<first>29</first>
<second>0</second>
</second>
</item>
<item>
<first>110</first>
<second>
<first>29</first>
<second>0</second>
</second>
</item>
<item>
<first>111</first>
<second>
<first>27</first>
<second>1</second>
</second>
</item>
<item>
<first>112</first>
<second>
<first>29</first>
<second>0</second>
</second>
</item>
<item>
<first>113</first>
<second>
<first>30</first>
<second>0</second>
</second>
</item>
<item>
<first>114</first>
<second>
<first>29</first>
<second>0</second>
</second>
</item>
<item>
<first>115</first>
<second>
<first>30</first>
<second>1</second>
</second>
</item>
<item>
<first>116</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="40" tracking_level="0" version="0">
<count>12</count>
<item_version>0</item_version>
<item class_id="41" tracking_level="0" version="0">
<first>36</first>
<second class_id="42" tracking_level="0" version="0">
<first>0</first>
<second>7</second>
</second>
</item>
<item>
<first>44</first>
<second>
<first>8</first>
<second>8</second>
</second>
</item>
<item>
<first>54</first>
<second>
<first>8</first>
<second>10</second>
</second>
</item>
<item>
<first>57</first>
<second>
<first>9</first>
<second>9</second>
</second>
</item>
<item>
<first>64</first>
<second>
<first>9</first>
<second>16</second>
</second>
</item>
<item>
<first>69</first>
<second>
<first>17</first>
<second>17</second>
</second>
</item>
<item>
<first>79</first>
<second>
<first>18</first>
<second>19</second>
</second>
</item>
<item>
<first>81</first>
<second>
<first>18</first>
<second>18</second>
</second>
</item>
<item>
<first>83</first>
<second>
<first>18</first>
<second>18</second>
</second>
</item>
<item>
<first>88</first>
<second>
<first>19</first>
<second>19</second>
</second>
</item>
<item>
<first>106</first>
<second>
<first>19</first>
<second>22</second>
</second>
</item>
<item>
<first>117</first>
<second>
<first>20</first>
<second>24</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="43" tracking_level="0" version="0">
<count>3</count>
<item_version>0</item_version>
<item class_id="44" tracking_level="1" version="0" object_id="_447">
<region_name>memcpy.fir_ctrl.ctrl</region_name>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>44</item>
<item>54</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>
<item class_id_reference="44" object_id="_448">
<region_name>memcpy.x_order_fir(data_t*, data_t*, int*, int*)::coef.coe</region_name>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>69</item>
<item>79</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>
<item class_id_reference="44" object_id="_449">
<region_name>calc_loop</region_name>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>88</item>
<item>106</item>
</basic_blocks>
<nodes>
<count>0</count>
<item_version>0</item_version>
</nodes>
<anchor_node>-1</anchor_node>
<region_type>8</region_type>
<interval>2</interval>
<pipe_depth>4</pipe_depth>
</item>
</regions>
<dp_fu_nodes class_id="45" tracking_level="0" version="0">
<count>50</count>
<item_version>0</item_version>
<item class_id="46" tracking_level="0" version="0">
<first>130</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>136</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>142</first>
<second>
<count>7</count>
<item_version>0</item_version>
<item>34</item>
<item>34</item>
<item>34</item>
<item>34</item>
<item>34</item>
<item>34</item>
<item>34</item>
</second>
</item>
<item>
<first>149</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>154</first>
<second>
<count>7</count>
<item_version>0</item_version>
<item>62</item>
<item>62</item>
<item>62</item>
<item>62</item>
<item>62</item>
<item>62</item>
<item>62</item>
</second>
</item>
<item>
<first>160</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>165</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>107</item>
</second>
</item>
<item>
<first>175</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>115</item>
<item>115</item>
</second>
</item>
<item>
<first>188</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>195</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>76</item>
<item>99</item>
<item>99</item>
<item>111</item>
<item>111</item>
</second>
</item>
<item>
<first>201</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>208</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>96</item>
<item>96</item>
<item>103</item>
<item>114</item>
</second>
</item>
<item>
<first>214</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>222</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>237</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>249</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>261</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>272</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>283</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>294</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>306</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>316</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>326</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>329</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>336</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>339</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>345</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>351</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>357</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>361</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>367</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>373</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>379</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>385</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>391</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>401</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>405</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>410</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>416</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>421</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>86</item>
</second>
</item>
<item>
<first>427</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>93</item>
</second>
</item>
<item>
<first>433</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>438</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>443</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>448</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>101</item>
</second>
</item>
<item>
<first>453</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>108</item>
</second>
</item>
<item>
<first>458</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>462</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</second>
</item>
<item>
<first>466</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>472</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>113</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="48" tracking_level="0" version="0">
<count>40</count>
<item_version>0</item_version>
<item class_id="49" tracking_level="0" version="0">
<first>acc_1_fu_472</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>113</item>
</second>
</item>
<item>
<first>acc_2_fu_448</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>101</item>
</second>
</item>
<item>
<first>acc_phi_fu_294</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>coe1_fu_316</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>coef_addr_1_gep_fu_214</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>coef_addr_gep_fu_188</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>ctrl3_fu_306</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>exitcond1_fu_405</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>exitcond_fu_345</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>fir_ctrl_1_1_fu_361</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>gmem_addr_1_fu_339</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>gmem_addr_fu_329</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>i1_phi_fu_283</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>i_1_fu_427</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>93</item>
</second>
</item>
<item>
<first>i_phi_fu_237</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>indvar1_phi_fu_272</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>indvar2_fu_416</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>indvar_next1_fu_410</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>indvar_next_fu_351</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>indvar_phi_fu_261</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>p_add7_i32_shr_fu_391</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>reload_1_fu_367</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>reload_phi_fu_249</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>shift_reg_addr_1_gep_fu_222</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>shift_reg_addr_gep_fu_201</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>tmp_10_fu_357</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>tmp_12_fu_379</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>tmp_1_fu_385</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>tmp_2_fu_421</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>86</item>
</second>
</item>
<item>
<first>tmp_3_fu_466</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>tmp_5_fu_326</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>tmp_6_fu_433</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>tmp_7_fu_438</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>tmp_8_fu_443</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>tmp_9_fu_336</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>tmp_fu_373</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>tmp_s_fu_401</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>x_data_tmp_fu_453</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>108</item>
</second>
</item>
<item>
<first>x_last_V_tmp_fu_462</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</second>
</item>
<item>
<first>x_user_V_tmp_fu_458</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</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>8</count>
<item_version>0</item_version>
<item>
<first>coe_read_read_fu_136</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>ctrl_read_read_fu_130</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>empty_4_read_fu_165</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>107</item>
</second>
</item>
<item>
<first>fir_ctrl_0_read_fu_149</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>gmem_addr_1_read_read_fu_160</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>grp_readreq_fu_142</first>
<second>
<count>7</count>
<item_version>0</item_version>
<item>34</item>
<item>34</item>
<item>34</item>
<item>34</item>
<item>34</item>
<item>34</item>
<item>34</item>
</second>
</item>
<item>
<first>grp_readreq_fu_154</first>
<second>
<count>7</count>
<item_version>0</item_version>
<item>62</item>
<item>62</item>
<item>62</item>
<item>62</item>
<item>62</item>
<item>62</item>
<item>62</item>
</second>
</item>
<item>
<first>grp_write_fu_175</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>115</item>
<item>115</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>2</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>coef</first>
<second>0</second>
</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>76</item>
<item>99</item>
<item>99</item>
<item>111</item>
<item>111</item>
</second>
</item>
<item>
<first>
<first>shift_reg</first>
<second>0</second>
</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>96</item>
<item>96</item>
<item>103</item>
<item>114</item>
</second>
</item>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>35</count>
<item_version>0</item_version>
<item>
<first>233</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>245</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>257</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>268</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>280</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>290</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>302</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>99</item>
<item>111</item>
</second>
</item>
<item>
<first>478</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>483</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>488</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>494</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>500</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>504</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>509</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>515</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>521</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>526</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>531</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>535</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>541</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>546</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>550</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>555</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>560</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>86</item>
</second>
</item>
<item>
<first>564</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>93</item>
</second>
</item>
<item>
<first>569</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>574</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>579</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>584</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>96</item>
</second>
</item>
<item>
<first>589</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>594</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>101</item>
</second>
</item>
<item>
<first>599</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>604</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</second>
</item>
<item>
<first>609</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>614</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>113</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>35</count>
<item_version>0</item_version>
<item>
<first>acc_1_reg_614</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>113</item>
</second>
</item>
<item>
<first>acc_2_reg_594</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>101</item>
</second>
</item>
<item>
<first>acc_reg_290</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>coe1_reg_483</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>coef_addr_1_reg_579</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>ctrl3_reg_478</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>exitcond1_reg_546</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>exitcond_reg_500</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>fir_ctrl_0_reg_515</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>fir_ctrl_1_1_reg_521</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>gmem_addr_1_read_reg_555</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>gmem_addr_1_reg_494</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>gmem_addr_reg_488</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>i1_reg_280</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>i_1_reg_564</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>93</item>
</second>
</item>
<item>
<first>i_reg_233</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>indvar1_reg_268</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>indvar_next1_reg_550</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>indvar_next_reg_504</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>indvar_reg_257</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>p_add7_i32_shr_reg_535</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>reg_302</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>99</item>
<item>111</item>
</second>
</item>
<item>
<first>reload_1_reg_526</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>reload_reg_245</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>shift_reg_addr_reg_569</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>shift_reg_load_reg_584</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>96</item>
</second>
</item>
<item>
<first>tmp_10_reg_509</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>tmp_2_reg_560</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>86</item>
</second>
</item>
<item>
<first>tmp_3_reg_609</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>tmp_7_reg_574</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>tmp_8_reg_589</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>tmp_reg_531</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>tmp_s_reg_541</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>x_last_V_tmp_reg_604</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</second>
</item>
<item>
<first>x_user_V_tmp_reg_599</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
</dp_regname_nodes>
<dp_reg_phi>
<count>6</count>
<item_version>0</item_version>
<item>
<first>233</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>245</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>257</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>268</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>280</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>290</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
</dp_reg_phi>
<dp_regname_phi>
<count>6</count>
<item_version>0</item_version>
<item>
<first>acc_reg_290</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>i1_reg_280</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>i_reg_233</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>indvar1_reg_268</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>indvar_reg_257</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>reload_reg_245</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
</dp_regname_phi>
<dp_port_io_nodes class_id="53" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="54" tracking_level="0" version="0">
<first>coe</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
</second>
</item>
<item>
<first>ctrl</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
</second>
</item>
<item>
<first>gmem</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>x_data</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>107</item>
</second>
</item>
</second>
</item>
<item>
<first>x_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>107</item>
</second>
</item>
</second>
</item>
<item>
<first>x_user_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>107</item>
</second>
</item>
</second>
</item>
<item>
<first>y_data</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
</second>
</item>
<item>
<first>y_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>115</item>
</second>
</item>
</second>
</item>
<item>
<first>y_user_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>115</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core class_id="55" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- E X P _ C H 1 1 --
-- --
-- S p e c --
-- --
-- $Revision$
-- --
-- Copyright (C) 1992-2000 Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
-- MA 02111-1307, USA. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- Expand routines for chapter 11 constructs
with Types; use Types;
package Exp_Ch11 is
procedure Expand_N_Exception_Declaration (N : Node_Id);
procedure Expand_N_Handled_Sequence_Of_Statements (N : Node_Id);
procedure Expand_N_Raise_Constraint_Error (N : Node_Id);
procedure Expand_N_Raise_Program_Error (N : Node_Id);
procedure Expand_N_Raise_Statement (N : Node_Id);
procedure Expand_N_Raise_Storage_Error (N : Node_Id);
procedure Expand_N_Subprogram_Info (N : Node_Id);
-- Data structures for gathering information to build exception tables
-- See runtime routine Ada.Exceptions for full details on the format and
-- content of these tables.
procedure Initialize;
-- Initializes these data structures for a new main unit file
procedure Expand_At_End_Handler (HSS : Node_Id; Block : Node_Id);
-- Given a handled statement sequence, HSS, for which the At_End_Proc
-- field is set, and which currently has no exception handlers, this
-- procedure expands the special exception handler required.
-- This procedure also create a new scope for the given Block, if
-- Block is not Empty.
procedure Expand_Exception_Handlers (HSS : Node_Id);
-- This procedure expands exception handlers, and is called as part
-- of the processing for Expand_N_Handled_Sequence_Of_Statements and
-- is also called from Expand_At_End_Handler. N is the handled sequence
-- of statements that has the exception handler(s) to be expanded. This
-- is also called to expand the special exception handler built for
-- accept bodies (see Exp_Ch9.Build_Accept_Body).
procedure Generate_Unit_Exception_Table;
-- Procedure called by main driver to generate unit exception table if
-- zero cost exceptions are enabled. See System.Exceptions for details.
function Is_Non_Ada_Error (E : Entity_Id) return Boolean;
-- This function is provided for Gigi use. It returns True if operating on
-- VMS, and the argument E is the entity for System.Aux_Dec.Non_Ada_Error.
-- This is used to generate the special matching code for this exception.
procedure Remove_Handler_Entries (N : Node_Id);
-- This procedure is called when optimization circuits determine that
-- an entire subtree can be removed. If the subtree contains handler
-- entries in zero cost exception mode, then such removal can lead to
-- dangling references to non-existent handlers in the handler table.
-- This procedure removes such references.
--------------------------------------
-- Subprogram_Descriptor Generation --
--------------------------------------
-- Subprogram descriptors are required for all subprograms, including
-- explicit subprograms defined in the program, subprograms that are
-- imported via pragma Import, and also for the implicit elaboration
-- subprograms used to elaborate package specs and bodies.
procedure Generate_Subprogram_Descriptor_For_Package
(N : Node_Id;
Spec : Entity_Id);
-- This is used to create a descriptor for the implicit elaboration
-- procedure for a package spec of body. The compiler only generates
-- such descriptors if the package spec or body contains exception
-- handlers (either explicitly in the case of a body, or from generic
-- package instantiations). N is the node for the package body or
-- spec, and Spec is the package body or package entity respectively.
-- N must be a compilation unit, and the descriptor is placed at
-- the end of the actions for the auxiliary compilation unit node.
procedure Generate_Subprogram_Descriptor_For_Subprogram
(N : Node_Id;
Spec : Entity_Id);
-- This is used to create a desriptor for a subprogram, both those
-- present in the source, and those implicitly generated by code
-- expansion. N is the subprogram body node, and Spec is the entity
-- for the subprogram. The descriptor is placed at the end of the
-- Last exception handler, or, if there are no handlers, at the end
-- of the statement sequence.
procedure Generate_Subprogram_Descriptor_For_Imported_Subprogram
(Spec : Entity_Id;
Slist : List_Id);
-- This is used to create a descriptor for an imported subprogram.
-- Such descriptors are needed for propagation of exceptions through
-- such subprograms. The descriptor never references any handlers,
-- and is appended to the given Slist.
end Exp_Ch11;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- This file is generated, don't edit it.
------------------------------------------------------------------------------
with AMF.Elements.Generic_Hash;
function AMF.Standard_Profile_L2.Implements.Hash is
new AMF.Elements.Generic_Hash (Standard_Profile_L2_Implement, Standard_Profile_L2_Implement_Access);
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . W I D E _ T E X T _ I O . D E C I M A L _ I O --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2019, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Ada.Wide_Text_IO.Decimal_Aux;
with System.WCh_Con; use System.WCh_Con;
with System.WCh_WtS; use System.WCh_WtS;
package body Ada.Wide_Text_IO.Decimal_IO is
subtype TFT is Ada.Wide_Text_IO.File_Type;
-- File type required for calls to routines in Aux
package Aux renames Ada.Wide_Text_IO.Decimal_Aux;
Scale : constant Integer := Num'Scale;
---------
-- Get --
---------
procedure Get
(File : File_Type;
Item : out Num;
Width : Field := 0)
is
begin
if Num'Size > Integer'Size then
Item := Num'Fixed_Value (Aux.Get_LLD (TFT (File), Width, Scale));
else
Item := Num'Fixed_Value (Aux.Get_Dec (TFT (File), Width, Scale));
end if;
exception
when Constraint_Error => raise Data_Error;
end Get;
procedure Get
(Item : out Num;
Width : Field := 0)
is
begin
Get (Current_Input, Item, Width);
end Get;
procedure Get
(From : Wide_String;
Item : out Num;
Last : out Positive)
is
S : constant String := Wide_String_To_String (From, WCEM_Upper);
-- String on which we do the actual conversion. Note that the method
-- used for wide character encoding is irrelevant, since if there is
-- a character outside the Standard.Character range then the call to
-- Aux.Gets will raise Data_Error in any case.
begin
if Num'Size > Integer'Size then
-- Item := Num'Fixed_Value
-- should write above, but gets assert error ???
Item := Num
(Aux.Gets_LLD (S, Last'Unrestricted_Access, Scale));
else
-- Item := Num'Fixed_Value
-- should write above, but gets assert error ???
Item := Num
(Aux.Gets_Dec (S, Last'Unrestricted_Access, Scale));
end if;
exception
when Constraint_Error => raise Data_Error;
end Get;
---------
-- Put --
---------
procedure Put
(File : File_Type;
Item : Num;
Fore : Field := Default_Fore;
Aft : Field := Default_Aft;
Exp : Field := Default_Exp)
is
begin
if Num'Size > Integer'Size then
Aux.Put_LLD
(TFT (File), Long_Long_Integer'Integer_Value (Item),
Fore, Aft, Exp, Scale);
else
Aux.Put_Dec
(TFT (File), Integer'Integer_Value (Item), Fore, Aft, Exp, Scale);
end if;
end Put;
procedure Put
(Item : Num;
Fore : Field := Default_Fore;
Aft : Field := Default_Aft;
Exp : Field := Default_Exp)
is
begin
Put (Current_Output, Item, Fore, Aft, Exp);
end Put;
procedure Put
(To : out Wide_String;
Item : Num;
Aft : Field := Default_Aft;
Exp : Field := Default_Exp)
is
S : String (To'First .. To'Last);
begin
if Num'Size > Integer'Size then
Aux.Puts_LLD
(S, Long_Long_Integer'Integer_Value (Item), Aft, Exp, Scale);
else
Aux.Puts_Dec (S, Integer'Integer_Value (Item), Aft, Exp, Scale);
end if;
for J in S'Range loop
To (J) := Wide_Character'Val (Character'Pos (S (J)));
end loop;
end Put;
end Ada.Wide_Text_IO.Decimal_IO;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . E X P _ U N S --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2005 Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
--
--
--
--
--
--
--
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This procedure performs exponentiation of unsigned types (with binary
-- modulus values up to and including that of Unsigned_Types.Unsigned).
-- The result is always full width, the caller must do a masking operation
-- the modulus is less than 2 ** (Unsigned'Size).
with System.Unsigned_Types;
package System.Exp_Uns is
pragma Pure;
function Exp_Unsigned
(Left : System.Unsigned_Types.Unsigned;
Right : Natural)
return System.Unsigned_Types.Unsigned;
end System.Exp_Uns;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- G N A T . T R A C E B A C K . S Y M B O L I C --
-- --
-- S p e c --
-- --
-- Copyright (C) 1999-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. --
-- --
------------------------------------------------------------------------------
-- Run-time symbolic traceback support
-- See file s-trasym.ads for full documentation of the interface
with System.Traceback.Symbolic;
package GNAT.Traceback.Symbolic renames System.Traceback.Symbolic;
|
-- Copyright 2012-2017 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
with Pck; use Pck;
procedure A is
Nnn : String := "12345";
Www : Wide_String := "12345";
Rws : Wide_Wide_String := "12345";
begin
Do_Nothing (Nnn'Address); -- STOP
Do_Nothing (Www'Address);
Do_Nothing (Rws'Address);
end A;
|
with Ada.Containers; use Ada.Containers;
with Ada.Containers.Hashed_Maps;
with Ada.Containers.Vectors;
package body Lto21_Pkg2 is
pragma Suppress (Tampering_Check);
procedure Proc is
function Hash (Syd : Natural) return Hash_Type is (Hash_Type'Mod (Syd));
package Vect2 is new Vectors (Positive, Natural);
package Maps is
new Hashed_Maps (Natural, Vect2.Vector, Hash, "=", Vect2."=");
procedure Nested (M : Maps.Map) is
use Maps;
procedure Inner (Position : Cursor) is null;
begin
Iterate (M, Inner'Access);
end;
M : Maps.Map;
begin
Nested (M);
end;
end Lto21_Pkg2;
|
-- C64104O.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 CONSTRAINT_ERROR IS RAISED AT THE PLACE OF THE CALL
-- FOR THE CASE OF A PRIVATE TYPE IMPLEMENTED AS AN ACCESS TYPE WHERE
-- THE ACTUAL BOUNDS OR DISCRIMINANTS OF THE DESIGNATED OBJECT DIFFER
-- FROM THOSE OF THE FORMAL.
-- HISTORY
-- CPP 7/23/84 CREATED ORIGINAL TEST.
-- DHH 8/31/87 ADDED COMMENT IN PROCEDURE Q SO THAT CODE WILL NOT BE
-- OPTIMIZED OUT OF EXISTENCE.
WITH REPORT; USE REPORT;
PROCEDURE C64104O IS
BEGIN
TEST ("C64104O", "CHECK THAT PRIVATE TYPE (ACCESS) RAISES " &
"CONSTRAINT_ERROR WHEN ACTUAL AND FORMAL PARAMETER BOUNDS " &
"DIFFER");
DECLARE
CALLED : BOOLEAN := FALSE;
PACKAGE P IS
TYPE T IS PRIVATE;
DC : CONSTANT T;
GENERIC PACKAGE PP IS
END PP;
PRIVATE
TYPE T IS ACCESS STRING;
DC : CONSTANT T := NEW STRING'("AAA");
END P;
PROCEDURE Q (X : IN OUT P.T) IS
BEGIN
CALLED := TRUE;
X := P.DC;
IF P. "=" (X, P.DC) THEN
COMMENT("PROCEDURE Q WAS CALLED");
END IF;
EXCEPTION
WHEN OTHERS =>
FAILED ("EXCEPTION RAISED INSIDE SUBPROGRAM");
END Q;
GENERIC
Y : IN OUT P.T;
PACKAGE CALL IS
END CALL;
PACKAGE BODY CALL IS
BEGIN
Q(Y);
END CALL;
PACKAGE BODY P IS
Z : T(1..5) := NEW STRING'("CCCCC");
PACKAGE BODY PP IS
PACKAGE CALL_Q IS NEW CALL(Z);
END PP;
END P;
BEGIN
BEGIN
DECLARE
PACKAGE CALL_Q_NOW IS NEW P.PP;
BEGIN
FAILED ("NO EXCEPTION RAISED");
END;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
IF NOT CALLED THEN
FAILED ("SUBPROGRAM Q WAS NOT CALLED");
END IF;
WHEN OTHERS =>
FAILED ("WRONG EXCEPTION RAISED");
END;
RESULT;
END;
END C64104O;
|
<?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_1</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>in_stream.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>out_stream_V_value_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>out_stream.V.value.V</originalName>
<rtlName/>
<coreName>FIFO_SRL</coreName>
</Obj>
<bitwidth>128</bitwidth>
</Value>
<direction>1</direction>
<if_type>3</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_3">
<Value>
<Obj>
<type>0</type>
<id>8</id>
<name>slice_stream_V_value</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>172</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="10" tracking_level="0" version="0">
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first>
<second class_id="11" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="12" tracking_level="0" version="0">
<first class_id="13" tracking_level="0" version="0">
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>172</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>slice_stream.V.value.V</originalName>
<rtlName>slice_stream_V_value_U</rtlName>
<coreName>FIFO_SRL</coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_4">
<Value>
<Obj>
<type>0</type>
<id>12</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>call_Loop_LB2D_buf_p_1_U0</rtlName>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>19</item>
<item>20</item>
<item>21</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_5">
<Value>
<Obj>
<type>0</type>
<id>13</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>call_Loop_LB2D_shift_1_U0</rtlName>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>23</item>
<item>24</item>
<item>25</item>
<item>135</item>
<item>136</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_6">
<Value>
<Obj>
<type>0</type>
<id>14</id>
<name/>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>219</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>219</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>0</count>
<item_version>0</item_version>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>3</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_7">
<Value>
<Obj>
<type>2</type>
<id>16</id>
<name>empty</name>
<fileName/>
<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="_8">
<Value>
<Obj>
<type>2</type>
<id>18</id>
<name>call_Loop_LB2D_buf_p_1</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>
<const_type>6</const_type>
<content><constant:call_Loop_LB2D_buf_p.1></content>
</item>
<item class_id_reference="16" object_id="_9">
<Value>
<Obj>
<type>2</type>
<id>22</id>
<name>call_Loop_LB2D_shift_1</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>
<const_type>6</const_type>
<content><constant:call_Loop_LB2D_shift.1></content>
</item>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_10">
<Obj>
<type>3</type>
<id>15</id>
<name>call.1</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>8</item>
<item>12</item>
<item>13</item>
<item>14</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_11">
<id>17</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>8</sink_obj>
</item>
<item class_id_reference="20" object_id="_12">
<id>19</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_13">
<id>20</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_14">
<id>21</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_15">
<id>23</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_16">
<id>24</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_17">
<id>25</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_18">
<id>135</id>
<edge_type>4</edge_type>
<source_obj>12</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_19">
<id>136</id>
<edge_type>4</edge_type>
<source_obj>12</source_obj>
<sink_obj>13</sink_obj>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_20">
<mId>1</mId>
<mTag>call.1</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>2071917</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>1</mIsDfPipe>
<mDfPipe class_id="23" tracking_level="1" version="0" object_id="_21">
<port_list class_id="24" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</port_list>
<process_list class_id="25" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="26" tracking_level="1" version="0" object_id="_22">
<type>0</type>
<name>call_Loop_LB2D_buf_p_1_U0</name>
<ssdmobj_id>12</ssdmobj_id>
<pins class_id="27" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="28" tracking_level="1" version="0" object_id="_23">
<port class_id="29" tracking_level="1" version="0" object_id="_24">
<name>in_stream_V_value_V</name>
<dir>0</dir>
<type>0</type>
</port>
<inst class_id="30" tracking_level="1" version="0" object_id="_25">
<type>0</type>
<name>call_Loop_LB2D_buf_p_1_U0</name>
<ssdmobj_id>12</ssdmobj_id>
</inst>
</item>
<item class_id_reference="28" object_id="_26">
<port class_id_reference="29" object_id="_27">
<name>slice_stream_V_value_V</name>
<dir>0</dir>
<type>1</type>
</port>
<inst class_id_reference="30" object_id_reference="_25"/>
</item>
</pins>
</item>
<item class_id_reference="26" object_id="_28">
<type>0</type>
<name>call_Loop_LB2D_shift_1_U0</name>
<ssdmobj_id>13</ssdmobj_id>
<pins>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_29">
<port class_id_reference="29" object_id="_30">
<name>slice_stream_V_value_V</name>
<dir>0</dir>
<type>0</type>
</port>
<inst class_id_reference="30" object_id="_31">
<type>0</type>
<name>call_Loop_LB2D_shift_1_U0</name>
<ssdmobj_id>13</ssdmobj_id>
</inst>
</item>
<item class_id_reference="28" object_id="_32">
<port class_id_reference="29" object_id="_33">
<name>out_stream_V_value_V</name>
<dir>0</dir>
<type>1</type>
</port>
<inst class_id_reference="30" object_id_reference="_31"/>
</item>
</pins>
</item>
</process_list>
<channel_list class_id="31" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="32" tracking_level="1" version="0" object_id="_34">
<type>1</type>
<name>slice_stream_V_value</name>
<ssdmobj_id>8</ssdmobj_id>
<ctype>0</ctype>
<depth>1</depth>
<bitwidth>64</bitwidth>
<source class_id_reference="28" object_id="_35">
<port class_id_reference="29" object_id="_36">
<name>in</name>
<dir>3</dir>
<type>0</type>
</port>
<inst class_id_reference="30" object_id_reference="_25"/>
</source>
<sink class_id_reference="28" object_id="_37">
<port class_id_reference="29" object_id="_38">
<name>out</name>
<dir>3</dir>
<type>1</type>
</port>
<inst class_id_reference="30" object_id_reference="_31"/>
</sink>
</item>
</channel_list>
<net_list class_id="33" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</net_list>
</mDfPipe>
</item>
</cdfg_regions>
<fsm class_id="34" tracking_level="1" version="0" object_id="_39">
<states class_id="35" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="36" tracking_level="1" version="0" object_id="_40">
<id>1</id>
<operations class_id="37" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="38" tracking_level="1" version="0" object_id="_41">
<id>8</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_42">
<id>12</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="36" object_id="_43">
<id>2</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="38" object_id="_44">
<id>12</id>
<stage>1</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="36" object_id="_45">
<id>3</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="38" object_id="_46">
<id>13</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="36" object_id="_47">
<id>4</id>
<operations>
<count>10</count>
<item_version>0</item_version>
<item class_id_reference="38" object_id="_48">
<id>3</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_49">
<id>4</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_50">
<id>5</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_51">
<id>6</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_52">
<id>7</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_53">
<id>9</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_54">
<id>10</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_55">
<id>11</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_56">
<id>13</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="38" object_id="_57">
<id>14</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="39" tracking_level="0" version="0">
<count>3</count>
<item_version>0</item_version>
<item class_id="40" tracking_level="1" version="0" object_id="_58">
<inState>1</inState>
<outState>2</outState>
<condition class_id="41" tracking_level="0" version="0">
<id>0</id>
<sop class_id="42" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="43" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="40" object_id="_59">
<inState>2</inState>
<outState>3</outState>
<condition>
<id>1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="40" object_id="_60">
<inState>3</inState>
<outState>4</outState>
<condition>
<id>2</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
</transitions>
</fsm>
<res class_id="44" tracking_level="1" version="0" object_id="_61">
<dp_component_resource class_id="45" tracking_level="0" version="0">
<count>3</count>
<item_version>0</item_version>
<item class_id="46" tracking_level="0" version="0">
<first>call_Loop_LB2D_buf_p_1_U0 (call_Loop_LB2D_buf_p_1)</first>
<second class_id="47" tracking_level="0" version="0">
<count>3</count>
<item_version>0</item_version>
<item class_id="48" tracking_level="0" version="0">
<first>BRAM</first>
<second>4</second>
</item>
<item>
<first>FF</first>
<second>209</second>
</item>
<item>
<first>LUT</first>
<second>169</second>
</item>
</second>
</item>
<item>
<first>call_Loop_LB2D_shift_1_U0 (call_Loop_LB2D_shift_1)</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>FF</first>
<second>182</second>
</item>
<item>
<first>LUT</first>
<second>147</second>
</item>
</second>
</item>
<item>
<first>start_for_call_Log8j_U (start_for_call_Log8j)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
</dp_component_resource>
<dp_expression_resource>
<count>2</count>
<item_version>0</item_version>
<item>
<first>ap_idle ( 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>call_Loop_LB2D_buf_p_1_U0_start_full_n ( 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>
</dp_expression_resource>
<dp_fifo_resource>
<count>1</count>
<item_version>0</item_version>
<item>
<first>slice_stream_V_value_U</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0Depth)</first>
<second>1</second>
</item>
<item>
<first>(1Bits)</first>
<second>64</second>
</item>
<item>
<first>(2Size:D*B)</first>
<second>64</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>1</second>
</item>
</second>
</item>
</dp_fifo_resource>
<dp_memory_resource>
<count>0</count>
<item_version>0</item_version>
</dp_memory_resource>
<dp_multiplexer_resource>
<count>0</count>
<item_version>0</item_version>
</dp_multiplexer_resource>
<dp_register_resource>
<count>0</count>
<item_version>0</item_version>
</dp_register_resource>
<dp_component_map class_id="49" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="50" tracking_level="0" version="0">
<first>call_Loop_LB2D_buf_p_1_U0 (call_Loop_LB2D_buf_p_1)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>call_Loop_LB2D_shift_1_U0 (call_Loop_LB2D_shift_1)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
</dp_component_map>
<dp_expression_map>
<count>0</count>
<item_version>0</item_version>
</dp_expression_map>
<dp_fifo_map>
<count>1</count>
<item_version>0</item_version>
<item>
<first>slice_stream_V_value_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
</dp_fifo_map>
<dp_memory_map>
<count>0</count>
<item_version>0</item_version>
</dp_memory_map>
</res>
<node_label_latency class_id="51" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="52" tracking_level="0" version="0">
<first>8</first>
<second class_id="53" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>12</first>
<second>
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>13</first>
<second>
<first>2</first>
<second>1</second>
</second>
</item>
<item>
<first>14</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="54" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="55" tracking_level="0" version="0">
<first>15</first>
<second class_id="56" tracking_level="0" version="0">
<first>0</first>
<second>3</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="57" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="58" tracking_level="1" version="0" object_id="_62">
<region_name>call.1</region_name>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</basic_blocks>
<nodes>
<count>12</count>
<item_version>0</item_version>
<item>3</item>
<item>4</item>
<item>5</item>
<item>6</item>
<item>7</item>
<item>8</item>
<item>9</item>
<item>10</item>
<item>11</item>
<item>12</item>
<item>13</item>
<item>14</item>
</nodes>
<anchor_node>-1</anchor_node>
<region_type>16</region_type>
<interval>0</interval>
<pipe_depth>0</pipe_depth>
</item>
</regions>
<dp_fu_nodes class_id="59" tracking_level="0" version="0">
<count>3</count>
<item_version>0</item_version>
<item class_id="60" tracking_level="0" version="0">
<first>36</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>40</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>12</item>
<item>12</item>
</second>
</item>
<item>
<first>47</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>13</item>
<item>13</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="62" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="63" tracking_level="0" version="0">
<first>slice_stream_V_value_fu_36</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
</dp_fu_nodes_expression>
<dp_fu_nodes_module>
<count>2</count>
<item_version>0</item_version>
<item>
<first>grp_call_Loop_LB2D_buf_p_1_fu_40</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>12</item>
<item>12</item>
</second>
</item>
<item>
<first>grp_call_Loop_LB2D_shift_1_fu_47</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>13</item>
<item>13</item>
</second>
</item>
</dp_fu_nodes_module>
<dp_fu_nodes_io>
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_io>
<return_ports>
<count>0</count>
<item_version>0</item_version>
</return_ports>
<dp_mem_port_nodes class_id="64" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>1</count>
<item_version>0</item_version>
<item>
<first>54</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>1</count>
<item_version>0</item_version>
<item>
<first>slice_stream_V_value_reg_54</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
</dp_regname_nodes>
<dp_reg_phi>
<count>0</count>
<item_version>0</item_version>
</dp_reg_phi>
<dp_regname_phi>
<count>0</count>
<item_version>0</item_version>
</dp_regname_phi>
<dp_port_io_nodes class_id="65" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="66" tracking_level="0" version="0">
<first>in_stream_V_value_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>call</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
</second>
</item>
<item>
<first>out_stream_V_value_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>call</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core class_id="67" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="68" tracking_level="0" version="0">
<first>1</first>
<second>FIFO_SRL</second>
</item>
<item>
<first>2</first>
<second>FIFO_SRL</second>
</item>
</port2core>
<node2core>
<count>1</count>
<item_version>0</item_version>
<item>
<first>8</first>
<second>FIFO_SRL</second>
</item>
</node2core>
</syndb>
</boost_serialization>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE boost_serialization>
<boost_serialization signature="serialization::archive" version="14">
<syndb class_id="0" tracking_level="0" version="0">
<userIPLatency>-1</userIPLatency>
<userIPName></userIPName>
<cdfg class_id="1" tracking_level="1" version="0" object_id="_0">
<name>computeHistogram0</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>20</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>descriptor_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>descriptor.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>15</bitwidth>
</Value>
<direction>2</direction>
<if_type>1</if_type>
<array_size>72</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>image_buffer_0</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>image_buffer[0]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>34</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>image_buffer_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>image_buffer[1]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>34</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>image_buffer_2</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>image_buffer[2]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>34</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>image_buffer_3</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>image_buffer[3]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>34</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>image_buffer_4</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>image_buffer[4]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>34</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>image_buffer_5</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>image_buffer[5]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>34</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>image_buffer_6</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>image_buffer[6]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>34</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>image_buffer_7</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>image_buffer[7]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>34</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>image_buffer_8</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>image_buffer[8]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>34</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>image_buffer_9</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>image_buffer[9]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>34</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>image_buffer_10</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>image_buffer[10]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>34</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>image_buffer_11</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>image_buffer[11]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>34</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>image_buffer_12</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>image_buffer[12]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>34</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>image_buffer_13</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>image_buffer[13]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>34</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>image_buffer_14</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>image_buffer[14]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>34</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>image_buffer_15</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>image_buffer[15]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>34</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>image_buffer_16</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>image_buffer[16]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>34</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>image_buffer_17</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>image_buffer[17]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>34</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>sum</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>sum</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>2</direction>
<if_type>1</if_type>
<array_size>2</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>352</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>25</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>10</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="10" tracking_level="0" version="0">
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second class_id="11" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="12" tracking_level="0" version="0">
<first class_id="13" tracking_level="0" version="0">
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>10</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>477</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>27</id>
<name>i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>479</item>
<item>480</item>
<item>481</item>
<item>482</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>28</id>
<name>tmp</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>10</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>10</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>483</item>
<item>485</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>30</id>
<name>i_6</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>10</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>10</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>486</item>
<item>488</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>31</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>10</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>10</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>489</item>
<item>490</item>
<item>491</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>33</id>
<name>tmp_s</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>11</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>11</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>493</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>34</id>
<name>descriptor_V_addr</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>11</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>11</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>494</item>
<item>496</item>
<item>497</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>35</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>11</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>11</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>499</item>
<item>500</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>36</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>10</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>10</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>501</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>38</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>13</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>13</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>492</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>i1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>502</item>
<item>503</item>
<item>505</item>
<item>506</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name>exitcond6</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>13</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>13</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>507</item>
<item>509</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name>i_7</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>13</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>13</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>510</item>
<item>512</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>44</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>13</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>13</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>513</item>
<item>514</item>
<item>515</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>46</id>
<name>tmp_87</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>14</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>14</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>516</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>47</id>
<name>sum_addr</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>14</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>14</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>517</item>
<item>518</item>
<item>519</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>48</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>14</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>14</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>521</item>
<item>522</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>49</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>13</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>13</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>523</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>55</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>34</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>34</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>524</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_40">
<Value>
<Obj>
<type>0</type>
<id>57</id>
<name>indvar_flatten2</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>526</item>
<item>527</item>
<item>528</item>
<item>529</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>58</id>
<name>bX</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>35</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>35</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>530</item>
<item>531</item>
<item>532</item>
<item>533</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_42">
<Value>
<Obj>
<type>0</type>
<id>59</id>
<name>indvar_flatten</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</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>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_43">
<Value>
<Obj>
<type>0</type>
<id>60</id>
<name>y</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>37</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>37</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>539</item>
<item>540</item>
<item>541</item>
<item>542</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_44">
<Value>
<Obj>
<type>0</type>
<id>61</id>
<name>x</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>x</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>543</item>
<item>544</item>
<item>545</item>
<item>546</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_45">
<Value>
<Obj>
<type>0</type>
<id>62</id>
<name>tmp_80</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>48</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>48</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>548</item>
<item>549</item>
<item>551</item>
<item>553</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_46">
<Value>
<Obj>
<type>0</type>
<id>63</id>
<name>tmp_81</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>37</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>37</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>555</item>
<item>556</item>
<item>557</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_47">
<Value>
<Obj>
<type>0</type>
<id>64</id>
<name>p_shl3</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>64</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>64</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>559</item>
<item>560</item>
<item>562</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_48">
<Value>
<Obj>
<type>0</type>
<id>65</id>
<name>exitcond_flatten3</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>563</item>
<item>565</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_49">
<Value>
<Obj>
<type>0</type>
<id>66</id>
<name>indvar_flatten_next2</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>566</item>
<item>568</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_50">
<Value>
<Obj>
<type>0</type>
<id>67</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>569</item>
<item>570</item>
<item>571</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_51">
<Value>
<Obj>
<type>0</type>
<id>71</id>
<name>exitcond_flatten</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>1159</item>
<item>1161</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_52">
<Value>
<Obj>
<type>0</type>
<id>72</id>
<name>y_mid</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>37</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>37</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1162</item>
<item>1163</item>
<item>1164</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_53">
<Value>
<Obj>
<type>0</type>
<id>73</id>
<name>x_mid</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>37</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>37</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1165</item>
<item>1166</item>
<item>1167</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_54">
<Value>
<Obj>
<type>0</type>
<id>74</id>
<name>bX_s</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>34</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>34</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>1168</item>
<item>1169</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_55">
<Value>
<Obj>
<type>0</type>
<id>75</id>
<name>blkPosX_mid2_v_v</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>35</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>35</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1170</item>
<item>1171</item>
<item>1172</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_56">
<Value>
<Obj>
<type>0</type>
<id>76</id>
<name>tmp_82</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>35</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>35</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>1173</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_57">
<Value>
<Obj>
<type>0</type>
<id>77</id>
<name>blkPosX_mid2</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>35</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>35</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1175</item>
<item>1176</item>
<item>1177</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_58">
<Value>
<Obj>
<type>0</type>
<id>78</id>
<name>tmp_100_cast_mid2_v</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>1178</item>
<item>1179</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_59">
<Value>
<Obj>
<type>0</type>
<id>79</id>
<name>tmp_100_cast_mid2</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>1180</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_60">
<Value>
<Obj>
<type>0</type>
<id>80</id>
<name>tmp_92_mid2</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>66</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>66</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>1181</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_61">
<Value>
<Obj>
<type>0</type>
<id>81</id>
<name>y_offset_cast_mid</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>48</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>48</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1182</item>
<item>1183</item>
<item>1184</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_62">
<Value>
<Obj>
<type>0</type>
<id>82</id>
<name>p_shl3_mid</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>64</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>64</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1185</item>
<item>1186</item>
<item>1187</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_63">
<Value>
<Obj>
<type>0</type>
<id>83</id>
<name>tmp_83</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>37</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>37</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>1188</item>
<item>1189</item>
<item>1190</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_64">
<Value>
<Obj>
<type>0</type>
<id>84</id>
<name>rev</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>37</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>37</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>1191</item>
<item>1193</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_65">
<Value>
<Obj>
<type>0</type>
<id>85</id>
<name>tmp_94_mid</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>37</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>37</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>1194</item>
<item>1195</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_66">
<Value>
<Obj>
<type>0</type>
<id>86</id>
<name>y_2_dup</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>1196</item>
<item>1197</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_67">
<Value>
<Obj>
<type>0</type>
<id>88</id>
<name>x_mid2</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>37</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>37</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1198</item>
<item>1199</item>
<item>1200</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_68">
<Value>
<Obj>
<type>0</type>
<id>89</id>
<name>tmp_84</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>48</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>48</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>1201</item>
<item>1202</item>
<item>1203</item>
<item>1204</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_69">
<Value>
<Obj>
<type>0</type>
<id>90</id>
<name>y_offset_cast_mid2</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>48</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>48</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1205</item>
<item>1206</item>
<item>1207</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_70">
<Value>
<Obj>
<type>0</type>
<id>91</id>
<name>y_offset_cast_mid2_c</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>48</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>48</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>1208</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_71">
<Value>
<Obj>
<type>0</type>
<id>92</id>
<name>tmp_85</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1209</item>
<item>1210</item>
<item>1211</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_72">
<Value>
<Obj>
<type>0</type>
<id>93</id>
<name>p_shl3_mid1</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>64</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>64</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1212</item>
<item>1213</item>
<item>1214</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_73">
<Value>
<Obj>
<type>0</type>
<id>94</id>
<name>p_shl3_mid2</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>64</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>64</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1215</item>
<item>1216</item>
<item>1217</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_74">
<Value>
<Obj>
<type>0</type>
<id>95</id>
<name>y_mid2</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>37</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>37</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1218</item>
<item>1219</item>
<item>1220</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_75">
<Value>
<Obj>
<type>0</type>
<id>96</id>
<name>x_cast</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>37</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>37</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>1221</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_76">
<Value>
<Obj>
<type>0</type>
<id>99</id>
<name>tmp_89</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>1222</item>
<item>1223</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_77">
<Value>
<Obj>
<type>0</type>
<id>100</id>
<name>tmp_90</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>1224</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_78">
<Value>
<Obj>
<type>0</type>
<id>101</id>
<name>image_buffer_1_addr</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1225</item>
<item>1226</item>
<item>1227</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_79">
<Value>
<Obj>
<type>0</type>
<id>102</id>
<name>image_buffer_2_addr</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1228</item>
<item>1229</item>
<item>1230</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_80">
<Value>
<Obj>
<type>0</type>
<id>103</id>
<name>image_buffer_3_addr</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1231</item>
<item>1232</item>
<item>1233</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_81">
<Value>
<Obj>
<type>0</type>
<id>104</id>
<name>image_buffer_4_addr</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1234</item>
<item>1235</item>
<item>1236</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_82">
<Value>
<Obj>
<type>0</type>
<id>105</id>
<name>image_buffer_5_addr</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1237</item>
<item>1238</item>
<item>1239</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_83">
<Value>
<Obj>
<type>0</type>
<id>106</id>
<name>image_buffer_6_addr</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1240</item>
<item>1241</item>
<item>1242</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_84">
<Value>
<Obj>
<type>0</type>
<id>107</id>
<name>image_buffer_7_addr</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1243</item>
<item>1244</item>
<item>1245</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_85">
<Value>
<Obj>
<type>0</type>
<id>108</id>
<name>image_buffer_8_addr</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1246</item>
<item>1247</item>
<item>1248</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_86">
<Value>
<Obj>
<type>0</type>
<id>109</id>
<name>image_buffer_9_addr</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1249</item>
<item>1250</item>
<item>1251</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_87">
<Value>
<Obj>
<type>0</type>
<id>110</id>
<name>image_buffer_10_add_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1252</item>
<item>1253</item>
<item>1254</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_88">
<Value>
<Obj>
<type>0</type>
<id>111</id>
<name>image_buffer_11_add_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1255</item>
<item>1256</item>
<item>1257</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_89">
<Value>
<Obj>
<type>0</type>
<id>112</id>
<name>image_buffer_12_add_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1258</item>
<item>1259</item>
<item>1260</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_90">
<Value>
<Obj>
<type>0</type>
<id>113</id>
<name>image_buffer_13_add_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1261</item>
<item>1262</item>
<item>1263</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_91">
<Value>
<Obj>
<type>0</type>
<id>114</id>
<name>image_buffer_14_add_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1264</item>
<item>1265</item>
<item>1266</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_92">
<Value>
<Obj>
<type>0</type>
<id>115</id>
<name>image_buffer_15_add_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1267</item>
<item>1268</item>
<item>1269</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_93">
<Value>
<Obj>
<type>0</type>
<id>116</id>
<name>image_buffer_16_add_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1270</item>
<item>1271</item>
<item>1272</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_94">
<Value>
<Obj>
<type>0</type>
<id>117</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>32</count>
<item_version>0</item_version>
<item>1273</item>
<item>1274</item>
<item>1275</item>
<item>1276</item>
<item>1277</item>
<item>1278</item>
<item>1279</item>
<item>1280</item>
<item>1281</item>
<item>1282</item>
<item>1283</item>
<item>1284</item>
<item>1285</item>
<item>1286</item>
<item>1287</item>
<item>1288</item>
<item>1289</item>
<item>1290</item>
<item>1291</item>
<item>1292</item>
<item>1293</item>
<item>1294</item>
<item>1295</item>
<item>1296</item>
<item>1297</item>
<item>1298</item>
<item>1299</item>
<item>1300</item>
<item>1301</item>
<item>1302</item>
<item>1303</item>
<item>1304</item>
</oprand_edges>
<opcode>switch</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_95">
<Value>
<Obj>
<type>0</type>
<id>119</id>
<name>image_buffer_15_loa_6</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1429</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_96">
<Value>
<Obj>
<type>0</type>
<id>120</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1430</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_97">
<Value>
<Obj>
<type>0</type>
<id>122</id>
<name>image_buffer_14_loa_6</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1427</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_98">
<Value>
<Obj>
<type>0</type>
<id>123</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1428</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_99">
<Value>
<Obj>
<type>0</type>
<id>125</id>
<name>image_buffer_13_loa_6</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1425</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_100">
<Value>
<Obj>
<type>0</type>
<id>126</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1426</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_101">
<Value>
<Obj>
<type>0</type>
<id>128</id>
<name>image_buffer_12_loa_6</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1423</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_102">
<Value>
<Obj>
<type>0</type>
<id>129</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>1424</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_103">
<Value>
<Obj>
<type>0</type>
<id>131</id>
<name>image_buffer_11_loa_6</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1421</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_104">
<Value>
<Obj>
<type>0</type>
<id>132</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1422</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_105">
<Value>
<Obj>
<type>0</type>
<id>134</id>
<name>image_buffer_10_loa_6</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1419</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_106">
<Value>
<Obj>
<type>0</type>
<id>135</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1420</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_107">
<Value>
<Obj>
<type>0</type>
<id>137</id>
<name>image_buffer_9_load</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1417</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_108">
<Value>
<Obj>
<type>0</type>
<id>138</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1418</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_109">
<Value>
<Obj>
<type>0</type>
<id>140</id>
<name>image_buffer_8_load</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1415</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_110">
<Value>
<Obj>
<type>0</type>
<id>141</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1416</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_111">
<Value>
<Obj>
<type>0</type>
<id>143</id>
<name>image_buffer_7_load</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1413</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_112">
<Value>
<Obj>
<type>0</type>
<id>144</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1414</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_113">
<Value>
<Obj>
<type>0</type>
<id>146</id>
<name>image_buffer_6_load</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1411</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_114">
<Value>
<Obj>
<type>0</type>
<id>147</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1412</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_115">
<Value>
<Obj>
<type>0</type>
<id>149</id>
<name>image_buffer_5_load</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1409</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_116">
<Value>
<Obj>
<type>0</type>
<id>150</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1410</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_117">
<Value>
<Obj>
<type>0</type>
<id>152</id>
<name>image_buffer_4_load</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1407</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_118">
<Value>
<Obj>
<type>0</type>
<id>153</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1408</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_119">
<Value>
<Obj>
<type>0</type>
<id>155</id>
<name>image_buffer_3_load</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1405</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_120">
<Value>
<Obj>
<type>0</type>
<id>156</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1406</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_121">
<Value>
<Obj>
<type>0</type>
<id>158</id>
<name>image_buffer_2_load</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1403</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_122">
<Value>
<Obj>
<type>0</type>
<id>159</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1404</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_123">
<Value>
<Obj>
<type>0</type>
<id>161</id>
<name>image_buffer_1_load</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1401</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_124">
<Value>
<Obj>
<type>0</type>
<id>162</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1402</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_125">
<Value>
<Obj>
<type>0</type>
<id>164</id>
<name>image_buffer_16_loa_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1431</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_126">
<Value>
<Obj>
<type>0</type>
<id>165</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1432</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_127">
<Value>
<Obj>
<type>0</type>
<id>167</id>
<name>image_buffer_load_ph</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>32</count>
<item_version>0</item_version>
<item>572</item>
<item>573</item>
<item>574</item>
<item>575</item>
<item>576</item>
<item>577</item>
<item>578</item>
<item>579</item>
<item>580</item>
<item>581</item>
<item>582</item>
<item>583</item>
<item>584</item>
<item>585</item>
<item>586</item>
<item>587</item>
<item>588</item>
<item>589</item>
<item>590</item>
<item>591</item>
<item>592</item>
<item>593</item>
<item>594</item>
<item>595</item>
<item>596</item>
<item>597</item>
<item>598</item>
<item>599</item>
<item>600</item>
<item>601</item>
<item>602</item>
<item>603</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_128">
<Value>
<Obj>
<type>0</type>
<id>168</id>
<name>tmp_111_cast</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>604</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_129">
<Value>
<Obj>
<type>0</type>
<id>169</id>
<name>tmp_91</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>605</item>
<item>606</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_130">
<Value>
<Obj>
<type>0</type>
<id>170</id>
<name>tmp_92</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>607</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_131">
<Value>
<Obj>
<type>0</type>
<id>171</id>
<name>image_buffer_1_addr_3</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>608</item>
<item>609</item>
<item>610</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_132">
<Value>
<Obj>
<type>0</type>
<id>172</id>
<name>image_buffer_2_addr_3</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>611</item>
<item>612</item>
<item>613</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_133">
<Value>
<Obj>
<type>0</type>
<id>173</id>
<name>image_buffer_3_addr_3</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>614</item>
<item>615</item>
<item>616</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_134">
<Value>
<Obj>
<type>0</type>
<id>174</id>
<name>image_buffer_4_addr_3</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>617</item>
<item>618</item>
<item>619</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_135">
<Value>
<Obj>
<type>0</type>
<id>175</id>
<name>image_buffer_5_addr_3</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>620</item>
<item>621</item>
<item>622</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_136">
<Value>
<Obj>
<type>0</type>
<id>176</id>
<name>image_buffer_6_addr_3</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>623</item>
<item>624</item>
<item>625</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_137">
<Value>
<Obj>
<type>0</type>
<id>177</id>
<name>image_buffer_7_addr_3</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>626</item>
<item>627</item>
<item>628</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_138">
<Value>
<Obj>
<type>0</type>
<id>178</id>
<name>image_buffer_8_addr_3</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>629</item>
<item>630</item>
<item>631</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_139">
<Value>
<Obj>
<type>0</type>
<id>179</id>
<name>image_buffer_9_addr_3</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>632</item>
<item>633</item>
<item>634</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_140">
<Value>
<Obj>
<type>0</type>
<id>180</id>
<name>image_buffer_10_add</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>635</item>
<item>636</item>
<item>637</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_141">
<Value>
<Obj>
<type>0</type>
<id>181</id>
<name>image_buffer_11_add</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>638</item>
<item>639</item>
<item>640</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_142">
<Value>
<Obj>
<type>0</type>
<id>182</id>
<name>image_buffer_12_add</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>641</item>
<item>642</item>
<item>643</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_143">
<Value>
<Obj>
<type>0</type>
<id>183</id>
<name>image_buffer_13_add</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>644</item>
<item>645</item>
<item>646</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_144">
<Value>
<Obj>
<type>0</type>
<id>184</id>
<name>image_buffer_14_add</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>647</item>
<item>648</item>
<item>649</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_145">
<Value>
<Obj>
<type>0</type>
<id>185</id>
<name>image_buffer_15_add</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>650</item>
<item>651</item>
<item>652</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_146">
<Value>
<Obj>
<type>0</type>
<id>186</id>
<name>image_buffer_16_add</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>653</item>
<item>654</item>
<item>655</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_147">
<Value>
<Obj>
<type>0</type>
<id>187</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>32</count>
<item_version>0</item_version>
<item>656</item>
<item>657</item>
<item>658</item>
<item>659</item>
<item>661</item>
<item>662</item>
<item>664</item>
<item>665</item>
<item>667</item>
<item>668</item>
<item>670</item>
<item>671</item>
<item>673</item>
<item>674</item>
<item>676</item>
<item>677</item>
<item>679</item>
<item>680</item>
<item>682</item>
<item>683</item>
<item>685</item>
<item>686</item>
<item>688</item>
<item>689</item>
<item>691</item>
<item>692</item>
<item>694</item>
<item>695</item>
<item>697</item>
<item>698</item>
<item>700</item>
<item>701</item>
</oprand_edges>
<opcode>switch</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_148">
<Value>
<Obj>
<type>0</type>
<id>189</id>
<name>image_buffer_15_loa_5</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1397</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_149">
<Value>
<Obj>
<type>0</type>
<id>190</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1398</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_150">
<Value>
<Obj>
<type>0</type>
<id>192</id>
<name>image_buffer_14_loa_5</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1395</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_151">
<Value>
<Obj>
<type>0</type>
<id>193</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1396</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_152">
<Value>
<Obj>
<type>0</type>
<id>195</id>
<name>image_buffer_13_loa_5</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1393</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_153">
<Value>
<Obj>
<type>0</type>
<id>196</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1394</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_154">
<Value>
<Obj>
<type>0</type>
<id>198</id>
<name>image_buffer_12_loa_5</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1391</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_155">
<Value>
<Obj>
<type>0</type>
<id>199</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1392</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_156">
<Value>
<Obj>
<type>0</type>
<id>201</id>
<name>image_buffer_11_loa_5</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1389</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_157">
<Value>
<Obj>
<type>0</type>
<id>202</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1390</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_158">
<Value>
<Obj>
<type>0</type>
<id>204</id>
<name>image_buffer_10_loa_5</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1387</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_159">
<Value>
<Obj>
<type>0</type>
<id>205</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1388</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_160">
<Value>
<Obj>
<type>0</type>
<id>207</id>
<name>image_buffer_9_load_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1385</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_161">
<Value>
<Obj>
<type>0</type>
<id>208</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1386</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_162">
<Value>
<Obj>
<type>0</type>
<id>210</id>
<name>image_buffer_8_load_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1383</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_163">
<Value>
<Obj>
<type>0</type>
<id>211</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1384</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_164">
<Value>
<Obj>
<type>0</type>
<id>213</id>
<name>image_buffer_7_load_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1381</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_165">
<Value>
<Obj>
<type>0</type>
<id>214</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1382</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_166">
<Value>
<Obj>
<type>0</type>
<id>216</id>
<name>image_buffer_6_load_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1379</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_167">
<Value>
<Obj>
<type>0</type>
<id>217</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1380</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_168">
<Value>
<Obj>
<type>0</type>
<id>219</id>
<name>image_buffer_5_load_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1377</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_169">
<Value>
<Obj>
<type>0</type>
<id>220</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1378</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_170">
<Value>
<Obj>
<type>0</type>
<id>222</id>
<name>image_buffer_4_load_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1375</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_171">
<Value>
<Obj>
<type>0</type>
<id>223</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1376</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_172">
<Value>
<Obj>
<type>0</type>
<id>225</id>
<name>image_buffer_3_load_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1373</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_173">
<Value>
<Obj>
<type>0</type>
<id>226</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1374</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_174">
<Value>
<Obj>
<type>0</type>
<id>228</id>
<name>image_buffer_2_load_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1371</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_175">
<Value>
<Obj>
<type>0</type>
<id>229</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1372</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_176">
<Value>
<Obj>
<type>0</type>
<id>231</id>
<name>image_buffer_1_load_3</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1369</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_177">
<Value>
<Obj>
<type>0</type>
<id>232</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1370</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_178">
<Value>
<Obj>
<type>0</type>
<id>234</id>
<name>image_buffer_16_loa_3</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1399</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_179">
<Value>
<Obj>
<type>0</type>
<id>235</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1400</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_180">
<Value>
<Obj>
<type>0</type>
<id>237</id>
<name>image_buffer_load_4_s</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>32</count>
<item_version>0</item_version>
<item>702</item>
<item>703</item>
<item>704</item>
<item>705</item>
<item>706</item>
<item>707</item>
<item>708</item>
<item>709</item>
<item>710</item>
<item>711</item>
<item>712</item>
<item>713</item>
<item>714</item>
<item>715</item>
<item>716</item>
<item>717</item>
<item>718</item>
<item>719</item>
<item>720</item>
<item>721</item>
<item>722</item>
<item>723</item>
<item>724</item>
<item>725</item>
<item>726</item>
<item>727</item>
<item>728</item>
<item>729</item>
<item>730</item>
<item>731</item>
<item>732</item>
<item>733</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_181">
<Value>
<Obj>
<type>0</type>
<id>238</id>
<name>tmp_114_cast</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>734</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_182">
<Value>
<Obj>
<type>0</type>
<id>239</id>
<name>Gx</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>Gx</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>735</item>
<item>736</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_183">
<Value>
<Obj>
<type>0</type>
<id>240</id>
<name>tmp_86</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>737</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_184">
<Value>
<Obj>
<type>0</type>
<id>241</id>
<name>Gx_cast</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>738</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_185">
<Value>
<Obj>
<type>0</type>
<id>242</id>
<name>tmp_93</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>739</item>
<item>740</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_186">
<Value>
<Obj>
<type>0</type>
<id>243</id>
<name>tmp_94</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>741</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_187">
<Value>
<Obj>
<type>0</type>
<id>244</id>
<name>image_buffer_2_addr_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>742</item>
<item>743</item>
<item>744</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_188">
<Value>
<Obj>
<type>0</type>
<id>245</id>
<name>image_buffer_3_addr_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>745</item>
<item>746</item>
<item>747</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_189">
<Value>
<Obj>
<type>0</type>
<id>246</id>
<name>image_buffer_4_addr_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>748</item>
<item>749</item>
<item>750</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_190">
<Value>
<Obj>
<type>0</type>
<id>247</id>
<name>image_buffer_5_addr_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>751</item>
<item>752</item>
<item>753</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_191">
<Value>
<Obj>
<type>0</type>
<id>248</id>
<name>image_buffer_6_addr_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>754</item>
<item>755</item>
<item>756</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_192">
<Value>
<Obj>
<type>0</type>
<id>249</id>
<name>image_buffer_7_addr_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>757</item>
<item>758</item>
<item>759</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_193">
<Value>
<Obj>
<type>0</type>
<id>250</id>
<name>image_buffer_8_addr_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>760</item>
<item>761</item>
<item>762</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_194">
<Value>
<Obj>
<type>0</type>
<id>251</id>
<name>image_buffer_9_addr_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>763</item>
<item>764</item>
<item>765</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_195">
<Value>
<Obj>
<type>0</type>
<id>252</id>
<name>image_buffer_10_add_3</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>766</item>
<item>767</item>
<item>768</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_196">
<Value>
<Obj>
<type>0</type>
<id>253</id>
<name>image_buffer_11_add_3</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>769</item>
<item>770</item>
<item>771</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_197">
<Value>
<Obj>
<type>0</type>
<id>254</id>
<name>image_buffer_12_add_3</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>772</item>
<item>773</item>
<item>774</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_198">
<Value>
<Obj>
<type>0</type>
<id>255</id>
<name>image_buffer_13_add_3</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>775</item>
<item>776</item>
<item>777</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_199">
<Value>
<Obj>
<type>0</type>
<id>256</id>
<name>image_buffer_14_add_3</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>778</item>
<item>779</item>
<item>780</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_200">
<Value>
<Obj>
<type>0</type>
<id>257</id>
<name>image_buffer_15_add_3</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>781</item>
<item>782</item>
<item>783</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_201">
<Value>
<Obj>
<type>0</type>
<id>258</id>
<name>image_buffer_16_add_3</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>784</item>
<item>785</item>
<item>786</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_202">
<Value>
<Obj>
<type>0</type>
<id>259</id>
<name>image_buffer_17_add</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>787</item>
<item>788</item>
<item>789</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_203">
<Value>
<Obj>
<type>0</type>
<id>260</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>32</count>
<item_version>0</item_version>
<item>790</item>
<item>791</item>
<item>792</item>
<item>793</item>
<item>794</item>
<item>795</item>
<item>796</item>
<item>797</item>
<item>798</item>
<item>799</item>
<item>800</item>
<item>801</item>
<item>802</item>
<item>803</item>
<item>804</item>
<item>805</item>
<item>806</item>
<item>807</item>
<item>808</item>
<item>809</item>
<item>810</item>
<item>811</item>
<item>812</item>
<item>813</item>
<item>814</item>
<item>815</item>
<item>816</item>
<item>817</item>
<item>818</item>
<item>819</item>
<item>820</item>
<item>821</item>
</oprand_edges>
<opcode>switch</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_204">
<Value>
<Obj>
<type>0</type>
<id>262</id>
<name>image_buffer_16_loa</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1365</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_205">
<Value>
<Obj>
<type>0</type>
<id>263</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1366</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_206">
<Value>
<Obj>
<type>0</type>
<id>265</id>
<name>image_buffer_15_loa_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1363</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_207">
<Value>
<Obj>
<type>0</type>
<id>266</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1364</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_208">
<Value>
<Obj>
<type>0</type>
<id>268</id>
<name>image_buffer_14_loa_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1361</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_209">
<Value>
<Obj>
<type>0</type>
<id>269</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1362</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_210">
<Value>
<Obj>
<type>0</type>
<id>271</id>
<name>image_buffer_13_loa_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1359</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_211">
<Value>
<Obj>
<type>0</type>
<id>272</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1360</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_212">
<Value>
<Obj>
<type>0</type>
<id>274</id>
<name>image_buffer_12_loa_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>1357</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_213">
<Value>
<Obj>
<type>0</type>
<id>275</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1358</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_214">
<Value>
<Obj>
<type>0</type>
<id>277</id>
<name>image_buffer_11_loa_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1355</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_215">
<Value>
<Obj>
<type>0</type>
<id>278</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1356</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_216">
<Value>
<Obj>
<type>0</type>
<id>280</id>
<name>image_buffer_10_loa_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1353</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_217">
<Value>
<Obj>
<type>0</type>
<id>281</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1354</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_218">
<Value>
<Obj>
<type>0</type>
<id>283</id>
<name>image_buffer_9_load_5</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1351</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_219">
<Value>
<Obj>
<type>0</type>
<id>284</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1352</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_220">
<Value>
<Obj>
<type>0</type>
<id>286</id>
<name>image_buffer_8_load_5</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1349</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_221">
<Value>
<Obj>
<type>0</type>
<id>287</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1350</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_222">
<Value>
<Obj>
<type>0</type>
<id>289</id>
<name>image_buffer_7_load_5</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1347</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_223">
<Value>
<Obj>
<type>0</type>
<id>290</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1348</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_224">
<Value>
<Obj>
<type>0</type>
<id>292</id>
<name>image_buffer_6_load_5</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1345</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_225">
<Value>
<Obj>
<type>0</type>
<id>293</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1346</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_226">
<Value>
<Obj>
<type>0</type>
<id>295</id>
<name>image_buffer_5_load_5</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1343</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_227">
<Value>
<Obj>
<type>0</type>
<id>296</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1344</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_228">
<Value>
<Obj>
<type>0</type>
<id>298</id>
<name>image_buffer_4_load_5</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1341</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_229">
<Value>
<Obj>
<type>0</type>
<id>299</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1342</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_230">
<Value>
<Obj>
<type>0</type>
<id>301</id>
<name>image_buffer_3_load_5</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1339</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_231">
<Value>
<Obj>
<type>0</type>
<id>302</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1340</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_232">
<Value>
<Obj>
<type>0</type>
<id>304</id>
<name>image_buffer_2_load_5</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1337</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_233">
<Value>
<Obj>
<type>0</type>
<id>305</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1338</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_234">
<Value>
<Obj>
<type>0</type>
<id>307</id>
<name>image_buffer_17_loa</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1367</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_235">
<Value>
<Obj>
<type>0</type>
<id>308</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1368</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_236">
<Value>
<Obj>
<type>0</type>
<id>310</id>
<name>image_buffer_load_5_s</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>32</count>
<item_version>0</item_version>
<item>822</item>
<item>823</item>
<item>824</item>
<item>825</item>
<item>826</item>
<item>827</item>
<item>828</item>
<item>829</item>
<item>830</item>
<item>831</item>
<item>832</item>
<item>833</item>
<item>834</item>
<item>835</item>
<item>836</item>
<item>837</item>
<item>838</item>
<item>839</item>
<item>840</item>
<item>841</item>
<item>842</item>
<item>843</item>
<item>844</item>
<item>845</item>
<item>846</item>
<item>847</item>
<item>848</item>
<item>849</item>
<item>850</item>
<item>851</item>
<item>852</item>
<item>853</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_237">
<Value>
<Obj>
<type>0</type>
<id>311</id>
<name>tmp_117_cast</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>854</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_238">
<Value>
<Obj>
<type>0</type>
<id>312</id>
<name>image_buffer_0_addr</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>855</item>
<item>856</item>
<item>857</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_239">
<Value>
<Obj>
<type>0</type>
<id>313</id>
<name>image_buffer_1_addr_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>858</item>
<item>859</item>
<item>860</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_240">
<Value>
<Obj>
<type>0</type>
<id>314</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>32</count>
<item_version>0</item_version>
<item>861</item>
<item>862</item>
<item>863</item>
<item>864</item>
<item>865</item>
<item>866</item>
<item>867</item>
<item>868</item>
<item>869</item>
<item>870</item>
<item>871</item>
<item>872</item>
<item>873</item>
<item>874</item>
<item>875</item>
<item>876</item>
<item>877</item>
<item>878</item>
<item>879</item>
<item>880</item>
<item>881</item>
<item>882</item>
<item>883</item>
<item>884</item>
<item>885</item>
<item>886</item>
<item>887</item>
<item>888</item>
<item>889</item>
<item>890</item>
<item>891</item>
<item>892</item>
</oprand_edges>
<opcode>switch</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_241">
<Value>
<Obj>
<type>0</type>
<id>316</id>
<name>image_buffer_14_loa</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>1333</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_242">
<Value>
<Obj>
<type>0</type>
<id>317</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1334</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_243">
<Value>
<Obj>
<type>0</type>
<id>319</id>
<name>image_buffer_13_loa</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1331</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_244">
<Value>
<Obj>
<type>0</type>
<id>320</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1332</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_245">
<Value>
<Obj>
<type>0</type>
<id>322</id>
<name>image_buffer_12_loa</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1329</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_246">
<Value>
<Obj>
<type>0</type>
<id>323</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1330</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_247">
<Value>
<Obj>
<type>0</type>
<id>325</id>
<name>image_buffer_11_loa</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1327</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_248">
<Value>
<Obj>
<type>0</type>
<id>326</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1328</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_249">
<Value>
<Obj>
<type>0</type>
<id>328</id>
<name>image_buffer_10_loa</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1325</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_250">
<Value>
<Obj>
<type>0</type>
<id>329</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1326</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_251">
<Value>
<Obj>
<type>0</type>
<id>331</id>
<name>image_buffer_9_load_6</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1323</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_252">
<Value>
<Obj>
<type>0</type>
<id>332</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1324</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_253">
<Value>
<Obj>
<type>0</type>
<id>334</id>
<name>image_buffer_8_load_6</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1321</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_254">
<Value>
<Obj>
<type>0</type>
<id>335</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1322</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_255">
<Value>
<Obj>
<type>0</type>
<id>337</id>
<name>image_buffer_7_load_6</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1319</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_256">
<Value>
<Obj>
<type>0</type>
<id>338</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1320</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_257">
<Value>
<Obj>
<type>0</type>
<id>340</id>
<name>image_buffer_6_load_6</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1317</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_258">
<Value>
<Obj>
<type>0</type>
<id>341</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1318</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_259">
<Value>
<Obj>
<type>0</type>
<id>343</id>
<name>image_buffer_5_load_6</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1315</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_260">
<Value>
<Obj>
<type>0</type>
<id>344</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1316</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_261">
<Value>
<Obj>
<type>0</type>
<id>346</id>
<name>image_buffer_4_load_6</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1313</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_262">
<Value>
<Obj>
<type>0</type>
<id>347</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1314</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_263">
<Value>
<Obj>
<type>0</type>
<id>349</id>
<name>image_buffer_3_load_6</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1311</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_264">
<Value>
<Obj>
<type>0</type>
<id>350</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1312</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_265">
<Value>
<Obj>
<type>0</type>
<id>352</id>
<name>image_buffer_2_load_6</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>1309</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_266">
<Value>
<Obj>
<type>0</type>
<id>353</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1310</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_267">
<Value>
<Obj>
<type>0</type>
<id>355</id>
<name>image_buffer_1_load_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1307</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_268">
<Value>
<Obj>
<type>0</type>
<id>356</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1308</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_269">
<Value>
<Obj>
<type>0</type>
<id>358</id>
<name>image_buffer_0_load</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1305</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_270">
<Value>
<Obj>
<type>0</type>
<id>359</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1306</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_271">
<Value>
<Obj>
<type>0</type>
<id>361</id>
<name>image_buffer_15_loa</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1335</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_272">
<Value>
<Obj>
<type>0</type>
<id>362</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1336</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_273">
<Value>
<Obj>
<type>0</type>
<id>364</id>
<name>image_buffer_load_6_s</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>32</count>
<item_version>0</item_version>
<item>893</item>
<item>894</item>
<item>895</item>
<item>896</item>
<item>897</item>
<item>898</item>
<item>899</item>
<item>900</item>
<item>901</item>
<item>902</item>
<item>903</item>
<item>904</item>
<item>905</item>
<item>906</item>
<item>907</item>
<item>908</item>
<item>909</item>
<item>910</item>
<item>911</item>
<item>912</item>
<item>913</item>
<item>914</item>
<item>915</item>
<item>916</item>
<item>917</item>
<item>918</item>
<item>919</item>
<item>920</item>
<item>921</item>
<item>922</item>
<item>923</item>
<item>924</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_274">
<Value>
<Obj>
<type>0</type>
<id>365</id>
<name>tmp_118_cast</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>925</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_275">
<Value>
<Obj>
<type>0</type>
<id>366</id>
<name>Gy</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>Gy</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>926</item>
<item>927</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_276">
<Value>
<Obj>
<type>0</type>
<id>367</id>
<name>tmp_95</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>928</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_277">
<Value>
<Obj>
<type>0</type>
<id>368</id>
<name>Gy_cast</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>929</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_278">
<Value>
<Obj>
<type>0</type>
<id>369</id>
<name>tmp_96</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>45</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>930</item>
<item>931</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_279">
<Value>
<Obj>
<type>0</type>
<id>370</id>
<name>neg</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>45</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>933</item>
<item>934</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_280">
<Value>
<Obj>
<type>0</type>
<id>371</id>
<name>abscond</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>45</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>935</item>
<item>936</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_281">
<Value>
<Obj>
<type>0</type>
<id>372</id>
<name>mag</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>45</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>mag</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>937</item>
<item>938</item>
<item>939</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_282">
<Value>
<Obj>
<type>0</type>
<id>373</id>
<name>mag_cast</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>45</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>940</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_283">
<Value>
<Obj>
<type>0</type>
<id>374</id>
<name>tmp_97</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>51</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>941</item>
<item>942</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_284">
<Value>
<Obj>
<type>0</type>
<id>375</id>
<name>tmp_98</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>51</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>51</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>944</item>
<item>945</item>
<item>947</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_285">
<Value>
<Obj>
<type>0</type>
<id>376</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>51</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>948</item>
<item>949</item>
<item>950</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_286">
<Value>
<Obj>
<type>0</type>
<id>378</id>
<name>tmp_99</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>51</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>951</item>
<item>952</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_287">
<Value>
<Obj>
<type>0</type>
<id>379</id>
<name>tmp_100</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>51</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>953</item>
<item>954</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_288">
<Value>
<Obj>
<type>0</type>
<id>380</id>
<name>or_cond</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>51</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>955</item>
<item>956</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_289">
<Value>
<Obj>
<type>0</type>
<id>381</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>51</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>957</item>
<item>958</item>
<item>959</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_290">
<Value>
<Obj>
<type>0</type>
<id>383</id>
<name>neg7_cast</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>1018</item>
<item>1019</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_291">
<Value>
<Obj>
<type>0</type>
<id>384</id>
<name>abscond7</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1020</item>
<item>1021</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_292">
<Value>
<Obj>
<type>0</type>
<id>385</id>
<name>abs5</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>1022</item>
<item>1023</item>
<item>1024</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_293">
<Value>
<Obj>
<type>0</type>
<id>386</id>
<name>abs5_cast7_cast</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>1025</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_294">
<Value>
<Obj>
<type>0</type>
<id>387</id>
<name>abs5_cast6_cast</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>1026</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_295">
<Value>
<Obj>
<type>0</type>
<id>388</id>
<name>neg8_cast</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>1027</item>
<item>1028</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_296">
<Value>
<Obj>
<type>0</type>
<id>389</id>
<name>abscond8</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1029</item>
<item>1030</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_297">
<Value>
<Obj>
<type>0</type>
<id>390</id>
<name>abs6</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>1031</item>
<item>1032</item>
<item>1033</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_298">
<Value>
<Obj>
<type>0</type>
<id>391</id>
<name>tmp_103</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>58</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>58</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>1034</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_299">
<Value>
<Obj>
<type>0</type>
<id>392</id>
<name>lut0_addr_1</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>58</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>58</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>1035</item>
<item>1036</item>
<item>1037</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_300">
<Value>
<Obj>
<type>0</type>
<id>393</id>
<name>lut0_load_1</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>58</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>58</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>1038</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_301">
<Value>
<Obj>
<type>0</type>
<id>394</id>
<name>lut0_load_1_cast_cas</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>58</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>58</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>1039</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_302">
<Value>
<Obj>
<type>0</type>
<id>395</id>
<name>tmp_104</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>58</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>58</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>1040</item>
<item>1041</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_303">
<Value>
<Obj>
<type>0</type>
<id>396</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>58</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>58</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>1042</item>
<item>1043</item>
<item>1044</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_304">
<Value>
<Obj>
<type>0</type>
<id>398</id>
<name>lut1_addr_1</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>59</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>59</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>1045</item>
<item>1046</item>
<item>1047</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_305">
<Value>
<Obj>
<type>0</type>
<id>399</id>
<name>lut1_load_1</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>59</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>59</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>1048</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_306">
<Value>
<Obj>
<type>0</type>
<id>400</id>
<name>tmp_106</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>59</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>59</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>1049</item>
<item>1050</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_307">
<Value>
<Obj>
<type>0</type>
<id>401</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>59</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>59</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>1051</item>
<item>1052</item>
<item>1053</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_308">
<Value>
<Obj>
<type>0</type>
<id>403</id>
<name>lut2_addr_1</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>60</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>1054</item>
<item>1055</item>
<item>1056</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_309">
<Value>
<Obj>
<type>0</type>
<id>404</id>
<name>lut2_load_1</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>1057</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_310">
<Value>
<Obj>
<type>0</type>
<id>405</id>
<name>tmp_108</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>1058</item>
<item>1059</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_311">
<Value>
<Obj>
<type>0</type>
<id>406</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1060</item>
<item>1061</item>
<item>1062</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_312">
<Value>
<Obj>
<type>0</type>
<id>408</id>
<name>lut3_addr_1</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>61</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>1063</item>
<item>1064</item>
<item>1065</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_313">
<Value>
<Obj>
<type>0</type>
<id>409</id>
<name>lut3_load_1</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>61</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>1066</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_314">
<Value>
<Obj>
<type>0</type>
<id>410</id>
<name>tmp_110</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>61</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>1067</item>
<item>1068</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_315">
<Value>
<Obj>
<type>0</type>
<id>411</id>
<name>bin_index_4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>61</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1069</item>
<item>1071</item>
<item>1073</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_316">
<Value>
<Obj>
<type>0</type>
<id>412</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>1074</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_317">
<Value>
<Obj>
<type>0</type>
<id>414</id>
<name>neg5_cast</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>961</item>
<item>962</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_318">
<Value>
<Obj>
<type>0</type>
<id>415</id>
<name>abscond5</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>963</item>
<item>964</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_319">
<Value>
<Obj>
<type>0</type>
<id>416</id>
<name>abs</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</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>965</item>
<item>966</item>
<item>967</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_320">
<Value>
<Obj>
<type>0</type>
<id>417</id>
<name>abs_cast9_cast</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>968</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_321">
<Value>
<Obj>
<type>0</type>
<id>418</id>
<name>abs_cast8_cast</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>969</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_322">
<Value>
<Obj>
<type>0</type>
<id>419</id>
<name>neg6_cast</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>970</item>
<item>971</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_323">
<Value>
<Obj>
<type>0</type>
<id>420</id>
<name>abscond6</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>972</item>
<item>973</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_324">
<Value>
<Obj>
<type>0</type>
<id>421</id>
<name>abs4</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>41</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>974</item>
<item>975</item>
<item>976</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_325">
<Value>
<Obj>
<type>0</type>
<id>422</id>
<name>tmp_101</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>52</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>52</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>977</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_326">
<Value>
<Obj>
<type>0</type>
<id>423</id>
<name>lut0_addr</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>52</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>52</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>978</item>
<item>979</item>
<item>980</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_327">
<Value>
<Obj>
<type>0</type>
<id>424</id>
<name>lut0_load</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>52</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>52</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>981</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_328">
<Value>
<Obj>
<type>0</type>
<id>425</id>
<name>lut0_load_cast_cast</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>52</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>52</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>982</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_329">
<Value>
<Obj>
<type>0</type>
<id>426</id>
<name>tmp_102</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>52</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>52</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>983</item>
<item>984</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_330">
<Value>
<Obj>
<type>0</type>
<id>427</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>52</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>52</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>985</item>
<item>986</item>
<item>987</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_331">
<Value>
<Obj>
<type>0</type>
<id>429</id>
<name>lut1_addr</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>53</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>988</item>
<item>989</item>
<item>990</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_332">
<Value>
<Obj>
<type>0</type>
<id>430</id>
<name>lut1_load</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>53</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>991</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_333">
<Value>
<Obj>
<type>0</type>
<id>431</id>
<name>tmp_105</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>53</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>992</item>
<item>993</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_334">
<Value>
<Obj>
<type>0</type>
<id>432</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>53</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>994</item>
<item>995</item>
<item>996</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_335">
<Value>
<Obj>
<type>0</type>
<id>434</id>
<name>lut2_addr</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>54</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>54</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>997</item>
<item>998</item>
<item>999</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_336">
<Value>
<Obj>
<type>0</type>
<id>435</id>
<name>lut2_load</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>54</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>54</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>1000</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_337">
<Value>
<Obj>
<type>0</type>
<id>436</id>
<name>tmp_107</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>54</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>54</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>1001</item>
<item>1002</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_338">
<Value>
<Obj>
<type>0</type>
<id>437</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>54</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>54</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>1003</item>
<item>1004</item>
<item>1005</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_339">
<Value>
<Obj>
<type>0</type>
<id>439</id>
<name>lut3_addr</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>55</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>1006</item>
<item>1007</item>
<item>1008</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_340">
<Value>
<Obj>
<type>0</type>
<id>440</id>
<name>lut3_load</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>1009</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_341">
<Value>
<Obj>
<type>0</type>
<id>441</id>
<name>tmp_109</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>55</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>1010</item>
<item>1011</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_342">
<Value>
<Obj>
<type>0</type>
<id>442</id>
<name>bin_index_cast_cast</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1012</item>
<item>1014</item>
<item>1016</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_343">
<Value>
<Obj>
<type>0</type>
<id>443</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>1017</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_344">
<Value>
<Obj>
<type>0</type>
<id>445</id>
<name>bin_index_8</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>16</count>
<item_version>0</item_version>
<item>1075</item>
<item>1076</item>
<item>1077</item>
<item>1078</item>
<item>1080</item>
<item>1081</item>
<item>1083</item>
<item>1084</item>
<item>1086</item>
<item>1087</item>
<item>1088</item>
<item>1089</item>
<item>1091</item>
<item>1092</item>
<item>1094</item>
<item>1095</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_345">
<Value>
<Obj>
<type>0</type>
<id>446</id>
<name>tmp_111</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>37</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>37</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>1096</item>
<item>1097</item>
<item>1098</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_346">
<Value>
<Obj>
<type>0</type>
<id>447</id>
<name>p_shl5</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>64</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>64</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1100</item>
<item>1101</item>
<item>1103</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_347">
<Value>
<Obj>
<type>0</type>
<id>448</id>
<name>p_shl5_cast</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>64</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>64</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>1104</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_348">
<Value>
<Obj>
<type>0</type>
<id>449</id>
<name>tmp2</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>64</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>64</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>1105</item>
<item>1106</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_349">
<Value>
<Obj>
<type>0</type>
<id>450</id>
<name>tmp_112</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>37</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>37</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>1108</item>
<item>1109</item>
<item>1110</item>
<item>1111</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_350">
<Value>
<Obj>
<type>0</type>
<id>451</id>
<name>tmp1_cast</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>64</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>64</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>1112</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_351">
<Value>
<Obj>
<type>0</type>
<id>452</id>
<name>tmp_113</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>64</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>64</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>1114</item>
<item>1115</item>
<item>1116</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_352">
<Value>
<Obj>
<type>0</type>
<id>453</id>
<name>tmp_114</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>64</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>64</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>1118</item>
<item>1119</item>
<item>1120</item>
<item>1121</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_353">
<Value>
<Obj>
<type>0</type>
<id>454</id>
<name>tmp4_cast</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>64</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>64</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>1122</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_354">
<Value>
<Obj>
<type>0</type>
<id>455</id>
<name>tmp5</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>64</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>64</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>1124</item>
<item>1125</item>
<item>1126</item>
<item>1127</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_355">
<Value>
<Obj>
<type>0</type>
<id>456</id>
<name>tmp5_cast</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>64</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>64</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>1128</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_356">
<Value>
<Obj>
<type>0</type>
<id>457</id>
<name>tmp3</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>64</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>64</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>1129</item>
<item>1130</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_357">
<Value>
<Obj>
<type>0</type>
<id>458</id>
<name>tmp_115</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>64</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>64</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>1131</item>
<item>1132</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_358">
<Value>
<Obj>
<type>0</type>
<id>459</id>
<name>tmp_116</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>64</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>64</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>1133</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_359">
<Value>
<Obj>
<type>0</type>
<id>460</id>
<name>descriptor_V_addr_2</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>64</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>64</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1134</item>
<item>1135</item>
<item>1136</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_360">
<Value>
<Obj>
<type>0</type>
<id>461</id>
<name>descriptor_V_load</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>64</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>64</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>15</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>1137</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_361">
<Value>
<Obj>
<type>0</type>
<id>462</id>
<name>tmp_117</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>64</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>64</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>15</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>1138</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_362">
<Value>
<Obj>
<type>0</type>
<id>463</id>
<name>tmp_118</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>64</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>64</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>15</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>1139</item>
<item>1140</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_363">
<Value>
<Obj>
<type>0</type>
<id>464</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>64</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>64</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>1141</item>
<item>1142</item>
<item>1696</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_364">
<Value>
<Obj>
<type>0</type>
<id>465</id>
<name>sum_addr_2</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>66</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>66</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>1143</item>
<item>1144</item>
<item>1145</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_365">
<Value>
<Obj>
<type>0</type>
<id>466</id>
<name>sum_load</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>66</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>66</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>1146</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_366">
<Value>
<Obj>
<type>0</type>
<id>467</id>
<name>tmp_119</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>66</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>66</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>1147</item>
<item>1148</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_367">
<Value>
<Obj>
<type>0</type>
<id>468</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>66</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>66</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>1149</item>
<item>1150</item>
<item>1695</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_368">
<Value>
<Obj>
<type>0</type>
<id>470</id>
<name>x_2</name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>37</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>37</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>x</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>1151</item>
<item>1152</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_369">
<Value>
<Obj>
<type>0</type>
<id>471</id>
<name>indvar_flatten_op</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>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>1153</item>
<item>1154</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_370">
<Value>
<Obj>
<type>0</type>
<id>472</id>
<name>indvar_flatten_next</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1155</item>
<item>1156</item>
<item>1157</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_371">
<Value>
<Obj>
<type>0</type>
<id>473</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>37</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>37</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>1158</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_372">
<Value>
<Obj>
<type>0</type>
<id>475</id>
<name></name>
<fileName>src/c/hog.cpp</fileName>
<fileDirectory>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</fileDirectory>
<lineNumber>71</lineNumber>
<contextFuncName>computeHistogram0</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/nick/Documents/student_xohw18-222_Nikolaos_Bellas_20180630_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/c/hog.cpp</first>
<second>computeHistogram0</second>
</first>
<second>71</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>0</count>
<item_version>0</item_version>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>45</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_373">
<Value>
<Obj>
<type>2</type>
<id>478</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_374">
<Value>
<Obj>
<type>2</type>
<id>484</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<const_type>0</const_type>
<content>72</content>
</item>
<item class_id_reference="16" object_id="_375">
<Value>
<Obj>
<type>2</type>
<id>487</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_376">
<Value>
<Obj>
<type>2</type>
<id>495</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="_377">
<Value>
<Obj>
<type>2</type>
<id>498</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>15</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_378">
<Value>
<Obj>
<type>2</type>
<id>504</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_379">
<Value>
<Obj>
<type>2</type>
<id>508</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="_380">
<Value>
<Obj>
<type>2</type>
<id>511</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="_381">
<Value>
<Obj>
<type>2</type>
<id>520</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>0</content>
</item>
<item class_id_reference="16" object_id="_382">
<Value>
<Obj>
<type>2</type>
<id>525</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="_383">
<Value>
<Obj>
<type>2</type>
<id>538</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_384">
<Value>
<Obj>
<type>2</type>
<id>550</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>3</content>
</item>
<item class_id_reference="16" object_id="_385">
<Value>
<Obj>
<type>2</type>
<id>552</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>4</content>
</item>
<item class_id_reference="16" object_id="_386">
<Value>
<Obj>
<type>2</type>
<id>561</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_387">
<Value>
<Obj>
<type>2</type>
<id>564</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>256</content>
</item>
<item class_id_reference="16" object_id="_388">
<Value>
<Obj>
<type>2</type>
<id>567</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>1</content>
</item>
<item class_id_reference="16" object_id="_389">
<Value>
<Obj>
<type>2</type>
<id>660</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_390">
<Value>
<Obj>
<type>2</type>
<id>663</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>2</content>
</item>
<item class_id_reference="16" object_id="_391">
<Value>
<Obj>
<type>2</type>
<id>666</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>3</content>
</item>
<item class_id_reference="16" object_id="_392">
<Value>
<Obj>
<type>2</type>
<id>669</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>4</content>
</item>
<item class_id_reference="16" object_id="_393">
<Value>
<Obj>
<type>2</type>
<id>672</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>5</content>
</item>
<item class_id_reference="16" object_id="_394">
<Value>
<Obj>
<type>2</type>
<id>675</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>6</content>
</item>
<item class_id_reference="16" object_id="_395">
<Value>
<Obj>
<type>2</type>
<id>678</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>7</content>
</item>
<item class_id_reference="16" object_id="_396">
<Value>
<Obj>
<type>2</type>
<id>681</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>8</content>
</item>
<item class_id_reference="16" object_id="_397">
<Value>
<Obj>
<type>2</type>
<id>684</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>9</content>
</item>
<item class_id_reference="16" object_id="_398">
<Value>
<Obj>
<type>2</type>
<id>687</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>10</content>
</item>
<item class_id_reference="16" object_id="_399">
<Value>
<Obj>
<type>2</type>
<id>690</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>11</content>
</item>
<item class_id_reference="16" object_id="_400">
<Value>
<Obj>
<type>2</type>
<id>693</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>12</content>
</item>
<item class_id_reference="16" object_id="_401">
<Value>
<Obj>
<type>2</type>
<id>696</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>13</content>
</item>
<item class_id_reference="16" object_id="_402">
<Value>
<Obj>
<type>2</type>
<id>699</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>14</content>
</item>
<item class_id_reference="16" object_id="_403">
<Value>
<Obj>
<type>2</type>
<id>932</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="_404">
<Value>
<Obj>
<type>2</type>
<id>946</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>8</content>
</item>
<item class_id_reference="16" object_id="_405">
<Value>
<Obj>
<type>2</type>
<id>960</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_406">
<Value>
<Obj>
<type>2</type>
<id>1013</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<const_type>0</const_type>
<content>3</content>
</item>
<item class_id_reference="16" object_id="_407">
<Value>
<Obj>
<type>2</type>
<id>1015</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<const_type>0</const_type>
<content>4</content>
</item>
<item class_id_reference="16" object_id="_408">
<Value>
<Obj>
<type>2</type>
<id>1070</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<const_type>0</const_type>
<content>7</content>
</item>
<item class_id_reference="16" object_id="_409">
<Value>
<Obj>
<type>2</type>
<id>1072</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<const_type>0</const_type>
<content>8</content>
</item>
<item class_id_reference="16" object_id="_410">
<Value>
<Obj>
<type>2</type>
<id>1079</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_411">
<Value>
<Obj>
<type>2</type>
<id>1082</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_412">
<Value>
<Obj>
<type>2</type>
<id>1085</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<const_type>0</const_type>
<content>2</content>
</item>
<item class_id_reference="16" object_id="_413">
<Value>
<Obj>
<type>2</type>
<id>1090</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<const_type>0</const_type>
<content>5</content>
</item>
<item class_id_reference="16" object_id="_414">
<Value>
<Obj>
<type>2</type>
<id>1093</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<const_type>0</const_type>
<content>6</content>
</item>
<item class_id_reference="16" object_id="_415">
<Value>
<Obj>
<type>2</type>
<id>1102</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>0</content>
</item>
<item class_id_reference="16" object_id="_416">
<Value>
<Obj>
<type>2</type>
<id>1160</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>128</content>
</item>
<item class_id_reference="16" object_id="_417">
<Value>
<Obj>
<type>2</type>
<id>1192</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>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>88</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_418">
<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>1</count>
<item_version>0</item_version>
<item>25</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_419">
<Obj>
<type>3</type>
<id>32</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>27</item>
<item>28</item>
<item>30</item>
<item>31</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_420">
<Obj>
<type>3</type>
<id>37</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>33</item>
<item>34</item>
<item>35</item>
<item>36</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_421">
<Obj>
<type>3</type>
<id>39</id>
<name>.preheader.preheader</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_422">
<Obj>
<type>3</type>
<id>45</id>
<name>.preheader</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>40</item>
<item>41</item>
<item>43</item>
<item>44</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_423">
<Obj>
<type>3</type>
<id>50</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>46</item>
<item>47</item>
<item>48</item>
<item>49</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_424">
<Obj>
<type>3</type>
<id>56</id>
<name>meminst.preheader</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_425">
<Obj>
<type>3</type>
<id>68</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>11</count>
<item_version>0</item_version>
<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>
</node_objs>
</item>
<item class_id_reference="18" object_id="_426">
<Obj>
<type>3</type>
<id>118</id>
<name>.reset8</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>44</count>
<item_version>0</item_version>
<item>71</item>
<item>72</item>
<item>73</item>
<item>74</item>
<item>75</item>
<item>76</item>
<item>77</item>
<item>78</item>
<item>79</item>
<item>80</item>
<item>81</item>
<item>82</item>
<item>83</item>
<item>84</item>
<item>85</item>
<item>86</item>
<item>88</item>
<item>89</item>
<item>90</item>
<item>91</item>
<item>92</item>
<item>93</item>
<item>94</item>
<item>95</item>
<item>96</item>
<item>99</item>
<item>100</item>
<item>101</item>
<item>102</item>
<item>103</item>
<item>104</item>
<item>105</item>
<item>106</item>
<item>107</item>
<item>108</item>
<item>109</item>
<item>110</item>
<item>111</item>
<item>112</item>
<item>113</item>
<item>114</item>
<item>115</item>
<item>116</item>
<item>117</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_427">
<Obj>
<type>3</type>
<id>121</id>
<name>branch69</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>119</item>
<item>120</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_428">
<Obj>
<type>3</type>
<id>124</id>
<name>branch68</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>122</item>
<item>123</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_429">
<Obj>
<type>3</type>
<id>127</id>
<name>branch67</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>125</item>
<item>126</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_430">
<Obj>
<type>3</type>
<id>130</id>
<name>branch66</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>128</item>
<item>129</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_431">
<Obj>
<type>3</type>
<id>133</id>
<name>branch65</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>131</item>
<item>132</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_432">
<Obj>
<type>3</type>
<id>136</id>
<name>branch64</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>134</item>
<item>135</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_433">
<Obj>
<type>3</type>
<id>139</id>
<name>branch63</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>137</item>
<item>138</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_434">
<Obj>
<type>3</type>
<id>142</id>
<name>branch62</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>140</item>
<item>141</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_435">
<Obj>
<type>3</type>
<id>145</id>
<name>branch61</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>143</item>
<item>144</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_436">
<Obj>
<type>3</type>
<id>148</id>
<name>branch60</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>146</item>
<item>147</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_437">
<Obj>
<type>3</type>
<id>151</id>
<name>branch59</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>149</item>
<item>150</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_438">
<Obj>
<type>3</type>
<id>154</id>
<name>branch58</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>152</item>
<item>153</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_439">
<Obj>
<type>3</type>
<id>157</id>
<name>branch57</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>155</item>
<item>156</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_440">
<Obj>
<type>3</type>
<id>160</id>
<name>branch56</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>158</item>
<item>159</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_441">
<Obj>
<type>3</type>
<id>163</id>
<name>branch55</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>161</item>
<item>162</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_442">
<Obj>
<type>3</type>
<id>166</id>
<name>branch70</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>164</item>
<item>165</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_443">
<Obj>
<type>3</type>
<id>188</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>21</count>
<item_version>0</item_version>
<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>
</node_objs>
</item>
<item class_id_reference="18" object_id="_444">
<Obj>
<type>3</type>
<id>191</id>
<name>branch51</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>189</item>
<item>190</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_445">
<Obj>
<type>3</type>
<id>194</id>
<name>branch50</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>192</item>
<item>193</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_446">
<Obj>
<type>3</type>
<id>197</id>
<name>branch49</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>195</item>
<item>196</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_447">
<Obj>
<type>3</type>
<id>200</id>
<name>branch48</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>198</item>
<item>199</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_448">
<Obj>
<type>3</type>
<id>203</id>
<name>branch47</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>201</item>
<item>202</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_449">
<Obj>
<type>3</type>
<id>206</id>
<name>branch46</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>204</item>
<item>205</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_450">
<Obj>
<type>3</type>
<id>209</id>
<name>branch45</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>207</item>
<item>208</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_451">
<Obj>
<type>3</type>
<id>212</id>
<name>branch44</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>210</item>
<item>211</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_452">
<Obj>
<type>3</type>
<id>215</id>
<name>branch43</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>213</item>
<item>214</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_453">
<Obj>
<type>3</type>
<id>218</id>
<name>branch42</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>216</item>
<item>217</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_454">
<Obj>
<type>3</type>
<id>221</id>
<name>branch41</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>219</item>
<item>220</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_455">
<Obj>
<type>3</type>
<id>224</id>
<name>branch40</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>222</item>
<item>223</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_456">
<Obj>
<type>3</type>
<id>227</id>
<name>branch39</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>225</item>
<item>226</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_457">
<Obj>
<type>3</type>
<id>230</id>
<name>branch38</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>228</item>
<item>229</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_458">
<Obj>
<type>3</type>
<id>233</id>
<name>branch37</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>231</item>
<item>232</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_459">
<Obj>
<type>3</type>
<id>236</id>
<name>branch52</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>234</item>
<item>235</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_460">
<Obj>
<type>3</type>
<id>261</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>24</count>
<item_version>0</item_version>
<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>
</node_objs>
</item>
<item class_id_reference="18" object_id="_461">
<Obj>
<type>3</type>
<id>264</id>
<name>branch34</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>262</item>
<item>263</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_462">
<Obj>
<type>3</type>
<id>267</id>
<name>branch33</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>265</item>
<item>266</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_463">
<Obj>
<type>3</type>
<id>270</id>
<name>branch32</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>268</item>
<item>269</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_464">
<Obj>
<type>3</type>
<id>273</id>
<name>branch31</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>271</item>
<item>272</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_465">
<Obj>
<type>3</type>
<id>276</id>
<name>branch30</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>274</item>
<item>275</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_466">
<Obj>
<type>3</type>
<id>279</id>
<name>branch29</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>277</item>
<item>278</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_467">
<Obj>
<type>3</type>
<id>282</id>
<name>branch28</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>280</item>
<item>281</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_468">
<Obj>
<type>3</type>
<id>285</id>
<name>branch27</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>283</item>
<item>284</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_469">
<Obj>
<type>3</type>
<id>288</id>
<name>branch26</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>286</item>
<item>287</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_470">
<Obj>
<type>3</type>
<id>291</id>
<name>branch25</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>289</item>
<item>290</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_471">
<Obj>
<type>3</type>
<id>294</id>
<name>branch24</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>292</item>
<item>293</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_472">
<Obj>
<type>3</type>
<id>297</id>
<name>branch23</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>295</item>
<item>296</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_473">
<Obj>
<type>3</type>
<id>300</id>
<name>branch22</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>298</item>
<item>299</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_474">
<Obj>
<type>3</type>
<id>303</id>
<name>branch21</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>301</item>
<item>302</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_475">
<Obj>
<type>3</type>
<id>306</id>
<name>branch20</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>304</item>
<item>305</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_476">
<Obj>
<type>3</type>
<id>309</id>
<name>branch35</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>307</item>
<item>308</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_477">
<Obj>
<type>3</type>
<id>315</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>310</item>
<item>311</item>
<item>312</item>
<item>313</item>
<item>314</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_478">
<Obj>
<type>3</type>
<id>318</id>
<name>branch14</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>316</item>
<item>317</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_479">
<Obj>
<type>3</type>
<id>321</id>
<name>branch13</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>319</item>
<item>320</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_480">
<Obj>
<type>3</type>
<id>324</id>
<name>branch12</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>322</item>
<item>323</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_481">
<Obj>
<type>3</type>
<id>327</id>
<name>branch11</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>325</item>
<item>326</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_482">
<Obj>
<type>3</type>
<id>330</id>
<name>branch10</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>328</item>
<item>329</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_483">
<Obj>
<type>3</type>
<id>333</id>
<name>branch9</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>331</item>
<item>332</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_484">
<Obj>
<type>3</type>
<id>336</id>
<name>branch8</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>334</item>
<item>335</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_485">
<Obj>
<type>3</type>
<id>339</id>
<name>branch7</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>337</item>
<item>338</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_486">
<Obj>
<type>3</type>
<id>342</id>
<name>branch6</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>340</item>
<item>341</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_487">
<Obj>
<type>3</type>
<id>345</id>
<name>branch5</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>343</item>
<item>344</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_488">
<Obj>
<type>3</type>
<id>348</id>
<name>branch4</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>346</item>
<item>347</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_489">
<Obj>
<type>3</type>
<id>351</id>
<name>branch3</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>349</item>
<item>350</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_490">
<Obj>
<type>3</type>
<id>354</id>
<name>branch2</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>352</item>
<item>353</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_491">
<Obj>
<type>3</type>
<id>357</id>
<name>branch1</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>355</item>
<item>356</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_492">
<Obj>
<type>3</type>
<id>360</id>
<name>branch0</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>358</item>
<item>359</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_493">
<Obj>
<type>3</type>
<id>363</id>
<name>branch15</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>361</item>
<item>362</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_494">
<Obj>
<type>3</type>
<id>377</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>13</count>
<item_version>0</item_version>
<item>364</item>
<item>365</item>
<item>366</item>
<item>367</item>
<item>368</item>
<item>369</item>
<item>370</item>
<item>371</item>
<item>372</item>
<item>373</item>
<item>374</item>
<item>375</item>
<item>376</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_495">
<Obj>
<type>3</type>
<id>382</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>378</item>
<item>379</item>
<item>380</item>
<item>381</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_496">
<Obj>
<type>3</type>
<id>397</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>14</count>
<item_version>0</item_version>
<item>383</item>
<item>384</item>
<item>385</item>
<item>386</item>
<item>387</item>
<item>388</item>
<item>389</item>
<item>390</item>
<item>391</item>
<item>392</item>
<item>393</item>
<item>394</item>
<item>395</item>
<item>396</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_497">
<Obj>
<type>3</type>
<id>402</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>398</item>
<item>399</item>
<item>400</item>
<item>401</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_498">
<Obj>
<type>3</type>
<id>407</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>403</item>
<item>404</item>
<item>405</item>
<item>406</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_499">
<Obj>
<type>3</type>
<id>413</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>408</item>
<item>409</item>
<item>410</item>
<item>411</item>
<item>412</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_500">
<Obj>
<type>3</type>
<id>428</id>
<name>._crit_edge</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>14</count>
<item_version>0</item_version>
<item>414</item>
<item>415</item>
<item>416</item>
<item>417</item>
<item>418</item>
<item>419</item>
<item>420</item>
<item>421</item>
<item>422</item>
<item>423</item>
<item>424</item>
<item>425</item>
<item>426</item>
<item>427</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_501">
<Obj>
<type>3</type>
<id>433</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>429</item>
<item>430</item>
<item>431</item>
<item>432</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_502">
<Obj>
<type>3</type>
<id>438</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>434</item>
<item>435</item>
<item>436</item>
<item>437</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_503">
<Obj>
<type>3</type>
<id>444</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>439</item>
<item>440</item>
<item>441</item>
<item>442</item>
<item>443</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_504">
<Obj>
<type>3</type>
<id>474</id>
<name>._crit_edge22</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>28</count>
<item_version>0</item_version>
<item>445</item>
<item>446</item>
<item>447</item>
<item>448</item>
<item>449</item>
<item>450</item>
<item>451</item>
<item>452</item>
<item>453</item>
<item>454</item>
<item>455</item>
<item>456</item>
<item>457</item>
<item>458</item>
<item>459</item>
<item>460</item>
<item>461</item>
<item>462</item>
<item>463</item>
<item>464</item>
<item>465</item>
<item>466</item>
<item>467</item>
<item>468</item>
<item>470</item>
<item>471</item>
<item>472</item>
<item>473</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_505">
<Obj>
<type>3</type>
<id>476</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>475</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>1046</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_506">
<id>477</id>
<edge_type>2</edge_type>
<source_obj>32</source_obj>
<sink_obj>25</sink_obj>
</item>
<item class_id_reference="20" object_id="_507">
<id>479</id>
<edge_type>1</edge_type>
<source_obj>478</source_obj>
<sink_obj>27</sink_obj>
</item>
<item class_id_reference="20" object_id="_508">
<id>480</id>
<edge_type>2</edge_type>
<source_obj>26</source_obj>
<sink_obj>27</sink_obj>
</item>
<item class_id_reference="20" object_id="_509">
<id>481</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>27</sink_obj>
</item>
<item class_id_reference="20" object_id="_510">
<id>482</id>
<edge_type>2</edge_type>
<source_obj>37</source_obj>
<sink_obj>27</sink_obj>
</item>
<item class_id_reference="20" object_id="_511">
<id>483</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>28</sink_obj>
</item>
<item class_id_reference="20" object_id="_512">
<id>485</id>
<edge_type>1</edge_type>
<source_obj>484</source_obj>
<sink_obj>28</sink_obj>
</item>
<item class_id_reference="20" object_id="_513">
<id>486</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_514">
<id>488</id>
<edge_type>1</edge_type>
<source_obj>487</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_515">
<id>489</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>31</sink_obj>
</item>
<item class_id_reference="20" object_id="_516">
<id>490</id>
<edge_type>2</edge_type>
<source_obj>37</source_obj>
<sink_obj>31</sink_obj>
</item>
<item class_id_reference="20" object_id="_517">
<id>491</id>
<edge_type>2</edge_type>
<source_obj>39</source_obj>
<sink_obj>31</sink_obj>
</item>
<item class_id_reference="20" object_id="_518">
<id>492</id>
<edge_type>2</edge_type>
<source_obj>45</source_obj>
<sink_obj>38</sink_obj>
</item>
<item class_id_reference="20" object_id="_519">
<id>493</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_520">
<id>494</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_521">
<id>496</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_522">
<id>497</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_523">
<id>499</id>
<edge_type>1</edge_type>
<source_obj>498</source_obj>
<sink_obj>35</sink_obj>
</item>
<item class_id_reference="20" object_id="_524">
<id>500</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>35</sink_obj>
</item>
<item class_id_reference="20" object_id="_525">
<id>501</id>
<edge_type>2</edge_type>
<source_obj>32</source_obj>
<sink_obj>36</sink_obj>
</item>
<item class_id_reference="20" object_id="_526">
<id>502</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_527">
<id>503</id>
<edge_type>2</edge_type>
<source_obj>50</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_528">
<id>505</id>
<edge_type>1</edge_type>
<source_obj>504</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_529">
<id>506</id>
<edge_type>2</edge_type>
<source_obj>39</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_530">
<id>507</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_531">
<id>509</id>
<edge_type>1</edge_type>
<source_obj>508</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_532">
<id>510</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_533">
<id>512</id>
<edge_type>1</edge_type>
<source_obj>511</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_534">
<id>513</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_535">
<id>514</id>
<edge_type>2</edge_type>
<source_obj>50</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_536">
<id>515</id>
<edge_type>2</edge_type>
<source_obj>56</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_537">
<id>516</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_538">
<id>517</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>47</sink_obj>
</item>
<item class_id_reference="20" object_id="_539">
<id>518</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>47</sink_obj>
</item>
<item class_id_reference="20" object_id="_540">
<id>519</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>47</sink_obj>
</item>
<item class_id_reference="20" object_id="_541">
<id>521</id>
<edge_type>1</edge_type>
<source_obj>520</source_obj>
<sink_obj>48</sink_obj>
</item>
<item class_id_reference="20" object_id="_542">
<id>522</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>48</sink_obj>
</item>
<item class_id_reference="20" object_id="_543">
<id>523</id>
<edge_type>2</edge_type>
<source_obj>45</source_obj>
<sink_obj>49</sink_obj>
</item>
<item class_id_reference="20" object_id="_544">
<id>524</id>
<edge_type>2</edge_type>
<source_obj>68</source_obj>
<sink_obj>55</sink_obj>
</item>
<item class_id_reference="20" object_id="_545">
<id>526</id>
<edge_type>1</edge_type>
<source_obj>525</source_obj>
<sink_obj>57</sink_obj>
</item>
<item class_id_reference="20" object_id="_546">
<id>527</id>
<edge_type>2</edge_type>
<source_obj>56</source_obj>
<sink_obj>57</sink_obj>
</item>
<item class_id_reference="20" object_id="_547">
<id>528</id>
<edge_type>1</edge_type>
<source_obj>66</source_obj>
<sink_obj>57</sink_obj>
</item>
<item class_id_reference="20" object_id="_548">
<id>529</id>
<edge_type>2</edge_type>
<source_obj>474</source_obj>
<sink_obj>57</sink_obj>
</item>
<item class_id_reference="20" object_id="_549">
<id>530</id>
<edge_type>1</edge_type>
<source_obj>504</source_obj>
<sink_obj>58</sink_obj>
</item>
<item class_id_reference="20" object_id="_550">
<id>531</id>
<edge_type>2</edge_type>
<source_obj>56</source_obj>
<sink_obj>58</sink_obj>
</item>
<item class_id_reference="20" object_id="_551">
<id>532</id>
<edge_type>1</edge_type>
<source_obj>75</source_obj>
<sink_obj>58</sink_obj>
</item>
<item class_id_reference="20" object_id="_552">
<id>533</id>
<edge_type>2</edge_type>
<source_obj>474</source_obj>
<sink_obj>58</sink_obj>
</item>
<item class_id_reference="20" object_id="_553">
<id>534</id>
<edge_type>1</edge_type>
<source_obj>525</source_obj>
<sink_obj>59</sink_obj>
</item>
<item class_id_reference="20" object_id="_554">
<id>535</id>
<edge_type>2</edge_type>
<source_obj>56</source_obj>
<sink_obj>59</sink_obj>
</item>
<item class_id_reference="20" object_id="_555">
<id>536</id>
<edge_type>1</edge_type>
<source_obj>472</source_obj>
<sink_obj>59</sink_obj>
</item>
<item class_id_reference="20" object_id="_556">
<id>537</id>
<edge_type>2</edge_type>
<source_obj>474</source_obj>
<sink_obj>59</sink_obj>
</item>
<item class_id_reference="20" object_id="_557">
<id>539</id>
<edge_type>1</edge_type>
<source_obj>538</source_obj>
<sink_obj>60</sink_obj>
</item>
<item class_id_reference="20" object_id="_558">
<id>540</id>
<edge_type>2</edge_type>
<source_obj>56</source_obj>
<sink_obj>60</sink_obj>
</item>
<item class_id_reference="20" object_id="_559">
<id>541</id>
<edge_type>1</edge_type>
<source_obj>95</source_obj>
<sink_obj>60</sink_obj>
</item>
<item class_id_reference="20" object_id="_560">
<id>542</id>
<edge_type>2</edge_type>
<source_obj>474</source_obj>
<sink_obj>60</sink_obj>
</item>
<item class_id_reference="20" object_id="_561">
<id>543</id>
<edge_type>1</edge_type>
<source_obj>538</source_obj>
<sink_obj>61</sink_obj>
</item>
<item class_id_reference="20" object_id="_562">
<id>544</id>
<edge_type>2</edge_type>
<source_obj>56</source_obj>
<sink_obj>61</sink_obj>
</item>
<item class_id_reference="20" object_id="_563">
<id>545</id>
<edge_type>1</edge_type>
<source_obj>470</source_obj>
<sink_obj>61</sink_obj>
</item>
<item class_id_reference="20" object_id="_564">
<id>546</id>
<edge_type>2</edge_type>
<source_obj>474</source_obj>
<sink_obj>61</sink_obj>
</item>
<item class_id_reference="20" object_id="_565">
<id>549</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>62</sink_obj>
</item>
<item class_id_reference="20" object_id="_566">
<id>551</id>
<edge_type>1</edge_type>
<source_obj>550</source_obj>
<sink_obj>62</sink_obj>
</item>
<item class_id_reference="20" object_id="_567">
<id>553</id>
<edge_type>1</edge_type>
<source_obj>552</source_obj>
<sink_obj>62</sink_obj>
</item>
<item class_id_reference="20" object_id="_568">
<id>556</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>63</sink_obj>
</item>
<item class_id_reference="20" object_id="_569">
<id>557</id>
<edge_type>1</edge_type>
<source_obj>550</source_obj>
<sink_obj>63</sink_obj>
</item>
<item class_id_reference="20" object_id="_570">
<id>560</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>64</sink_obj>
</item>
<item class_id_reference="20" object_id="_571">
<id>562</id>
<edge_type>1</edge_type>
<source_obj>561</source_obj>
<sink_obj>64</sink_obj>
</item>
<item class_id_reference="20" object_id="_572">
<id>563</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_573">
<id>565</id>
<edge_type>1</edge_type>
<source_obj>564</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_574">
<id>566</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>66</sink_obj>
</item>
<item class_id_reference="20" object_id="_575">
<id>568</id>
<edge_type>1</edge_type>
<source_obj>567</source_obj>
<sink_obj>66</sink_obj>
</item>
<item class_id_reference="20" object_id="_576">
<id>569</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>67</sink_obj>
</item>
<item class_id_reference="20" object_id="_577">
<id>570</id>
<edge_type>2</edge_type>
<source_obj>118</source_obj>
<sink_obj>67</sink_obj>
</item>
<item class_id_reference="20" object_id="_578">
<id>571</id>
<edge_type>2</edge_type>
<source_obj>476</source_obj>
<sink_obj>67</sink_obj>
</item>
<item class_id_reference="20" object_id="_579">
<id>572</id>
<edge_type>1</edge_type>
<source_obj>161</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_580">
<id>573</id>
<edge_type>2</edge_type>
<source_obj>163</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_581">
<id>574</id>
<edge_type>1</edge_type>
<source_obj>158</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_582">
<id>575</id>
<edge_type>2</edge_type>
<source_obj>160</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_583">
<id>576</id>
<edge_type>1</edge_type>
<source_obj>155</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_584">
<id>577</id>
<edge_type>2</edge_type>
<source_obj>157</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_585">
<id>578</id>
<edge_type>1</edge_type>
<source_obj>152</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_586">
<id>579</id>
<edge_type>2</edge_type>
<source_obj>154</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_587">
<id>580</id>
<edge_type>1</edge_type>
<source_obj>149</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_588">
<id>581</id>
<edge_type>2</edge_type>
<source_obj>151</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_589">
<id>582</id>
<edge_type>1</edge_type>
<source_obj>146</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_590">
<id>583</id>
<edge_type>2</edge_type>
<source_obj>148</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_591">
<id>584</id>
<edge_type>1</edge_type>
<source_obj>143</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_592">
<id>585</id>
<edge_type>2</edge_type>
<source_obj>145</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_593">
<id>586</id>
<edge_type>1</edge_type>
<source_obj>140</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_594">
<id>587</id>
<edge_type>2</edge_type>
<source_obj>142</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_595">
<id>588</id>
<edge_type>1</edge_type>
<source_obj>137</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_596">
<id>589</id>
<edge_type>2</edge_type>
<source_obj>139</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_597">
<id>590</id>
<edge_type>1</edge_type>
<source_obj>134</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_598">
<id>591</id>
<edge_type>2</edge_type>
<source_obj>136</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_599">
<id>592</id>
<edge_type>1</edge_type>
<source_obj>131</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_600">
<id>593</id>
<edge_type>2</edge_type>
<source_obj>133</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_601">
<id>594</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_602">
<id>595</id>
<edge_type>2</edge_type>
<source_obj>130</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_603">
<id>596</id>
<edge_type>1</edge_type>
<source_obj>125</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_604">
<id>597</id>
<edge_type>2</edge_type>
<source_obj>127</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_605">
<id>598</id>
<edge_type>1</edge_type>
<source_obj>122</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_606">
<id>599</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_607">
<id>600</id>
<edge_type>1</edge_type>
<source_obj>119</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_608">
<id>601</id>
<edge_type>2</edge_type>
<source_obj>121</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_609">
<id>602</id>
<edge_type>1</edge_type>
<source_obj>164</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_610">
<id>603</id>
<edge_type>2</edge_type>
<source_obj>166</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_611">
<id>604</id>
<edge_type>1</edge_type>
<source_obj>167</source_obj>
<sink_obj>168</sink_obj>
</item>
<item class_id_reference="20" object_id="_612">
<id>605</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>169</sink_obj>
</item>
<item class_id_reference="20" object_id="_613">
<id>606</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>169</sink_obj>
</item>
<item class_id_reference="20" object_id="_614">
<id>607</id>
<edge_type>1</edge_type>
<source_obj>169</source_obj>
<sink_obj>170</sink_obj>
</item>
<item class_id_reference="20" object_id="_615">
<id>608</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>171</sink_obj>
</item>
<item class_id_reference="20" object_id="_616">
<id>609</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>171</sink_obj>
</item>
<item class_id_reference="20" object_id="_617">
<id>610</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>171</sink_obj>
</item>
<item class_id_reference="20" object_id="_618">
<id>611</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>172</sink_obj>
</item>
<item class_id_reference="20" object_id="_619">
<id>612</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>172</sink_obj>
</item>
<item class_id_reference="20" object_id="_620">
<id>613</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>172</sink_obj>
</item>
<item class_id_reference="20" object_id="_621">
<id>614</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>173</sink_obj>
</item>
<item class_id_reference="20" object_id="_622">
<id>615</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>173</sink_obj>
</item>
<item class_id_reference="20" object_id="_623">
<id>616</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>173</sink_obj>
</item>
<item class_id_reference="20" object_id="_624">
<id>617</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>174</sink_obj>
</item>
<item class_id_reference="20" object_id="_625">
<id>618</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>174</sink_obj>
</item>
<item class_id_reference="20" object_id="_626">
<id>619</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>174</sink_obj>
</item>
<item class_id_reference="20" object_id="_627">
<id>620</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>175</sink_obj>
</item>
<item class_id_reference="20" object_id="_628">
<id>621</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>175</sink_obj>
</item>
<item class_id_reference="20" object_id="_629">
<id>622</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>175</sink_obj>
</item>
<item class_id_reference="20" object_id="_630">
<id>623</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>176</sink_obj>
</item>
<item class_id_reference="20" object_id="_631">
<id>624</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>176</sink_obj>
</item>
<item class_id_reference="20" object_id="_632">
<id>625</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>176</sink_obj>
</item>
<item class_id_reference="20" object_id="_633">
<id>626</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>177</sink_obj>
</item>
<item class_id_reference="20" object_id="_634">
<id>627</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>177</sink_obj>
</item>
<item class_id_reference="20" object_id="_635">
<id>628</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>177</sink_obj>
</item>
<item class_id_reference="20" object_id="_636">
<id>629</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>178</sink_obj>
</item>
<item class_id_reference="20" object_id="_637">
<id>630</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>178</sink_obj>
</item>
<item class_id_reference="20" object_id="_638">
<id>631</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>178</sink_obj>
</item>
<item class_id_reference="20" object_id="_639">
<id>632</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>179</sink_obj>
</item>
<item class_id_reference="20" object_id="_640">
<id>633</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>179</sink_obj>
</item>
<item class_id_reference="20" object_id="_641">
<id>634</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>179</sink_obj>
</item>
<item class_id_reference="20" object_id="_642">
<id>635</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>180</sink_obj>
</item>
<item class_id_reference="20" object_id="_643">
<id>636</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>180</sink_obj>
</item>
<item class_id_reference="20" object_id="_644">
<id>637</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>180</sink_obj>
</item>
<item class_id_reference="20" object_id="_645">
<id>638</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>181</sink_obj>
</item>
<item class_id_reference="20" object_id="_646">
<id>639</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>181</sink_obj>
</item>
<item class_id_reference="20" object_id="_647">
<id>640</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>181</sink_obj>
</item>
<item class_id_reference="20" object_id="_648">
<id>641</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>182</sink_obj>
</item>
<item class_id_reference="20" object_id="_649">
<id>642</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>182</sink_obj>
</item>
<item class_id_reference="20" object_id="_650">
<id>643</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>182</sink_obj>
</item>
<item class_id_reference="20" object_id="_651">
<id>644</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>183</sink_obj>
</item>
<item class_id_reference="20" object_id="_652">
<id>645</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>183</sink_obj>
</item>
<item class_id_reference="20" object_id="_653">
<id>646</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>183</sink_obj>
</item>
<item class_id_reference="20" object_id="_654">
<id>647</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>184</sink_obj>
</item>
<item class_id_reference="20" object_id="_655">
<id>648</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>184</sink_obj>
</item>
<item class_id_reference="20" object_id="_656">
<id>649</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>184</sink_obj>
</item>
<item class_id_reference="20" object_id="_657">
<id>650</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>185</sink_obj>
</item>
<item class_id_reference="20" object_id="_658">
<id>651</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>185</sink_obj>
</item>
<item class_id_reference="20" object_id="_659">
<id>652</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>185</sink_obj>
</item>
<item class_id_reference="20" object_id="_660">
<id>653</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>186</sink_obj>
</item>
<item class_id_reference="20" object_id="_661">
<id>654</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>186</sink_obj>
</item>
<item class_id_reference="20" object_id="_662">
<id>655</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>186</sink_obj>
</item>
<item class_id_reference="20" object_id="_663">
<id>656</id>
<edge_type>1</edge_type>
<source_obj>95</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_664">
<id>657</id>
<edge_type>2</edge_type>
<source_obj>236</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_665">
<id>658</id>
<edge_type>1</edge_type>
<source_obj>538</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_666">
<id>659</id>
<edge_type>2</edge_type>
<source_obj>233</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_667">
<id>661</id>
<edge_type>1</edge_type>
<source_obj>660</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_668">
<id>662</id>
<edge_type>2</edge_type>
<source_obj>230</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_669">
<id>664</id>
<edge_type>1</edge_type>
<source_obj>663</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_670">
<id>665</id>
<edge_type>2</edge_type>
<source_obj>227</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_671">
<id>667</id>
<edge_type>1</edge_type>
<source_obj>666</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_672">
<id>668</id>
<edge_type>2</edge_type>
<source_obj>224</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_673">
<id>670</id>
<edge_type>1</edge_type>
<source_obj>669</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_674">
<id>671</id>
<edge_type>2</edge_type>
<source_obj>221</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_675">
<id>673</id>
<edge_type>1</edge_type>
<source_obj>672</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_676">
<id>674</id>
<edge_type>2</edge_type>
<source_obj>218</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_677">
<id>676</id>
<edge_type>1</edge_type>
<source_obj>675</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_678">
<id>677</id>
<edge_type>2</edge_type>
<source_obj>215</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_679">
<id>679</id>
<edge_type>1</edge_type>
<source_obj>678</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_680">
<id>680</id>
<edge_type>2</edge_type>
<source_obj>212</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_681">
<id>682</id>
<edge_type>1</edge_type>
<source_obj>681</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_682">
<id>683</id>
<edge_type>2</edge_type>
<source_obj>209</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_683">
<id>685</id>
<edge_type>1</edge_type>
<source_obj>684</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_684">
<id>686</id>
<edge_type>2</edge_type>
<source_obj>206</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_685">
<id>688</id>
<edge_type>1</edge_type>
<source_obj>687</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_686">
<id>689</id>
<edge_type>2</edge_type>
<source_obj>203</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_687">
<id>691</id>
<edge_type>1</edge_type>
<source_obj>690</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_688">
<id>692</id>
<edge_type>2</edge_type>
<source_obj>200</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_689">
<id>694</id>
<edge_type>1</edge_type>
<source_obj>693</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_690">
<id>695</id>
<edge_type>2</edge_type>
<source_obj>197</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_691">
<id>697</id>
<edge_type>1</edge_type>
<source_obj>696</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_692">
<id>698</id>
<edge_type>2</edge_type>
<source_obj>194</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_693">
<id>700</id>
<edge_type>1</edge_type>
<source_obj>699</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_694">
<id>701</id>
<edge_type>2</edge_type>
<source_obj>191</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_695">
<id>702</id>
<edge_type>1</edge_type>
<source_obj>231</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_696">
<id>703</id>
<edge_type>2</edge_type>
<source_obj>233</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_697">
<id>704</id>
<edge_type>1</edge_type>
<source_obj>228</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_698">
<id>705</id>
<edge_type>2</edge_type>
<source_obj>230</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_699">
<id>706</id>
<edge_type>1</edge_type>
<source_obj>225</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_700">
<id>707</id>
<edge_type>2</edge_type>
<source_obj>227</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_701">
<id>708</id>
<edge_type>1</edge_type>
<source_obj>222</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_702">
<id>709</id>
<edge_type>2</edge_type>
<source_obj>224</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_703">
<id>710</id>
<edge_type>1</edge_type>
<source_obj>219</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_704">
<id>711</id>
<edge_type>2</edge_type>
<source_obj>221</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_705">
<id>712</id>
<edge_type>1</edge_type>
<source_obj>216</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_706">
<id>713</id>
<edge_type>2</edge_type>
<source_obj>218</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_707">
<id>714</id>
<edge_type>1</edge_type>
<source_obj>213</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_708">
<id>715</id>
<edge_type>2</edge_type>
<source_obj>215</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_709">
<id>716</id>
<edge_type>1</edge_type>
<source_obj>210</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_710">
<id>717</id>
<edge_type>2</edge_type>
<source_obj>212</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_711">
<id>718</id>
<edge_type>1</edge_type>
<source_obj>207</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_712">
<id>719</id>
<edge_type>2</edge_type>
<source_obj>209</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_713">
<id>720</id>
<edge_type>1</edge_type>
<source_obj>204</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_714">
<id>721</id>
<edge_type>2</edge_type>
<source_obj>206</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_715">
<id>722</id>
<edge_type>1</edge_type>
<source_obj>201</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_716">
<id>723</id>
<edge_type>2</edge_type>
<source_obj>203</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_717">
<id>724</id>
<edge_type>1</edge_type>
<source_obj>198</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_718">
<id>725</id>
<edge_type>2</edge_type>
<source_obj>200</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_719">
<id>726</id>
<edge_type>1</edge_type>
<source_obj>195</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_720">
<id>727</id>
<edge_type>2</edge_type>
<source_obj>197</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_721">
<id>728</id>
<edge_type>1</edge_type>
<source_obj>192</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_722">
<id>729</id>
<edge_type>2</edge_type>
<source_obj>194</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_723">
<id>730</id>
<edge_type>1</edge_type>
<source_obj>189</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_724">
<id>731</id>
<edge_type>2</edge_type>
<source_obj>191</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_725">
<id>732</id>
<edge_type>1</edge_type>
<source_obj>234</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_726">
<id>733</id>
<edge_type>2</edge_type>
<source_obj>236</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_727">
<id>734</id>
<edge_type>1</edge_type>
<source_obj>237</source_obj>
<sink_obj>238</sink_obj>
</item>
<item class_id_reference="20" object_id="_728">
<id>735</id>
<edge_type>1</edge_type>
<source_obj>168</source_obj>
<sink_obj>239</sink_obj>
</item>
<item class_id_reference="20" object_id="_729">
<id>736</id>
<edge_type>1</edge_type>
<source_obj>238</source_obj>
<sink_obj>239</sink_obj>
</item>
<item class_id_reference="20" object_id="_730">
<id>737</id>
<edge_type>1</edge_type>
<source_obj>239</source_obj>
<sink_obj>240</sink_obj>
</item>
<item class_id_reference="20" object_id="_731">
<id>738</id>
<edge_type>1</edge_type>
<source_obj>239</source_obj>
<sink_obj>241</sink_obj>
</item>
<item class_id_reference="20" object_id="_732">
<id>739</id>
<edge_type>1</edge_type>
<source_obj>169</source_obj>
<sink_obj>242</sink_obj>
</item>
<item class_id_reference="20" object_id="_733">
<id>740</id>
<edge_type>1</edge_type>
<source_obj>660</source_obj>
<sink_obj>242</sink_obj>
</item>
<item class_id_reference="20" object_id="_734">
<id>741</id>
<edge_type>1</edge_type>
<source_obj>242</source_obj>
<sink_obj>243</sink_obj>
</item>
<item class_id_reference="20" object_id="_735">
<id>742</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>244</sink_obj>
</item>
<item class_id_reference="20" object_id="_736">
<id>743</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>244</sink_obj>
</item>
<item class_id_reference="20" object_id="_737">
<id>744</id>
<edge_type>1</edge_type>
<source_obj>243</source_obj>
<sink_obj>244</sink_obj>
</item>
<item class_id_reference="20" object_id="_738">
<id>745</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>245</sink_obj>
</item>
<item class_id_reference="20" object_id="_739">
<id>746</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>245</sink_obj>
</item>
<item class_id_reference="20" object_id="_740">
<id>747</id>
<edge_type>1</edge_type>
<source_obj>243</source_obj>
<sink_obj>245</sink_obj>
</item>
<item class_id_reference="20" object_id="_741">
<id>748</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>246</sink_obj>
</item>
<item class_id_reference="20" object_id="_742">
<id>749</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>246</sink_obj>
</item>
<item class_id_reference="20" object_id="_743">
<id>750</id>
<edge_type>1</edge_type>
<source_obj>243</source_obj>
<sink_obj>246</sink_obj>
</item>
<item class_id_reference="20" object_id="_744">
<id>751</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>247</sink_obj>
</item>
<item class_id_reference="20" object_id="_745">
<id>752</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>247</sink_obj>
</item>
<item class_id_reference="20" object_id="_746">
<id>753</id>
<edge_type>1</edge_type>
<source_obj>243</source_obj>
<sink_obj>247</sink_obj>
</item>
<item class_id_reference="20" object_id="_747">
<id>754</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>248</sink_obj>
</item>
<item class_id_reference="20" object_id="_748">
<id>755</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>248</sink_obj>
</item>
<item class_id_reference="20" object_id="_749">
<id>756</id>
<edge_type>1</edge_type>
<source_obj>243</source_obj>
<sink_obj>248</sink_obj>
</item>
<item class_id_reference="20" object_id="_750">
<id>757</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>249</sink_obj>
</item>
<item class_id_reference="20" object_id="_751">
<id>758</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>249</sink_obj>
</item>
<item class_id_reference="20" object_id="_752">
<id>759</id>
<edge_type>1</edge_type>
<source_obj>243</source_obj>
<sink_obj>249</sink_obj>
</item>
<item class_id_reference="20" object_id="_753">
<id>760</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>250</sink_obj>
</item>
<item class_id_reference="20" object_id="_754">
<id>761</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>250</sink_obj>
</item>
<item class_id_reference="20" object_id="_755">
<id>762</id>
<edge_type>1</edge_type>
<source_obj>243</source_obj>
<sink_obj>250</sink_obj>
</item>
<item class_id_reference="20" object_id="_756">
<id>763</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>251</sink_obj>
</item>
<item class_id_reference="20" object_id="_757">
<id>764</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>251</sink_obj>
</item>
<item class_id_reference="20" object_id="_758">
<id>765</id>
<edge_type>1</edge_type>
<source_obj>243</source_obj>
<sink_obj>251</sink_obj>
</item>
<item class_id_reference="20" object_id="_759">
<id>766</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>252</sink_obj>
</item>
<item class_id_reference="20" object_id="_760">
<id>767</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>252</sink_obj>
</item>
<item class_id_reference="20" object_id="_761">
<id>768</id>
<edge_type>1</edge_type>
<source_obj>243</source_obj>
<sink_obj>252</sink_obj>
</item>
<item class_id_reference="20" object_id="_762">
<id>769</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>253</sink_obj>
</item>
<item class_id_reference="20" object_id="_763">
<id>770</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>253</sink_obj>
</item>
<item class_id_reference="20" object_id="_764">
<id>771</id>
<edge_type>1</edge_type>
<source_obj>243</source_obj>
<sink_obj>253</sink_obj>
</item>
<item class_id_reference="20" object_id="_765">
<id>772</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>254</sink_obj>
</item>
<item class_id_reference="20" object_id="_766">
<id>773</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>254</sink_obj>
</item>
<item class_id_reference="20" object_id="_767">
<id>774</id>
<edge_type>1</edge_type>
<source_obj>243</source_obj>
<sink_obj>254</sink_obj>
</item>
<item class_id_reference="20" object_id="_768">
<id>775</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>255</sink_obj>
</item>
<item class_id_reference="20" object_id="_769">
<id>776</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>255</sink_obj>
</item>
<item class_id_reference="20" object_id="_770">
<id>777</id>
<edge_type>1</edge_type>
<source_obj>243</source_obj>
<sink_obj>255</sink_obj>
</item>
<item class_id_reference="20" object_id="_771">
<id>778</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>256</sink_obj>
</item>
<item class_id_reference="20" object_id="_772">
<id>779</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>256</sink_obj>
</item>
<item class_id_reference="20" object_id="_773">
<id>780</id>
<edge_type>1</edge_type>
<source_obj>243</source_obj>
<sink_obj>256</sink_obj>
</item>
<item class_id_reference="20" object_id="_774">
<id>781</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>257</sink_obj>
</item>
<item class_id_reference="20" object_id="_775">
<id>782</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>257</sink_obj>
</item>
<item class_id_reference="20" object_id="_776">
<id>783</id>
<edge_type>1</edge_type>
<source_obj>243</source_obj>
<sink_obj>257</sink_obj>
</item>
<item class_id_reference="20" object_id="_777">
<id>784</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>258</sink_obj>
</item>
<item class_id_reference="20" object_id="_778">
<id>785</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>258</sink_obj>
</item>
<item class_id_reference="20" object_id="_779">
<id>786</id>
<edge_type>1</edge_type>
<source_obj>243</source_obj>
<sink_obj>258</sink_obj>
</item>
<item class_id_reference="20" object_id="_780">
<id>787</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>259</sink_obj>
</item>
<item class_id_reference="20" object_id="_781">
<id>788</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>259</sink_obj>
</item>
<item class_id_reference="20" object_id="_782">
<id>789</id>
<edge_type>1</edge_type>
<source_obj>243</source_obj>
<sink_obj>259</sink_obj>
</item>
<item class_id_reference="20" object_id="_783">
<id>790</id>
<edge_type>1</edge_type>
<source_obj>95</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_784">
<id>791</id>
<edge_type>2</edge_type>
<source_obj>309</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_785">
<id>792</id>
<edge_type>1</edge_type>
<source_obj>538</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_786">
<id>793</id>
<edge_type>2</edge_type>
<source_obj>306</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_787">
<id>794</id>
<edge_type>1</edge_type>
<source_obj>660</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_788">
<id>795</id>
<edge_type>2</edge_type>
<source_obj>303</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_789">
<id>796</id>
<edge_type>1</edge_type>
<source_obj>663</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_790">
<id>797</id>
<edge_type>2</edge_type>
<source_obj>300</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_791">
<id>798</id>
<edge_type>1</edge_type>
<source_obj>666</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_792">
<id>799</id>
<edge_type>2</edge_type>
<source_obj>297</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_793">
<id>800</id>
<edge_type>1</edge_type>
<source_obj>669</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_794">
<id>801</id>
<edge_type>2</edge_type>
<source_obj>294</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_795">
<id>802</id>
<edge_type>1</edge_type>
<source_obj>672</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_796">
<id>803</id>
<edge_type>2</edge_type>
<source_obj>291</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_797">
<id>804</id>
<edge_type>1</edge_type>
<source_obj>675</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_798">
<id>805</id>
<edge_type>2</edge_type>
<source_obj>288</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_799">
<id>806</id>
<edge_type>1</edge_type>
<source_obj>678</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_800">
<id>807</id>
<edge_type>2</edge_type>
<source_obj>285</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_801">
<id>808</id>
<edge_type>1</edge_type>
<source_obj>681</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_802">
<id>809</id>
<edge_type>2</edge_type>
<source_obj>282</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_803">
<id>810</id>
<edge_type>1</edge_type>
<source_obj>684</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_804">
<id>811</id>
<edge_type>2</edge_type>
<source_obj>279</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_805">
<id>812</id>
<edge_type>1</edge_type>
<source_obj>687</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_806">
<id>813</id>
<edge_type>2</edge_type>
<source_obj>276</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_807">
<id>814</id>
<edge_type>1</edge_type>
<source_obj>690</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_808">
<id>815</id>
<edge_type>2</edge_type>
<source_obj>273</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_809">
<id>816</id>
<edge_type>1</edge_type>
<source_obj>693</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_810">
<id>817</id>
<edge_type>2</edge_type>
<source_obj>270</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_811">
<id>818</id>
<edge_type>1</edge_type>
<source_obj>696</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_812">
<id>819</id>
<edge_type>2</edge_type>
<source_obj>267</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_813">
<id>820</id>
<edge_type>1</edge_type>
<source_obj>699</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_814">
<id>821</id>
<edge_type>2</edge_type>
<source_obj>264</source_obj>
<sink_obj>260</sink_obj>
</item>
<item class_id_reference="20" object_id="_815">
<id>822</id>
<edge_type>1</edge_type>
<source_obj>304</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_816">
<id>823</id>
<edge_type>2</edge_type>
<source_obj>306</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_817">
<id>824</id>
<edge_type>1</edge_type>
<source_obj>301</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_818">
<id>825</id>
<edge_type>2</edge_type>
<source_obj>303</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_819">
<id>826</id>
<edge_type>1</edge_type>
<source_obj>298</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_820">
<id>827</id>
<edge_type>2</edge_type>
<source_obj>300</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_821">
<id>828</id>
<edge_type>1</edge_type>
<source_obj>295</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_822">
<id>829</id>
<edge_type>2</edge_type>
<source_obj>297</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_823">
<id>830</id>
<edge_type>1</edge_type>
<source_obj>292</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_824">
<id>831</id>
<edge_type>2</edge_type>
<source_obj>294</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_825">
<id>832</id>
<edge_type>1</edge_type>
<source_obj>289</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_826">
<id>833</id>
<edge_type>2</edge_type>
<source_obj>291</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_827">
<id>834</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_828">
<id>835</id>
<edge_type>2</edge_type>
<source_obj>288</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_829">
<id>836</id>
<edge_type>1</edge_type>
<source_obj>283</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_830">
<id>837</id>
<edge_type>2</edge_type>
<source_obj>285</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_831">
<id>838</id>
<edge_type>1</edge_type>
<source_obj>280</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_832">
<id>839</id>
<edge_type>2</edge_type>
<source_obj>282</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_833">
<id>840</id>
<edge_type>1</edge_type>
<source_obj>277</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_834">
<id>841</id>
<edge_type>2</edge_type>
<source_obj>279</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_835">
<id>842</id>
<edge_type>1</edge_type>
<source_obj>274</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_836">
<id>843</id>
<edge_type>2</edge_type>
<source_obj>276</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_837">
<id>844</id>
<edge_type>1</edge_type>
<source_obj>271</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_838">
<id>845</id>
<edge_type>2</edge_type>
<source_obj>273</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_839">
<id>846</id>
<edge_type>1</edge_type>
<source_obj>268</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_840">
<id>847</id>
<edge_type>2</edge_type>
<source_obj>270</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_841">
<id>848</id>
<edge_type>1</edge_type>
<source_obj>265</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_842">
<id>849</id>
<edge_type>2</edge_type>
<source_obj>267</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_843">
<id>850</id>
<edge_type>1</edge_type>
<source_obj>262</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_844">
<id>851</id>
<edge_type>2</edge_type>
<source_obj>264</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_845">
<id>852</id>
<edge_type>1</edge_type>
<source_obj>307</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_846">
<id>853</id>
<edge_type>2</edge_type>
<source_obj>309</source_obj>
<sink_obj>310</sink_obj>
</item>
<item class_id_reference="20" object_id="_847">
<id>854</id>
<edge_type>1</edge_type>
<source_obj>310</source_obj>
<sink_obj>311</sink_obj>
</item>
<item class_id_reference="20" object_id="_848">
<id>855</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>312</sink_obj>
</item>
<item class_id_reference="20" object_id="_849">
<id>856</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>312</sink_obj>
</item>
<item class_id_reference="20" object_id="_850">
<id>857</id>
<edge_type>1</edge_type>
<source_obj>243</source_obj>
<sink_obj>312</sink_obj>
</item>
<item class_id_reference="20" object_id="_851">
<id>858</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>313</sink_obj>
</item>
<item class_id_reference="20" object_id="_852">
<id>859</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>313</sink_obj>
</item>
<item class_id_reference="20" object_id="_853">
<id>860</id>
<edge_type>1</edge_type>
<source_obj>243</source_obj>
<sink_obj>313</sink_obj>
</item>
<item class_id_reference="20" object_id="_854">
<id>861</id>
<edge_type>1</edge_type>
<source_obj>95</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_855">
<id>862</id>
<edge_type>2</edge_type>
<source_obj>363</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_856">
<id>863</id>
<edge_type>1</edge_type>
<source_obj>538</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_857">
<id>864</id>
<edge_type>2</edge_type>
<source_obj>360</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_858">
<id>865</id>
<edge_type>1</edge_type>
<source_obj>660</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_859">
<id>866</id>
<edge_type>2</edge_type>
<source_obj>357</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_860">
<id>867</id>
<edge_type>1</edge_type>
<source_obj>663</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_861">
<id>868</id>
<edge_type>2</edge_type>
<source_obj>354</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_862">
<id>869</id>
<edge_type>1</edge_type>
<source_obj>666</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_863">
<id>870</id>
<edge_type>2</edge_type>
<source_obj>351</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_864">
<id>871</id>
<edge_type>1</edge_type>
<source_obj>669</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_865">
<id>872</id>
<edge_type>2</edge_type>
<source_obj>348</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_866">
<id>873</id>
<edge_type>1</edge_type>
<source_obj>672</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_867">
<id>874</id>
<edge_type>2</edge_type>
<source_obj>345</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_868">
<id>875</id>
<edge_type>1</edge_type>
<source_obj>675</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_869">
<id>876</id>
<edge_type>2</edge_type>
<source_obj>342</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_870">
<id>877</id>
<edge_type>1</edge_type>
<source_obj>678</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_871">
<id>878</id>
<edge_type>2</edge_type>
<source_obj>339</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_872">
<id>879</id>
<edge_type>1</edge_type>
<source_obj>681</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_873">
<id>880</id>
<edge_type>2</edge_type>
<source_obj>336</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_874">
<id>881</id>
<edge_type>1</edge_type>
<source_obj>684</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_875">
<id>882</id>
<edge_type>2</edge_type>
<source_obj>333</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_876">
<id>883</id>
<edge_type>1</edge_type>
<source_obj>687</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_877">
<id>884</id>
<edge_type>2</edge_type>
<source_obj>330</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_878">
<id>885</id>
<edge_type>1</edge_type>
<source_obj>690</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_879">
<id>886</id>
<edge_type>2</edge_type>
<source_obj>327</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_880">
<id>887</id>
<edge_type>1</edge_type>
<source_obj>693</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_881">
<id>888</id>
<edge_type>2</edge_type>
<source_obj>324</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_882">
<id>889</id>
<edge_type>1</edge_type>
<source_obj>696</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_883">
<id>890</id>
<edge_type>2</edge_type>
<source_obj>321</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_884">
<id>891</id>
<edge_type>1</edge_type>
<source_obj>699</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_885">
<id>892</id>
<edge_type>2</edge_type>
<source_obj>318</source_obj>
<sink_obj>314</sink_obj>
</item>
<item class_id_reference="20" object_id="_886">
<id>893</id>
<edge_type>1</edge_type>
<source_obj>358</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_887">
<id>894</id>
<edge_type>2</edge_type>
<source_obj>360</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_888">
<id>895</id>
<edge_type>1</edge_type>
<source_obj>355</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_889">
<id>896</id>
<edge_type>2</edge_type>
<source_obj>357</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_890">
<id>897</id>
<edge_type>1</edge_type>
<source_obj>352</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_891">
<id>898</id>
<edge_type>2</edge_type>
<source_obj>354</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_892">
<id>899</id>
<edge_type>1</edge_type>
<source_obj>349</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_893">
<id>900</id>
<edge_type>2</edge_type>
<source_obj>351</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_894">
<id>901</id>
<edge_type>1</edge_type>
<source_obj>346</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_895">
<id>902</id>
<edge_type>2</edge_type>
<source_obj>348</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_896">
<id>903</id>
<edge_type>1</edge_type>
<source_obj>343</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_897">
<id>904</id>
<edge_type>2</edge_type>
<source_obj>345</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_898">
<id>905</id>
<edge_type>1</edge_type>
<source_obj>340</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_899">
<id>906</id>
<edge_type>2</edge_type>
<source_obj>342</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_900">
<id>907</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_901">
<id>908</id>
<edge_type>2</edge_type>
<source_obj>339</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_902">
<id>909</id>
<edge_type>1</edge_type>
<source_obj>334</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_903">
<id>910</id>
<edge_type>2</edge_type>
<source_obj>336</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_904">
<id>911</id>
<edge_type>1</edge_type>
<source_obj>331</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_905">
<id>912</id>
<edge_type>2</edge_type>
<source_obj>333</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_906">
<id>913</id>
<edge_type>1</edge_type>
<source_obj>328</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_907">
<id>914</id>
<edge_type>2</edge_type>
<source_obj>330</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_908">
<id>915</id>
<edge_type>1</edge_type>
<source_obj>325</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_909">
<id>916</id>
<edge_type>2</edge_type>
<source_obj>327</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_910">
<id>917</id>
<edge_type>1</edge_type>
<source_obj>322</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_911">
<id>918</id>
<edge_type>2</edge_type>
<source_obj>324</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_912">
<id>919</id>
<edge_type>1</edge_type>
<source_obj>319</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_913">
<id>920</id>
<edge_type>2</edge_type>
<source_obj>321</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_914">
<id>921</id>
<edge_type>1</edge_type>
<source_obj>316</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_915">
<id>922</id>
<edge_type>2</edge_type>
<source_obj>318</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_916">
<id>923</id>
<edge_type>1</edge_type>
<source_obj>361</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_917">
<id>924</id>
<edge_type>2</edge_type>
<source_obj>363</source_obj>
<sink_obj>364</sink_obj>
</item>
<item class_id_reference="20" object_id="_918">
<id>925</id>
<edge_type>1</edge_type>
<source_obj>364</source_obj>
<sink_obj>365</sink_obj>
</item>
<item class_id_reference="20" object_id="_919">
<id>926</id>
<edge_type>1</edge_type>
<source_obj>311</source_obj>
<sink_obj>366</sink_obj>
</item>
<item class_id_reference="20" object_id="_920">
<id>927</id>
<edge_type>1</edge_type>
<source_obj>365</source_obj>
<sink_obj>366</sink_obj>
</item>
<item class_id_reference="20" object_id="_921">
<id>928</id>
<edge_type>1</edge_type>
<source_obj>366</source_obj>
<sink_obj>367</sink_obj>
</item>
<item class_id_reference="20" object_id="_922">
<id>929</id>
<edge_type>1</edge_type>
<source_obj>366</source_obj>
<sink_obj>368</sink_obj>
</item>
<item class_id_reference="20" object_id="_923">
<id>930</id>
<edge_type>1</edge_type>
<source_obj>241</source_obj>
<sink_obj>369</sink_obj>
</item>
<item class_id_reference="20" object_id="_924">
<id>931</id>
<edge_type>1</edge_type>
<source_obj>368</source_obj>
<sink_obj>369</sink_obj>
</item>
<item class_id_reference="20" object_id="_925">
<id>933</id>
<edge_type>1</edge_type>
<source_obj>932</source_obj>
<sink_obj>370</sink_obj>
</item>
<item class_id_reference="20" object_id="_926">
<id>934</id>
<edge_type>1</edge_type>
<source_obj>369</source_obj>
<sink_obj>370</sink_obj>
</item>
<item class_id_reference="20" object_id="_927">
<id>935</id>
<edge_type>1</edge_type>
<source_obj>369</source_obj>
<sink_obj>371</sink_obj>
</item>
<item class_id_reference="20" object_id="_928">
<id>936</id>
<edge_type>1</edge_type>
<source_obj>932</source_obj>
<sink_obj>371</sink_obj>
</item>
<item class_id_reference="20" object_id="_929">
<id>937</id>
<edge_type>1</edge_type>
<source_obj>371</source_obj>
<sink_obj>372</sink_obj>
</item>
<item class_id_reference="20" object_id="_930">
<id>938</id>
<edge_type>1</edge_type>
<source_obj>369</source_obj>
<sink_obj>372</sink_obj>
</item>
<item class_id_reference="20" object_id="_931">
<id>939</id>
<edge_type>1</edge_type>
<source_obj>370</source_obj>
<sink_obj>372</sink_obj>
</item>
<item class_id_reference="20" object_id="_932">
<id>940</id>
<edge_type>1</edge_type>
<source_obj>372</source_obj>
<sink_obj>373</sink_obj>
</item>
<item class_id_reference="20" object_id="_933">
<id>941</id>
<edge_type>1</edge_type>
<source_obj>366</source_obj>
<sink_obj>374</sink_obj>
</item>
<item class_id_reference="20" object_id="_934">
<id>942</id>
<edge_type>1</edge_type>
<source_obj>239</source_obj>
<sink_obj>374</sink_obj>
</item>
<item class_id_reference="20" object_id="_935">
<id>945</id>
<edge_type>1</edge_type>
<source_obj>374</source_obj>
<sink_obj>375</sink_obj>
</item>
<item class_id_reference="20" object_id="_936">
<id>947</id>
<edge_type>1</edge_type>
<source_obj>946</source_obj>
<sink_obj>375</sink_obj>
</item>
<item class_id_reference="20" object_id="_937">
<id>948</id>
<edge_type>1</edge_type>
<source_obj>375</source_obj>
<sink_obj>376</sink_obj>
</item>
<item class_id_reference="20" object_id="_938">
<id>949</id>
<edge_type>2</edge_type>
<source_obj>428</source_obj>
<sink_obj>376</sink_obj>
</item>
<item class_id_reference="20" object_id="_939">
<id>950</id>
<edge_type>2</edge_type>
<source_obj>382</source_obj>
<sink_obj>376</sink_obj>
</item>
<item class_id_reference="20" object_id="_940">
<id>951</id>
<edge_type>1</edge_type>
<source_obj>239</source_obj>
<sink_obj>378</sink_obj>
</item>
<item class_id_reference="20" object_id="_941">
<id>952</id>
<edge_type>1</edge_type>
<source_obj>567</source_obj>
<sink_obj>378</sink_obj>
</item>
<item class_id_reference="20" object_id="_942">
<id>953</id>
<edge_type>1</edge_type>
<source_obj>366</source_obj>
<sink_obj>379</sink_obj>
</item>
<item class_id_reference="20" object_id="_943">
<id>954</id>
<edge_type>1</edge_type>
<source_obj>567</source_obj>
<sink_obj>379</sink_obj>
</item>
<item class_id_reference="20" object_id="_944">
<id>955</id>
<edge_type>1</edge_type>
<source_obj>378</source_obj>
<sink_obj>380</sink_obj>
</item>
<item class_id_reference="20" object_id="_945">
<id>956</id>
<edge_type>1</edge_type>
<source_obj>379</source_obj>
<sink_obj>380</sink_obj>
</item>
<item class_id_reference="20" object_id="_946">
<id>957</id>
<edge_type>1</edge_type>
<source_obj>380</source_obj>
<sink_obj>381</sink_obj>
</item>
<item class_id_reference="20" object_id="_947">
<id>958</id>
<edge_type>2</edge_type>
<source_obj>397</source_obj>
<sink_obj>381</sink_obj>
</item>
<item class_id_reference="20" object_id="_948">
<id>959</id>
<edge_type>2</edge_type>
<source_obj>428</source_obj>
<sink_obj>381</sink_obj>
</item>
<item class_id_reference="20" object_id="_949">
<id>961</id>
<edge_type>1</edge_type>
<source_obj>960</source_obj>
<sink_obj>414</sink_obj>
</item>
<item class_id_reference="20" object_id="_950">
<id>962</id>
<edge_type>1</edge_type>
<source_obj>367</source_obj>
<sink_obj>414</sink_obj>
</item>
<item class_id_reference="20" object_id="_951">
<id>963</id>
<edge_type>1</edge_type>
<source_obj>366</source_obj>
<sink_obj>415</sink_obj>
</item>
<item class_id_reference="20" object_id="_952">
<id>964</id>
<edge_type>1</edge_type>
<source_obj>525</source_obj>
<sink_obj>415</sink_obj>
</item>
<item class_id_reference="20" object_id="_953">
<id>965</id>
<edge_type>1</edge_type>
<source_obj>415</source_obj>
<sink_obj>416</sink_obj>
</item>
<item class_id_reference="20" object_id="_954">
<id>966</id>
<edge_type>1</edge_type>
<source_obj>367</source_obj>
<sink_obj>416</sink_obj>
</item>
<item class_id_reference="20" object_id="_955">
<id>967</id>
<edge_type>1</edge_type>
<source_obj>414</source_obj>
<sink_obj>416</sink_obj>
</item>
<item class_id_reference="20" object_id="_956">
<id>968</id>
<edge_type>1</edge_type>
<source_obj>416</source_obj>
<sink_obj>417</sink_obj>
</item>
<item class_id_reference="20" object_id="_957">
<id>969</id>
<edge_type>1</edge_type>
<source_obj>416</source_obj>
<sink_obj>418</sink_obj>
</item>
<item class_id_reference="20" object_id="_958">
<id>970</id>
<edge_type>1</edge_type>
<source_obj>960</source_obj>
<sink_obj>419</sink_obj>
</item>
<item class_id_reference="20" object_id="_959">
<id>971</id>
<edge_type>1</edge_type>
<source_obj>240</source_obj>
<sink_obj>419</sink_obj>
</item>
<item class_id_reference="20" object_id="_960">
<id>972</id>
<edge_type>1</edge_type>
<source_obj>239</source_obj>
<sink_obj>420</sink_obj>
</item>
<item class_id_reference="20" object_id="_961">
<id>973</id>
<edge_type>1</edge_type>
<source_obj>525</source_obj>
<sink_obj>420</sink_obj>
</item>
<item class_id_reference="20" object_id="_962">
<id>974</id>
<edge_type>1</edge_type>
<source_obj>420</source_obj>
<sink_obj>421</sink_obj>
</item>
<item class_id_reference="20" object_id="_963">
<id>975</id>
<edge_type>1</edge_type>
<source_obj>240</source_obj>
<sink_obj>421</sink_obj>
</item>
<item class_id_reference="20" object_id="_964">
<id>976</id>
<edge_type>1</edge_type>
<source_obj>419</source_obj>
<sink_obj>421</sink_obj>
</item>
<item class_id_reference="20" object_id="_965">
<id>977</id>
<edge_type>1</edge_type>
<source_obj>421</source_obj>
<sink_obj>422</sink_obj>
</item>
<item class_id_reference="20" object_id="_966">
<id>978</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>423</sink_obj>
</item>
<item class_id_reference="20" object_id="_967">
<id>979</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>423</sink_obj>
</item>
<item class_id_reference="20" object_id="_968">
<id>980</id>
<edge_type>1</edge_type>
<source_obj>422</source_obj>
<sink_obj>423</sink_obj>
</item>
<item class_id_reference="20" object_id="_969">
<id>981</id>
<edge_type>1</edge_type>
<source_obj>423</source_obj>
<sink_obj>424</sink_obj>
</item>
<item class_id_reference="20" object_id="_970">
<id>982</id>
<edge_type>1</edge_type>
<source_obj>424</source_obj>
<sink_obj>425</sink_obj>
</item>
<item class_id_reference="20" object_id="_971">
<id>983</id>
<edge_type>1</edge_type>
<source_obj>416</source_obj>
<sink_obj>426</sink_obj>
</item>
<item class_id_reference="20" object_id="_972">
<id>984</id>
<edge_type>1</edge_type>
<source_obj>425</source_obj>
<sink_obj>426</sink_obj>
</item>
<item class_id_reference="20" object_id="_973">
<id>985</id>
<edge_type>1</edge_type>
<source_obj>426</source_obj>
<sink_obj>427</sink_obj>
</item>
<item class_id_reference="20" object_id="_974">
<id>986</id>
<edge_type>2</edge_type>
<source_obj>433</source_obj>
<sink_obj>427</sink_obj>
</item>
<item class_id_reference="20" object_id="_975">
<id>987</id>
<edge_type>2</edge_type>
<source_obj>474</source_obj>
<sink_obj>427</sink_obj>
</item>
<item class_id_reference="20" object_id="_976">
<id>988</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>429</sink_obj>
</item>
<item class_id_reference="20" object_id="_977">
<id>989</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>429</sink_obj>
</item>
<item class_id_reference="20" object_id="_978">
<id>990</id>
<edge_type>1</edge_type>
<source_obj>422</source_obj>
<sink_obj>429</sink_obj>
</item>
<item class_id_reference="20" object_id="_979">
<id>991</id>
<edge_type>1</edge_type>
<source_obj>429</source_obj>
<sink_obj>430</sink_obj>
</item>
<item class_id_reference="20" object_id="_980">
<id>992</id>
<edge_type>1</edge_type>
<source_obj>416</source_obj>
<sink_obj>431</sink_obj>
</item>
<item class_id_reference="20" object_id="_981">
<id>993</id>
<edge_type>1</edge_type>
<source_obj>430</source_obj>
<sink_obj>431</sink_obj>
</item>
<item class_id_reference="20" object_id="_982">
<id>994</id>
<edge_type>1</edge_type>
<source_obj>431</source_obj>
<sink_obj>432</sink_obj>
</item>
<item class_id_reference="20" object_id="_983">
<id>995</id>
<edge_type>2</edge_type>
<source_obj>438</source_obj>
<sink_obj>432</sink_obj>
</item>
<item class_id_reference="20" object_id="_984">
<id>996</id>
<edge_type>2</edge_type>
<source_obj>474</source_obj>
<sink_obj>432</sink_obj>
</item>
<item class_id_reference="20" object_id="_985">
<id>997</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>434</sink_obj>
</item>
<item class_id_reference="20" object_id="_986">
<id>998</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>434</sink_obj>
</item>
<item class_id_reference="20" object_id="_987">
<id>999</id>
<edge_type>1</edge_type>
<source_obj>422</source_obj>
<sink_obj>434</sink_obj>
</item>
<item class_id_reference="20" object_id="_988">
<id>1000</id>
<edge_type>1</edge_type>
<source_obj>434</source_obj>
<sink_obj>435</sink_obj>
</item>
<item class_id_reference="20" object_id="_989">
<id>1001</id>
<edge_type>1</edge_type>
<source_obj>418</source_obj>
<sink_obj>436</sink_obj>
</item>
<item class_id_reference="20" object_id="_990">
<id>1002</id>
<edge_type>1</edge_type>
<source_obj>435</source_obj>
<sink_obj>436</sink_obj>
</item>
<item class_id_reference="20" object_id="_991">
<id>1003</id>
<edge_type>1</edge_type>
<source_obj>436</source_obj>
<sink_obj>437</sink_obj>
</item>
<item class_id_reference="20" object_id="_992">
<id>1004</id>
<edge_type>2</edge_type>
<source_obj>444</source_obj>
<sink_obj>437</sink_obj>
</item>
<item class_id_reference="20" object_id="_993">
<id>1005</id>
<edge_type>2</edge_type>
<source_obj>474</source_obj>
<sink_obj>437</sink_obj>
</item>
<item class_id_reference="20" object_id="_994">
<id>1006</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>439</sink_obj>
</item>
<item class_id_reference="20" object_id="_995">
<id>1007</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>439</sink_obj>
</item>
<item class_id_reference="20" object_id="_996">
<id>1008</id>
<edge_type>1</edge_type>
<source_obj>422</source_obj>
<sink_obj>439</sink_obj>
</item>
<item class_id_reference="20" object_id="_997">
<id>1009</id>
<edge_type>1</edge_type>
<source_obj>439</source_obj>
<sink_obj>440</sink_obj>
</item>
<item class_id_reference="20" object_id="_998">
<id>1010</id>
<edge_type>1</edge_type>
<source_obj>417</source_obj>
<sink_obj>441</sink_obj>
</item>
<item class_id_reference="20" object_id="_999">
<id>1011</id>
<edge_type>1</edge_type>
<source_obj>440</source_obj>
<sink_obj>441</sink_obj>
</item>
<item class_id_reference="20" object_id="_1000">
<id>1012</id>
<edge_type>1</edge_type>
<source_obj>441</source_obj>
<sink_obj>442</sink_obj>
</item>
<item class_id_reference="20" object_id="_1001">
<id>1014</id>
<edge_type>1</edge_type>
<source_obj>1013</source_obj>
<sink_obj>442</sink_obj>
</item>
<item class_id_reference="20" object_id="_1002">
<id>1016</id>
<edge_type>1</edge_type>
<source_obj>1015</source_obj>
<sink_obj>442</sink_obj>
</item>
<item class_id_reference="20" object_id="_1003">
<id>1017</id>
<edge_type>2</edge_type>
<source_obj>474</source_obj>
<sink_obj>443</sink_obj>
</item>
<item class_id_reference="20" object_id="_1004">
<id>1018</id>
<edge_type>1</edge_type>
<source_obj>960</source_obj>
<sink_obj>383</sink_obj>
</item>
<item class_id_reference="20" object_id="_1005">
<id>1019</id>
<edge_type>1</edge_type>
<source_obj>367</source_obj>
<sink_obj>383</sink_obj>
</item>
<item class_id_reference="20" object_id="_1006">
<id>1020</id>
<edge_type>1</edge_type>
<source_obj>366</source_obj>
<sink_obj>384</sink_obj>
</item>
<item class_id_reference="20" object_id="_1007">
<id>1021</id>
<edge_type>1</edge_type>
<source_obj>525</source_obj>
<sink_obj>384</sink_obj>
</item>
<item class_id_reference="20" object_id="_1008">
<id>1022</id>
<edge_type>1</edge_type>
<source_obj>384</source_obj>
<sink_obj>385</sink_obj>
</item>
<item class_id_reference="20" object_id="_1009">
<id>1023</id>
<edge_type>1</edge_type>
<source_obj>367</source_obj>
<sink_obj>385</sink_obj>
</item>
<item class_id_reference="20" object_id="_1010">
<id>1024</id>
<edge_type>1</edge_type>
<source_obj>383</source_obj>
<sink_obj>385</sink_obj>
</item>
<item class_id_reference="20" object_id="_1011">
<id>1025</id>
<edge_type>1</edge_type>
<source_obj>385</source_obj>
<sink_obj>386</sink_obj>
</item>
<item class_id_reference="20" object_id="_1012">
<id>1026</id>
<edge_type>1</edge_type>
<source_obj>385</source_obj>
<sink_obj>387</sink_obj>
</item>
<item class_id_reference="20" object_id="_1013">
<id>1027</id>
<edge_type>1</edge_type>
<source_obj>960</source_obj>
<sink_obj>388</sink_obj>
</item>
<item class_id_reference="20" object_id="_1014">
<id>1028</id>
<edge_type>1</edge_type>
<source_obj>240</source_obj>
<sink_obj>388</sink_obj>
</item>
<item class_id_reference="20" object_id="_1015">
<id>1029</id>
<edge_type>1</edge_type>
<source_obj>239</source_obj>
<sink_obj>389</sink_obj>
</item>
<item class_id_reference="20" object_id="_1016">
<id>1030</id>
<edge_type>1</edge_type>
<source_obj>525</source_obj>
<sink_obj>389</sink_obj>
</item>
<item class_id_reference="20" object_id="_1017">
<id>1031</id>
<edge_type>1</edge_type>
<source_obj>389</source_obj>
<sink_obj>390</sink_obj>
</item>
<item class_id_reference="20" object_id="_1018">
<id>1032</id>
<edge_type>1</edge_type>
<source_obj>240</source_obj>
<sink_obj>390</sink_obj>
</item>
<item class_id_reference="20" object_id="_1019">
<id>1033</id>
<edge_type>1</edge_type>
<source_obj>388</source_obj>
<sink_obj>390</sink_obj>
</item>
<item class_id_reference="20" object_id="_1020">
<id>1034</id>
<edge_type>1</edge_type>
<source_obj>390</source_obj>
<sink_obj>391</sink_obj>
</item>
<item class_id_reference="20" object_id="_1021">
<id>1035</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>392</sink_obj>
</item>
<item class_id_reference="20" object_id="_1022">
<id>1036</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>392</sink_obj>
</item>
<item class_id_reference="20" object_id="_1023">
<id>1037</id>
<edge_type>1</edge_type>
<source_obj>391</source_obj>
<sink_obj>392</sink_obj>
</item>
<item class_id_reference="20" object_id="_1024">
<id>1038</id>
<edge_type>1</edge_type>
<source_obj>392</source_obj>
<sink_obj>393</sink_obj>
</item>
<item class_id_reference="20" object_id="_1025">
<id>1039</id>
<edge_type>1</edge_type>
<source_obj>393</source_obj>
<sink_obj>394</sink_obj>
</item>
<item class_id_reference="20" object_id="_1026">
<id>1040</id>
<edge_type>1</edge_type>
<source_obj>385</source_obj>
<sink_obj>395</sink_obj>
</item>
<item class_id_reference="20" object_id="_1027">
<id>1041</id>
<edge_type>1</edge_type>
<source_obj>394</source_obj>
<sink_obj>395</sink_obj>
</item>
<item class_id_reference="20" object_id="_1028">
<id>1042</id>
<edge_type>1</edge_type>
<source_obj>395</source_obj>
<sink_obj>396</sink_obj>
</item>
<item class_id_reference="20" object_id="_1029">
<id>1043</id>
<edge_type>2</edge_type>
<source_obj>402</source_obj>
<sink_obj>396</sink_obj>
</item>
<item class_id_reference="20" object_id="_1030">
<id>1044</id>
<edge_type>2</edge_type>
<source_obj>474</source_obj>
<sink_obj>396</sink_obj>
</item>
<item class_id_reference="20" object_id="_1031">
<id>1045</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>398</sink_obj>
</item>
<item class_id_reference="20" object_id="_1032">
<id>1046</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>398</sink_obj>
</item>
<item class_id_reference="20" object_id="_1033">
<id>1047</id>
<edge_type>1</edge_type>
<source_obj>391</source_obj>
<sink_obj>398</sink_obj>
</item>
<item class_id_reference="20" object_id="_1034">
<id>1048</id>
<edge_type>1</edge_type>
<source_obj>398</source_obj>
<sink_obj>399</sink_obj>
</item>
<item class_id_reference="20" object_id="_1035">
<id>1049</id>
<edge_type>1</edge_type>
<source_obj>385</source_obj>
<sink_obj>400</sink_obj>
</item>
<item class_id_reference="20" object_id="_1036">
<id>1050</id>
<edge_type>1</edge_type>
<source_obj>399</source_obj>
<sink_obj>400</sink_obj>
</item>
<item class_id_reference="20" object_id="_1037">
<id>1051</id>
<edge_type>1</edge_type>
<source_obj>400</source_obj>
<sink_obj>401</sink_obj>
</item>
<item class_id_reference="20" object_id="_1038">
<id>1052</id>
<edge_type>2</edge_type>
<source_obj>407</source_obj>
<sink_obj>401</sink_obj>
</item>
<item class_id_reference="20" object_id="_1039">
<id>1053</id>
<edge_type>2</edge_type>
<source_obj>474</source_obj>
<sink_obj>401</sink_obj>
</item>
<item class_id_reference="20" object_id="_1040">
<id>1054</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>403</sink_obj>
</item>
<item class_id_reference="20" object_id="_1041">
<id>1055</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>403</sink_obj>
</item>
<item class_id_reference="20" object_id="_1042">
<id>1056</id>
<edge_type>1</edge_type>
<source_obj>391</source_obj>
<sink_obj>403</sink_obj>
</item>
<item class_id_reference="20" object_id="_1043">
<id>1057</id>
<edge_type>1</edge_type>
<source_obj>403</source_obj>
<sink_obj>404</sink_obj>
</item>
<item class_id_reference="20" object_id="_1044">
<id>1058</id>
<edge_type>1</edge_type>
<source_obj>387</source_obj>
<sink_obj>405</sink_obj>
</item>
<item class_id_reference="20" object_id="_1045">
<id>1059</id>
<edge_type>1</edge_type>
<source_obj>404</source_obj>
<sink_obj>405</sink_obj>
</item>
<item class_id_reference="20" object_id="_1046">
<id>1060</id>
<edge_type>1</edge_type>
<source_obj>405</source_obj>
<sink_obj>406</sink_obj>
</item>
<item class_id_reference="20" object_id="_1047">
<id>1061</id>
<edge_type>2</edge_type>
<source_obj>413</source_obj>
<sink_obj>406</sink_obj>
</item>
<item class_id_reference="20" object_id="_1048">
<id>1062</id>
<edge_type>2</edge_type>
<source_obj>474</source_obj>
<sink_obj>406</sink_obj>
</item>
<item class_id_reference="20" object_id="_1049">
<id>1063</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>408</sink_obj>
</item>
<item class_id_reference="20" object_id="_1050">
<id>1064</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>408</sink_obj>
</item>
<item class_id_reference="20" object_id="_1051">
<id>1065</id>
<edge_type>1</edge_type>
<source_obj>391</source_obj>
<sink_obj>408</sink_obj>
</item>
<item class_id_reference="20" object_id="_1052">
<id>1066</id>
<edge_type>1</edge_type>
<source_obj>408</source_obj>
<sink_obj>409</sink_obj>
</item>
<item class_id_reference="20" object_id="_1053">
<id>1067</id>
<edge_type>1</edge_type>
<source_obj>386</source_obj>
<sink_obj>410</sink_obj>
</item>
<item class_id_reference="20" object_id="_1054">
<id>1068</id>
<edge_type>1</edge_type>
<source_obj>409</source_obj>
<sink_obj>410</sink_obj>
</item>
<item class_id_reference="20" object_id="_1055">
<id>1069</id>
<edge_type>1</edge_type>
<source_obj>410</source_obj>
<sink_obj>411</sink_obj>
</item>
<item class_id_reference="20" object_id="_1056">
<id>1071</id>
<edge_type>1</edge_type>
<source_obj>1070</source_obj>
<sink_obj>411</sink_obj>
</item>
<item class_id_reference="20" object_id="_1057">
<id>1073</id>
<edge_type>1</edge_type>
<source_obj>1072</source_obj>
<sink_obj>411</sink_obj>
</item>
<item class_id_reference="20" object_id="_1058">
<id>1074</id>
<edge_type>2</edge_type>
<source_obj>474</source_obj>
<sink_obj>412</sink_obj>
</item>
<item class_id_reference="20" object_id="_1059">
<id>1075</id>
<edge_type>1</edge_type>
<source_obj>442</source_obj>
<sink_obj>445</sink_obj>
</item>
<item class_id_reference="20" object_id="_1060">
<id>1076</id>
<edge_type>2</edge_type>
<source_obj>444</source_obj>
<sink_obj>445</sink_obj>
</item>
<item class_id_reference="20" object_id="_1061">
<id>1077</id>
<edge_type>1</edge_type>
<source_obj>411</source_obj>
<sink_obj>445</sink_obj>
</item>
<item class_id_reference="20" object_id="_1062">
<id>1078</id>
<edge_type>2</edge_type>
<source_obj>413</source_obj>
<sink_obj>445</sink_obj>
</item>
<item class_id_reference="20" object_id="_1063">
<id>1080</id>
<edge_type>1</edge_type>
<source_obj>1079</source_obj>
<sink_obj>445</sink_obj>
</item>
<item class_id_reference="20" object_id="_1064">
<id>1081</id>
<edge_type>2</edge_type>
<source_obj>428</source_obj>
<sink_obj>445</sink_obj>
</item>
<item class_id_reference="20" object_id="_1065">
<id>1083</id>
<edge_type>1</edge_type>
<source_obj>1082</source_obj>
<sink_obj>445</sink_obj>
</item>
<item class_id_reference="20" object_id="_1066">
<id>1084</id>
<edge_type>2</edge_type>
<source_obj>433</source_obj>
<sink_obj>445</sink_obj>
</item>
<item class_id_reference="20" object_id="_1067">
<id>1086</id>
<edge_type>1</edge_type>
<source_obj>1085</source_obj>
<sink_obj>445</sink_obj>
</item>
<item class_id_reference="20" object_id="_1068">
<id>1087</id>
<edge_type>2</edge_type>
<source_obj>438</source_obj>
<sink_obj>445</sink_obj>
</item>
<item class_id_reference="20" object_id="_1069">
<id>1088</id>
<edge_type>1</edge_type>
<source_obj>1015</source_obj>
<sink_obj>445</sink_obj>
</item>
<item class_id_reference="20" object_id="_1070">
<id>1089</id>
<edge_type>2</edge_type>
<source_obj>397</source_obj>
<sink_obj>445</sink_obj>
</item>
<item class_id_reference="20" object_id="_1071">
<id>1091</id>
<edge_type>1</edge_type>
<source_obj>1090</source_obj>
<sink_obj>445</sink_obj>
</item>
<item class_id_reference="20" object_id="_1072">
<id>1092</id>
<edge_type>2</edge_type>
<source_obj>402</source_obj>
<sink_obj>445</sink_obj>
</item>
<item class_id_reference="20" object_id="_1073">
<id>1094</id>
<edge_type>1</edge_type>
<source_obj>1093</source_obj>
<sink_obj>445</sink_obj>
</item>
<item class_id_reference="20" object_id="_1074">
<id>1095</id>
<edge_type>2</edge_type>
<source_obj>407</source_obj>
<sink_obj>445</sink_obj>
</item>
<item class_id_reference="20" object_id="_1075">
<id>1097</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>446</sink_obj>
</item>
<item class_id_reference="20" object_id="_1076">
<id>1098</id>
<edge_type>1</edge_type>
<source_obj>550</source_obj>
<sink_obj>446</sink_obj>
</item>
<item class_id_reference="20" object_id="_1077">
<id>1101</id>
<edge_type>1</edge_type>
<source_obj>446</source_obj>
<sink_obj>447</sink_obj>
</item>
<item class_id_reference="20" object_id="_1078">
<id>1103</id>
<edge_type>1</edge_type>
<source_obj>1102</source_obj>
<sink_obj>447</sink_obj>
</item>
<item class_id_reference="20" object_id="_1079">
<id>1104</id>
<edge_type>1</edge_type>
<source_obj>447</source_obj>
<sink_obj>448</sink_obj>
</item>
<item class_id_reference="20" object_id="_1080">
<id>1105</id>
<edge_type>1</edge_type>
<source_obj>448</source_obj>
<sink_obj>449</sink_obj>
</item>
<item class_id_reference="20" object_id="_1081">
<id>1106</id>
<edge_type>1</edge_type>
<source_obj>91</source_obj>
<sink_obj>449</sink_obj>
</item>
<item class_id_reference="20" object_id="_1082">
<id>1109</id>
<edge_type>1</edge_type>
<source_obj>446</source_obj>
<sink_obj>450</sink_obj>
</item>
<item class_id_reference="20" object_id="_1083">
<id>1110</id>
<edge_type>1</edge_type>
<source_obj>1102</source_obj>
<sink_obj>450</sink_obj>
</item>
<item class_id_reference="20" object_id="_1084">
<id>1111</id>
<edge_type>1</edge_type>
<source_obj>449</source_obj>
<sink_obj>450</sink_obj>
</item>
<item class_id_reference="20" object_id="_1085">
<id>1112</id>
<edge_type>1</edge_type>
<source_obj>450</source_obj>
<sink_obj>451</sink_obj>
</item>
<item class_id_reference="20" object_id="_1086">
<id>1115</id>
<edge_type>1</edge_type>
<source_obj>94</source_obj>
<sink_obj>452</sink_obj>
</item>
<item class_id_reference="20" object_id="_1087">
<id>1116</id>
<edge_type>1</edge_type>
<source_obj>550</source_obj>
<sink_obj>452</sink_obj>
</item>
<item class_id_reference="20" object_id="_1088">
<id>1119</id>
<edge_type>1</edge_type>
<source_obj>452</source_obj>
<sink_obj>453</sink_obj>
</item>
<item class_id_reference="20" object_id="_1089">
<id>1120</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>453</sink_obj>
</item>
<item class_id_reference="20" object_id="_1090">
<id>1121</id>
<edge_type>1</edge_type>
<source_obj>504</source_obj>
<sink_obj>453</sink_obj>
</item>
<item class_id_reference="20" object_id="_1091">
<id>1122</id>
<edge_type>1</edge_type>
<source_obj>453</source_obj>
<sink_obj>454</sink_obj>
</item>
<item class_id_reference="20" object_id="_1092">
<id>1125</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>455</sink_obj>
</item>
<item class_id_reference="20" object_id="_1093">
<id>1126</id>
<edge_type>1</edge_type>
<source_obj>1102</source_obj>
<sink_obj>455</sink_obj>
</item>
<item class_id_reference="20" object_id="_1094">
<id>1127</id>
<edge_type>1</edge_type>
<source_obj>445</source_obj>
<sink_obj>455</sink_obj>
</item>
<item class_id_reference="20" object_id="_1095">
<id>1128</id>
<edge_type>1</edge_type>
<source_obj>455</source_obj>
<sink_obj>456</sink_obj>
</item>
<item class_id_reference="20" object_id="_1096">
<id>1129</id>
<edge_type>1</edge_type>
<source_obj>456</source_obj>
<sink_obj>457</sink_obj>
</item>
<item class_id_reference="20" object_id="_1097">
<id>1130</id>
<edge_type>1</edge_type>
<source_obj>454</source_obj>
<sink_obj>457</sink_obj>
</item>
<item class_id_reference="20" object_id="_1098">
<id>1131</id>
<edge_type>1</edge_type>
<source_obj>457</source_obj>
<sink_obj>458</sink_obj>
</item>
<item class_id_reference="20" object_id="_1099">
<id>1132</id>
<edge_type>1</edge_type>
<source_obj>451</source_obj>
<sink_obj>458</sink_obj>
</item>
<item class_id_reference="20" object_id="_1100">
<id>1133</id>
<edge_type>1</edge_type>
<source_obj>458</source_obj>
<sink_obj>459</sink_obj>
</item>
<item class_id_reference="20" object_id="_1101">
<id>1134</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>460</sink_obj>
</item>
<item class_id_reference="20" object_id="_1102">
<id>1135</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>460</sink_obj>
</item>
<item class_id_reference="20" object_id="_1103">
<id>1136</id>
<edge_type>1</edge_type>
<source_obj>459</source_obj>
<sink_obj>460</sink_obj>
</item>
<item class_id_reference="20" object_id="_1104">
<id>1137</id>
<edge_type>1</edge_type>
<source_obj>460</source_obj>
<sink_obj>461</sink_obj>
</item>
<item class_id_reference="20" object_id="_1105">
<id>1138</id>
<edge_type>1</edge_type>
<source_obj>372</source_obj>
<sink_obj>462</sink_obj>
</item>
<item class_id_reference="20" object_id="_1106">
<id>1139</id>
<edge_type>1</edge_type>
<source_obj>461</source_obj>
<sink_obj>463</sink_obj>
</item>
<item class_id_reference="20" object_id="_1107">
<id>1140</id>
<edge_type>1</edge_type>
<source_obj>462</source_obj>
<sink_obj>463</sink_obj>
</item>
<item class_id_reference="20" object_id="_1108">
<id>1141</id>
<edge_type>1</edge_type>
<source_obj>463</source_obj>
<sink_obj>464</sink_obj>
</item>
<item class_id_reference="20" object_id="_1109">
<id>1142</id>
<edge_type>1</edge_type>
<source_obj>460</source_obj>
<sink_obj>464</sink_obj>
</item>
<item class_id_reference="20" object_id="_1110">
<id>1143</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>465</sink_obj>
</item>
<item class_id_reference="20" object_id="_1111">
<id>1144</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>465</sink_obj>
</item>
<item class_id_reference="20" object_id="_1112">
<id>1145</id>
<edge_type>1</edge_type>
<source_obj>80</source_obj>
<sink_obj>465</sink_obj>
</item>
<item class_id_reference="20" object_id="_1113">
<id>1146</id>
<edge_type>1</edge_type>
<source_obj>465</source_obj>
<sink_obj>466</sink_obj>
</item>
<item class_id_reference="20" object_id="_1114">
<id>1147</id>
<edge_type>1</edge_type>
<source_obj>466</source_obj>
<sink_obj>467</sink_obj>
</item>
<item class_id_reference="20" object_id="_1115">
<id>1148</id>
<edge_type>1</edge_type>
<source_obj>373</source_obj>
<sink_obj>467</sink_obj>
</item>
<item class_id_reference="20" object_id="_1116">
<id>1149</id>
<edge_type>1</edge_type>
<source_obj>467</source_obj>
<sink_obj>468</sink_obj>
</item>
<item class_id_reference="20" object_id="_1117">
<id>1150</id>
<edge_type>1</edge_type>
<source_obj>465</source_obj>
<sink_obj>468</sink_obj>
</item>
<item class_id_reference="20" object_id="_1118">
<id>1151</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>470</sink_obj>
</item>
<item class_id_reference="20" object_id="_1119">
<id>1152</id>
<edge_type>1</edge_type>
<source_obj>663</source_obj>
<sink_obj>470</sink_obj>
</item>
<item class_id_reference="20" object_id="_1120">
<id>1153</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>471</sink_obj>
</item>
<item class_id_reference="20" object_id="_1121">
<id>1154</id>
<edge_type>1</edge_type>
<source_obj>567</source_obj>
<sink_obj>471</sink_obj>
</item>
<item class_id_reference="20" object_id="_1122">
<id>1155</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>472</sink_obj>
</item>
<item class_id_reference="20" object_id="_1123">
<id>1156</id>
<edge_type>1</edge_type>
<source_obj>567</source_obj>
<sink_obj>472</sink_obj>
</item>
<item class_id_reference="20" object_id="_1124">
<id>1157</id>
<edge_type>1</edge_type>
<source_obj>471</source_obj>
<sink_obj>472</sink_obj>
</item>
<item class_id_reference="20" object_id="_1125">
<id>1158</id>
<edge_type>2</edge_type>
<source_obj>68</source_obj>
<sink_obj>473</sink_obj>
</item>
<item class_id_reference="20" object_id="_1126">
<id>1159</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>71</sink_obj>
</item>
<item class_id_reference="20" object_id="_1127">
<id>1161</id>
<edge_type>1</edge_type>
<source_obj>1160</source_obj>
<sink_obj>71</sink_obj>
</item>
<item class_id_reference="20" object_id="_1128">
<id>1162</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>72</sink_obj>
</item>
<item class_id_reference="20" object_id="_1129">
<id>1163</id>
<edge_type>1</edge_type>
<source_obj>538</source_obj>
<sink_obj>72</sink_obj>
</item>
<item class_id_reference="20" object_id="_1130">
<id>1164</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>72</sink_obj>
</item>
<item class_id_reference="20" object_id="_1131">
<id>1165</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>73</sink_obj>
</item>
<item class_id_reference="20" object_id="_1132">
<id>1166</id>
<edge_type>1</edge_type>
<source_obj>538</source_obj>
<sink_obj>73</sink_obj>
</item>
<item class_id_reference="20" object_id="_1133">
<id>1167</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>73</sink_obj>
</item>
<item class_id_reference="20" object_id="_1134">
<id>1168</id>
<edge_type>1</edge_type>
<source_obj>511</source_obj>
<sink_obj>74</sink_obj>
</item>
<item class_id_reference="20" object_id="_1135">
<id>1169</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>74</sink_obj>
</item>
<item class_id_reference="20" object_id="_1136">
<id>1170</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>75</sink_obj>
</item>
<item class_id_reference="20" object_id="_1137">
<id>1171</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>75</sink_obj>
</item>
<item class_id_reference="20" object_id="_1138">
<id>1172</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>75</sink_obj>
</item>
<item class_id_reference="20" object_id="_1139">
<id>1173</id>
<edge_type>1</edge_type>
<source_obj>75</source_obj>
<sink_obj>76</sink_obj>
</item>
<item class_id_reference="20" object_id="_1140">
<id>1176</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>77</sink_obj>
</item>
<item class_id_reference="20" object_id="_1141">
<id>1177</id>
<edge_type>1</edge_type>
<source_obj>1079</source_obj>
<sink_obj>77</sink_obj>
</item>
<item class_id_reference="20" object_id="_1142">
<id>1178</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>78</sink_obj>
</item>
<item class_id_reference="20" object_id="_1143">
<id>1179</id>
<edge_type>1</edge_type>
<source_obj>663</source_obj>
<sink_obj>78</sink_obj>
</item>
<item class_id_reference="20" object_id="_1144">
<id>1180</id>
<edge_type>1</edge_type>
<source_obj>78</source_obj>
<sink_obj>79</sink_obj>
</item>
<item class_id_reference="20" object_id="_1145">
<id>1181</id>
<edge_type>1</edge_type>
<source_obj>75</source_obj>
<sink_obj>80</sink_obj>
</item>
<item class_id_reference="20" object_id="_1146">
<id>1182</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>81</sink_obj>
</item>
<item class_id_reference="20" object_id="_1147">
<id>1183</id>
<edge_type>1</edge_type>
<source_obj>504</source_obj>
<sink_obj>81</sink_obj>
</item>
<item class_id_reference="20" object_id="_1148">
<id>1184</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>81</sink_obj>
</item>
<item class_id_reference="20" object_id="_1149">
<id>1185</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>82</sink_obj>
</item>
<item class_id_reference="20" object_id="_1150">
<id>1186</id>
<edge_type>1</edge_type>
<source_obj>1079</source_obj>
<sink_obj>82</sink_obj>
</item>
<item class_id_reference="20" object_id="_1151">
<id>1187</id>
<edge_type>1</edge_type>
<source_obj>64</source_obj>
<sink_obj>82</sink_obj>
</item>
<item class_id_reference="20" object_id="_1152">
<id>1189</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>83</sink_obj>
</item>
<item class_id_reference="20" object_id="_1153">
<id>1190</id>
<edge_type>1</edge_type>
<source_obj>552</source_obj>
<sink_obj>83</sink_obj>
</item>
<item class_id_reference="20" object_id="_1154">
<id>1191</id>
<edge_type>1</edge_type>
<source_obj>83</source_obj>
<sink_obj>84</sink_obj>
</item>
<item class_id_reference="20" object_id="_1155">
<id>1193</id>
<edge_type>1</edge_type>
<source_obj>1192</source_obj>
<sink_obj>84</sink_obj>
</item>
<item class_id_reference="20" object_id="_1156">
<id>1194</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>85</sink_obj>
</item>
<item class_id_reference="20" object_id="_1157">
<id>1195</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>85</sink_obj>
</item>
<item class_id_reference="20" object_id="_1158">
<id>1196</id>
<edge_type>1</edge_type>
<source_obj>660</source_obj>
<sink_obj>86</sink_obj>
</item>
<item class_id_reference="20" object_id="_1159">
<id>1197</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>86</sink_obj>
</item>
<item class_id_reference="20" object_id="_1160">
<id>1198</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>88</sink_obj>
</item>
<item class_id_reference="20" object_id="_1161">
<id>1199</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>88</sink_obj>
</item>
<item class_id_reference="20" object_id="_1162">
<id>1200</id>
<edge_type>1</edge_type>
<source_obj>538</source_obj>
<sink_obj>88</sink_obj>
</item>
<item class_id_reference="20" object_id="_1163">
<id>1202</id>
<edge_type>1</edge_type>
<source_obj>86</source_obj>
<sink_obj>89</sink_obj>
</item>
<item class_id_reference="20" object_id="_1164">
<id>1203</id>
<edge_type>1</edge_type>
<source_obj>550</source_obj>
<sink_obj>89</sink_obj>
</item>
<item class_id_reference="20" object_id="_1165">
<id>1204</id>
<edge_type>1</edge_type>
<source_obj>552</source_obj>
<sink_obj>89</sink_obj>
</item>
<item class_id_reference="20" object_id="_1166">
<id>1205</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>90</sink_obj>
</item>
<item class_id_reference="20" object_id="_1167">
<id>1206</id>
<edge_type>1</edge_type>
<source_obj>81</source_obj>
<sink_obj>90</sink_obj>
</item>
<item class_id_reference="20" object_id="_1168">
<id>1207</id>
<edge_type>1</edge_type>
<source_obj>89</source_obj>
<sink_obj>90</sink_obj>
</item>
<item class_id_reference="20" object_id="_1169">
<id>1208</id>
<edge_type>1</edge_type>
<source_obj>90</source_obj>
<sink_obj>91</sink_obj>
</item>
<item class_id_reference="20" object_id="_1170">
<id>1210</id>
<edge_type>1</edge_type>
<source_obj>86</source_obj>
<sink_obj>92</sink_obj>
</item>
<item class_id_reference="20" object_id="_1171">
<id>1211</id>
<edge_type>1</edge_type>
<source_obj>550</source_obj>
<sink_obj>92</sink_obj>
</item>
<item class_id_reference="20" object_id="_1172">
<id>1213</id>
<edge_type>1</edge_type>
<source_obj>92</source_obj>
<sink_obj>93</sink_obj>
</item>
<item class_id_reference="20" object_id="_1173">
<id>1214</id>
<edge_type>1</edge_type>
<source_obj>561</source_obj>
<sink_obj>93</sink_obj>
</item>
<item class_id_reference="20" object_id="_1174">
<id>1215</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>94</sink_obj>
</item>
<item class_id_reference="20" object_id="_1175">
<id>1216</id>
<edge_type>1</edge_type>
<source_obj>82</source_obj>
<sink_obj>94</sink_obj>
</item>
<item class_id_reference="20" object_id="_1176">
<id>1217</id>
<edge_type>1</edge_type>
<source_obj>93</source_obj>
<sink_obj>94</sink_obj>
</item>
<item class_id_reference="20" object_id="_1177">
<id>1218</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>95</sink_obj>
</item>
<item class_id_reference="20" object_id="_1178">
<id>1219</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>95</sink_obj>
</item>
<item class_id_reference="20" object_id="_1179">
<id>1220</id>
<edge_type>1</edge_type>
<source_obj>86</source_obj>
<sink_obj>95</sink_obj>
</item>
<item class_id_reference="20" object_id="_1180">
<id>1221</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>96</sink_obj>
</item>
<item class_id_reference="20" object_id="_1181">
<id>1222</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>99</sink_obj>
</item>
<item class_id_reference="20" object_id="_1182">
<id>1223</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>99</sink_obj>
</item>
<item class_id_reference="20" object_id="_1183">
<id>1224</id>
<edge_type>1</edge_type>
<source_obj>99</source_obj>
<sink_obj>100</sink_obj>
</item>
<item class_id_reference="20" object_id="_1184">
<id>1225</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>101</sink_obj>
</item>
<item class_id_reference="20" object_id="_1185">
<id>1226</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>101</sink_obj>
</item>
<item class_id_reference="20" object_id="_1186">
<id>1227</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>101</sink_obj>
</item>
<item class_id_reference="20" object_id="_1187">
<id>1228</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>102</sink_obj>
</item>
<item class_id_reference="20" object_id="_1188">
<id>1229</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>102</sink_obj>
</item>
<item class_id_reference="20" object_id="_1189">
<id>1230</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>102</sink_obj>
</item>
<item class_id_reference="20" object_id="_1190">
<id>1231</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>103</sink_obj>
</item>
<item class_id_reference="20" object_id="_1191">
<id>1232</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>103</sink_obj>
</item>
<item class_id_reference="20" object_id="_1192">
<id>1233</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>103</sink_obj>
</item>
<item class_id_reference="20" object_id="_1193">
<id>1234</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>104</sink_obj>
</item>
<item class_id_reference="20" object_id="_1194">
<id>1235</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>104</sink_obj>
</item>
<item class_id_reference="20" object_id="_1195">
<id>1236</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>104</sink_obj>
</item>
<item class_id_reference="20" object_id="_1196">
<id>1237</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>105</sink_obj>
</item>
<item class_id_reference="20" object_id="_1197">
<id>1238</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>105</sink_obj>
</item>
<item class_id_reference="20" object_id="_1198">
<id>1239</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>105</sink_obj>
</item>
<item class_id_reference="20" object_id="_1199">
<id>1240</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>106</sink_obj>
</item>
<item class_id_reference="20" object_id="_1200">
<id>1241</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>106</sink_obj>
</item>
<item class_id_reference="20" object_id="_1201">
<id>1242</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>106</sink_obj>
</item>
<item class_id_reference="20" object_id="_1202">
<id>1243</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>107</sink_obj>
</item>
<item class_id_reference="20" object_id="_1203">
<id>1244</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>107</sink_obj>
</item>
<item class_id_reference="20" object_id="_1204">
<id>1245</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>107</sink_obj>
</item>
<item class_id_reference="20" object_id="_1205">
<id>1246</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>108</sink_obj>
</item>
<item class_id_reference="20" object_id="_1206">
<id>1247</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>108</sink_obj>
</item>
<item class_id_reference="20" object_id="_1207">
<id>1248</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>108</sink_obj>
</item>
<item class_id_reference="20" object_id="_1208">
<id>1249</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>109</sink_obj>
</item>
<item class_id_reference="20" object_id="_1209">
<id>1250</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>109</sink_obj>
</item>
<item class_id_reference="20" object_id="_1210">
<id>1251</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>109</sink_obj>
</item>
<item class_id_reference="20" object_id="_1211">
<id>1252</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_1212">
<id>1253</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_1213">
<id>1254</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_1214">
<id>1255</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>111</sink_obj>
</item>
<item class_id_reference="20" object_id="_1215">
<id>1256</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>111</sink_obj>
</item>
<item class_id_reference="20" object_id="_1216">
<id>1257</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>111</sink_obj>
</item>
<item class_id_reference="20" object_id="_1217">
<id>1258</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>112</sink_obj>
</item>
<item class_id_reference="20" object_id="_1218">
<id>1259</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>112</sink_obj>
</item>
<item class_id_reference="20" object_id="_1219">
<id>1260</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>112</sink_obj>
</item>
<item class_id_reference="20" object_id="_1220">
<id>1261</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>113</sink_obj>
</item>
<item class_id_reference="20" object_id="_1221">
<id>1262</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>113</sink_obj>
</item>
<item class_id_reference="20" object_id="_1222">
<id>1263</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>113</sink_obj>
</item>
<item class_id_reference="20" object_id="_1223">
<id>1264</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>114</sink_obj>
</item>
<item class_id_reference="20" object_id="_1224">
<id>1265</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>114</sink_obj>
</item>
<item class_id_reference="20" object_id="_1225">
<id>1266</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>114</sink_obj>
</item>
<item class_id_reference="20" object_id="_1226">
<id>1267</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>115</sink_obj>
</item>
<item class_id_reference="20" object_id="_1227">
<id>1268</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>115</sink_obj>
</item>
<item class_id_reference="20" object_id="_1228">
<id>1269</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>115</sink_obj>
</item>
<item class_id_reference="20" object_id="_1229">
<id>1270</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>116</sink_obj>
</item>
<item class_id_reference="20" object_id="_1230">
<id>1271</id>
<edge_type>1</edge_type>
<source_obj>495</source_obj>
<sink_obj>116</sink_obj>
</item>
<item class_id_reference="20" object_id="_1231">
<id>1272</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>116</sink_obj>
</item>
<item class_id_reference="20" object_id="_1232">
<id>1273</id>
<edge_type>1</edge_type>
<source_obj>95</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1233">
<id>1274</id>
<edge_type>2</edge_type>
<source_obj>166</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1234">
<id>1275</id>
<edge_type>1</edge_type>
<source_obj>538</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1235">
<id>1276</id>
<edge_type>2</edge_type>
<source_obj>163</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1236">
<id>1277</id>
<edge_type>1</edge_type>
<source_obj>660</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1237">
<id>1278</id>
<edge_type>2</edge_type>
<source_obj>160</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1238">
<id>1279</id>
<edge_type>1</edge_type>
<source_obj>663</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1239">
<id>1280</id>
<edge_type>2</edge_type>
<source_obj>157</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1240">
<id>1281</id>
<edge_type>1</edge_type>
<source_obj>666</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1241">
<id>1282</id>
<edge_type>2</edge_type>
<source_obj>154</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1242">
<id>1283</id>
<edge_type>1</edge_type>
<source_obj>669</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1243">
<id>1284</id>
<edge_type>2</edge_type>
<source_obj>151</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1244">
<id>1285</id>
<edge_type>1</edge_type>
<source_obj>672</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1245">
<id>1286</id>
<edge_type>2</edge_type>
<source_obj>148</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1246">
<id>1287</id>
<edge_type>1</edge_type>
<source_obj>675</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1247">
<id>1288</id>
<edge_type>2</edge_type>
<source_obj>145</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1248">
<id>1289</id>
<edge_type>1</edge_type>
<source_obj>678</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1249">
<id>1290</id>
<edge_type>2</edge_type>
<source_obj>142</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1250">
<id>1291</id>
<edge_type>1</edge_type>
<source_obj>681</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1251">
<id>1292</id>
<edge_type>2</edge_type>
<source_obj>139</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1252">
<id>1293</id>
<edge_type>1</edge_type>
<source_obj>684</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1253">
<id>1294</id>
<edge_type>2</edge_type>
<source_obj>136</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1254">
<id>1295</id>
<edge_type>1</edge_type>
<source_obj>687</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1255">
<id>1296</id>
<edge_type>2</edge_type>
<source_obj>133</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1256">
<id>1297</id>
<edge_type>1</edge_type>
<source_obj>690</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1257">
<id>1298</id>
<edge_type>2</edge_type>
<source_obj>130</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1258">
<id>1299</id>
<edge_type>1</edge_type>
<source_obj>693</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1259">
<id>1300</id>
<edge_type>2</edge_type>
<source_obj>127</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1260">
<id>1301</id>
<edge_type>1</edge_type>
<source_obj>696</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1261">
<id>1302</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1262">
<id>1303</id>
<edge_type>1</edge_type>
<source_obj>699</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1263">
<id>1304</id>
<edge_type>2</edge_type>
<source_obj>121</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_1264">
<id>1305</id>
<edge_type>1</edge_type>
<source_obj>312</source_obj>
<sink_obj>358</sink_obj>
</item>
<item class_id_reference="20" object_id="_1265">
<id>1306</id>
<edge_type>2</edge_type>
<source_obj>377</source_obj>
<sink_obj>359</sink_obj>
</item>
<item class_id_reference="20" object_id="_1266">
<id>1307</id>
<edge_type>1</edge_type>
<source_obj>313</source_obj>
<sink_obj>355</sink_obj>
</item>
<item class_id_reference="20" object_id="_1267">
<id>1308</id>
<edge_type>2</edge_type>
<source_obj>377</source_obj>
<sink_obj>356</sink_obj>
</item>
<item class_id_reference="20" object_id="_1268">
<id>1309</id>
<edge_type>1</edge_type>
<source_obj>244</source_obj>
<sink_obj>352</sink_obj>
</item>
<item class_id_reference="20" object_id="_1269">
<id>1310</id>
<edge_type>2</edge_type>
<source_obj>377</source_obj>
<sink_obj>353</sink_obj>
</item>
<item class_id_reference="20" object_id="_1270">
<id>1311</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>349</sink_obj>
</item>
<item class_id_reference="20" object_id="_1271">
<id>1312</id>
<edge_type>2</edge_type>
<source_obj>377</source_obj>
<sink_obj>350</sink_obj>
</item>
<item class_id_reference="20" object_id="_1272">
<id>1313</id>
<edge_type>1</edge_type>
<source_obj>246</source_obj>
<sink_obj>346</sink_obj>
</item>
<item class_id_reference="20" object_id="_1273">
<id>1314</id>
<edge_type>2</edge_type>
<source_obj>377</source_obj>
<sink_obj>347</sink_obj>
</item>
<item class_id_reference="20" object_id="_1274">
<id>1315</id>
<edge_type>1</edge_type>
<source_obj>247</source_obj>
<sink_obj>343</sink_obj>
</item>
<item class_id_reference="20" object_id="_1275">
<id>1316</id>
<edge_type>2</edge_type>
<source_obj>377</source_obj>
<sink_obj>344</sink_obj>
</item>
<item class_id_reference="20" object_id="_1276">
<id>1317</id>
<edge_type>1</edge_type>
<source_obj>248</source_obj>
<sink_obj>340</sink_obj>
</item>
<item class_id_reference="20" object_id="_1277">
<id>1318</id>
<edge_type>2</edge_type>
<source_obj>377</source_obj>
<sink_obj>341</sink_obj>
</item>
<item class_id_reference="20" object_id="_1278">
<id>1319</id>
<edge_type>1</edge_type>
<source_obj>249</source_obj>
<sink_obj>337</sink_obj>
</item>
<item class_id_reference="20" object_id="_1279">
<id>1320</id>
<edge_type>2</edge_type>
<source_obj>377</source_obj>
<sink_obj>338</sink_obj>
</item>
<item class_id_reference="20" object_id="_1280">
<id>1321</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>334</sink_obj>
</item>
<item class_id_reference="20" object_id="_1281">
<id>1322</id>
<edge_type>2</edge_type>
<source_obj>377</source_obj>
<sink_obj>335</sink_obj>
</item>
<item class_id_reference="20" object_id="_1282">
<id>1323</id>
<edge_type>1</edge_type>
<source_obj>251</source_obj>
<sink_obj>331</sink_obj>
</item>
<item class_id_reference="20" object_id="_1283">
<id>1324</id>
<edge_type>2</edge_type>
<source_obj>377</source_obj>
<sink_obj>332</sink_obj>
</item>
<item class_id_reference="20" object_id="_1284">
<id>1325</id>
<edge_type>1</edge_type>
<source_obj>252</source_obj>
<sink_obj>328</sink_obj>
</item>
<item class_id_reference="20" object_id="_1285">
<id>1326</id>
<edge_type>2</edge_type>
<source_obj>377</source_obj>
<sink_obj>329</sink_obj>
</item>
<item class_id_reference="20" object_id="_1286">
<id>1327</id>
<edge_type>1</edge_type>
<source_obj>253</source_obj>
<sink_obj>325</sink_obj>
</item>
<item class_id_reference="20" object_id="_1287">
<id>1328</id>
<edge_type>2</edge_type>
<source_obj>377</source_obj>
<sink_obj>326</sink_obj>
</item>
<item class_id_reference="20" object_id="_1288">
<id>1329</id>
<edge_type>1</edge_type>
<source_obj>254</source_obj>
<sink_obj>322</sink_obj>
</item>
<item class_id_reference="20" object_id="_1289">
<id>1330</id>
<edge_type>2</edge_type>
<source_obj>377</source_obj>
<sink_obj>323</sink_obj>
</item>
<item class_id_reference="20" object_id="_1290">
<id>1331</id>
<edge_type>1</edge_type>
<source_obj>255</source_obj>
<sink_obj>319</sink_obj>
</item>
<item class_id_reference="20" object_id="_1291">
<id>1332</id>
<edge_type>2</edge_type>
<source_obj>377</source_obj>
<sink_obj>320</sink_obj>
</item>
<item class_id_reference="20" object_id="_1292">
<id>1333</id>
<edge_type>1</edge_type>
<source_obj>256</source_obj>
<sink_obj>316</sink_obj>
</item>
<item class_id_reference="20" object_id="_1293">
<id>1334</id>
<edge_type>2</edge_type>
<source_obj>377</source_obj>
<sink_obj>317</sink_obj>
</item>
<item class_id_reference="20" object_id="_1294">
<id>1335</id>
<edge_type>1</edge_type>
<source_obj>257</source_obj>
<sink_obj>361</sink_obj>
</item>
<item class_id_reference="20" object_id="_1295">
<id>1336</id>
<edge_type>2</edge_type>
<source_obj>377</source_obj>
<sink_obj>362</sink_obj>
</item>
<item class_id_reference="20" object_id="_1296">
<id>1337</id>
<edge_type>1</edge_type>
<source_obj>244</source_obj>
<sink_obj>304</sink_obj>
</item>
<item class_id_reference="20" object_id="_1297">
<id>1338</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>305</sink_obj>
</item>
<item class_id_reference="20" object_id="_1298">
<id>1339</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>301</sink_obj>
</item>
<item class_id_reference="20" object_id="_1299">
<id>1340</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>302</sink_obj>
</item>
<item class_id_reference="20" object_id="_1300">
<id>1341</id>
<edge_type>1</edge_type>
<source_obj>246</source_obj>
<sink_obj>298</sink_obj>
</item>
<item class_id_reference="20" object_id="_1301">
<id>1342</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>299</sink_obj>
</item>
<item class_id_reference="20" object_id="_1302">
<id>1343</id>
<edge_type>1</edge_type>
<source_obj>247</source_obj>
<sink_obj>295</sink_obj>
</item>
<item class_id_reference="20" object_id="_1303">
<id>1344</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>296</sink_obj>
</item>
<item class_id_reference="20" object_id="_1304">
<id>1345</id>
<edge_type>1</edge_type>
<source_obj>248</source_obj>
<sink_obj>292</sink_obj>
</item>
<item class_id_reference="20" object_id="_1305">
<id>1346</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>293</sink_obj>
</item>
<item class_id_reference="20" object_id="_1306">
<id>1347</id>
<edge_type>1</edge_type>
<source_obj>249</source_obj>
<sink_obj>289</sink_obj>
</item>
<item class_id_reference="20" object_id="_1307">
<id>1348</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>290</sink_obj>
</item>
<item class_id_reference="20" object_id="_1308">
<id>1349</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>286</sink_obj>
</item>
<item class_id_reference="20" object_id="_1309">
<id>1350</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>287</sink_obj>
</item>
<item class_id_reference="20" object_id="_1310">
<id>1351</id>
<edge_type>1</edge_type>
<source_obj>251</source_obj>
<sink_obj>283</sink_obj>
</item>
<item class_id_reference="20" object_id="_1311">
<id>1352</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>284</sink_obj>
</item>
<item class_id_reference="20" object_id="_1312">
<id>1353</id>
<edge_type>1</edge_type>
<source_obj>252</source_obj>
<sink_obj>280</sink_obj>
</item>
<item class_id_reference="20" object_id="_1313">
<id>1354</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>281</sink_obj>
</item>
<item class_id_reference="20" object_id="_1314">
<id>1355</id>
<edge_type>1</edge_type>
<source_obj>253</source_obj>
<sink_obj>277</sink_obj>
</item>
<item class_id_reference="20" object_id="_1315">
<id>1356</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>278</sink_obj>
</item>
<item class_id_reference="20" object_id="_1316">
<id>1357</id>
<edge_type>1</edge_type>
<source_obj>254</source_obj>
<sink_obj>274</sink_obj>
</item>
<item class_id_reference="20" object_id="_1317">
<id>1358</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>275</sink_obj>
</item>
<item class_id_reference="20" object_id="_1318">
<id>1359</id>
<edge_type>1</edge_type>
<source_obj>255</source_obj>
<sink_obj>271</sink_obj>
</item>
<item class_id_reference="20" object_id="_1319">
<id>1360</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>272</sink_obj>
</item>
<item class_id_reference="20" object_id="_1320">
<id>1361</id>
<edge_type>1</edge_type>
<source_obj>256</source_obj>
<sink_obj>268</sink_obj>
</item>
<item class_id_reference="20" object_id="_1321">
<id>1362</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>269</sink_obj>
</item>
<item class_id_reference="20" object_id="_1322">
<id>1363</id>
<edge_type>1</edge_type>
<source_obj>257</source_obj>
<sink_obj>265</sink_obj>
</item>
<item class_id_reference="20" object_id="_1323">
<id>1364</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>266</sink_obj>
</item>
<item class_id_reference="20" object_id="_1324">
<id>1365</id>
<edge_type>1</edge_type>
<source_obj>258</source_obj>
<sink_obj>262</sink_obj>
</item>
<item class_id_reference="20" object_id="_1325">
<id>1366</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>263</sink_obj>
</item>
<item class_id_reference="20" object_id="_1326">
<id>1367</id>
<edge_type>1</edge_type>
<source_obj>259</source_obj>
<sink_obj>307</sink_obj>
</item>
<item class_id_reference="20" object_id="_1327">
<id>1368</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>308</sink_obj>
</item>
<item class_id_reference="20" object_id="_1328">
<id>1369</id>
<edge_type>1</edge_type>
<source_obj>171</source_obj>
<sink_obj>231</sink_obj>
</item>
<item class_id_reference="20" object_id="_1329">
<id>1370</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>232</sink_obj>
</item>
<item class_id_reference="20" object_id="_1330">
<id>1371</id>
<edge_type>1</edge_type>
<source_obj>172</source_obj>
<sink_obj>228</sink_obj>
</item>
<item class_id_reference="20" object_id="_1331">
<id>1372</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>229</sink_obj>
</item>
<item class_id_reference="20" object_id="_1332">
<id>1373</id>
<edge_type>1</edge_type>
<source_obj>173</source_obj>
<sink_obj>225</sink_obj>
</item>
<item class_id_reference="20" object_id="_1333">
<id>1374</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>226</sink_obj>
</item>
<item class_id_reference="20" object_id="_1334">
<id>1375</id>
<edge_type>1</edge_type>
<source_obj>174</source_obj>
<sink_obj>222</sink_obj>
</item>
<item class_id_reference="20" object_id="_1335">
<id>1376</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>223</sink_obj>
</item>
<item class_id_reference="20" object_id="_1336">
<id>1377</id>
<edge_type>1</edge_type>
<source_obj>175</source_obj>
<sink_obj>219</sink_obj>
</item>
<item class_id_reference="20" object_id="_1337">
<id>1378</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>220</sink_obj>
</item>
<item class_id_reference="20" object_id="_1338">
<id>1379</id>
<edge_type>1</edge_type>
<source_obj>176</source_obj>
<sink_obj>216</sink_obj>
</item>
<item class_id_reference="20" object_id="_1339">
<id>1380</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>217</sink_obj>
</item>
<item class_id_reference="20" object_id="_1340">
<id>1381</id>
<edge_type>1</edge_type>
<source_obj>177</source_obj>
<sink_obj>213</sink_obj>
</item>
<item class_id_reference="20" object_id="_1341">
<id>1382</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>214</sink_obj>
</item>
<item class_id_reference="20" object_id="_1342">
<id>1383</id>
<edge_type>1</edge_type>
<source_obj>178</source_obj>
<sink_obj>210</sink_obj>
</item>
<item class_id_reference="20" object_id="_1343">
<id>1384</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>211</sink_obj>
</item>
<item class_id_reference="20" object_id="_1344">
<id>1385</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>207</sink_obj>
</item>
<item class_id_reference="20" object_id="_1345">
<id>1386</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>208</sink_obj>
</item>
<item class_id_reference="20" object_id="_1346">
<id>1387</id>
<edge_type>1</edge_type>
<source_obj>180</source_obj>
<sink_obj>204</sink_obj>
</item>
<item class_id_reference="20" object_id="_1347">
<id>1388</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>205</sink_obj>
</item>
<item class_id_reference="20" object_id="_1348">
<id>1389</id>
<edge_type>1</edge_type>
<source_obj>181</source_obj>
<sink_obj>201</sink_obj>
</item>
<item class_id_reference="20" object_id="_1349">
<id>1390</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>202</sink_obj>
</item>
<item class_id_reference="20" object_id="_1350">
<id>1391</id>
<edge_type>1</edge_type>
<source_obj>182</source_obj>
<sink_obj>198</sink_obj>
</item>
<item class_id_reference="20" object_id="_1351">
<id>1392</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>199</sink_obj>
</item>
<item class_id_reference="20" object_id="_1352">
<id>1393</id>
<edge_type>1</edge_type>
<source_obj>183</source_obj>
<sink_obj>195</sink_obj>
</item>
<item class_id_reference="20" object_id="_1353">
<id>1394</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>196</sink_obj>
</item>
<item class_id_reference="20" object_id="_1354">
<id>1395</id>
<edge_type>1</edge_type>
<source_obj>184</source_obj>
<sink_obj>192</sink_obj>
</item>
<item class_id_reference="20" object_id="_1355">
<id>1396</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>193</sink_obj>
</item>
<item class_id_reference="20" object_id="_1356">
<id>1397</id>
<edge_type>1</edge_type>
<source_obj>185</source_obj>
<sink_obj>189</sink_obj>
</item>
<item class_id_reference="20" object_id="_1357">
<id>1398</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>190</sink_obj>
</item>
<item class_id_reference="20" object_id="_1358">
<id>1399</id>
<edge_type>1</edge_type>
<source_obj>186</source_obj>
<sink_obj>234</sink_obj>
</item>
<item class_id_reference="20" object_id="_1359">
<id>1400</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>235</sink_obj>
</item>
<item class_id_reference="20" object_id="_1360">
<id>1401</id>
<edge_type>1</edge_type>
<source_obj>101</source_obj>
<sink_obj>161</sink_obj>
</item>
<item class_id_reference="20" object_id="_1361">
<id>1402</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>162</sink_obj>
</item>
<item class_id_reference="20" object_id="_1362">
<id>1403</id>
<edge_type>1</edge_type>
<source_obj>102</source_obj>
<sink_obj>158</sink_obj>
</item>
<item class_id_reference="20" object_id="_1363">
<id>1404</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>159</sink_obj>
</item>
<item class_id_reference="20" object_id="_1364">
<id>1405</id>
<edge_type>1</edge_type>
<source_obj>103</source_obj>
<sink_obj>155</sink_obj>
</item>
<item class_id_reference="20" object_id="_1365">
<id>1406</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>156</sink_obj>
</item>
<item class_id_reference="20" object_id="_1366">
<id>1407</id>
<edge_type>1</edge_type>
<source_obj>104</source_obj>
<sink_obj>152</sink_obj>
</item>
<item class_id_reference="20" object_id="_1367">
<id>1408</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>153</sink_obj>
</item>
<item class_id_reference="20" object_id="_1368">
<id>1409</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>149</sink_obj>
</item>
<item class_id_reference="20" object_id="_1369">
<id>1410</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>150</sink_obj>
</item>
<item class_id_reference="20" object_id="_1370">
<id>1411</id>
<edge_type>1</edge_type>
<source_obj>106</source_obj>
<sink_obj>146</sink_obj>
</item>
<item class_id_reference="20" object_id="_1371">
<id>1412</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>147</sink_obj>
</item>
<item class_id_reference="20" object_id="_1372">
<id>1413</id>
<edge_type>1</edge_type>
<source_obj>107</source_obj>
<sink_obj>143</sink_obj>
</item>
<item class_id_reference="20" object_id="_1373">
<id>1414</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>144</sink_obj>
</item>
<item class_id_reference="20" object_id="_1374">
<id>1415</id>
<edge_type>1</edge_type>
<source_obj>108</source_obj>
<sink_obj>140</sink_obj>
</item>
<item class_id_reference="20" object_id="_1375">
<id>1416</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_1376">
<id>1417</id>
<edge_type>1</edge_type>
<source_obj>109</source_obj>
<sink_obj>137</sink_obj>
</item>
<item class_id_reference="20" object_id="_1377">
<id>1418</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>138</sink_obj>
</item>
<item class_id_reference="20" object_id="_1378">
<id>1419</id>
<edge_type>1</edge_type>
<source_obj>110</source_obj>
<sink_obj>134</sink_obj>
</item>
<item class_id_reference="20" object_id="_1379">
<id>1420</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>135</sink_obj>
</item>
<item class_id_reference="20" object_id="_1380">
<id>1421</id>
<edge_type>1</edge_type>
<source_obj>111</source_obj>
<sink_obj>131</sink_obj>
</item>
<item class_id_reference="20" object_id="_1381">
<id>1422</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>132</sink_obj>
</item>
<item class_id_reference="20" object_id="_1382">
<id>1423</id>
<edge_type>1</edge_type>
<source_obj>112</source_obj>
<sink_obj>128</sink_obj>
</item>
<item class_id_reference="20" object_id="_1383">
<id>1424</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>129</sink_obj>
</item>
<item class_id_reference="20" object_id="_1384">
<id>1425</id>
<edge_type>1</edge_type>
<source_obj>113</source_obj>
<sink_obj>125</sink_obj>
</item>
<item class_id_reference="20" object_id="_1385">
<id>1426</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>126</sink_obj>
</item>
<item class_id_reference="20" object_id="_1386">
<id>1427</id>
<edge_type>1</edge_type>
<source_obj>114</source_obj>
<sink_obj>122</sink_obj>
</item>
<item class_id_reference="20" object_id="_1387">
<id>1428</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>123</sink_obj>
</item>
<item class_id_reference="20" object_id="_1388">
<id>1429</id>
<edge_type>1</edge_type>
<source_obj>115</source_obj>
<sink_obj>119</sink_obj>
</item>
<item class_id_reference="20" object_id="_1389">
<id>1430</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>120</sink_obj>
</item>
<item class_id_reference="20" object_id="_1390">
<id>1431</id>
<edge_type>1</edge_type>
<source_obj>116</source_obj>
<sink_obj>164</sink_obj>
</item>
<item class_id_reference="20" object_id="_1391">
<id>1432</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>165</sink_obj>
</item>
<item class_id_reference="20" object_id="_1392">
<id>1520</id>
<edge_type>2</edge_type>
<source_obj>26</source_obj>
<sink_obj>32</sink_obj>
</item>
<item class_id_reference="20" object_id="_1393">
<id>1521</id>
<edge_type>2</edge_type>
<source_obj>32</source_obj>
<sink_obj>39</sink_obj>
</item>
<item class_id_reference="20" object_id="_1394">
<id>1522</id>
<edge_type>2</edge_type>
<source_obj>32</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_1395">
<id>1523</id>
<edge_type>2</edge_type>
<source_obj>37</source_obj>
<sink_obj>32</sink_obj>
</item>
<item class_id_reference="20" object_id="_1396">
<id>1524</id>
<edge_type>2</edge_type>
<source_obj>39</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_1397">
<id>1525</id>
<edge_type>2</edge_type>
<source_obj>45</source_obj>
<sink_obj>56</sink_obj>
</item>
<item class_id_reference="20" object_id="_1398">
<id>1526</id>
<edge_type>2</edge_type>
<source_obj>45</source_obj>
<sink_obj>50</sink_obj>
</item>
<item class_id_reference="20" object_id="_1399">
<id>1527</id>
<edge_type>2</edge_type>
<source_obj>50</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_1400">
<id>1528</id>
<edge_type>2</edge_type>
<source_obj>56</source_obj>
<sink_obj>68</sink_obj>
</item>
<item class_id_reference="20" object_id="_1401">
<id>1529</id>
<edge_type>2</edge_type>
<source_obj>68</source_obj>
<sink_obj>476</sink_obj>
</item>
<item class_id_reference="20" object_id="_1402">
<id>1530</id>
<edge_type>2</edge_type>
<source_obj>68</source_obj>
<sink_obj>118</sink_obj>
</item>
<item class_id_reference="20" object_id="_1403">
<id>1531</id>
<edge_type>2</edge_type>
<source_obj>118</source_obj>
<sink_obj>166</sink_obj>
</item>
<item class_id_reference="20" object_id="_1404">
<id>1532</id>
<edge_type>2</edge_type>
<source_obj>118</source_obj>
<sink_obj>163</sink_obj>
</item>
<item class_id_reference="20" object_id="_1405">
<id>1533</id>
<edge_type>2</edge_type>
<source_obj>118</source_obj>
<sink_obj>160</sink_obj>
</item>
<item class_id_reference="20" object_id="_1406">
<id>1534</id>
<edge_type>2</edge_type>
<source_obj>118</source_obj>
<sink_obj>157</sink_obj>
</item>
<item class_id_reference="20" object_id="_1407">
<id>1535</id>
<edge_type>2</edge_type>
<source_obj>118</source_obj>
<sink_obj>154</sink_obj>
</item>
<item class_id_reference="20" object_id="_1408">
<id>1536</id>
<edge_type>2</edge_type>
<source_obj>118</source_obj>
<sink_obj>151</sink_obj>
</item>
<item class_id_reference="20" object_id="_1409">
<id>1537</id>
<edge_type>2</edge_type>
<source_obj>118</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_1410">
<id>1538</id>
<edge_type>2</edge_type>
<source_obj>118</source_obj>
<sink_obj>145</sink_obj>
</item>
<item class_id_reference="20" object_id="_1411">
<id>1539</id>
<edge_type>2</edge_type>
<source_obj>118</source_obj>
<sink_obj>142</sink_obj>
</item>
<item class_id_reference="20" object_id="_1412">
<id>1540</id>
<edge_type>2</edge_type>
<source_obj>118</source_obj>
<sink_obj>139</sink_obj>
</item>
<item class_id_reference="20" object_id="_1413">
<id>1541</id>
<edge_type>2</edge_type>
<source_obj>118</source_obj>
<sink_obj>136</sink_obj>
</item>
<item class_id_reference="20" object_id="_1414">
<id>1542</id>
<edge_type>2</edge_type>
<source_obj>118</source_obj>
<sink_obj>133</sink_obj>
</item>
<item class_id_reference="20" object_id="_1415">
<id>1543</id>
<edge_type>2</edge_type>
<source_obj>118</source_obj>
<sink_obj>130</sink_obj>
</item>
<item class_id_reference="20" object_id="_1416">
<id>1544</id>
<edge_type>2</edge_type>
<source_obj>118</source_obj>
<sink_obj>127</sink_obj>
</item>
<item class_id_reference="20" object_id="_1417">
<id>1545</id>
<edge_type>2</edge_type>
<source_obj>118</source_obj>
<sink_obj>124</sink_obj>
</item>
<item class_id_reference="20" object_id="_1418">
<id>1546</id>
<edge_type>2</edge_type>
<source_obj>118</source_obj>
<sink_obj>121</sink_obj>
</item>
<item class_id_reference="20" object_id="_1419">
<id>1547</id>
<edge_type>2</edge_type>
<source_obj>121</source_obj>
<sink_obj>188</sink_obj>
</item>
<item class_id_reference="20" object_id="_1420">
<id>1548</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>188</sink_obj>
</item>
<item class_id_reference="20" object_id="_1421">
<id>1549</id>
<edge_type>2</edge_type>
<source_obj>127</source_obj>
<sink_obj>188</sink_obj>
</item>
<item class_id_reference="20" object_id="_1422">
<id>1550</id>
<edge_type>2</edge_type>
<source_obj>130</source_obj>
<sink_obj>188</sink_obj>
</item>
<item class_id_reference="20" object_id="_1423">
<id>1551</id>
<edge_type>2</edge_type>
<source_obj>133</source_obj>
<sink_obj>188</sink_obj>
</item>
<item class_id_reference="20" object_id="_1424">
<id>1552</id>
<edge_type>2</edge_type>
<source_obj>136</source_obj>
<sink_obj>188</sink_obj>
</item>
<item class_id_reference="20" object_id="_1425">
<id>1553</id>
<edge_type>2</edge_type>
<source_obj>139</source_obj>
<sink_obj>188</sink_obj>
</item>
<item class_id_reference="20" object_id="_1426">
<id>1554</id>
<edge_type>2</edge_type>
<source_obj>142</source_obj>
<sink_obj>188</sink_obj>
</item>
<item class_id_reference="20" object_id="_1427">
<id>1555</id>
<edge_type>2</edge_type>
<source_obj>145</source_obj>
<sink_obj>188</sink_obj>
</item>
<item class_id_reference="20" object_id="_1428">
<id>1556</id>
<edge_type>2</edge_type>
<source_obj>148</source_obj>
<sink_obj>188</sink_obj>
</item>
<item class_id_reference="20" object_id="_1429">
<id>1557</id>
<edge_type>2</edge_type>
<source_obj>151</source_obj>
<sink_obj>188</sink_obj>
</item>
<item class_id_reference="20" object_id="_1430">
<id>1558</id>
<edge_type>2</edge_type>
<source_obj>154</source_obj>
<sink_obj>188</sink_obj>
</item>
<item class_id_reference="20" object_id="_1431">
<id>1559</id>
<edge_type>2</edge_type>
<source_obj>157</source_obj>
<sink_obj>188</sink_obj>
</item>
<item class_id_reference="20" object_id="_1432">
<id>1560</id>
<edge_type>2</edge_type>
<source_obj>160</source_obj>
<sink_obj>188</sink_obj>
</item>
<item class_id_reference="20" object_id="_1433">
<id>1561</id>
<edge_type>2</edge_type>
<source_obj>163</source_obj>
<sink_obj>188</sink_obj>
</item>
<item class_id_reference="20" object_id="_1434">
<id>1562</id>
<edge_type>2</edge_type>
<source_obj>166</source_obj>
<sink_obj>188</sink_obj>
</item>
<item class_id_reference="20" object_id="_1435">
<id>1563</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>236</sink_obj>
</item>
<item class_id_reference="20" object_id="_1436">
<id>1564</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>233</sink_obj>
</item>
<item class_id_reference="20" object_id="_1437">
<id>1565</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>230</sink_obj>
</item>
<item class_id_reference="20" object_id="_1438">
<id>1566</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>227</sink_obj>
</item>
<item class_id_reference="20" object_id="_1439">
<id>1567</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>224</sink_obj>
</item>
<item class_id_reference="20" object_id="_1440">
<id>1568</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>221</sink_obj>
</item>
<item class_id_reference="20" object_id="_1441">
<id>1569</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>218</sink_obj>
</item>
<item class_id_reference="20" object_id="_1442">
<id>1570</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>215</sink_obj>
</item>
<item class_id_reference="20" object_id="_1443">
<id>1571</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>212</sink_obj>
</item>
<item class_id_reference="20" object_id="_1444">
<id>1572</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>209</sink_obj>
</item>
<item class_id_reference="20" object_id="_1445">
<id>1573</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>206</sink_obj>
</item>
<item class_id_reference="20" object_id="_1446">
<id>1574</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>203</sink_obj>
</item>
<item class_id_reference="20" object_id="_1447">
<id>1575</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>200</sink_obj>
</item>
<item class_id_reference="20" object_id="_1448">
<id>1576</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>197</sink_obj>
</item>
<item class_id_reference="20" object_id="_1449">
<id>1577</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>194</sink_obj>
</item>
<item class_id_reference="20" object_id="_1450">
<id>1578</id>
<edge_type>2</edge_type>
<source_obj>188</source_obj>
<sink_obj>191</sink_obj>
</item>
<item class_id_reference="20" object_id="_1451">
<id>1579</id>
<edge_type>2</edge_type>
<source_obj>191</source_obj>
<sink_obj>261</sink_obj>
</item>
<item class_id_reference="20" object_id="_1452">
<id>1580</id>
<edge_type>2</edge_type>
<source_obj>194</source_obj>
<sink_obj>261</sink_obj>
</item>
<item class_id_reference="20" object_id="_1453">
<id>1581</id>
<edge_type>2</edge_type>
<source_obj>197</source_obj>
<sink_obj>261</sink_obj>
</item>
<item class_id_reference="20" object_id="_1454">
<id>1582</id>
<edge_type>2</edge_type>
<source_obj>200</source_obj>
<sink_obj>261</sink_obj>
</item>
<item class_id_reference="20" object_id="_1455">
<id>1583</id>
<edge_type>2</edge_type>
<source_obj>203</source_obj>
<sink_obj>261</sink_obj>
</item>
<item class_id_reference="20" object_id="_1456">
<id>1584</id>
<edge_type>2</edge_type>
<source_obj>206</source_obj>
<sink_obj>261</sink_obj>
</item>
<item class_id_reference="20" object_id="_1457">
<id>1585</id>
<edge_type>2</edge_type>
<source_obj>209</source_obj>
<sink_obj>261</sink_obj>
</item>
<item class_id_reference="20" object_id="_1458">
<id>1586</id>
<edge_type>2</edge_type>
<source_obj>212</source_obj>
<sink_obj>261</sink_obj>
</item>
<item class_id_reference="20" object_id="_1459">
<id>1587</id>
<edge_type>2</edge_type>
<source_obj>215</source_obj>
<sink_obj>261</sink_obj>
</item>
<item class_id_reference="20" object_id="_1460">
<id>1588</id>
<edge_type>2</edge_type>
<source_obj>218</source_obj>
<sink_obj>261</sink_obj>
</item>
<item class_id_reference="20" object_id="_1461">
<id>1589</id>
<edge_type>2</edge_type>
<source_obj>221</source_obj>
<sink_obj>261</sink_obj>
</item>
<item class_id_reference="20" object_id="_1462">
<id>1590</id>
<edge_type>2</edge_type>
<source_obj>224</source_obj>
<sink_obj>261</sink_obj>
</item>
<item class_id_reference="20" object_id="_1463">
<id>1591</id>
<edge_type>2</edge_type>
<source_obj>227</source_obj>
<sink_obj>261</sink_obj>
</item>
<item class_id_reference="20" object_id="_1464">
<id>1592</id>
<edge_type>2</edge_type>
<source_obj>230</source_obj>
<sink_obj>261</sink_obj>
</item>
<item class_id_reference="20" object_id="_1465">
<id>1593</id>
<edge_type>2</edge_type>
<source_obj>233</source_obj>
<sink_obj>261</sink_obj>
</item>
<item class_id_reference="20" object_id="_1466">
<id>1594</id>
<edge_type>2</edge_type>
<source_obj>236</source_obj>
<sink_obj>261</sink_obj>
</item>
<item class_id_reference="20" object_id="_1467">
<id>1595</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>309</sink_obj>
</item>
<item class_id_reference="20" object_id="_1468">
<id>1596</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>306</sink_obj>
</item>
<item class_id_reference="20" object_id="_1469">
<id>1597</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>303</sink_obj>
</item>
<item class_id_reference="20" object_id="_1470">
<id>1598</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>300</sink_obj>
</item>
<item class_id_reference="20" object_id="_1471">
<id>1599</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>297</sink_obj>
</item>
<item class_id_reference="20" object_id="_1472">
<id>1600</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>294</sink_obj>
</item>
<item class_id_reference="20" object_id="_1473">
<id>1601</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>291</sink_obj>
</item>
<item class_id_reference="20" object_id="_1474">
<id>1602</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>288</sink_obj>
</item>
<item class_id_reference="20" object_id="_1475">
<id>1603</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>285</sink_obj>
</item>
<item class_id_reference="20" object_id="_1476">
<id>1604</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>282</sink_obj>
</item>
<item class_id_reference="20" object_id="_1477">
<id>1605</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>279</sink_obj>
</item>
<item class_id_reference="20" object_id="_1478">
<id>1606</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>276</sink_obj>
</item>
<item class_id_reference="20" object_id="_1479">
<id>1607</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>273</sink_obj>
</item>
<item class_id_reference="20" object_id="_1480">
<id>1608</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>270</sink_obj>
</item>
<item class_id_reference="20" object_id="_1481">
<id>1609</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>267</sink_obj>
</item>
<item class_id_reference="20" object_id="_1482">
<id>1610</id>
<edge_type>2</edge_type>
<source_obj>261</source_obj>
<sink_obj>264</sink_obj>
</item>
<item class_id_reference="20" object_id="_1483">
<id>1611</id>
<edge_type>2</edge_type>
<source_obj>264</source_obj>
<sink_obj>315</sink_obj>
</item>
<item class_id_reference="20" object_id="_1484">
<id>1612</id>
<edge_type>2</edge_type>
<source_obj>267</source_obj>
<sink_obj>315</sink_obj>
</item>
<item class_id_reference="20" object_id="_1485">
<id>1613</id>
<edge_type>2</edge_type>
<source_obj>270</source_obj>
<sink_obj>315</sink_obj>
</item>
<item class_id_reference="20" object_id="_1486">
<id>1614</id>
<edge_type>2</edge_type>
<source_obj>273</source_obj>
<sink_obj>315</sink_obj>
</item>
<item class_id_reference="20" object_id="_1487">
<id>1615</id>
<edge_type>2</edge_type>
<source_obj>276</source_obj>
<sink_obj>315</sink_obj>
</item>
<item class_id_reference="20" object_id="_1488">
<id>1616</id>
<edge_type>2</edge_type>
<source_obj>279</source_obj>
<sink_obj>315</sink_obj>
</item>
<item class_id_reference="20" object_id="_1489">
<id>1617</id>
<edge_type>2</edge_type>
<source_obj>282</source_obj>
<sink_obj>315</sink_obj>
</item>
<item class_id_reference="20" object_id="_1490">
<id>1618</id>
<edge_type>2</edge_type>
<source_obj>285</source_obj>
<sink_obj>315</sink_obj>
</item>
<item class_id_reference="20" object_id="_1491">
<id>1619</id>
<edge_type>2</edge_type>
<source_obj>288</source_obj>
<sink_obj>315</sink_obj>
</item>
<item class_id_reference="20" object_id="_1492">
<id>1620</id>
<edge_type>2</edge_type>
<source_obj>291</source_obj>
<sink_obj>315</sink_obj>
</item>
<item class_id_reference="20" object_id="_1493">
<id>1621</id>
<edge_type>2</edge_type>
<source_obj>294</source_obj>
<sink_obj>315</sink_obj>
</item>
<item class_id_reference="20" object_id="_1494">
<id>1622</id>
<edge_type>2</edge_type>
<source_obj>297</source_obj>
<sink_obj>315</sink_obj>
</item>
<item class_id_reference="20" object_id="_1495">
<id>1623</id>
<edge_type>2</edge_type>
<source_obj>300</source_obj>
<sink_obj>315</sink_obj>
</item>
<item class_id_reference="20" object_id="_1496">
<id>1624</id>
<edge_type>2</edge_type>
<source_obj>303</source_obj>
<sink_obj>315</sink_obj>
</item>
<item class_id_reference="20" object_id="_1497">
<id>1625</id>
<edge_type>2</edge_type>
<source_obj>306</source_obj>
<sink_obj>315</sink_obj>
</item>
<item class_id_reference="20" object_id="_1498">
<id>1626</id>
<edge_type>2</edge_type>
<source_obj>309</source_obj>
<sink_obj>315</sink_obj>
</item>
<item class_id_reference="20" object_id="_1499">
<id>1627</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>363</sink_obj>
</item>
<item class_id_reference="20" object_id="_1500">
<id>1628</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>360</sink_obj>
</item>
<item class_id_reference="20" object_id="_1501">
<id>1629</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>357</sink_obj>
</item>
<item class_id_reference="20" object_id="_1502">
<id>1630</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>354</sink_obj>
</item>
<item class_id_reference="20" object_id="_1503">
<id>1631</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>351</sink_obj>
</item>
<item class_id_reference="20" object_id="_1504">
<id>1632</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>348</sink_obj>
</item>
<item class_id_reference="20" object_id="_1505">
<id>1633</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>345</sink_obj>
</item>
<item class_id_reference="20" object_id="_1506">
<id>1634</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>342</sink_obj>
</item>
<item class_id_reference="20" object_id="_1507">
<id>1635</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>339</sink_obj>
</item>
<item class_id_reference="20" object_id="_1508">
<id>1636</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>336</sink_obj>
</item>
<item class_id_reference="20" object_id="_1509">
<id>1637</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>333</sink_obj>
</item>
<item class_id_reference="20" object_id="_1510">
<id>1638</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>330</sink_obj>
</item>
<item class_id_reference="20" object_id="_1511">
<id>1639</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>327</sink_obj>
</item>
<item class_id_reference="20" object_id="_1512">
<id>1640</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>324</sink_obj>
</item>
<item class_id_reference="20" object_id="_1513">
<id>1641</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>321</sink_obj>
</item>
<item class_id_reference="20" object_id="_1514">
<id>1642</id>
<edge_type>2</edge_type>
<source_obj>315</source_obj>
<sink_obj>318</sink_obj>
</item>
<item class_id_reference="20" object_id="_1515">
<id>1643</id>
<edge_type>2</edge_type>
<source_obj>318</source_obj>
<sink_obj>377</sink_obj>
</item>
<item class_id_reference="20" object_id="_1516">
<id>1644</id>
<edge_type>2</edge_type>
<source_obj>321</source_obj>
<sink_obj>377</sink_obj>
</item>
<item class_id_reference="20" object_id="_1517">
<id>1645</id>
<edge_type>2</edge_type>
<source_obj>324</source_obj>
<sink_obj>377</sink_obj>
</item>
<item class_id_reference="20" object_id="_1518">
<id>1646</id>
<edge_type>2</edge_type>
<source_obj>327</source_obj>
<sink_obj>377</sink_obj>
</item>
<item class_id_reference="20" object_id="_1519">
<id>1647</id>
<edge_type>2</edge_type>
<source_obj>330</source_obj>
<sink_obj>377</sink_obj>
</item>
<item class_id_reference="20" object_id="_1520">
<id>1648</id>
<edge_type>2</edge_type>
<source_obj>333</source_obj>
<sink_obj>377</sink_obj>
</item>
<item class_id_reference="20" object_id="_1521">
<id>1649</id>
<edge_type>2</edge_type>
<source_obj>336</source_obj>
<sink_obj>377</sink_obj>
</item>
<item class_id_reference="20" object_id="_1522">
<id>1650</id>
<edge_type>2</edge_type>
<source_obj>339</source_obj>
<sink_obj>377</sink_obj>
</item>
<item class_id_reference="20" object_id="_1523">
<id>1651</id>
<edge_type>2</edge_type>
<source_obj>342</source_obj>
<sink_obj>377</sink_obj>
</item>
<item class_id_reference="20" object_id="_1524">
<id>1652</id>
<edge_type>2</edge_type>
<source_obj>345</source_obj>
<sink_obj>377</sink_obj>
</item>
<item class_id_reference="20" object_id="_1525">
<id>1653</id>
<edge_type>2</edge_type>
<source_obj>348</source_obj>
<sink_obj>377</sink_obj>
</item>
<item class_id_reference="20" object_id="_1526">
<id>1654</id>
<edge_type>2</edge_type>
<source_obj>351</source_obj>
<sink_obj>377</sink_obj>
</item>
<item class_id_reference="20" object_id="_1527">
<id>1655</id>
<edge_type>2</edge_type>
<source_obj>354</source_obj>
<sink_obj>377</sink_obj>
</item>
<item class_id_reference="20" object_id="_1528">
<id>1656</id>
<edge_type>2</edge_type>
<source_obj>357</source_obj>
<sink_obj>377</sink_obj>
</item>
<item class_id_reference="20" object_id="_1529">
<id>1657</id>
<edge_type>2</edge_type>
<source_obj>360</source_obj>
<sink_obj>377</sink_obj>
</item>
<item class_id_reference="20" object_id="_1530">
<id>1658</id>
<edge_type>2</edge_type>
<source_obj>363</source_obj>
<sink_obj>377</sink_obj>
</item>
<item class_id_reference="20" object_id="_1531">
<id>1659</id>
<edge_type>2</edge_type>
<source_obj>377</source_obj>
<sink_obj>382</sink_obj>
</item>
<item class_id_reference="20" object_id="_1532">
<id>1660</id>
<edge_type>2</edge_type>
<source_obj>377</source_obj>
<sink_obj>428</sink_obj>
</item>
<item class_id_reference="20" object_id="_1533">
<id>1661</id>
<edge_type>2</edge_type>
<source_obj>382</source_obj>
<sink_obj>428</sink_obj>
</item>
<item class_id_reference="20" object_id="_1534">
<id>1662</id>
<edge_type>2</edge_type>
<source_obj>382</source_obj>
<sink_obj>397</sink_obj>
</item>
<item class_id_reference="20" object_id="_1535">
<id>1663</id>
<edge_type>2</edge_type>
<source_obj>397</source_obj>
<sink_obj>474</sink_obj>
</item>
<item class_id_reference="20" object_id="_1536">
<id>1664</id>
<edge_type>2</edge_type>
<source_obj>397</source_obj>
<sink_obj>402</sink_obj>
</item>
<item class_id_reference="20" object_id="_1537">
<id>1665</id>
<edge_type>2</edge_type>
<source_obj>402</source_obj>
<sink_obj>474</sink_obj>
</item>
<item class_id_reference="20" object_id="_1538">
<id>1666</id>
<edge_type>2</edge_type>
<source_obj>402</source_obj>
<sink_obj>407</sink_obj>
</item>
<item class_id_reference="20" object_id="_1539">
<id>1667</id>
<edge_type>2</edge_type>
<source_obj>407</source_obj>
<sink_obj>474</sink_obj>
</item>
<item class_id_reference="20" object_id="_1540">
<id>1668</id>
<edge_type>2</edge_type>
<source_obj>407</source_obj>
<sink_obj>413</sink_obj>
</item>
<item class_id_reference="20" object_id="_1541">
<id>1669</id>
<edge_type>2</edge_type>
<source_obj>413</source_obj>
<sink_obj>474</sink_obj>
</item>
<item class_id_reference="20" object_id="_1542">
<id>1670</id>
<edge_type>2</edge_type>
<source_obj>428</source_obj>
<sink_obj>474</sink_obj>
</item>
<item class_id_reference="20" object_id="_1543">
<id>1671</id>
<edge_type>2</edge_type>
<source_obj>428</source_obj>
<sink_obj>433</sink_obj>
</item>
<item class_id_reference="20" object_id="_1544">
<id>1672</id>
<edge_type>2</edge_type>
<source_obj>433</source_obj>
<sink_obj>474</sink_obj>
</item>
<item class_id_reference="20" object_id="_1545">
<id>1673</id>
<edge_type>2</edge_type>
<source_obj>433</source_obj>
<sink_obj>438</sink_obj>
</item>
<item class_id_reference="20" object_id="_1546">
<id>1674</id>
<edge_type>2</edge_type>
<source_obj>438</source_obj>
<sink_obj>474</sink_obj>
</item>
<item class_id_reference="20" object_id="_1547">
<id>1675</id>
<edge_type>2</edge_type>
<source_obj>438</source_obj>
<sink_obj>444</sink_obj>
</item>
<item class_id_reference="20" object_id="_1548">
<id>1676</id>
<edge_type>2</edge_type>
<source_obj>444</source_obj>
<sink_obj>474</sink_obj>
</item>
<item class_id_reference="20" object_id="_1549">
<id>1677</id>
<edge_type>2</edge_type>
<source_obj>474</source_obj>
<sink_obj>68</sink_obj>
</item>
<item class_id_reference="20" object_id="_1550">
<id>1695</id>
<edge_type>4</edge_type>
<source_obj>466</source_obj>
<sink_obj>468</sink_obj>
</item>
<item class_id_reference="20" object_id="_1551">
<id>1696</id>
<edge_type>4</edge_type>
<source_obj>461</source_obj>
<sink_obj>464</sink_obj>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>8</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_1552">
<mId>1</mId>
<mTag>computeHistogram0</mTag>
<mType>0</mType>
<sub_regions>
<count>7</count>
<item_version>0</item_version>
<item>2</item>
<item>3</item>
<item>4</item>
<item>5</item>
<item>6</item>
<item>7</item>
<item>8</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>347</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_1553">
<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>26</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_1554">
<mId>3</mId>
<mTag>Loop 1</mTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>32</item>
<item>37</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>72</mMinTripCount>
<mMaxTripCount>72</mMaxTripCount>
<mMinLatency>72</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_1555">
<mId>4</mId>
<mTag>Region 1</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_1556">
<mId>5</mId>
<mTag>Loop 2</mTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>45</item>
<item>50</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>2</mMinTripCount>
<mMaxTripCount>2</mMaxTripCount>
<mMinLatency>2</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_1557">
<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>56</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_1558">
<mId>7</mId>
<mTag>histogram_computeHistogram_label1_L</mTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>80</count>
<item_version>0</item_version>
<item>68</item>
<item>118</item>
<item>121</item>
<item>124</item>
<item>127</item>
<item>130</item>
<item>133</item>
<item>136</item>
<item>139</item>
<item>142</item>
<item>145</item>
<item>148</item>
<item>151</item>
<item>154</item>
<item>157</item>
<item>160</item>
<item>163</item>
<item>166</item>
<item>188</item>
<item>191</item>
<item>194</item>
<item>197</item>
<item>200</item>
<item>203</item>
<item>206</item>
<item>209</item>
<item>212</item>
<item>215</item>
<item>218</item>
<item>221</item>
<item>224</item>
<item>227</item>
<item>230</item>
<item>233</item>
<item>236</item>
<item>261</item>
<item>264</item>
<item>267</item>
<item>270</item>
<item>273</item>
<item>276</item>
<item>279</item>
<item>282</item>
<item>285</item>
<item>288</item>
<item>291</item>
<item>294</item>
<item>297</item>
<item>300</item>
<item>303</item>
<item>306</item>
<item>309</item>
<item>315</item>
<item>318</item>
<item>321</item>
<item>324</item>
<item>327</item>
<item>330</item>
<item>333</item>
<item>336</item>
<item>339</item>
<item>342</item>
<item>345</item>
<item>348</item>
<item>351</item>
<item>354</item>
<item>357</item>
<item>360</item>
<item>363</item>
<item>377</item>
<item>382</item>
<item>397</item>
<item>402</item>
<item>407</item>
<item>413</item>
<item>428</item>
<item>433</item>
<item>438</item>
<item>444</item>
<item>474</item>
</basic_blocks>
<mII>1</mII>
<mDepth>15</mDepth>
<mMinTripCount>256</mMinTripCount>
<mMaxTripCount>256</mMaxTripCount>
<mMinLatency>269</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_1559">
<mId>8</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>476</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
</cdfg_regions>
<fsm class_id="-1"></fsm>
<res class_id="-1"></res>
<node_label_latency class_id="26" tracking_level="0" version="0">
<count>352</count>
<item_version>0</item_version>
<item class_id="27" tracking_level="0" version="0">
<first>25</first>
<second class_id="28" tracking_level="0" version="0">
<first>0</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>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>33</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>34</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>35</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>36</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>40</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>41</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>43</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>44</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>46</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>49</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>55</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>57</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>58</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>59</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>60</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>61</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>62</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>63</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>64</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>65</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>66</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>67</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>71</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>72</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>73</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>74</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>75</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>76</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>77</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>78</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>79</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>80</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>81</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>82</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>83</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>84</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>85</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>86</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>88</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>89</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>90</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>91</first>
<second>
<first>14</first>
<second>0</second>
</second>
</item>
<item>
<first>92</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>93</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>94</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>95</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>96</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>99</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>100</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>101</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>102</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>103</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>104</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>105</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>106</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>107</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>108</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>109</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>110</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>111</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>112</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>113</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>114</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>115</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>116</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>117</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>119</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>120</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>122</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>123</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>125</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>126</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>128</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>129</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>131</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>132</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>134</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>135</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>137</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>138</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>140</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>141</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>143</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>144</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>146</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>147</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>149</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>150</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>152</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>153</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>155</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>156</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>158</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>159</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>161</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>162</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>164</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>165</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>167</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>168</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>169</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>170</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>171</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>172</first>
<second>
<first>5</first>
<second>0</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>0</second>
</second>
</item>
<item>
<first>175</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>176</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>177</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>178</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>179</first>
<second>
<first>5</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>189</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>190</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>192</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>193</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>195</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>196</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>201</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>202</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>204</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>205</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>207</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>208</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>210</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>211</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>213</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>214</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>216</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>217</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>219</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>220</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>222</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>223</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>225</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>226</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>228</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>229</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>231</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>232</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>234</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>235</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>237</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>238</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>239</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>240</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>241</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>242</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>243</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>244</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>245</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>246</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>247</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>248</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>249</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>250</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>251</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>252</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>253</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>254</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>255</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>256</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>257</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>258</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>259</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>260</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>262</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>263</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>265</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>266</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>268</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>269</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>271</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>272</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>274</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>275</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>277</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>278</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>280</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>281</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>283</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>284</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>286</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>287</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>289</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>290</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>292</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>293</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>295</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>296</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>298</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>299</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>301</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>302</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>304</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>305</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>307</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>308</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>310</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>311</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>312</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>313</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>314</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>316</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>317</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>319</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>320</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>322</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>323</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>325</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>326</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>328</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>329</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>331</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>332</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>334</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>335</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>337</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>338</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>340</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>341</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>343</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>344</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>346</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>347</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>349</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>350</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>352</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>353</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>355</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>356</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>358</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>359</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>361</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>362</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>364</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>365</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>366</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>367</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>368</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>369</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>370</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>371</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>372</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>373</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>374</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>375</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>376</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>378</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>379</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>380</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>381</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>383</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>384</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>385</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>386</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>387</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>388</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>389</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>390</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>391</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>392</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>393</first>
<second>
<first>8</first>
<second>1</second>
</second>
</item>
<item>
<first>394</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>395</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>396</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>398</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>399</first>
<second>
<first>9</first>
<second>1</second>
</second>
</item>
<item>
<first>400</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>401</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>403</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>404</first>
<second>
<first>10</first>
<second>1</second>
</second>
</item>
<item>
<first>405</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>406</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>408</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>409</first>
<second>
<first>11</first>
<second>1</second>
</second>
</item>
<item>
<first>410</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>411</first>
<second>
<first>13</first>
<second>0</second>
</second>
</item>
<item>
<first>412</first>
<second>
<first>13</first>
<second>0</second>
</second>
</item>
<item>
<first>414</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>415</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>416</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>417</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>418</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>419</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>420</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>421</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>422</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>423</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>424</first>
<second>
<first>8</first>
<second>1</second>
</second>
</item>
<item>
<first>425</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>426</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>427</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>429</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>430</first>
<second>
<first>9</first>
<second>1</second>
</second>
</item>
<item>
<first>431</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>432</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>434</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>435</first>
<second>
<first>10</first>
<second>1</second>
</second>
</item>
<item>
<first>436</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>437</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>439</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>440</first>
<second>
<first>11</first>
<second>1</second>
</second>
</item>
<item>
<first>441</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>442</first>
<second>
<first>13</first>
<second>0</second>
</second>
</item>
<item>
<first>443</first>
<second>
<first>13</first>
<second>0</second>
</second>
</item>
<item>
<first>445</first>
<second>
<first>14</first>
<second>0</second>
</second>
</item>
<item>
<first>446</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>447</first>
<second>
<first>14</first>
<second>0</second>
</second>
</item>
<item>
<first>448</first>
<second>
<first>14</first>
<second>0</second>
</second>
</item>
<item>
<first>449</first>
<second>
<first>14</first>
<second>0</second>
</second>
</item>
<item>
<first>450</first>
<second>
<first>14</first>
<second>0</second>
</second>
</item>
<item>
<first>451</first>
<second>
<first>14</first>
<second>0</second>
</second>
</item>
<item>
<first>452</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>453</first>
<second>
<first>14</first>
<second>0</second>
</second>
</item>
<item>
<first>454</first>
<second>
<first>14</first>
<second>0</second>
</second>
</item>
<item>
<first>455</first>
<second>
<first>14</first>
<second>0</second>
</second>
</item>
<item>
<first>456</first>
<second>
<first>14</first>
<second>0</second>
</second>
</item>
<item>
<first>457</first>
<second>
<first>14</first>
<second>0</second>
</second>
</item>
<item>
<first>458</first>
<second>
<first>14</first>
<second>0</second>
</second>
</item>
<item>
<first>459</first>
<second>
<first>15</first>
<second>0</second>
</second>
</item>
<item>
<first>460</first>
<second>
<first>15</first>
<second>0</second>
</second>
</item>
<item>
<first>461</first>
<second>
<first>15</first>
<second>1</second>
</second>
</item>
<item>
<first>462</first>
<second>
<first>16</first>
<second>0</second>
</second>
</item>
<item>
<first>463</first>
<second>
<first>16</first>
<second>0</second>
</second>
</item>
<item>
<first>464</first>
<second>
<first>17</first>
<second>0</second>
</second>
</item>
<item>
<first>465</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>466</first>
<second>
<first>7</first>
<second>1</second>
</second>
</item>
<item>
<first>467</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>468</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>470</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>471</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>472</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>473</first>
<second>
<first>17</first>
<second>0</second>
</second>
</item>
<item>
<first>475</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="29" tracking_level="0" version="0">
<count>88</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="0" version="0">
<first>26</first>
<second class_id="31" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>32</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>37</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>39</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>45</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>50</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>56</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>68</first>
<second>
<first>3</first>
<second>4</second>
</second>
</item>
<item>
<first>118</first>
<second>
<first>3</first>
<second>14</second>
</second>
</item>
<item>
<first>121</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>124</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>127</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>130</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>133</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>136</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>139</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>142</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>145</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>148</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>151</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>154</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>157</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>160</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>163</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>166</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>188</first>
<second>
<first>5</first>
<second>7</second>
</second>
</item>
<item>
<first>191</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>194</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>197</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>200</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>203</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>206</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>209</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>212</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>215</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>218</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>221</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>224</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>227</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>230</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>233</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>236</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>261</first>
<second>
<first>5</first>
<second>7</second>
</second>
</item>
<item>
<first>264</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>267</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>270</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>273</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>276</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>279</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>282</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>285</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>288</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>291</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>294</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>297</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>300</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>303</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>306</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>309</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>315</first>
<second>
<first>5</first>
<second>7</second>
</second>
</item>
<item>
<first>318</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>321</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>324</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>327</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>330</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>333</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>336</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>339</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>342</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>345</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>348</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>351</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>354</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>357</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>360</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>363</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>377</first>
<second>
<first>7</first>
<second>9</second>
</second>
</item>
<item>
<first>382</first>
<second>
<first>7</first>
<second>7</second>
</second>
</item>
<item>
<first>397</first>
<second>
<first>7</first>
<second>12</second>
</second>
</item>
<item>
<first>402</first>
<second>
<first>9</first>
<second>11</second>
</second>
</item>
<item>
<first>407</first>
<second>
<first>10</first>
<second>12</second>
</second>
</item>
<item>
<first>413</first>
<second>
<first>11</first>
<second>13</second>
</second>
</item>
<item>
<first>428</first>
<second>
<first>7</first>
<second>12</second>
</second>
</item>
<item>
<first>433</first>
<second>
<first>9</first>
<second>11</second>
</second>
</item>
<item>
<first>438</first>
<second>
<first>10</first>
<second>12</second>
</second>
</item>
<item>
<first>444</first>
<second>
<first>11</first>
<second>13</second>
</second>
</item>
<item>
<first>474</first>
<second>
<first>3</first>
<second>17</second>
</second>
</item>
<item>
<first>476</first>
<second>
<first>5</first>
<second>5</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="32" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="33" tracking_level="1" version="0" object_id="_1560">
<region_name>histogram_computeHistogram_label1_L</region_name>
<basic_blocks>
<count>80</count>
<item_version>0</item_version>
<item>68</item>
<item>118</item>
<item>121</item>
<item>124</item>
<item>127</item>
<item>130</item>
<item>133</item>
<item>136</item>
<item>139</item>
<item>142</item>
<item>145</item>
<item>148</item>
<item>151</item>
<item>154</item>
<item>157</item>
<item>160</item>
<item>163</item>
<item>166</item>
<item>188</item>
<item>191</item>
<item>194</item>
<item>197</item>
<item>200</item>
<item>203</item>
<item>206</item>
<item>209</item>
<item>212</item>
<item>215</item>
<item>218</item>
<item>221</item>
<item>224</item>
<item>227</item>
<item>230</item>
<item>233</item>
<item>236</item>
<item>261</item>
<item>264</item>
<item>267</item>
<item>270</item>
<item>273</item>
<item>276</item>
<item>279</item>
<item>282</item>
<item>285</item>
<item>288</item>
<item>291</item>
<item>294</item>
<item>297</item>
<item>300</item>
<item>303</item>
<item>306</item>
<item>309</item>
<item>315</item>
<item>318</item>
<item>321</item>
<item>324</item>
<item>327</item>
<item>330</item>
<item>333</item>
<item>336</item>
<item>339</item>
<item>342</item>
<item>345</item>
<item>348</item>
<item>351</item>
<item>354</item>
<item>357</item>
<item>360</item>
<item>363</item>
<item>377</item>
<item>382</item>
<item>397</item>
<item>402</item>
<item>407</item>
<item>413</item>
<item>428</item>
<item>433</item>
<item>438</item>
<item>444</item>
<item>474</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>15</pipe_depth>
</item>
</regions>
<dp_fu_nodes class_id="34" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="35" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_expression>
<dp_fu_nodes_module>
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_module>
<dp_fu_nodes_io>
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_io>
<return_ports>
<count>0</count>
<item_version>0</item_version>
</return_ports>
<dp_mem_port_nodes class_id="36" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>0</count>
<item_version>0</item_version>
</dp_reg_nodes>
<dp_regname_nodes>
<count>0</count>
<item_version>0</item_version>
</dp_regname_nodes>
<dp_reg_phi>
<count>0</count>
<item_version>0</item_version>
</dp_reg_phi>
<dp_regname_phi>
<count>0</count>
<item_version>0</item_version>
</dp_regname_phi>
<dp_port_io_nodes class_id="37" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_port_io_nodes>
<port2core class_id="38" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
|
-- This spec has been automatically generated from msp430g2553.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with System;
-- USCI_B0 SPI Mode
package MSP430_SVD.USCI_B0_SPI_MODE is
pragma Preelaborate;
---------------
-- Registers --
---------------
-- Sync. Mode: USCI Mode 1
type UCB0CTL0_SPI_UCMODE_Field is
(-- Sync. Mode: USCI Mode: 0
Ucmode_0,
-- Sync. Mode: USCI Mode: 1
Ucmode_1,
-- Sync. Mode: USCI Mode: 2
Ucmode_2,
-- Sync. Mode: USCI Mode: 3
Ucmode_3)
with Size => 2;
for UCB0CTL0_SPI_UCMODE_Field use
(Ucmode_0 => 0,
Ucmode_1 => 1,
Ucmode_2 => 2,
Ucmode_3 => 3);
-- USCI B0 Control Register 0
type UCB0CTL0_SPI_Register is record
-- Sync-Mode 0:UART-Mode / 1:SPI-Mode
UCSYNC : MSP430_SVD.Bit := 16#0#;
-- Sync. Mode: USCI Mode 1
UCMODE : UCB0CTL0_SPI_UCMODE_Field :=
MSP430_SVD.USCI_B0_SPI_MODE.Ucmode_0;
-- Sync. Mode: Master Select
UCMST : MSP430_SVD.Bit := 16#0#;
-- Sync. Mode: Data Bits 0:8-bits / 1:7-bits
UC7BIT : MSP430_SVD.Bit := 16#0#;
-- Sync. Mode: MSB first 0:LSB / 1:MSB
UCMSB : MSP430_SVD.Bit := 16#0#;
-- Sync. Mode: Clock Polarity
UCCKPL : MSP430_SVD.Bit := 16#0#;
-- Sync. Mode: Clock Phase
UCCKPH : MSP430_SVD.Bit := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 8,
Bit_Order => System.Low_Order_First;
for UCB0CTL0_SPI_Register use record
UCSYNC at 0 range 0 .. 0;
UCMODE at 0 range 1 .. 2;
UCMST at 0 range 3 .. 3;
UC7BIT at 0 range 4 .. 4;
UCMSB at 0 range 5 .. 5;
UCCKPL at 0 range 6 .. 6;
UCCKPH at 0 range 7 .. 7;
end record;
-- USCI 1 Clock Source Select 1
type UCB0CTL1_SPI_UCSSEL_Field is
(-- USCI 0 Clock Source: 0
Ucssel_0,
-- USCI 0 Clock Source: 1
Ucssel_1,
-- USCI 0 Clock Source: 2
Ucssel_2,
-- USCI 0 Clock Source: 3
Ucssel_3)
with Size => 2;
for UCB0CTL1_SPI_UCSSEL_Field use
(Ucssel_0 => 0,
Ucssel_1 => 1,
Ucssel_2 => 2,
Ucssel_3 => 3);
-- USCI B0 Control Register 1
type UCB0CTL1_SPI_Register is record
-- USCI Software Reset
UCSWRST : MSP430_SVD.Bit := 16#0#;
-- unspecified
Reserved_1_5 : MSP430_SVD.UInt5 := 16#0#;
-- USCI 1 Clock Source Select 1
UCSSEL : UCB0CTL1_SPI_UCSSEL_Field :=
MSP430_SVD.USCI_B0_SPI_MODE.Ucssel_0;
end record
with Volatile_Full_Access, Object_Size => 8,
Bit_Order => System.Low_Order_First;
for UCB0CTL1_SPI_Register use record
UCSWRST at 0 range 0 .. 0;
Reserved_1_5 at 0 range 1 .. 5;
UCSSEL at 0 range 6 .. 7;
end record;
-- USCI B0 Status Register
type UCB0STAT_SPI_Register is record
-- USCI Busy Flag
UCBUSY : MSP430_SVD.Bit := 16#0#;
-- unspecified
Reserved_1_4 : MSP430_SVD.UInt4 := 16#0#;
-- USCI Overrun Error Flag
UCOE : MSP430_SVD.Bit := 16#0#;
-- USCI Frame Error Flag
UCFE : MSP430_SVD.Bit := 16#0#;
-- USCI Listen mode
UCLISTEN : MSP430_SVD.Bit := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 8,
Bit_Order => System.Low_Order_First;
for UCB0STAT_SPI_Register use record
UCBUSY at 0 range 0 .. 0;
Reserved_1_4 at 0 range 1 .. 4;
UCOE at 0 range 5 .. 5;
UCFE at 0 range 6 .. 6;
UCLISTEN at 0 range 7 .. 7;
end record;
-----------------
-- Peripherals --
-----------------
-- USCI_B0 SPI Mode
type USCI_B0_SPI_MODE_Peripheral is record
-- USCI B0 Control Register 0
UCB0CTL0_SPI : aliased UCB0CTL0_SPI_Register;
-- USCI B0 Control Register 1
UCB0CTL1_SPI : aliased UCB0CTL1_SPI_Register;
-- USCI B0 Baud Rate 0
UCB0BR0_SPI : aliased MSP430_SVD.Byte;
-- USCI B0 Baud Rate 1
UCB0BR1_SPI : aliased MSP430_SVD.Byte;
-- USCI B0 Status Register
UCB0STAT_SPI : aliased UCB0STAT_SPI_Register;
-- USCI B0 Receive Buffer
UCB0RXBUF_SPI : aliased MSP430_SVD.Byte;
-- USCI B0 Transmit Buffer
UCB0TXBUF_SPI : aliased MSP430_SVD.Byte;
end record
with Volatile;
for USCI_B0_SPI_MODE_Peripheral use record
UCB0CTL0_SPI at 16#0# range 0 .. 7;
UCB0CTL1_SPI at 16#1# range 0 .. 7;
UCB0BR0_SPI at 16#2# range 0 .. 7;
UCB0BR1_SPI at 16#3# range 0 .. 7;
UCB0STAT_SPI at 16#5# range 0 .. 7;
UCB0RXBUF_SPI at 16#6# range 0 .. 7;
UCB0TXBUF_SPI at 16#7# range 0 .. 7;
end record;
-- USCI_B0 SPI Mode
USCI_B0_SPI_MODE_Periph : aliased USCI_B0_SPI_MODE_Peripheral
with Import, Address => USCI_B0_SPI_MODE_Base;
end MSP430_SVD.USCI_B0_SPI_MODE;
|
with Ada.Text_IO;
use Ada.Text_IO;
procedure Rendezes_Fv is
type Index is new Integer;
type Elem is new Integer;
type Tomb is array (Index range <>) of Elem;
function Max_Hely ( T: Tomb ) return Index is
Mh: Index := T'First;
begin
for I in T'Range loop
if T(Mh) < T(I) then
Mh := I;
end if;
end loop;
return Mh;
end Max_Hely;
procedure Cserel ( A, B: in out Elem ) is
Tmp: Elem := A;
begin
A := B;
B := Tmp;
end Cserel;
procedure Rendez ( T: in out Tomb ) is
Mh: Index;
begin
for I in reverse T'Range loop
Mh := Max_Hely( T(T'First..I) );
Cserel( T(I), T(Mh) );
end loop;
end Rendez;
function Rendezve ( T: Tomb ) return Tomb is
Uj: Tomb := T;
begin
Rendez(Uj);
return Uj;
end Rendezve;
T: Tomb := (3,6,1,5,3);
begin
T := Rendezve(T);
for I in T'Range loop
Put_Line( Elem'Image( T(I) ) );
end loop;
end Rendezes_Fv;
|
package body Construct_Conversion_Array with
SPARK_Mode
is
----------------------
-- Conversion_Array --
----------------------
function Conversion_Array return Conversion_Array_Type is
Conversion_Array : Conversion_Array_Type := (others => Zero);
begin
for J in Product_Index_Type loop
Conversion_Array (J) := Two_Power (Exposant (J));
pragma Loop_Invariant (for all K in 0 .. J => Conversion_Array (K) = Two_Power (Exposant (K)));
end loop;
Prove_Property (Conversion_Array);
return Conversion_Array;
end Conversion_Array;
--------------------
-- Prove_Property --
--------------------
procedure Prove_Property (Conversion_Array : Conversion_Array_Type) is
begin
for J in Index_Type loop
for K in Index_Type loop
Exposant_Lemma (J, K); -- The two lemmas will help solvers
Two_Power_Lemma (Exposant (J), Exposant (K)); -- to prove the following code.
pragma Assert (Two_Power (Exposant (J)) = Conversion_Array (J)
and then Two_Power (Exposant (K)) = Conversion_Array (K)
and then Two_Power (Exposant (J + K)) = Conversion_Array (J + K));
-- A reminder of the precondition
-- The following code will split the two different cases of
-- Property. In the statements, assertions are used to guide
-- provers to the goal.
if J mod 2 = 1 and then K mod 2 = 1 then
pragma Assert (Exposant (J + K) + 1 = Exposant (J) + Exposant (K));
pragma Assert (Two_Power (Exposant (J + K) + 1)
= Two_Power (Exposant (J)) * Two_Power (Exposant (K)));
pragma Assert (Two_Power (Exposant (J + K)) * (+2)
= Two_Power (Exposant (J)) * Two_Power (Exposant (K)));
pragma Assert (Property (Conversion_Array, J, K));
else
pragma Assert (Exposant (J + K) = Exposant (J) + Exposant (K));
pragma Assert (Two_Power (Exposant (J + K)) = Two_Power (Exposant (J)) * Two_Power (Exposant (K)));
pragma Assert (Property (Conversion_Array, J, K));
end if;
pragma Loop_Invariant (for all M in 0 .. K =>
Property (Conversion_Array, J, M));
end loop;
pragma Loop_Invariant (for all L in 0 .. J =>
(for all M in Index_Type =>
Property (Conversion_Array, L, M)));
end loop;
end Prove_Property;
end Construct_Conversion_Array;
|
package body Plugin.Base
is
procedure Say (Message : IRC.Message)
is
Arguments : Vector := Words (Message.Content);
Answer : IRC.Message := Message;
begin
Answer.Channel := Arguments (2);
Delete (Arguments, 1);
Delete (Arguments, 1);
Answer.Content := Unwords (Arguments);
IRC.Put_Message (Answer);
end Say;
procedure Join (Message : IRC.Message)
is
Channel : Unbounded_String := Words (Message.Content)(2);
begin
if Element (Channel, 1) /= '#' then
Channel := "#" & Channel;
end if;
IRC.Join_Channel (To_String (Channel));
end Join;
procedure Leave (Message : IRC.Message)
is
begin
IRC.Put_Line (To_String ("PART " & Message.Channel));
end Leave;
procedure Nick (Message : IRC.Message)
is
begin
IRC.Set_Nick (To_String (Element (Words (Message.Content), 2)));
end Nick;
end Plugin.Base;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- A L I --
-- --
-- B o d y --
-- --
-- $Revision$
-- --
-- Copyright (C) 1992-2001 Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
-- MA 02111-1307, USA. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Butil; use Butil;
with Debug; use Debug;
with Fname; use Fname;
with Namet; use Namet;
with Osint; use Osint;
with Output; use Output;
package body ALI is
use ASCII;
-- Make control characters visible
--------------------
-- Initialize_ALI --
--------------------
procedure Initialize_ALI is
begin
-- When (re)initializing ALI data structures the ALI user expects to
-- get a fresh set of data structures. Thus we first need to erase the
-- marks put in the name table by the previous set of ALI routine calls.
-- This loop is empty and harmless the first time in.
for J in ALIs.First .. ALIs.Last loop
Set_Name_Table_Info (ALIs.Table (J).Afile, 0);
end loop;
ALIs.Init;
Units.Init;
Withs.Init;
Sdep.Init;
Linker_Options.Init;
Xref_Section.Init;
Xref_Entity.Init;
Xref.Init;
Version_Ref.Reset;
-- Add dummy zero'th item in Linker_Options for the sort function
Linker_Options.Increment_Last;
-- Initialize global variables recording cumulative options in all
-- ALI files that are read for a given processing run in gnatbind.
Dynamic_Elaboration_Checks_Specified := False;
Float_Format_Specified := ' ';
Locking_Policy_Specified := ' ';
No_Normalize_Scalars_Specified := False;
No_Object_Specified := False;
Normalize_Scalars_Specified := False;
No_Run_Time_Specified := False;
Queuing_Policy_Specified := ' ';
Static_Elaboration_Model_Used := False;
Task_Dispatching_Policy_Specified := ' ';
Unreserve_All_Interrupts_Specified := False;
Zero_Cost_Exceptions_Specified := False;
end Initialize_ALI;
--------------
-- Scan_ALI --
--------------
function Scan_ALI
(F : File_Name_Type;
T : Text_Buffer_Ptr;
Ignore_ED : Boolean;
Err : Boolean;
Read_Xref : Boolean := False)
return ALI_Id
is
P : Text_Ptr := T'First;
Line : Logical_Line_Number := 1;
Id : ALI_Id;
C : Character;
NS_Found : Boolean;
First_Arg : Arg_Id;
function At_Eol return Boolean;
-- Test if at end of line
function At_End_Of_Field return Boolean;
-- Test if at end of line, or if at blank or horizontal tab
procedure Check_At_End_Of_Field;
-- Check if we are at end of field, fatal error if not
procedure Checkc (C : Character);
-- Check next character is C. If so bump past it, if not fatal error
Bad_ALI_Format : exception;
procedure Fatal_Error;
-- Generate fatal error message for badly formatted ALI file if
-- Err is false, or raise Bad_ALI_Format if Err is True.
function Getc return Character;
-- Get next character, bumping P past the character obtained
function Get_Name (Lower : Boolean := False) return Name_Id;
-- Skip blanks, then scan out a name (name is left in Name_Buffer with
-- length in Name_Len, as well as being returned in Name_Id form). The
-- name is adjusted appropriately if it refers to a file that is to be
-- substituted by another name as a result of a configuration pragma.
-- If Lower is set to true then the Name_Buffer will be converted to
-- all lower case. This only happends for systems where file names are
-- not case sensitive, and ensures that gnatbind works correctly on
-- such systems, regardless of the case of the file name. Note that
-- a name can be terminated by a right typeref bracket or '='.
function Get_Nat return Nat;
-- Skip blanks, then scan out an unsigned integer value in Nat range
function Get_Stamp return Time_Stamp_Type;
-- Skip blanks, then scan out a time stamp
function Nextc return Character;
-- Return current character without modifying pointer P
procedure Skip_Eol;
-- Skip past end of line (fatal error if not at end of line)
procedure Skip_Space;
-- Skip past white space (blanks or horizontal tab)
---------------------
-- At_End_Of_Field --
---------------------
function At_End_Of_Field return Boolean is
begin
return Nextc <= ' ';
end At_End_Of_Field;
------------
-- At_Eol --
------------
function At_Eol return Boolean is
begin
return Nextc = EOF or else Nextc = CR or else Nextc = LF;
end At_Eol;
---------------------------
-- Check_At_End_Of_Field --
---------------------------
procedure Check_At_End_Of_Field is
begin
if not At_End_Of_Field then
Fatal_Error;
end if;
end Check_At_End_Of_Field;
------------
-- Checkc --
------------
procedure Checkc (C : Character) is
begin
if Nextc = C then
P := P + 1;
else
Fatal_Error;
end if;
end Checkc;
-----------------
-- Fatal_Error --
-----------------
procedure Fatal_Error is
Ptr1 : Text_Ptr;
Ptr2 : Text_Ptr;
Col : Int;
procedure Wchar (C : Character);
-- Write a single character, replacing horizontal tab by spaces
procedure Wchar (C : Character) is
begin
if C = HT then
loop
Wchar (' ');
exit when Col mod 8 = 0;
end loop;
else
Write_Char (C);
Col := Col + 1;
end if;
end Wchar;
-- Start of processing for Fatal_Error
begin
if Err then
raise Bad_ALI_Format;
end if;
Set_Standard_Error;
Write_Str ("fatal error: file ");
Write_Name (F);
Write_Str (" is incorrectly formatted");
Write_Eol;
Write_Str
("make sure you are using consistent versions of gcc/gnatbind");
Write_Eol;
-- Find start of line
Ptr1 := P;
while Ptr1 > T'First
and then T (Ptr1 - 1) /= CR
and then T (Ptr1 - 1) /= LF
loop
Ptr1 := Ptr1 - 1;
end loop;
Write_Int (Int (Line));
Write_Str (". ");
if Line < 100 then
Write_Char (' ');
end if;
if Line < 10 then
Write_Char (' ');
end if;
Col := 0;
Ptr2 := Ptr1;
while Ptr2 < T'Last
and then T (Ptr2) /= CR
and then T (Ptr2) /= LF
loop
Wchar (T (Ptr2));
Ptr2 := Ptr2 + 1;
end loop;
Write_Eol;
Write_Str (" ");
Col := 0;
while Ptr1 < P loop
if T (Ptr1) = HT then
Wchar (HT);
else
Wchar (' ');
end if;
Ptr1 := Ptr1 + 1;
end loop;
Wchar ('|');
Write_Eol;
Exit_Program (E_Fatal);
end Fatal_Error;
--------------
-- Get_Name --
--------------
function Get_Name (Lower : Boolean := False) return Name_Id is
begin
Name_Len := 0;
Skip_Space;
if At_Eol then
Fatal_Error;
end if;
loop
Name_Len := Name_Len + 1;
Name_Buffer (Name_Len) := Getc;
exit when At_End_Of_Field
or else Nextc = ')'
or else Nextc = '}'
or else Nextc = '>'
or else Nextc = '=';
end loop;
-- Convert file name to all lower case if file names are not case
-- sensitive. This ensures that we handle names in the canonical
-- lower case format, regardless of the actual case.
if Lower and not File_Names_Case_Sensitive then
Canonical_Case_File_Name (Name_Buffer (1 .. Name_Len));
end if;
return Name_Find;
end Get_Name;
-------------
-- Get_Nat --
-------------
function Get_Nat return Nat is
V : Nat;
begin
Skip_Space;
V := 0;
loop
V := V * 10 + (Character'Pos (Getc) - Character'Pos ('0'));
exit when At_End_Of_Field;
exit when Nextc < '0' or Nextc > '9';
end loop;
return V;
end Get_Nat;
---------------
-- Get_Stamp --
---------------
function Get_Stamp return Time_Stamp_Type is
T : Time_Stamp_Type;
Start : Integer;
begin
Skip_Space;
if At_Eol then
Fatal_Error;
end if;
-- Following reads old style time stamp missing first two digits
if Nextc in '7' .. '9' then
T (1) := '1';
T (2) := '9';
Start := 3;
-- Normal case of full year in time stamp
else
Start := 1;
end if;
for J in Start .. T'Last loop
T (J) := Getc;
end loop;
return T;
end Get_Stamp;
----------
-- Getc --
----------
function Getc return Character is
begin
if P = T'Last then
return EOF;
else
P := P + 1;
return T (P - 1);
end if;
end Getc;
-----------
-- Nextc --
-----------
function Nextc return Character is
begin
return T (P);
end Nextc;
--------------
-- Skip_Eol --
--------------
procedure Skip_Eol is
begin
Skip_Space;
if not At_Eol then Fatal_Error; end if;
-- Loop to skip past blank lines (first time through skips this EOL)
while Nextc < ' ' and then Nextc /= EOF loop
if Nextc = LF then
Line := Line + 1;
end if;
P := P + 1;
end loop;
end Skip_Eol;
----------------
-- Skip_Space --
----------------
procedure Skip_Space is
begin
while Nextc = ' ' or else Nextc = HT loop
P := P + 1;
end loop;
end Skip_Space;
--------------------------------------
-- Start of processing for Scan_ALI --
--------------------------------------
begin
ALIs.Increment_Last;
Id := ALIs.Last;
Set_Name_Table_Info (F, Int (Id));
ALIs.Table (Id) := (
Afile => F,
Compile_Errors => False,
First_Sdep => No_Sdep_Id,
First_Unit => No_Unit_Id,
Float_Format => 'I',
Last_Sdep => No_Sdep_Id,
Last_Unit => No_Unit_Id,
Locking_Policy => ' ',
Main_Priority => -1,
Main_Program => None,
No_Object => False,
No_Run_Time => False,
Normalize_Scalars => False,
Ofile_Full_Name => Full_Object_File_Name,
Queuing_Policy => ' ',
Restrictions => (others => ' '),
Sfile => No_Name,
Task_Dispatching_Policy => ' ',
Time_Slice_Value => -1,
WC_Encoding => '8',
Unit_Exception_Table => False,
Ver => (others => ' '),
Ver_Len => 0,
Zero_Cost_Exceptions => False);
-- Acquire library version
Checkc ('V');
Checkc (' ');
Skip_Space;
Checkc ('"');
for J in 1 .. Ver_Len_Max loop
C := Getc;
exit when C = '"';
ALIs.Table (Id).Ver (J) := C;
ALIs.Table (Id).Ver_Len := J;
end loop;
Skip_Eol;
-- Acquire main program line if present
C := Getc;
if C = 'M' then
Checkc (' ');
Skip_Space;
C := Getc;
if C = 'F' then
ALIs.Table (Id).Main_Program := Func;
elsif C = 'P' then
ALIs.Table (Id).Main_Program := Proc;
else
P := P - 1;
Fatal_Error;
end if;
Skip_Space;
if not At_Eol then
if Nextc < 'A' then
ALIs.Table (Id).Main_Priority := Get_Nat;
end if;
Skip_Space;
if Nextc = 'T' then
P := P + 1;
Checkc ('=');
ALIs.Table (Id).Time_Slice_Value := Get_Nat;
end if;
Skip_Space;
Checkc ('W');
Checkc ('=');
ALIs.Table (Id).WC_Encoding := Getc;
end if;
Skip_Eol;
C := Getc;
end if;
-- Acquire argument lines
First_Arg := Args.Last + 1;
Arg_Loop : while C = 'A' loop
Checkc (' ');
Name_Len := 0;
while not At_Eol loop
Name_Len := Name_Len + 1;
Name_Buffer (Name_Len) := Getc;
end loop;
Args.Increment_Last;
Args.Table (Args.Last) := new String'(Name_Buffer (1 .. Name_Len));
Skip_Eol;
C := Getc;
end loop Arg_Loop;
-- Acquire P line, first set defaults
if C /= 'P' then
Fatal_Error;
end if;
NS_Found := False;
while not At_Eol loop
Checkc (' ');
Skip_Space;
C := Getc;
if C = 'C' then
Checkc ('E');
ALIs.Table (Id).Compile_Errors := True;
elsif C = 'F' then
Float_Format_Specified := Getc;
ALIs.Table (Id).Float_Format := Float_Format_Specified;
elsif C = 'L' then
Locking_Policy_Specified := Getc;
ALIs.Table (Id).Locking_Policy := Locking_Policy_Specified;
elsif C = 'N' then
C := Getc;
if C = 'O' then
ALIs.Table (Id).No_Object := True;
No_Object_Specified := True;
elsif C = 'R' then
No_Run_Time_Specified := True;
ALIs.Table (Id).No_Run_Time := True;
elsif C = 'S' then
ALIs.Table (Id).Normalize_Scalars := True;
Normalize_Scalars_Specified := True;
NS_Found := True;
else
Fatal_Error;
end if;
elsif C = 'Q' then
Queuing_Policy_Specified := Getc;
ALIs.Table (Id).Queuing_Policy := Queuing_Policy_Specified;
elsif C = 'T' then
Task_Dispatching_Policy_Specified := Getc;
ALIs.Table (Id).Task_Dispatching_Policy :=
Task_Dispatching_Policy_Specified;
elsif C = 'U' then
if Nextc = 'A' then
Unreserve_All_Interrupts_Specified := True;
C := Getc;
else
Checkc ('X');
ALIs.Table (Id).Unit_Exception_Table := True;
end if;
elsif C = 'Z' then
Checkc ('X');
ALIs.Table (Id).Zero_Cost_Exceptions := True;
Zero_Cost_Exceptions_Specified := True;
else
Fatal_Error;
end if;
end loop;
if not NS_Found then
No_Normalize_Scalars_Specified := True;
end if;
Skip_Eol;
-- Acquire restrictions line
if Getc /= 'R' then
Fatal_Error;
else
Checkc (' ');
Skip_Space;
for J in Partition_Restrictions loop
C := Getc;
if C = 'v' or else C = 'r' or else C = 'n' then
ALIs.Table (Id).Restrictions (J) := C;
else
Fatal_Error;
end if;
end loop;
if At_Eol then
Skip_Eol;
C := Getc;
else
Fatal_Error;
end if;
end if;
-- Loop to acquire unit entries
Unit_Loop : while C = 'U' loop
Checkc (' ');
Skip_Space;
Units.Increment_Last;
if ALIs.Table (Id).First_Unit = No_Unit_Id then
ALIs.Table (Id).First_Unit := Units.Last;
end if;
Units.Table (Units.Last).Uname := Get_Name;
Units.Table (Units.Last).Predefined := Is_Predefined_Unit;
Units.Table (Units.Last).Internal := Is_Internal_Unit;
Units.Table (Units.Last).My_ALI := Id;
Units.Table (Units.Last).Sfile := Get_Name (Lower => True);
Units.Table (Units.Last).Pure := False;
Units.Table (Units.Last).Preelab := False;
Units.Table (Units.Last).No_Elab := False;
Units.Table (Units.Last).Shared_Passive := False;
Units.Table (Units.Last).RCI := False;
Units.Table (Units.Last).Remote_Types := False;
Units.Table (Units.Last).Has_RACW := False;
Units.Table (Units.Last).Init_Scalars := False;
Units.Table (Units.Last).Is_Generic := False;
Units.Table (Units.Last).Icasing := Mixed_Case;
Units.Table (Units.Last).Kcasing := All_Lower_Case;
Units.Table (Units.Last).Dynamic_Elab := False;
Units.Table (Units.Last).Elaborate_Body := False;
Units.Table (Units.Last).Set_Elab_Entity := False;
Units.Table (Units.Last).Version := "00000000";
Units.Table (Units.Last).First_With := Withs.Last + 1;
Units.Table (Units.Last).First_Arg := First_Arg;
Units.Table (Units.Last).Elab_Position := 0;
if Debug_Flag_U then
Write_Str (" ----> reading unit ");
Write_Unit_Name (Units.Table (Units.Last).Uname);
Write_Str (" from file ");
Write_Name (Units.Table (Units.Last).Sfile);
Write_Eol;
end if;
-- Check for duplicated unit in different files
declare
Info : constant Int := Get_Name_Table_Info
(Units.Table (Units.Last).Uname);
begin
if Info /= 0
and then Units.Table (Units.Last).Sfile /=
Units.Table (Unit_Id (Info)).Sfile
then
-- If Err is set then treat duplicate unit name as an instance
-- of a bad ALI format. This is the case of being called from
-- gnatmake, and the point is that if anything is wrong with
-- the ALI file, then gnatmake should just recompile.
if Err then
raise Bad_ALI_Format;
-- If Err is not set, then this is a fatal error
else
Set_Standard_Error;
Write_Str ("error: duplicate unit name: ");
Write_Eol;
Write_Str ("error: unit """);
Write_Unit_Name (Units.Table (Units.Last).Uname);
Write_Str (""" found in file """);
Write_Name_Decoded (Units.Table (Units.Last).Sfile);
Write_Char ('"');
Write_Eol;
Write_Str ("error: unit """);
Write_Unit_Name (Units.Table (Unit_Id (Info)).Uname);
Write_Str (""" found in file """);
Write_Name_Decoded (Units.Table (Unit_Id (Info)).Sfile);
Write_Char ('"');
Write_Eol;
Exit_Program (E_Fatal);
end if;
end if;
end;
Set_Name_Table_Info
(Units.Table (Units.Last).Uname, Int (Units.Last));
-- Scan out possible version and other parameters
loop
Skip_Space;
exit when At_Eol;
C := Getc;
-- Version field
if C in '0' .. '9' or else C in 'a' .. 'f' then
Units.Table (Units.Last).Version (1) := C;
for J in 2 .. 8 loop
C := Getc;
Units.Table (Units.Last).Version (J) := C;
end loop;
-- DE parameter (Dynamic elaboration checks
elsif C = 'D' then
Checkc ('E');
Check_At_End_Of_Field;
Units.Table (Units.Last).Dynamic_Elab := True;
Dynamic_Elaboration_Checks_Specified := True;
-- EB/EE parameters
elsif C = 'E' then
C := Getc;
if C = 'B' then
Units.Table (Units.Last).Elaborate_Body := True;
elsif C = 'E' then
Units.Table (Units.Last).Set_Elab_Entity := True;
else
Fatal_Error;
end if;
Check_At_End_Of_Field;
-- GE parameter (generic)
elsif C = 'G' then
Checkc ('E');
Check_At_End_Of_Field;
Units.Table (Units.Last).Is_Generic := True;
-- IL/IS/IU parameters
elsif C = 'I' then
C := Getc;
if C = 'L' then
Units.Table (Units.Last).Icasing := All_Lower_Case;
elsif C = 'S' then
Units.Table (Units.Last).Init_Scalars := True;
Initialize_Scalars_Used := True;
elsif C = 'U' then
Units.Table (Units.Last).Icasing := All_Upper_Case;
else
Fatal_Error;
end if;
Check_At_End_Of_Field;
-- KM/KU parameters
elsif C = 'K' then
C := Getc;
if C = 'M' then
Units.Table (Units.Last).Kcasing := Mixed_Case;
elsif C = 'U' then
Units.Table (Units.Last).Kcasing := All_Upper_Case;
else
Fatal_Error;
end if;
Check_At_End_Of_Field;
-- NE parameter
elsif C = 'N' then
Checkc ('E');
Units.Table (Units.Last).No_Elab := True;
Check_At_End_Of_Field;
-- PR/PU/PK parameters
elsif C = 'P' then
C := Getc;
-- PR parameter (preelaborate)
if C = 'R' then
Units.Table (Units.Last).Preelab := True;
-- PU parameter (pure)
elsif C = 'U' then
Units.Table (Units.Last).Pure := True;
-- PK indicates unit is package
elsif C = 'K' then
Units.Table (Units.Last).Unit_Kind := 'p';
else
Fatal_Error;
end if;
Check_At_End_Of_Field;
-- RC/RT parameters
elsif C = 'R' then
C := Getc;
-- RC parameter (remote call interface)
if C = 'C' then
Units.Table (Units.Last).RCI := True;
-- RT parameter (remote types)
elsif C = 'T' then
Units.Table (Units.Last).Remote_Types := True;
-- RA parameter (remote access to class wide type)
elsif C = 'A' then
Units.Table (Units.Last).Has_RACW := True;
else
Fatal_Error;
end if;
Check_At_End_Of_Field;
elsif C = 'S' then
C := Getc;
-- SP parameter (shared passive)
if C = 'P' then
Units.Table (Units.Last).Shared_Passive := True;
-- SU parameter indicates unit is subprogram
elsif C = 'U' then
Units.Table (Units.Last).Unit_Kind := 's';
else
Fatal_Error;
end if;
Check_At_End_Of_Field;
else
Fatal_Error;
end if;
end loop;
Skip_Eol;
-- Check if static elaboration model used
if not Units.Table (Units.Last).Dynamic_Elab
and then not Units.Table (Units.Last).Internal
then
Static_Elaboration_Model_Used := True;
end if;
-- Scan out With lines for this unit
C := Getc;
With_Loop : while C = 'W' loop
Checkc (' ');
Skip_Space;
Withs.Increment_Last;
Withs.Table (Withs.Last).Uname := Get_Name;
Withs.Table (Withs.Last).Elaborate := False;
Withs.Table (Withs.Last).Elaborate_All := False;
Withs.Table (Withs.Last).Elab_All_Desirable := False;
-- Generic case with no object file available
if At_Eol then
Withs.Table (Withs.Last).Sfile := No_File;
Withs.Table (Withs.Last).Afile := No_File;
-- Normal case
else
Withs.Table (Withs.Last).Sfile := Get_Name (Lower => True);
Withs.Table (Withs.Last).Afile := Get_Name;
-- Scan out possible E, EA, and NE parameters
while not At_Eol loop
Skip_Space;
if Nextc = 'E' then
P := P + 1;
if At_End_Of_Field then
Withs.Table (Withs.Last).Elaborate := True;
elsif Nextc = 'A' then
P := P + 1;
Check_At_End_Of_Field;
Withs.Table (Withs.Last).Elaborate_All := True;
else
Checkc ('D');
Check_At_End_Of_Field;
-- Store ED indication unless ignore required
if not Ignore_ED then
Withs.Table (Withs.Last).Elab_All_Desirable := True;
end if;
end if;
end if;
end loop;
end if;
Skip_Eol;
C := Getc;
end loop With_Loop;
Units.Table (Units.Last).Last_With := Withs.Last;
Units.Table (Units.Last).Last_Arg := Args.Last;
end loop Unit_Loop;
-- End loop through units for one ALI file
ALIs.Table (Id).Last_Unit := Units.Last;
ALIs.Table (Id).Sfile := Units.Table (ALIs.Table (Id).First_Unit).Sfile;
-- Set types of the units (there can be at most 2 of them)
if ALIs.Table (Id).First_Unit /= ALIs.Table (Id).Last_Unit then
Units.Table (ALIs.Table (Id).First_Unit).Utype := Is_Body;
Units.Table (ALIs.Table (Id).Last_Unit).Utype := Is_Spec;
else
-- Deal with body only and spec only cases, note that the reason we
-- do our own checking of the name (rather than using Is_Body_Name)
-- is that Uname drags in far too much compiler junk!
Get_Name_String (Units.Table (Units.Last).Uname);
if Name_Buffer (Name_Len) = 'b' then
Units.Table (Units.Last).Utype := Is_Body_Only;
else
Units.Table (Units.Last).Utype := Is_Spec_Only;
end if;
end if;
-- If there are linker options lines present, scan them
while C = 'L' loop
Checkc (' ');
Skip_Space;
Checkc ('"');
Name_Len := 0;
loop
C := Getc;
if C < Character'Val (16#20#)
or else C > Character'Val (16#7E#)
then
Fatal_Error;
elsif C = '{' then
C := Character'Val (0);
declare
V : Natural;
begin
V := 0;
for J in 1 .. 2 loop
C := Getc;
if C in '0' .. '9' then
V := V * 16 +
Character'Pos (C) - Character'Pos ('0');
elsif C in 'A' .. 'F' then
V := V * 16 +
Character'Pos (C) - Character'Pos ('A') + 10;
else
Fatal_Error;
end if;
end loop;
Checkc ('}');
Add_Char_To_Name_Buffer (Character'Val (V));
end;
else
if C = '"' then
exit when Nextc /= '"';
C := Getc;
end if;
Add_Char_To_Name_Buffer (C);
end if;
end loop;
Add_Char_To_Name_Buffer (nul);
Skip_Eol;
C := Getc;
Linker_Options.Increment_Last;
Linker_Options.Table (Linker_Options.Last).Name
:= Name_Enter;
Linker_Options.Table (Linker_Options.Last).Unit
:= ALIs.Table (Id).First_Unit;
Linker_Options.Table (Linker_Options.Last).Internal_File
:= Is_Internal_File_Name (F);
Linker_Options.Table (Linker_Options.Last).Original_Pos
:= Linker_Options.Last;
end loop;
-- Scan out external version references and put in hash table
while C = 'E' loop
Checkc (' ');
Skip_Space;
Name_Len := 0;
Name_Len := 0;
loop
C := Getc;
if C < ' ' then
Fatal_Error;
end if;
exit when At_End_Of_Field;
Add_Char_To_Name_Buffer (C);
end loop;
Version_Ref.Set (new String'(Name_Buffer (1 .. Name_Len)), True);
Skip_Eol;
C := Getc;
end loop;
-- Scan out source dependency lines for this ALI file
ALIs.Table (Id).First_Sdep := Sdep.Last + 1;
while C = 'D' loop
Checkc (' ');
Skip_Space;
Sdep.Increment_Last;
Sdep.Table (Sdep.Last).Sfile := Get_Name (Lower => True);
Sdep.Table (Sdep.Last).Stamp := Get_Stamp;
Sdep.Table (Sdep.Last).Dummy_Entry :=
(Sdep.Table (Sdep.Last).Stamp = Dummy_Time_Stamp);
-- Acquire checksum value
Skip_Space;
declare
Ctr : Natural;
Chk : Word;
begin
Ctr := 0;
Chk := 0;
loop
exit when At_Eol or else Ctr = 8;
if Nextc in '0' .. '9' then
Chk := Chk * 16 +
Character'Pos (Nextc) - Character'Pos ('0');
elsif Nextc in 'a' .. 'f' then
Chk := Chk * 16 +
Character'Pos (Nextc) - Character'Pos ('a') + 10;
else
exit;
end if;
Ctr := Ctr + 1;
P := P + 1;
end loop;
if Ctr = 8 and then At_End_Of_Field then
Sdep.Table (Sdep.Last).Checksum := Chk;
else
Fatal_Error;
end if;
end;
-- Acquire subunit and reference file name entries
Sdep.Table (Sdep.Last).Subunit_Name := No_Name;
Sdep.Table (Sdep.Last).Rfile := Sdep.Table (Sdep.Last).Sfile;
Sdep.Table (Sdep.Last).Start_Line := 1;
if not At_Eol then
Skip_Space;
-- Here for subunit name
if Nextc not in '0' .. '9' then
Name_Len := 0;
while not At_End_Of_Field loop
Name_Len := Name_Len + 1;
Name_Buffer (Name_Len) := Getc;
end loop;
Sdep.Table (Sdep.Last).Subunit_Name := Name_Enter;
Skip_Space;
end if;
-- Here for reference file name entry
if Nextc in '0' .. '9' then
Sdep.Table (Sdep.Last).Start_Line := Get_Nat;
Checkc (':');
Name_Len := 0;
while not At_End_Of_Field loop
Name_Len := Name_Len + 1;
Name_Buffer (Name_Len) := Getc;
end loop;
Sdep.Table (Sdep.Last).Rfile := Name_Enter;
end if;
end if;
Skip_Eol;
C := Getc;
end loop;
ALIs.Table (Id).Last_Sdep := Sdep.Last;
-- Loop through Xref sections (skip loop if not reading xref stuff)
while Read_Xref and then C = 'X' loop
-- Make new entry in section table
Xref_Section.Increment_Last;
Read_Refs_For_One_File : declare
XS : Xref_Section_Record renames
Xref_Section.Table (Xref_Section.Last);
Current_File_Num : Sdep_Id;
-- Keeps track of the current file number (changed by nn|)
begin
XS.File_Num := Sdep_Id (Get_Nat + Nat (First_Sdep_Entry) - 1);
XS.File_Name := Get_Name;
XS.First_Entity := Xref_Entity.Last + 1;
Current_File_Num := XS.File_Num;
Skip_Eol;
C := Nextc;
-- Loop through Xref entities
while C /= 'X' and then C /= EOF loop
Xref_Entity.Increment_Last;
Read_Refs_For_One_Entity : declare
XE : Xref_Entity_Record renames
Xref_Entity.Table (Xref_Entity.Last);
N : Nat;
procedure Read_Instantiation_Reference;
-- Acquire instantiation reference. Caller has checked
-- that current character is '[' and on return the cursor
-- is skipped past the corresponding closing ']'.
----------------------------------
-- Read_Instantiation_Reference --
----------------------------------
procedure Read_Instantiation_Reference is
begin
Xref.Increment_Last;
declare
XR : Xref_Record renames Xref.Table (Xref.Last);
begin
P := P + 1; -- skip [
N := Get_Nat;
if Nextc = '|' then
XR.File_Num :=
Sdep_Id (N + Nat (First_Sdep_Entry) - 1);
Current_File_Num := XR.File_Num;
P := P + 1;
N := Get_Nat;
else
XR.File_Num := Current_File_Num;
end if;
XR.Line := N;
XR.Rtype := ' ';
XR.Col := 0;
-- Recursive call for next reference
if Nextc = '[' then
pragma Warnings (Off); -- kill recursion warning
Read_Instantiation_Reference;
pragma Warnings (On);
end if;
-- Skip closing bracket after recursive call
P := P + 1;
end;
end Read_Instantiation_Reference;
-- Start of processing for Read_Refs_For_One_Entity
begin
XE.Line := Get_Nat;
XE.Etype := Getc;
XE.Col := Get_Nat;
XE.Lib := (Getc = '*');
XE.Entity := Get_Name;
-- Renaming reference is present
if Nextc = '=' then
P := P + 1;
XE.Rref_Line := Get_Nat;
if Getc /= ':' then
Fatal_Error;
end if;
XE.Rref_Col := Get_Nat;
-- No renaming reference present
else
XE.Rref_Line := 0;
XE.Rref_Col := 0;
end if;
Skip_Space;
-- See if type reference present
case Nextc is
when '<' => XE.Tref := Tref_Derived;
when '(' => XE.Tref := Tref_Access;
when '{' => XE.Tref := Tref_Type;
when others => XE.Tref := Tref_None;
end case;
-- Case of typeref field present
if XE.Tref /= Tref_None then
P := P + 1; -- skip opening bracket
if Nextc in 'a' .. 'z' then
XE.Tref_File_Num := No_Sdep_Id;
XE.Tref_Line := 0;
XE.Tref_Type := ' ';
XE.Tref_Col := 0;
XE.Tref_Standard_Entity := Get_Name;
else
N := Get_Nat;
if Nextc = '|' then
XE.Tref_File_Num :=
Sdep_Id (N + Nat (First_Sdep_Entry) - 1);
P := P + 1;
N := Get_Nat;
else
XE.Tref_File_Num := Current_File_Num;
end if;
XE.Tref_Line := N;
XE.Tref_Type := Getc;
XE.Tref_Col := Get_Nat;
XE.Tref_Standard_Entity := No_Name;
end if;
P := P + 1; -- skip closing bracket
Skip_Space;
-- No typeref entry present
else
XE.Tref_File_Num := No_Sdep_Id;
XE.Tref_Line := 0;
XE.Tref_Type := ' ';
XE.Tref_Col := 0;
XE.Tref_Standard_Entity := No_Name;
end if;
XE.First_Xref := Xref.Last + 1;
-- Loop through cross-references for this entity
Current_File_Num := XS.File_Num;
loop
Skip_Space;
if At_Eol then
Skip_Eol;
exit when Nextc /= '.';
P := P + 1;
end if;
Xref.Increment_Last;
declare
XR : Xref_Record renames Xref.Table (Xref.Last);
begin
N := Get_Nat;
if Nextc = '|' then
XR.File_Num :=
Sdep_Id (N + Nat (First_Sdep_Entry) - 1);
Current_File_Num := XR.File_Num;
P := P + 1;
N := Get_Nat;
else
XR.File_Num := Current_File_Num;
end if;
XR.Line := N;
XR.Rtype := Getc;
XR.Col := Get_Nat;
if Nextc = '[' then
Read_Instantiation_Reference;
end if;
end;
end loop;
-- Record last cross-reference
XE.Last_Xref := Xref.Last;
C := Nextc;
end Read_Refs_For_One_Entity;
end loop;
-- Record last entity
XS.Last_Entity := Xref_Entity.Last;
end Read_Refs_For_One_File;
C := Getc;
end loop;
-- Here after dealing with xref sections
if C /= EOF and then C /= 'X' then
Fatal_Error;
end if;
return Id;
exception
when Bad_ALI_Format =>
return No_ALI_Id;
end Scan_ALI;
---------
-- SEq --
---------
function SEq (F1, F2 : String_Ptr) return Boolean is
begin
return F1.all = F2.all;
end SEq;
-----------
-- SHash --
-----------
function SHash (S : String_Ptr) return Vindex is
H : Word;
begin
H := 0;
for J in S.all'Range loop
H := H * 2 + Character'Pos (S (J));
end loop;
return Vindex (Vindex'First + Vindex (H mod Vindex'Range_Length));
end SHash;
end ALI;
|
-----------------------------------------------------------------------
-- awa-commands-drivers -- Driver for AWA commands for server or admin tool
-- 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.
-----------------------------------------------------------------------
with Ada.Command_Line;
with Servlet.Core;
package body AWA.Commands.Drivers is
use Ada.Strings.Unbounded;
use AWA.Applications;
function "-" (Message : in String) return String is (Message);
Help_Command : aliased AWA.Commands.Drivers.Help_Command_Type;
-- ------------------------------
-- Setup the command before parsing the arguments and executing it.
-- ------------------------------
overriding
procedure Setup (Command : in out Command_Type;
Config : in out GNAT.Command_Line.Command_Line_Configuration;
Context : in out Context_Type) is
begin
GC.Set_Usage (Config => Config,
Usage => Command.Get_Name & " [arguments]",
Help => Command.Get_Description);
AWA.Commands.Setup_Command (Config, Context);
end Setup;
-- ------------------------------
-- Write the help associated with the command.
-- ------------------------------
overriding
procedure Help (Command : in out Command_Type;
Name : in String;
Context : in out Context_Type) is
pragma Unreferenced (Command, Context);
begin
null;
end Help;
-- ------------------------------
-- Setup the command before parsing the arguments and executing it.
-- ------------------------------
overriding
procedure Setup (Command : in out Application_Command_Type;
Config : in out GNAT.Command_Line.Command_Line_Configuration;
Context : in out Context_Type) is
begin
GC.Define_Switch (Config => Config,
Output => Command.Application_Name'Access,
Switch => "-a:",
Long_Switch => "--application=",
Argument => "NAME",
Help => -("Defines the name or URI of the application"));
AWA.Commands.Setup_Command (Config, Context);
end Setup;
function Is_Application (Command : in Application_Command_Type;
URI : in String) return Boolean is
begin
return Command.Application_Name.all = URI;
end Is_Application;
overriding
procedure Execute (Command : in out Application_Command_Type;
Name : in String;
Args : in Argument_List'Class;
Context : in out Context_Type) is
pragma Unreferenced (Name);
procedure Find (URI : in String;
App : in Servlet.Core.Servlet_Registry_Access);
Count : Natural := 0;
Selected : Application_Access;
App_Name : Unbounded_String;
procedure Find (URI : in String;
App : in Servlet.Core.Servlet_Registry_Access) is
begin
if App.all in Application'Class then
if Command.Is_Application (URI) then
App_Name := To_Unbounded_String (URI (URI'First + 1 .. URI'Last));
Selected := Application'Class (App.all)'Unchecked_Access;
Count := Count + 1;
elsif Command.Application_Name'Length = 0 then
App_Name := To_Unbounded_String (URI (URI'First + 1 .. URI'Last));
Selected := Application'Class (App.all)'Unchecked_Access;
Count := Count + 1;
end if;
end if;
end Find;
begin
WS.Iterate (Find'Access);
if Count /= 1 then
Context.Console.Notice (N_ERROR, -("No application found"));
return;
end if;
Configure (Selected.all, To_String (App_Name), Context);
Application_Command_Type'Class (Command).Execute (Selected.all, Args, Context);
end Execute;
-- ------------------------------
-- Print the command usage.
-- ------------------------------
procedure Usage (Args : in Argument_List'Class;
Context : in out Context_Type;
Name : in String := "") is
begin
GC.Display_Help (Context.Command_Config);
if Name'Length > 0 then
Driver.Usage (Args, Context, Name);
end if;
Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure);
end Usage;
-- ------------------------------
-- Execute the command with its arguments.
-- ------------------------------
procedure Execute (Name : in String;
Args : in Argument_List'Class;
Context : in out Context_Type) is
begin
Driver.Execute (Name, Args, Context);
end Execute;
procedure Run (Context : in out Context_Type;
Arguments : out Util.Commands.Dynamic_Argument_List) is
begin
GC.Getopt (Config => Context.Command_Config);
Util.Commands.Parsers.GNAT_Parser.Get_Arguments (Arguments, GC.Get_Argument);
if Context.Config_File'Length = 0 then
Context.Load_Configuration (Driver_Name & ".properties");
else
Context.Load_Configuration (Context.Config_File.all);
end if;
if Context.Debug or Context.Verbose or Context.Dump then
Configure_Logs (Root => Context.Global_Config.Get ("log4j.rootCategory", ""),
Debug => Context.Debug,
Dump => Context.Dump,
Verbose => Context.Verbose);
end if;
declare
Cmd_Name : constant String := Arguments.Get_Command_Name;
begin
if Cmd_Name'Length = 0 then
Context.Console.Notice (N_ERROR, -("Missing command name to execute."));
Usage (Arguments, Context);
Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure);
return;
end if;
Execute (Cmd_Name, Arguments, Context);
exception
when GNAT.Command_Line.Invalid_Parameter =>
Context.Console.Notice (N_ERROR, -("Missing option parameter"));
raise Error;
end;
end Run;
begin
Driver.Add_Command ("help",
-("print some help"),
Help_Command'Access);
end AWA.Commands.Drivers;
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.