hexsha
stringlengths 40
40
| size
int64 3
1.05M
| ext
stringclasses 163
values | lang
stringclasses 53
values | max_stars_repo_path
stringlengths 3
945
| max_stars_repo_name
stringlengths 4
112
| max_stars_repo_head_hexsha
stringlengths 40
78
| max_stars_repo_licenses
sequencelengths 1
10
| max_stars_count
float64 1
191k
⌀ | max_stars_repo_stars_event_min_datetime
stringlengths 24
24
⌀ | max_stars_repo_stars_event_max_datetime
stringlengths 24
24
⌀ | max_issues_repo_path
stringlengths 3
945
| max_issues_repo_name
stringlengths 4
113
| max_issues_repo_head_hexsha
stringlengths 40
78
| max_issues_repo_licenses
sequencelengths 1
10
| max_issues_count
float64 1
116k
⌀ | max_issues_repo_issues_event_min_datetime
stringlengths 24
24
⌀ | max_issues_repo_issues_event_max_datetime
stringlengths 24
24
⌀ | max_forks_repo_path
stringlengths 3
945
| max_forks_repo_name
stringlengths 4
113
| max_forks_repo_head_hexsha
stringlengths 40
78
| max_forks_repo_licenses
sequencelengths 1
10
| max_forks_count
float64 1
105k
⌀ | max_forks_repo_forks_event_min_datetime
stringlengths 24
24
⌀ | max_forks_repo_forks_event_max_datetime
stringlengths 24
24
⌀ | content
stringlengths 3
1.05M
| avg_line_length
float64 1
966k
| max_line_length
int64 1
977k
| alphanum_fraction
float64 0
1
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1c6f9d732d4690a18c688c8008b4cf7da8883532 | 760 | ads | Ada | src/lab-code/car-blinker/car-blinker-rav-ql/src/bcontrol.ads | hannesb0/rtpl18 | 6cd1ff776b98695713de88586391139447edb320 | [
"MIT"
] | null | null | null | src/lab-code/car-blinker/car-blinker-rav-ql/src/bcontrol.ads | hannesb0/rtpl18 | 6cd1ff776b98695713de88586391139447edb320 | [
"MIT"
] | null | null | null | src/lab-code/car-blinker/car-blinker-rav-ql/src/bcontrol.ads | hannesb0/rtpl18 | 6cd1ff776b98695713de88586391139447edb320 | [
"MIT"
] | null | null | null | with System;use System;
package Bcontrol is
--type Command_Type is new String(1..3);
type Command_Type is (BLE, BLS, BRS, EMS, STR, STP);
protected type Command_Access is
procedure Send( Cmd: Command_Type);
entry Receive(Cmd : out Command_Type);
private
Command : Command_Type;
New_Command : Boolean := False;
end Command_Access;
Command : Command_Access;
task type Blinker_Control_Type is
--pragma Priority (System.Priority'Last - 1);
end Blinker_Control_Type;
task type Stim_Control_Type is
--pragma Priority (System.Priority'Last - 1);
end Stim_Control_Type;
-- entry Blink_Left;
-- entry Blink_Right;
-- entry Blink_Emergency;
-- entry Blink_Stop;
end Bcontrol;
| 26.206897 | 55 | 0.681579 |
296fcb4dcefdaad47ff0705ad884d8354105965d | 10,773 | adb | Ada | PP-Lab1/src/data.adb | JackShen1/parallel-programming | 9682d035559147fd493d54e956af7e5ab0dff228 | [
"MIT"
] | 3 | 2021-02-28T18:45:06.000Z | 2021-05-12T22:36:23.000Z | PP-Lab1/src/data.adb | JackShen1/parallel-programming | 9682d035559147fd493d54e956af7e5ab0dff228 | [
"MIT"
] | null | null | null | PP-Lab1/src/data.adb | JackShen1/parallel-programming | 9682d035559147fd493d54e956af7e5ab0dff228 | [
"MIT"
] | null | null | null | with Ada.Numerics.Discrete_Random;
with Ada.Integer_Text_IO, Ada.Text_IO;
use Ada.Integer_Text_IO, Ada.Text_IO;
package body Data is
-- Create All-Ones Matrix And Vector
procedure All_Ones_Matrix (MA: out Matrix) is
begin
for i in 1..N loop
for j in 1..N loop
MA(i,j) := 1;
end loop;
end loop;
end All_Ones_Matrix;
procedure All_Ones_Vector (A: out Vector) is
begin
for i in 1..N loop
A(i) := 1;
end loop;
end All_Ones_Vector;
-- Function That Generate Random Numbers From -10..10
function Rand_Gen return Integer is
subtype randRange is Integer range -10..10;
package Rand_Int is new Ada.Numerics.Discrete_Random(randRange);
use Rand_Int;
gen: Rand_Int.Generator;
begin
Rand_Int.Reset(gen);
return Rand_Int.Random(gen);
end Rand_Gen;
-- Generate And Fill Random Matrix And Vector
procedure Random_Matrix (MA: out Matrix) is
begin
for i in 1..N loop
for j in 1..N loop
MA(i,j) := Rand_Gen;
end loop;
end loop;
end Random_Matrix;
procedure Random_Vector (A: out Vector) is
begin
for i in 1..N loop
A(i) := Rand_Gen;
end loop;
end Random_Vector;
-- Print Matrix And Vector Into Console
procedure Matrix_Output (MA: in Matrix; str: in String) is
begin
Put_Line("Matrix " & str & ":");
for i in 1..N loop
for j in 1..N loop
Put(MA(i,j));
end loop;
New_Line;
end loop;
New_Line;
end Matrix_Output;
procedure Vector_Output (A: in Vector; str: in String) is
begin
Put("Vector " & str & ":");
for i in 1..N loop
Put(A(i));
end loop;
New_Line;
end Vector_Output;
procedure Num_Output (a: in Integer; str: in String) is
begin
Put("Number " & str & ":");
Put(a);
New_Line;
end Num_Output;
--Fill And Print Matrices And Vectors Into Console
procedure Matrix_Input (MA: out Matrix; str: in String) is
begin
Put_Line("Enter the" & Positive'Image(N * N) & " elements of the Matrix " & str & ":");
for i in 1..N loop
for j in 1..N loop
Put(str & "(" & Integer'Image(i) & "." & Integer'Image(j) & " ) = ");
Get(MA(i,j));
end loop;
New_Line;
end loop;
end Matrix_Input;
procedure Vector_Input (A: out Vector; str: in String) is
begin
Put_Line("Enter the" & Positive'Image(N) & " elements of the Vector " & str & ":");
for i in 1..N loop
Put(str & "(" & Integer'Image(i) & " ) = ");
Get(A(i));
end loop;
end Vector_Input;
-- Sort Vector
procedure Sort_Vector(A: in out Vector) is
temp: Integer;
begin
for i in 1..n loop
for j in i..n loop
if A(i)>A(j) then
temp:=A(j);
A(j):=A(i);
A(i):=temp;
end if;
end loop;
end loop;
end Sort_Vector;
-- Calculates Sum Of 2 Vectors
function Sum_Vectors (A, B: in Vector) return Vector is
result: Vector;
begin
for i in 1..N loop
result(i) := A(i) + B(i);
end loop;
return result;
end Sum_Vectors;
-- Transposing Matrix
function Matrix_Transposition(MA: in Matrix) return Matrix is
temp: Integer;
MZ: Matrix;
begin
for i in 1..N loop
for j in 1..N loop
temp := MA(j,i);
MZ(j,i) := MA(i,j);
MZ(i,j) := temp;
end loop;
end loop;
return MZ;
end Matrix_Transposition;
-- Multiply 2 Matrices
function Matrix_Multiplication (MA, MB: in Matrix) return Matrix is
product : Integer;
result: Matrix;
begin
for i in 1..N loop
for j in 1..N loop
product := 0;
for k in 1..N loop
product := product + MA(i,k) * MB(k,j);
end loop;
result(i,j) := product;
end loop;
end loop;
return result;
end Matrix_Multiplication;
-- Multipy Matrix And Vector
function Matrix_Vector_Multiplication (MA: in Matrix; A: in Vector) return Vector is
product: Integer;
result: Vector;
begin
for i in 1..N loop
product := 0;
for j in 1..N loop
product := product + A(j) * MA(j,i);
end loop;
result(i) := product;
end loop;
return result;
end Matrix_Vector_Multiplication;
-- Multipy Integer And Matrix
function Matrix_Integer_Multiplication (MA:in Matrix; a: in Integer) return Matrix is
MZ: Matrix;
begin
for i in 1..N loop
for j in 1..N loop
MZ(i,j) := a * MA(i,j);
end loop;
end loop;
return MZ;
end Matrix_Integer_Multiplication;
-- Generate Initial Values
procedure Input_Val_F1 (A,B,C: out Vector; MA,ME: out Matrix; val: Integer) is
begin
case val is
when 2 =>
Random_Vector(A);
Random_Vector(B);
Random_Vector(C);
Random_Matrix(MA);
Random_Matrix(ME);
if N <= 10 then
Put_Line("Entered values T1:");
Vector_Output(A, "A");
Vector_Output(B, "B");
Vector_Output(C, "C");
Matrix_Output(MA, "MA");
Matrix_Output(ME, "ME");
end if;
when 3 =>
Vector_Input(A, "A");
Vector_Input(B, "B");
Vector_Input(C, "C");
Matrix_Input(MA, "MA");
Matrix_Input(ME, "ME");
Put_Line("Entered values T1:");
Vector_Output(A, "A");
Vector_Output(B, "B");
Vector_Output(C, "C");
Matrix_Output(MA, "MA");
Matrix_Output(ME, "ME");
when others =>
All_Ones_Vector(A);
All_Ones_Vector(B);
All_Ones_Vector(C);
All_Ones_Matrix(MA);
All_Ones_Matrix(ME);
end case;
end Input_Val_F1;
procedure Input_Val_F2 (MG,MH,MK: out Matrix; val: Integer) is
begin
case val is
when 2 =>
Random_Matrix(MG);
Random_Matrix(MH);
Random_Matrix(MK);
if N <= 10 then
Put_Line("Entered values T2:");
Matrix_Output(MG, "MG");
Matrix_Output(MH, "MH");
Matrix_Output(MK, "MK");
end if;
when 3 =>
Matrix_Input(MG, "MG");
Matrix_Input(MH, "MH");
Matrix_Input(MK, "MK");
Put_Line("Entered values T2:");
Matrix_Output(MG, "MG");
Matrix_Output(MH, "MH");
Matrix_Output(MK, "MK");
when others =>
All_Ones_Matrix(MG);
All_Ones_Matrix(MH);
All_Ones_Matrix(MK);
end case;
end Input_Val_F2;
procedure Input_Val_F3 (t: out Integer; V,O,P: out Vector; MO,MP,MR: out Matrix; val: Integer) is
begin
case val is
when 2 =>
t := Rand_Gen;
Random_Vector(V);
Random_Vector(O);
Random_Vector(P);
Random_Matrix(MO);
Random_Matrix(MP);
Random_Matrix(MR);
if N <= 10 then
Put_Line("Entered values T3:");
Num_Output(t, "t");
Vector_Output(V, "V");
Vector_Output(O, "O");
Vector_Output(P, "P");
Matrix_Output(MO, "MO");
Matrix_Output(MP, "MP");
Matrix_Output(MR, "MR");
end if;
when 3 =>
Put("t = ");
Get(t);
Vector_Input(V, "V");
Vector_Input(O, "O");
Vector_Input(P, "P");
Matrix_Input(MO, "MO");
Matrix_Input(MP, "MP");
Matrix_Input(MR, "MR");
Put_Line("Entered values T3:");
Num_Output(t, "t");
Vector_Output(V, "V");
Vector_Output(O, "O");
Vector_Output(P, "P");
Matrix_Output(MO, "MO");
Matrix_Output(MP, "MP");
Matrix_Output(MR, "MR");
when others =>
t := 1;
All_Ones_Vector(V);
All_Ones_Vector(O);
All_Ones_Vector(P);
All_Ones_Matrix(MO);
All_Ones_Matrix(MP);
All_Ones_Matrix(MR);
end case;
end Input_Val_F3;
--Function 1 (SORT(A)+SORT(B)+SORT(C)*(MA*ME))
function Func1 (A,B,C: out Vector; MA,ME: in Matrix) return Vector is
MB: Matrix;
R, O, Q: Vector;
begin
Sort_Vector(A);
Sort_Vector(B);
Sort_Vector(C);
R := Sum_Vectors(A, B);
MB := Matrix_Multiplication(MA, ME);
O := Matrix_Vector_Multiplication(MB, C);
Q := Sum_Vectors(R, O);
return Q;
end Func1;
--Function 2 ((MG*MH)*TRANS(MK))
function Func2 (MG,MH, MK: in Matrix) return Matrix is
MA, MB, MC: Matrix;
begin
MA := Matrix_Multiplication(MG,MH);
MB := Matrix_Transposition(MK);
MC := Matrix_Multiplication(MA, MB);
return MC;
end Func2;
--Function 3 ((MO*MP)*V+t*MR*(O+P))
function Func3 (t: in Integer; V, O, P: in Vector; MO, MP, MR: in Matrix) return Vector is
A,B,C,D: Vector;
MM,MZ: Matrix;
begin
MM := Matrix_Multiplication(MO, MP);
A := Matrix_Vector_Multiplication(MM, V);
B := Sum_Vectors(O,P);
MZ := Matrix_Integer_Multiplication(MR, t);
C := Matrix_Vector_Multiplication(MZ, B);
D := Sum_Vectors(A, C);
return D;
end Func3;
end data;
| 29.037736 | 100 | 0.472942 |
2f0cdf0459492e829586bd240c4c6ce6f0beb891 | 6,617 | ads | Ada | llvm-gcc-4.2-2.9/gcc/ada/interfac.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | 1 | 2016-04-09T02:58:13.000Z | 2016-04-09T02:58:13.000Z | llvm-gcc-4.2-2.9/gcc/ada/interfac.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | llvm-gcc-4.2-2.9/gcc/ada/interfac.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- I N T E R F A C E S --
-- --
-- S p e c --
-- --
-- Copyright (C) 2002-2005, Free Software Foundation, Inc. --
-- --
-- This specification is derived from the Ada Reference Manual for use with --
-- GNAT. The copyright notice above, and the license provisions that follow --
-- apply solely to the implementation dependent sections of this file. --
-- --
-- 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 Interfaces is
pragma Pure;
type Integer_8 is range -2 ** 7 .. 2 ** 7 - 1;
for Integer_8'Size use 8;
type Integer_16 is range -2 ** 15 .. 2 ** 15 - 1;
for Integer_16'Size use 16;
type Integer_32 is range -2 ** 31 .. 2 ** 31 - 1;
for Integer_32'Size use 32;
type Integer_64 is range -2 ** 63 .. 2 ** 63 - 1;
for Integer_64'Size use 64;
type Unsigned_8 is mod 2 ** 8;
for Unsigned_8'Size use 8;
type Unsigned_16 is mod 2 ** 16;
for Unsigned_16'Size use 16;
type Unsigned_32 is mod 2 ** 32;
for Unsigned_32'Size use 32;
type Unsigned_64 is mod 2 ** 64;
for Unsigned_64'Size use 64;
function Shift_Left
(Value : Unsigned_8;
Amount : Natural) return Unsigned_8;
function Shift_Right
(Value : Unsigned_8;
Amount : Natural) return Unsigned_8;
function Shift_Right_Arithmetic
(Value : Unsigned_8;
Amount : Natural) return Unsigned_8;
function Rotate_Left
(Value : Unsigned_8;
Amount : Natural) return Unsigned_8;
function Rotate_Right
(Value : Unsigned_8;
Amount : Natural) return Unsigned_8;
function Shift_Left
(Value : Unsigned_16;
Amount : Natural) return Unsigned_16;
function Shift_Right
(Value : Unsigned_16;
Amount : Natural) return Unsigned_16;
function Shift_Right_Arithmetic
(Value : Unsigned_16;
Amount : Natural) return Unsigned_16;
function Rotate_Left
(Value : Unsigned_16;
Amount : Natural) return Unsigned_16;
function Rotate_Right
(Value : Unsigned_16;
Amount : Natural) return Unsigned_16;
function Shift_Left
(Value : Unsigned_32;
Amount : Natural) return Unsigned_32;
function Shift_Right
(Value : Unsigned_32;
Amount : Natural) return Unsigned_32;
function Shift_Right_Arithmetic
(Value : Unsigned_32;
Amount : Natural) return Unsigned_32;
function Rotate_Left
(Value : Unsigned_32;
Amount : Natural) return Unsigned_32;
function Rotate_Right
(Value : Unsigned_32;
Amount : Natural) return Unsigned_32;
function Shift_Left
(Value : Unsigned_64;
Amount : Natural) return Unsigned_64;
function Shift_Right
(Value : Unsigned_64;
Amount : Natural) return Unsigned_64;
function Shift_Right_Arithmetic
(Value : Unsigned_64;
Amount : Natural) return Unsigned_64;
function Rotate_Left
(Value : Unsigned_64;
Amount : Natural) return Unsigned_64;
function Rotate_Right
(Value : Unsigned_64;
Amount : Natural) return Unsigned_64;
pragma Import (Intrinsic, Shift_Left);
pragma Import (Intrinsic, Shift_Right);
pragma Import (Intrinsic, Shift_Right_Arithmetic);
pragma Import (Intrinsic, Rotate_Left);
pragma Import (Intrinsic, Rotate_Right);
-- IEEE Floating point types. Note that the form of these definitions
-- ensures that the work on VMS, even if the standard library is compiled
-- using a Float_Representation pragma for Vax_Float.
pragma Warnings (Off);
-- Turn off warnings for targets not providing IEEE floating-point types
type IEEE_Float_32 is digits 6;
pragma Float_Representation (IEEE_Float, IEEE_Float_32);
type IEEE_Float_64 is digits 15;
pragma Float_Representation (IEEE_Float, IEEE_Float_64);
-- If there is an IEEE extended float available on the machine, we assume
-- that it is available as Long_Long_Float.
-- Note: it is harmless, and explicitly permitted, to include additional
-- types in interfaces, so it is not wrong to have IEEE_Extended_Float
-- defined even if the extended format is not available.
type IEEE_Extended_Float is new Long_Long_Float;
end Interfaces;
| 38.028736 | 78 | 0.574732 |
1dd447307ce25cfbcb08114ce1fbe3cd602f4d72 | 4,785 | adb | Ada | 1-base/math/applet/test/suite/math_tests-linear_algebra_2d.adb | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 20 | 2015-11-04T09:23:59.000Z | 2022-01-14T10:21:42.000Z | 1-base/math/applet/test/suite/math_tests-linear_algebra_2d.adb | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 2 | 2015-11-04T17:05:56.000Z | 2015-12-08T03:16:13.000Z | 1-base/math/applet/test/suite/math_tests-linear_algebra_2d.adb | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 1 | 2015-12-07T12:53:52.000Z | 2015-12-07T12:53:52.000Z | with
Ahven,
float_Math.Algebra.linear.d2;
with Ada.Text_IO; use Ada.Text_IO;
package body math_Tests.linear_Algebra_2d
is
use Ahven,
float_Math;
function almost_Equal (Left, Right : in Real) return Boolean
is
Tolerance : constant := 0.000_000_1;
begin
return abs (Left - Right) <= Tolerance;
end almost_Equal;
procedure translation_Matrix_Test
is
use float_Math,
float_Math.Algebra.linear.d2;
From : Vector_2 := (0.0, 0.0);
To : Vector_2;
begin
To := From * to_translation_Transform ((1.0, 0.0));
assert (To (1) = 1.0, Image (To) & " translation () failed !");
assert (To (2) = 0.0, Image (To) & " translation () failed !");
To := From * to_translation_Transform ((0.0, 1.0));
assert (To (1) = 0.0, Image (To) & " translation () failed !");
assert (To (2) = 1.0, Image (To) & " translation () failed !");
To := From * to_translation_Transform ((-1.0, 0.0));
assert (To (1) = -1.0, Image (To) & " translation () failed !");
assert (To (2) = 0.0, Image (To) & " translation () failed !");
To := From * to_translation_Transform ((0.0, -1.0));
assert (To (1) = 0.0, Image (To) & " translation () failed !");
assert (To (2) = -1.0, Image (To) & " translation () failed !");
To := From * to_translation_Transform ((1.0, 1.0));
assert (To (1) = 1.0, Image (To) & " translation () failed !");
assert (To (2) = 1.0, Image (To) & " translation () failed !");
To := From * to_translation_Transform ((-1.0, -1.0));
assert (To (1) = -1.0, Image (To) & " translation () failed !");
assert (To (2) = -1.0, Image (To) & " translation () failed !");
end translation_Matrix_Test;
procedure rotation_Matrix_Test
is
use float_Math,
float_Math.Algebra.linear.d2;
From : Vector_2 := (1.0, 0.0);
To : Vector_2;
begin
To := From * to_rotation_Matrix (to_Radians (90.0));
assert (almost_Equal (To (1), 0.0), Image (To, 16) & " rotation (90a) failed !");
assert (almost_Equal (To (2), 1.0), Image (To, 16) & " rotation (90b) failed !");
To := From * to_rotation_Matrix (to_Radians (-90.0));
assert (almost_Equal (To (1), 0.0), Image (To, 16) & " rotation (-90a) failed !");
assert (almost_Equal (To (2), -1.0), Image (To, 16) & " rotation (-90b) failed !");
To := From * to_rotation_Matrix (to_Radians (180.0));
assert (almost_Equal (To (1), -1.0), Image (To, 16) & " rotation (180a) failed !");
assert (almost_Equal (To (2), 0.0), Image (To, 16) & " rotation (180b) failed !");
To := From * to_rotation_Matrix (to_Radians (-180.0));
assert (almost_Equal (To (1), -1.0), Image (To, 16) & " rotation (-180a) failed !");
assert (almost_Equal (To (2), 0.0), Image (To, 16) & " rotation (-180b) failed !");
To := From * to_rotation_Matrix (to_Radians (270.0));
assert (almost_Equal (To (1), 0.0), Image (To, 16) & " rotation (270a) failed !");
assert (almost_Equal (To (2), -1.0), Image (To, 16) & " rotation (270b) failed !");
To := From * to_rotation_Matrix (to_Radians (-270.0));
assert (almost_Equal (To (1), 0.0), Image (To, 16) & " rotation (-270) failed !");
assert (almost_Equal (To (2), 1.0), Image (To, 16) & " rotation (-270) failed !");
end rotation_Matrix_Test;
procedure transform_Test
is
use float_Math,
float_Math.Algebra.linear.d2;
From : Vector_2 := (1.0, 0.0);
To : Vector_2;
Transform : Transform_2d := to_Transform_2d (rotation => to_Radians (90.0),
translation => (0.0, 0.0));
begin
To := From * Transform;
assert (almost_Equal (To (1), 0.0), Image (To, 16) & " transform (a) failed !");
assert (almost_Equal (To (2), 1.0), Image (To, 16) & " transform (b) failed !");
Transform.Translation := (1.0, 0.0);
To := From * Transform;
assert (almost_Equal (To (1), 1.0), Image (To, 16) & " transform (c) failed !");
assert (almost_Equal (To (2), 1.0), Image (To, 16) & " transform (d) failed !");
end transform_Test;
procedure Initialize (T : in out Test) is
begin
T.set_Name ("Linear Algebra (2D) Tests");
Framework.add_test_Routine (T, translation_Matrix_Test'Access, "translation_Matrix_Test");
Framework.add_test_Routine (T, rotation_Matrix_Test'Access, "rotation_Matrix_Test");
Framework.add_test_Routine (T, transform_Test'Access, "transform_Test");
end Initialize;
end math_Tests.linear_Algebra_2d;
| 31.688742 | 96 | 0.561338 |
1d82ef8e9abdf33ed9068b382f644c6ae6b08dbc | 3,041 | ads | Ada | tools-src/gnu/gcc/gcc/ada/5nosinte.ads | modern-tomato/tomato | 96f09fab4929c6ddde5c9113f1b2476ad37133c4 | [
"FSFAP"
] | 80 | 2015-01-02T10:14:04.000Z | 2021-06-07T06:29:49.000Z | tools-src/gnu/gcc/gcc/ada/5nosinte.ads | modern-tomato/tomato | 96f09fab4929c6ddde5c9113f1b2476ad37133c4 | [
"FSFAP"
] | 9 | 2015-05-14T11:03:12.000Z | 2018-01-04T07:12:58.000Z | tools-src/gnu/gcc/gcc/ada/5nosinte.ads | modern-tomato/tomato | 96f09fab4929c6ddde5c9113f1b2476ad37133c4 | [
"FSFAP"
] | 69 | 2015-01-02T10:45:56.000Z | 2021-09-06T07:52:13.000Z | ------------------------------------------------------------------------------
-- --
-- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS --
-- --
-- S Y S T E M . O S _ I N T E R F A C E --
-- --
-- S p e c --
-- --
-- $Revision$
-- --
-- Copyright (C) 1991-2001 Free Software Foundation, Inc. --
-- --
-- GNARL is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNARL is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNARL; see file COPYING. If not, write --
-- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
-- MA 02111-1307, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNARL was developed by the GNARL team at Florida State University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This is the no tasking version
with Interfaces.C;
package System.OS_Interface is
pragma Preelaborate;
subtype int is Interfaces.C.int;
-------------
-- Signals --
-------------
Max_Interrupt : constant := 2;
type Signal is new int range 0 .. Max_Interrupt;
type sigset_t is new Integer;
type Thread_Id is new Integer;
end System.OS_Interface;
| 55.290909 | 78 | 0.427491 |
41dd89a07edf5f2e00bf221790e20fdb6fba4ee8 | 94 | ads | Ada | tests/game-test_data-tests-natural_container.ads | thindil/steamsky | d5d7fea622f7994c91017c4cd7ba5e188153556c | [
"TCL",
"MIT"
] | 80 | 2017-04-08T23:14:07.000Z | 2022-02-10T22:30:51.000Z | tests/game-test_data-tests-natural_container.ads | thindil/steamsky | d5d7fea622f7994c91017c4cd7ba5e188153556c | [
"TCL",
"MIT"
] | 89 | 2017-06-24T08:18:26.000Z | 2021-11-12T04:37:36.000Z | tests/game-test_data-tests-natural_container.ads | thindil/steamsky | d5d7fea622f7994c91017c4cd7ba5e188153556c | [
"TCL",
"MIT"
] | 9 | 2018-04-14T16:37:25.000Z | 2020-03-21T14:33:49.000Z | package Game.Test_Data.Tests.Natural_Container is
end Game.Test_Data.Tests.Natural_Container;
| 31.333333 | 49 | 0.87234 |
291a3cdc3f0ec4f5700831e56820ea8bb1718f13 | 7,757 | ads | Ada | ADL/drivers/stm32h743/stm32-comp.ads | JCGobbi/Nucleo-STM32H743ZI | bb0b5a66e9ac8b3dbe381f9909df5ed5d77dad1c | [
"BSD-3-Clause"
] | null | null | null | ADL/drivers/stm32h743/stm32-comp.ads | JCGobbi/Nucleo-STM32H743ZI | bb0b5a66e9ac8b3dbe381f9909df5ed5d77dad1c | [
"BSD-3-Clause"
] | null | null | null | ADL/drivers/stm32h743/stm32-comp.ads | JCGobbi/Nucleo-STM32H743ZI | bb0b5a66e9ac8b3dbe381f9909df5ed5d77dad1c | [
"BSD-3-Clause"
] | null | null | null | private with STM32_SVD.COMP;
package STM32.COMP is
type Comparator is limited private;
procedure Enable (This : in out Comparator)
with Post => Enabled (This);
procedure Disable (This : in out Comparator)
with Post => not Enabled (This);
function Enabled (This : Comparator) return Boolean;
type I_Input_Port is
(One_Quarter_Vrefint,
One_Half_Vrefint,
Three_Quarter_Vrefint,
Vrefint,
DAC_CH1,
DAC_CH2,
Option_7,
Option_8);
-- These bits allows to select the source connected to the inverting input
-- of the comparator. The first 6 options are common, the last 2 options
-- change for each comparator:
-- Option COMP1 COMP2
-- 7 PB1 PE10
-- 8 PC4 PE7
-- See RM0433 rev 7 chapter 24.3.2 pg 1094 Table 233: COMP input/output
-- internal signals and Table 234: COMP input/output pins.
procedure Set_I_Input_Port
(This : in out Comparator;
Input : I_Input_Port)
with Post => Get_I_Input_Port (This) = Input;
-- Select the source connected to the inverting input of the comparator.
-- See RM0433 rev 7 chapter 24.3.2 pg 1094 Table 233: COMP input/output
-- internal signals and Table 234: COMP input/output pins.
function Get_I_Input_Port
(This : Comparator) return I_Input_Port;
-- Return the source connected to the inverting input of the comparator.
type NI_Input_Port is
(Option_1,
Option_2);
-- These bits allows to select the source connected to the non-inverting
-- input of the comparator:
-- Option COMP1 COMP2
-- 1 PB0 PE9
-- 2 PB2 PE11
-- See RM0433 rev 7 chapter 24.3.2 pg 1094 Table 233: COMP input/output
-- internal signals and Table 234: COMP input/output pins.
procedure Set_NI_Input_Port
(This : in out Comparator;
Input : NI_Input_Port)
with Post => Get_NI_Input_Port (This) = Input;
-- Select the source connected to the non-inverting input of the comparator.
-- See RM0433 rev 7 chapter 24.3.2 pg 1094 Table 233: COMP input/output
-- internal signals and Table 234: COMP input/output pins.
function Get_NI_Input_Port
(This : Comparator) return NI_Input_Port;
-- Return the source connected to the non-inverting input of the comparator.
type Output_Polarity is
(Not_Inverted,
Inverted);
-- This bit is used to invert the comparator output.
procedure Set_Output_Polarity
(This : in out Comparator;
Output : Output_Polarity)
with Post => Get_Output_Polarity (This) = Output;
-- Used to invert the comparator output.
function Get_Output_Polarity (This : Comparator) return Output_Polarity;
-- Return the comparator output polarity.
type Comparator_Hysteresis is
(No_Hysteresis,
Low_Hysteresis,
Medium_Hysteresis,
High_Hysteresis);
-- These bits select the hysteresis of the comparator.
procedure Set_Comparator_Hysteresis
(This : in out Comparator;
Value : Comparator_Hysteresis)
with Post => Get_Comparator_Hysteresis (This) = Value;
-- Select the comparator hysteresis value.
function Get_Comparator_Hysteresis (This : Comparator)
return Comparator_Hysteresis;
-- Return the comparator hysteresis value.
type Output_Blanking is
(No_Blanking,
TIM1_OC5,
TIM2_OC3,
TIM3_OC3,
TIM3_OC4,
TIM8_OC5,
TIM15_OC1)
with Size => 4;
-- These bits select which Timer output controls the comparator output
-- blanking.
-- See RM0433 rev 7 chapter 24.3.2 pg 1094 Table 233: COMP input/output
-- internal signals
procedure Set_Output_Blanking
(This : in out Comparator;
Output : Output_Blanking)
with Post => Get_Output_Blanking (This) = Output;
-- Select which Timer output controls the comparator output blanking.
function Get_Output_Blanking (This : Comparator) return Output_Blanking;
-- Return which Timer output controls the comparator output blanking.
procedure Set_Vrefint_Scaler_Resistor
(This : in out Comparator;
Enabled : Boolean)
with Post => Get_Vrefint_Scaler_Resistor (This) = Enabled;
-- Enables the operation of resistor bridge in the VREFINT scaler. To
-- disable the resistor bridge, BRGEN bits of all COMP_CxCSR registers must
-- be set to Disable state. When the resistor bridge is disabled, the 1/4
-- VREFINT, 1/2 VREFINT, and 3/4 VREFINT inputs of the input selector
-- receive VREFINT voltage.
function Get_Vrefint_Scaler_Resistor (This : Comparator) return Boolean;
-- Return True if VREFINT resistor bridge is enabled.
procedure Set_Vrefint_Scaler
(This : in out Comparator;
Enabled : Boolean)
with Post => Get_Vrefint_Scaler (This) = Enabled;
-- Enables the operation of VREFINT scaler at the inverting input of all
-- comparator. To disable the VREFINT scaler, SCALEN bits of all COMP_CxCSR
-- registers must be set to Disable state. When the VREFINT scaler is
-- disabled, the 1/4 VREFINT, 1/2 VREFINT, 3/4 VREFINT and VREFINT inputs
-- of the multiplexer should not be selected.
function Get_Vrefint_Scaler (This : Comparator) return Boolean;
-- Return True if VREFINT scaler is enabled.
type Comparator_Output is (Low, High);
function Get_Comparator_Output (This : Comparator) return Comparator_Output;
-- Read the comparator output before the polarity selector and blanking:
-- Low = non-inverting input is below inverting input,
-- High = (non-inverting input is above inverting input
type AF_Port_Source is
(PA6, PA8, PB12, PE6, PE15, PG2, PG3, PG4, PI1, PI4, PK2)
with Size => 4;
procedure Set_AF_Port_Source
(This : Comparator;
Port : AF_Port_Source);
type COMP_Power_Mode is
(High_Speed,
Medium_Speed_1,
Medium_Speed_2,
Very_Low_Speed);
procedure Set_Power_Mode
(This : in out Comparator;
Mode : COMP_Power_Mode);
type Init_Parameters is record
Input_Minus : I_Input_Port;
Input_Plus : NI_Input_Port;
Output_Pol : Output_Polarity;
Hysteresis : Comparator_Hysteresis;
Blanking_Source : Output_Blanking;
Power_Mode : COMP_Power_Mode;
end record;
procedure Configure_Comparator
(This : in out Comparator;
Param : Init_Parameters);
type COMP_Status_Flag is
(Comparator_Output_Value,
Interrupt_Indicated);
function Status
(This : Comparator;
Flag : COMP_Status_Flag)
return Boolean;
procedure Enable_Interrupt (This : in out Comparator)
with Inline, Post => Interrupt_Enabled (This);
procedure Disable_Interrupt (This : in out Comparator)
with Inline, Post => not Interrupt_Enabled (This);
function Interrupt_Enabled (This : Comparator) return Boolean
with Inline;
procedure Clear_Interrupt_Pending (This : in out Comparator)
with Inline;
procedure Set_Lock_Comparator (This : in out Comparator)
with Post => Get_Lock_Comparator (This) = True;
-- Allows to have COMPx_CFGR and COMP_OR registers as read-only. It can
-- only be cleared by a system reset.
function Get_Lock_Comparator (This : Comparator) return Boolean;
-- Return the comparator lock bit state.
private
-----------------
-- Peripherals --
-----------------
-- representation for the whole Comparator type -----------------
type Comparator is record
CFGR : STM32_SVD.COMP.CFGR1_Register;
end record with Volatile, Size => 1 * 32;
for Comparator use record
CFGR at 16#00# range 0 .. 31;
end record;
end STM32.COMP;
| 33.435345 | 80 | 0.685188 |
123ef1c7213bbd54d7dad508f8c80c648f2abf4f | 13,579 | adb | Ada | src/asf-components-html-factory.adb | Letractively/ada-asf | da9f85f85666eba7e23fefea661160863b74154d | [
"Apache-2.0"
] | null | null | null | src/asf-components-html-factory.adb | Letractively/ada-asf | da9f85f85666eba7e23fefea661160863b74154d | [
"Apache-2.0"
] | null | null | null | src/asf-components-html-factory.adb | Letractively/ada-asf | da9f85f85666eba7e23fefea661160863b74154d | [
"Apache-2.0"
] | null | null | null | -----------------------------------------------------------------------
-- html-factory -- Factory for HTML UI Components
-- Copyright (C) 2009, 2010, 2011, 2012, 2014 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- 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 ASF.Components.Base;
with ASF.Components.Html.Text;
with ASF.Components.Html.Lists;
with ASF.Components.Html.Links;
with ASF.Components.Html.Panels;
with ASF.Components.Html.Forms;
with ASF.Components.Html.Pages;
with ASF.Components.Html.Selects;
with ASF.Components.Html.Messages;
with ASF.Views.Nodes;
package body ASF.Components.Html.Factory is
use ASF.Components.Base;
function Create_Body return UIComponent_Access;
function Create_Doctype return UIComponent_Access;
function Create_Head return UIComponent_Access;
function Create_Output return UIComponent_Access;
function Create_Output_Label return UIComponent_Access;
function Create_Output_Link return UIComponent_Access;
function Create_Output_Format return UIComponent_Access;
function Create_List return UIComponent_Access;
function Create_PanelGroup return UIComponent_Access;
function Create_Form return UIComponent_Access;
function Create_Input_File return UIComponent_Access;
function Create_Input_Hidden return UIComponent_Access;
function Create_Input_Text return UIComponent_Access;
function Create_Input_Textarea return UIComponent_Access;
function Create_Command return UIComponent_Access;
function Create_Message return UIComponent_Access;
function Create_Messages return UIComponent_Access;
function Create_SelectOne return UIComponent_Access;
function Create_SelectOneRadio return UIComponent_Access;
function Create_SelectBooleanCheckbox return UIComponent_Access;
-- Create an UIInput secret component
function Create_Input_Secret return ASF.Components.Base.UIComponent_Access;
-- ------------------------------
-- Create an UIBody component
-- ------------------------------
function Create_Body return UIComponent_Access is
begin
return new ASF.Components.Html.Pages.UIBody;
end Create_Body;
-- ------------------------------
-- Create an UIDoctype component
-- ------------------------------
function Create_Doctype return UIComponent_Access is
begin
return new ASF.Components.Html.Pages.UIDoctype;
end Create_Doctype;
-- ------------------------------
-- Create an UIHead component
-- ------------------------------
function Create_Head return UIComponent_Access is
begin
return new ASF.Components.Html.Pages.UIHead;
end Create_Head;
-- ------------------------------
-- Create an UIOutput component
-- ------------------------------
function Create_Output return UIComponent_Access is
begin
return new ASF.Components.Html.Text.UIOutput;
end Create_Output;
-- ------------------------------
-- Create an UIOutputLabel component
-- ------------------------------
function Create_Output_Label return UIComponent_Access is
begin
return new ASF.Components.Html.Text.UIOutputLabel;
end Create_Output_Label;
-- ------------------------------
-- Create an UIOutputLink component
-- ------------------------------
function Create_Output_Link return UIComponent_Access is
begin
return new ASF.Components.Html.Links.UIOutputLink;
end Create_Output_Link;
-- ------------------------------
-- Create an UIOutput component
-- ------------------------------
function Create_Output_Format return UIComponent_Access is
begin
return new ASF.Components.Html.Text.UIOutputFormat;
end Create_Output_Format;
-- ------------------------------
-- Create an UIList component
-- ------------------------------
function Create_List return UIComponent_Access is
begin
return new ASF.Components.Html.Lists.UIList;
end Create_List;
-- ------------------------------
-- Create an UIPanelGroup component
-- ------------------------------
function Create_PanelGroup return UIComponent_Access is
begin
return new ASF.Components.Html.Panels.UIPanelGroup;
end Create_PanelGroup;
-- ------------------------------
-- Create an UIForm component
-- ------------------------------
function Create_Form return UIComponent_Access is
begin
return new ASF.Components.Html.Forms.UIForm;
end Create_Form;
-- ------------------------------
-- Create an UIInput_Hidden component
-- ------------------------------
function Create_Input_Hidden return UIComponent_Access is
begin
return new ASF.Components.Html.Forms.UIInput_Hidden;
end Create_Input_Hidden;
-- ------------------------------
-- Create an UIInput component
-- ------------------------------
function Create_Input_Text return UIComponent_Access is
begin
return new ASF.Components.Html.Forms.UIInput;
end Create_Input_Text;
-- ------------------------------
-- Create an UIInput secret component
-- ------------------------------
function Create_Input_Secret return ASF.Components.Base.UIComponent_Access is
Result : constant Html.Forms.UIInput_Access := new ASF.Components.Html.Forms.UIInput;
begin
Result.Set_Secret (True);
return Result.all'Access;
end Create_Input_Secret;
-- ------------------------------
-- Create an UIInputTextarea component
-- ------------------------------
function Create_Input_Textarea return UIComponent_Access is
begin
return new ASF.Components.Html.Forms.UIInputTextarea;
end Create_Input_Textarea;
-- ------------------------------
-- Create an UIInput_File component
-- ------------------------------
function Create_Input_File return UIComponent_Access is
begin
return new ASF.Components.Html.Forms.UIInput_File;
end Create_Input_File;
-- ------------------------------
-- Create an UICommand component
-- ------------------------------
function Create_Command return UIComponent_Access is
begin
return new ASF.Components.Html.Forms.UICommand;
end Create_Command;
-- ------------------------------
-- Create an UIMessage component
-- ------------------------------
function Create_Message return UIComponent_Access is
begin
return new ASF.Components.Html.Messages.UIMessage;
end Create_Message;
-- ------------------------------
-- Create an UIMessages component
-- ------------------------------
function Create_Messages return UIComponent_Access is
begin
return new ASF.Components.Html.Messages.UIMessages;
end Create_Messages;
-- ------------------------------
-- Create an UISelectOne component
-- ------------------------------
function Create_SelectOne return UIComponent_Access is
begin
return new ASF.Components.Html.Selects.UISelectOne;
end Create_SelectOne;
-- ------------------------------
-- Create an UISelectOneRadio component
-- ------------------------------
function Create_SelectOneRadio return UIComponent_Access is
begin
return new ASF.Components.Html.Selects.UISelectOneRadio;
end Create_SelectOneRadio;
-- ------------------------------
-- Create an UISelectBoolean component
-- ------------------------------
function Create_SelectBooleanCheckbox return UIComponent_Access is
begin
return new ASF.Components.Html.Selects.UISelectBoolean;
end Create_SelectBooleanCheckbox;
use ASF.Views.Nodes;
URI : aliased constant String := "http://java.sun.com/jsf/html";
BODY_TAG : aliased constant String := "body";
COMMAND_BUTTON_TAG : aliased constant String := "commandButton";
DOCTYPE_TAG : aliased constant String := "doctype";
FORM_TAG : aliased constant String := "form";
HEAD_TAG : aliased constant String := "head";
INPUT_FILE_TAG : aliased constant String := "inputFile";
INPUT_HIDDEN_TAG : aliased constant String := "inputHidden";
INPUT_SECRET_TAG : aliased constant String := "inputSecret";
INPUT_TEXT_TAG : aliased constant String := "inputText";
INPUT_TEXTAREA_TAG : aliased constant String := "inputTextarea";
LIST_TAG : aliased constant String := "list";
MESSAGE_TAG : aliased constant String := "message";
MESSAGES_TAG : aliased constant String := "messages";
OUTPUT_FORMAT_TAG : aliased constant String := "outputFormat";
OUTPUT_LABEL_TAG : aliased constant String := "outputLabel";
OUTPUT_LINK_TAG : aliased constant String := "outputLink";
OUTPUT_TEXT_TAG : aliased constant String := "outputText";
PANEL_GROUP_TAG : aliased constant String := "panelGroup";
SELECT_BOOLEAN_TAG : aliased constant String := "selectBooleanCheckbox";
SELECT_ONE_MENU_TAG : aliased constant String := "selectOneMenu";
SELECT_ONE_RADIO_TAG : aliased constant String := "selectOneRadio";
Html_Bindings : aliased constant ASF.Factory.Binding_Array
:= (1 => (Name => BODY_TAG'Access,
Component => Create_Body'Access,
Tag => Create_Component_Node'Access),
2 => (Name => COMMAND_BUTTON_TAG'Access,
Component => Create_Command'Access,
Tag => Create_Component_Node'Access),
3 => (Name => DOCTYPE_TAG'Access,
Component => Create_Doctype'Access,
Tag => Create_Component_Node'Access),
4 => (Name => FORM_TAG'Access,
Component => Create_Form'Access,
Tag => Create_Component_Node'Access),
5 => (Name => HEAD_TAG'Access,
Component => Create_Head'Access,
Tag => Create_Component_Node'Access),
6 => (Name => INPUT_FILE_TAG'Access,
Component => Create_Input_File'Access,
Tag => Create_Component_Node'Access),
7 => (Name => INPUT_HIDDEN_TAG'Access,
Component => Create_Input_Hidden'Access,
Tag => Create_Component_Node'Access),
8 => (Name => INPUT_SECRET_TAG'Access,
Component => Create_Input_Secret'Access,
Tag => Create_Component_Node'Access),
9 => (Name => INPUT_TEXT_TAG'Access,
Component => Create_Input_Text'Access,
Tag => Create_Component_Node'Access),
10 => (Name => INPUT_TEXTAREA_TAG'Access,
Component => Create_Input_Textarea'Access,
Tag => Create_Component_Node'Access),
11 => (Name => LIST_TAG'Access,
Component => Create_List'Access,
Tag => Create_Component_Node'Access),
12 => (Name => MESSAGE_TAG'Access,
Component => Create_Message'Access,
Tag => Create_Component_Node'Access),
13 => (Name => MESSAGES_TAG'Access,
Component => Create_Messages'Access,
Tag => Create_Component_Node'Access),
14 => (Name => OUTPUT_FORMAT_TAG'Access,
Component => Create_Output_Format'Access,
Tag => Create_Component_Node'Access),
15 => (Name => OUTPUT_LABEL_TAG'Access,
Component => Create_Output_Label'Access,
Tag => Create_Component_Node'Access),
16 => (Name => OUTPUT_LINK_TAG'Access,
Component => Create_Output_Link'Access,
Tag => Create_Component_Node'Access),
17 => (Name => OUTPUT_TEXT_TAG'Access,
Component => Create_Output'Access,
Tag => Create_Component_Node'Access),
18 => (Name => PANEL_GROUP_TAG'Access,
Component => Create_PanelGroup'Access,
Tag => Create_Component_Node'Access),
19 => (Name => SELECT_BOOLEAN_TAG'Access,
Component => Create_SelectBooleanCheckbox'Access,
Tag => Create_Component_Node'Access),
20 => (Name => SELECT_ONE_MENU_TAG'Access,
Component => Create_SelectOne'Access,
Tag => Create_Component_Node'Access),
21 => (Name => SELECT_ONE_RADIO_TAG'Access,
Component => Create_SelectOneRadio'Access,
Tag => Create_Component_Node'Access)
);
Html_Factory : aliased constant ASF.Factory.Factory_Bindings
:= (URI => URI'Access, Bindings => Html_Bindings'Access);
-- ------------------------------
-- Get the HTML component factory.
-- ------------------------------
function Definition return ASF.Factory.Factory_Bindings_Access is
begin
return Html_Factory'Access;
end Definition;
end ASF.Components.Html.Factory;
| 41.148485 | 91 | 0.601075 |
a112dfa42ec7a0e77b6d8b62c42b6e3d86e90aa4 | 2,014 | ads | Ada | src/asf-routes-servlets.ads | jquorning/ada-asf | ddc697c5dfa4e22c57c6958f4cff27e14d02ce98 | [
"Apache-2.0"
] | 12 | 2015-01-18T23:02:20.000Z | 2022-03-25T15:30:30.000Z | src/asf-routes-servlets.ads | jquorning/ada-asf | ddc697c5dfa4e22c57c6958f4cff27e14d02ce98 | [
"Apache-2.0"
] | 3 | 2021-01-06T09:44:02.000Z | 2022-02-04T20:20:53.000Z | src/asf-routes-servlets.ads | jquorning/ada-asf | ddc697c5dfa4e22c57c6958f4cff27e14d02ce98 | [
"Apache-2.0"
] | 4 | 2016-04-12T05:29:00.000Z | 2022-01-24T23:53:59.000Z | -----------------------------------------------------------------------
-- asf-routes-servlets -- Servlet request routing
-- Copyright (C) 2015 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- 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 ASF.Filters;
with ASF.Servlets;
package ASF.Routes.Servlets is
type Servlet_Route_Type is new ASF.Routes.Route_Type with record
Filters : ASF.Filters.Filter_List_Access;
Servlet : ASF.Servlets.Servlet_Access;
end record;
type Servlet_Route_Type_Access is access all Servlet_Route_Type'Class;
-- Get the servlet to call for the route.
function Get_Servlet (Route : in Servlet_Route_Type) return ASF.Servlets.Servlet_Access;
-- Append the filter to the filter list defined by the mapping node.
procedure Append_Filter (Route : in out Servlet_Route_Type;
Filter : in ASF.Filters.Filter_Access);
-- Release the storage held by the route.
overriding
procedure Finalize (Route : in out Servlet_Route_Type);
type Proxy_Route_Type is new Servlet_Route_Type with record
Route : Servlet_Route_Type_Access;
end record;
type Proxy_Route_Type_Access is access all Proxy_Route_Type'Class;
-- Get the servlet to call for the route.
overriding
function Get_Servlet (Route : in Proxy_Route_Type) return ASF.Servlets.Servlet_Access;
end ASF.Routes.Servlets;
| 40.28 | 91 | 0.688183 |
41ca97aeff3cf423c2685073c83cb285fff2e954 | 190 | ads | Ada | source/numerics/a-nucoty.ads | ytomino/drake | 4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2 | [
"MIT"
] | 33 | 2015-04-04T09:19:36.000Z | 2021-11-10T05:33:34.000Z | source/numerics/a-nucoty.ads | ytomino/drake | 4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2 | [
"MIT"
] | 8 | 2017-11-14T13:05:07.000Z | 2018-08-09T15:28:49.000Z | source/numerics/a-nucoty.ads | ytomino/drake | 4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2 | [
"MIT"
] | 9 | 2015-02-03T17:09:53.000Z | 2021-11-12T01:16:05.000Z | pragma License (Unrestricted);
with Ada.Numerics.Generic_Complex_Types;
package Ada.Numerics.Complex_Types is
new Generic_Complex_Types (Float);
pragma Pure (Ada.Numerics.Complex_Types);
| 31.666667 | 41 | 0.826316 |
4df42cf6c1114238d47beb3d052916e225b97e69 | 11,278 | ads | Ada | src/asf-components-core-views.ads | jquorning/ada-asf | ddc697c5dfa4e22c57c6958f4cff27e14d02ce98 | [
"Apache-2.0"
] | 12 | 2015-01-18T23:02:20.000Z | 2022-03-25T15:30:30.000Z | src/asf-components-core-views.ads | jquorning/ada-asf | ddc697c5dfa4e22c57c6958f4cff27e14d02ce98 | [
"Apache-2.0"
] | 3 | 2021-01-06T09:44:02.000Z | 2022-02-04T20:20:53.000Z | src/asf-components-core-views.ads | jquorning/ada-asf | ddc697c5dfa4e22c57c6958f4cff27e14d02ce98 | [
"Apache-2.0"
] | 4 | 2016-04-12T05:29:00.000Z | 2022-01-24T23:53:59.000Z | -----------------------------------------------------------------------
-- components-core-views -- ASF View Components
-- Copyright (C) 2009, 2010, 2011, 2012, 2017, 2021 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- 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.Beans.Objects;
with Util.Locales;
with ASF.Events.Faces;
with ASF.Lifecycles;
with ASF.Components.Html.Forms;
with ASF.Components.Core;
with ASF.Views.Nodes;
private with Ada.Containers.Vectors;
package ASF.Components.Core.Views is
-- Name of the facet that holds the metadata information
-- (we use the same name as JSF 2 specification).
METADATA_FACET_NAME : constant String := "javax_faces_metadata";
type UIViewMetaData is tagged;
type UIViewMetaData_Access is access all UIViewMetaData'Class;
-- ------------------------------
-- View component
-- ------------------------------
type UIView is new Core.UIComponentBase with private;
type UIView_Access is access all UIView'Class;
-- Get the content type returned by the view.
function Get_Content_Type (UI : in UIView;
Context : in Faces_Context'Class) return String;
-- Set the content type returned by the view.
procedure Set_Content_Type (UI : in out UIView;
Value : in String);
-- Get the locale to be used when rendering messages in the view.
-- If a locale was set explicitly, return it.
-- If the view component defines a <b>locale</b> attribute, evaluate and return its value.
-- If the locale is empty, calculate the locale by using the request context and the view
-- handler.
function Get_Locale (UI : in UIView;
Context : in Faces_Context'Class) return Util.Locales.Locale;
-- Set the locale to be used when rendering messages in the view.
procedure Set_Locale (UI : in out UIView;
Locale : in Util.Locales.Locale);
-- Encode the begining of the view. Set the response content type.
overriding
procedure Encode_Begin (UI : in UIView;
Context : in out Faces_Context'Class);
-- Encode the end of the view.
overriding
procedure Encode_End (UI : in UIView;
Context : in out Faces_Context'Class);
-- Decode any new state of the specified component from the request contained
-- in the specified context and store that state on the component.
--
-- During decoding, events may be enqueued for later processing
-- (by event listeners that have registered an interest), by calling
-- the <b>Queue_Event</b> on the associated component.
overriding
procedure Process_Decodes (UI : in out UIView;
Context : in out Faces_Context'Class);
-- Perform the component tree processing required by the <b>Process Validations</b>
-- phase of the request processing lifecycle for all facets of this component,
-- all children of this component, and this component itself, as follows:
-- <ul>
-- <li>If this component <b>rendered</b> property is false, skip further processing.
-- <li>Call the <b>Process_Validators</b> of all facets and children.
-- <ul>
overriding
procedure Process_Validators (UI : in out UIView;
Context : in out Faces_Context'Class);
-- Perform the component tree processing required by the <b>Update Model Values</b>
-- phase of the request processing lifecycle for all facets of this component,
-- all children of this component, and this component itself, as follows.
-- <ul>
-- <li>If this component <b>rendered</b> property is false, skip further processing.
-- <li>Call the <b>Process_Updates/b> of all facets and children.
-- <ul>
overriding
procedure Process_Updates (UI : in out UIView;
Context : in out Faces_Context'Class);
-- Broadcast any events that have been queued for the <b>Invoke Application</b>
-- phase of the request processing lifecycle and to clear out any events
-- for later phases if the event processing for this phase caused
-- <b>renderResponse</b> or <b>responseComplete</b> to be called.
procedure Process_Application (UI : in out UIView;
Context : in out Faces_Context'Class);
-- Queue an event for broadcast at the end of the current request
-- processing lifecycle phase. The event object
-- will be freed after being dispatched.
procedure Queue_Event (UI : in out UIView;
Event : not null access ASF.Events.Faces.Faces_Event'Class);
-- Broadcast the events after the specified lifecycle phase.
-- Events that were queued will be freed.
procedure Broadcast (UI : in out UIView;
Phase : in ASF.Lifecycles.Phase_Type;
Context : in out Faces_Context'Class);
-- Clear the events that were queued.
procedure Clear_Events (UI : in out UIView);
-- Set the component tree that must be rendered before this view.
-- This is an internal method used by Steal_Root_Component exclusively.
procedure Set_Before_View (UI : in out UIView'Class;
Tree : in Base.UIComponent_Access);
-- Set the component tree that must be rendered after this view.
-- This is an internal method used by Steal_Root_Component exclusively.
procedure Set_After_View (UI : in out UIView'Class;
Tree : in Base.UIComponent_Access);
-- Set the metadata facet on the UIView component.
procedure Set_Metadata (UI : in out UIView;
Meta : in UIViewMetaData_Access;
Tag : access ASF.Views.Nodes.Tag_Node'Class);
-- Finalize the object.
overriding
procedure Finalize (UI : in out UIView);
-- ------------------------------
-- View Parameter Component
-- ------------------------------
-- The <b>UIViewParameter</b> component represents a request parameter that must be mapped
-- to a backed bean object. This component does not participate in the rendering.
type UIViewParameter is new Html.Forms.UIInput with private;
type UIViewParameter_Access is access all UIViewParameter'Class;
-- Get the input parameter from the submitted context. This operation is called by
-- <tt>Process_Decodes</tt> to retrieve the request parameter associated with the component.
overriding
function Get_Parameter (UI : in UIViewParameter;
Context : in Faces_Context'Class) return String;
-- ------------------------------
-- View Action Component
-- ------------------------------
-- The <b>UIViewAction</b> component implements the view action tag defined by Jave Server
-- Faces 2.2. This action defined by that tag will be called
type UIViewAction is new Html.Forms.UICommand with private;
type UIViewAction_Access is access all UIViewAction'Class;
-- Decode the request and prepare for the execution for the view action.
overriding
procedure Process_Decodes (UI : in out UIViewAction;
Context : in out Faces_Context'Class);
-- ------------------------------
-- View Metadata Component
-- ------------------------------
-- The <b>UIViewMetaData</b> component defines the view meta data components.
-- These components defines how to handle some request parameters for a GET request
-- as well as some actions that must be made upon reception of a request.
--
-- From ASF lifecycle management, if the request is a GET, this component is used
-- as the root of the component tree. The APPLY_REQUESTS .. INVOKE_APPLICATION actions
-- are called on that component tree. It is also used for the RENDER_RESPONSE, and
-- we have to propagate the rendering on the real view root. Therefore, the Encode_XXX
-- operations are overriden to propagate on the real root.
type UIViewMetaData is new UIView with private;
-- Start encoding the UIComponent.
overriding
procedure Encode_Begin (UI : in UIViewMetaData;
Context : in out Faces_Context'Class);
-- Encode the children of this component.
overriding
procedure Encode_Children (UI : in UIViewMetaData;
Context : in out Faces_Context'Class);
-- Finish encoding the component.
overriding
procedure Encode_End (UI : in UIViewMetaData;
Context : in out Faces_Context'Class);
-- Queue an event for broadcast at the end of the current request
-- processing lifecycle phase. The event object
-- will be freed after being dispatched.
overriding
procedure Queue_Event (UI : in out UIViewMetaData;
Event : not null access ASF.Events.Faces.Faces_Event'Class);
-- Broadcast the events after the specified lifecycle phase.
-- Events that were queued will be freed.
overriding
procedure Broadcast (UI : in out UIViewMetaData;
Phase : in ASF.Lifecycles.Phase_Type;
Context : in out Faces_Context'Class);
-- Clear the events that were queued.
overriding
procedure Clear_Events (UI : in out UIViewMetaData);
-- Get the root component.
function Get_Root (UI : in UIViewMetaData) return Base.UIComponent_Access;
private
use ASF.Lifecycles;
type Faces_Event_Access is access all ASF.Events.Faces.Faces_Event'Class;
package Event_Vectors is new Ada.Containers.Vectors (Index_Type => Natural,
Element_Type => Faces_Event_Access);
type Event_Queues is array (Phase_Type) of Event_Vectors.Vector;
type UIView is new Core.UIComponentBase with record
Content_Type : Util.Beans.Objects.Object;
Phase_Events : Event_Queues;
Meta : UIViewMetaData_Access := null;
Locale : Util.Locales.Locale := Util.Locales.NULL_LOCALE;
Left_Tree : Base.UIComponent_Access := null;
Right_Tree : Base.UIComponent_Access := null;
end record;
type UIViewParameter is new Html.Forms.UIInput with record
Name : Ada.Strings.Unbounded.Unbounded_String;
end record;
type UIViewAction is new Html.Forms.UICommand with null record;
type UIViewMetaData is new UIView with record
Root : UIView_Access := null;
end record;
end ASF.Components.Core.Views;
| 44.577075 | 96 | 0.646303 |
41e3e0864c8b8fd769291fb3baaeec4162947b20 | 23,231 | ads | Ada | arch/ARM/Nordic/svd/nrf51/nrf_svd-rtc.ads | shakram02/Ada_Drivers_Library | a407ca7ddbc2d9756647016c2f8fd8ef24a239ff | [
"BSD-3-Clause"
] | 192 | 2016-06-01T18:32:04.000Z | 2022-03-26T22:52:31.000Z | arch/ARM/Nordic/svd/nrf51/nrf_svd-rtc.ads | shakram02/Ada_Drivers_Library | a407ca7ddbc2d9756647016c2f8fd8ef24a239ff | [
"BSD-3-Clause"
] | 239 | 2016-05-26T20:02:01.000Z | 2022-03-31T09:46:56.000Z | arch/ARM/Nordic/svd/nrf51/nrf_svd-rtc.ads | shakram02/Ada_Drivers_Library | a407ca7ddbc2d9756647016c2f8fd8ef24a239ff | [
"BSD-3-Clause"
] | 142 | 2016-06-05T08:12:20.000Z | 2022-03-24T17:37:17.000Z | -- Copyright (c) 2013, Nordic Semiconductor ASA
-- 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 Nordic Semiconductor ASA nor the names of its
-- contributors may be used to endorse or promote products derived from
-- this software without specific prior written permission.
--
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
-- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
-- SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
-- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-- OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
--
-- This spec has been automatically generated from nrf51.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with HAL;
with System;
package NRF_SVD.RTC is
pragma Preelaborate;
---------------
-- Registers --
---------------
-- Compare event on CC[n] match.
-- Compare event on CC[n] match.
type EVENTS_COMPARE_Registers is array (0 .. 3) of HAL.UInt32;
-- Enable interrupt on TICK event.
type INTENSET_TICK_Field is
(-- Interrupt disabled.
Disabled,
-- Interrupt enabled.
Enabled)
with Size => 1;
for INTENSET_TICK_Field use
(Disabled => 0,
Enabled => 1);
-- Enable interrupt on TICK event.
type INTENSET_TICK_Field_1 is
(-- Reset value for the field
Intenset_Tick_Field_Reset,
-- Enable interrupt on write.
Set)
with Size => 1;
for INTENSET_TICK_Field_1 use
(Intenset_Tick_Field_Reset => 0,
Set => 1);
-- Enable interrupt on OVRFLW event.
type INTENSET_OVRFLW_Field is
(-- Interrupt disabled.
Disabled,
-- Interrupt enabled.
Enabled)
with Size => 1;
for INTENSET_OVRFLW_Field use
(Disabled => 0,
Enabled => 1);
-- Enable interrupt on OVRFLW event.
type INTENSET_OVRFLW_Field_1 is
(-- Reset value for the field
Intenset_Ovrflw_Field_Reset,
-- Enable interrupt on write.
Set)
with Size => 1;
for INTENSET_OVRFLW_Field_1 use
(Intenset_Ovrflw_Field_Reset => 0,
Set => 1);
-- Enable interrupt on COMPARE[0] event.
type INTENSET_COMPARE0_Field is
(-- Interrupt disabled.
Disabled,
-- Interrupt enabled.
Enabled)
with Size => 1;
for INTENSET_COMPARE0_Field use
(Disabled => 0,
Enabled => 1);
-- Enable interrupt on COMPARE[0] event.
type INTENSET_COMPARE0_Field_1 is
(-- Reset value for the field
Intenset_Compare0_Field_Reset,
-- Enable interrupt on write.
Set)
with Size => 1;
for INTENSET_COMPARE0_Field_1 use
(Intenset_Compare0_Field_Reset => 0,
Set => 1);
-- INTENSET_COMPARE array
type INTENSET_COMPARE_Field_Array is array (0 .. 3)
of INTENSET_COMPARE0_Field_1
with Component_Size => 1, Size => 4;
-- Type definition for INTENSET_COMPARE
type INTENSET_COMPARE_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- COMPARE as a value
Val : HAL.UInt4;
when True =>
-- COMPARE as an array
Arr : INTENSET_COMPARE_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for INTENSET_COMPARE_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- Interrupt enable set register.
type INTENSET_Register is record
-- Enable interrupt on TICK event.
TICK : INTENSET_TICK_Field_1 := Intenset_Tick_Field_Reset;
-- Enable interrupt on OVRFLW event.
OVRFLW : INTENSET_OVRFLW_Field_1 := Intenset_Ovrflw_Field_Reset;
-- unspecified
Reserved_2_15 : HAL.UInt14 := 16#0#;
-- Enable interrupt on COMPARE[0] event.
COMPARE : INTENSET_COMPARE_Field :=
(As_Array => False, Val => 16#0#);
-- unspecified
Reserved_20_31 : HAL.UInt12 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for INTENSET_Register use record
TICK at 0 range 0 .. 0;
OVRFLW at 0 range 1 .. 1;
Reserved_2_15 at 0 range 2 .. 15;
COMPARE at 0 range 16 .. 19;
Reserved_20_31 at 0 range 20 .. 31;
end record;
-- Disable interrupt on TICK event.
type INTENCLR_TICK_Field is
(-- Interrupt disabled.
Disabled,
-- Interrupt enabled.
Enabled)
with Size => 1;
for INTENCLR_TICK_Field use
(Disabled => 0,
Enabled => 1);
-- Disable interrupt on TICK event.
type INTENCLR_TICK_Field_1 is
(-- Reset value for the field
Intenclr_Tick_Field_Reset,
-- Disable interrupt on write.
Clear)
with Size => 1;
for INTENCLR_TICK_Field_1 use
(Intenclr_Tick_Field_Reset => 0,
Clear => 1);
-- Disable interrupt on OVRFLW event.
type INTENCLR_OVRFLW_Field is
(-- Interrupt disabled.
Disabled,
-- Interrupt enabled.
Enabled)
with Size => 1;
for INTENCLR_OVRFLW_Field use
(Disabled => 0,
Enabled => 1);
-- Disable interrupt on OVRFLW event.
type INTENCLR_OVRFLW_Field_1 is
(-- Reset value for the field
Intenclr_Ovrflw_Field_Reset,
-- Disable interrupt on write.
Clear)
with Size => 1;
for INTENCLR_OVRFLW_Field_1 use
(Intenclr_Ovrflw_Field_Reset => 0,
Clear => 1);
-- Disable interrupt on COMPARE[0] event.
type INTENCLR_COMPARE0_Field is
(-- Interrupt disabled.
Disabled,
-- Interrupt enabled.
Enabled)
with Size => 1;
for INTENCLR_COMPARE0_Field use
(Disabled => 0,
Enabled => 1);
-- Disable interrupt on COMPARE[0] event.
type INTENCLR_COMPARE0_Field_1 is
(-- Reset value for the field
Intenclr_Compare0_Field_Reset,
-- Disable interrupt on write.
Clear)
with Size => 1;
for INTENCLR_COMPARE0_Field_1 use
(Intenclr_Compare0_Field_Reset => 0,
Clear => 1);
-- INTENCLR_COMPARE array
type INTENCLR_COMPARE_Field_Array is array (0 .. 3)
of INTENCLR_COMPARE0_Field_1
with Component_Size => 1, Size => 4;
-- Type definition for INTENCLR_COMPARE
type INTENCLR_COMPARE_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- COMPARE as a value
Val : HAL.UInt4;
when True =>
-- COMPARE as an array
Arr : INTENCLR_COMPARE_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for INTENCLR_COMPARE_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- Interrupt enable clear register.
type INTENCLR_Register is record
-- Disable interrupt on TICK event.
TICK : INTENCLR_TICK_Field_1 := Intenclr_Tick_Field_Reset;
-- Disable interrupt on OVRFLW event.
OVRFLW : INTENCLR_OVRFLW_Field_1 := Intenclr_Ovrflw_Field_Reset;
-- unspecified
Reserved_2_15 : HAL.UInt14 := 16#0#;
-- Disable interrupt on COMPARE[0] event.
COMPARE : INTENCLR_COMPARE_Field :=
(As_Array => False, Val => 16#0#);
-- unspecified
Reserved_20_31 : HAL.UInt12 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for INTENCLR_Register use record
TICK at 0 range 0 .. 0;
OVRFLW at 0 range 1 .. 1;
Reserved_2_15 at 0 range 2 .. 15;
COMPARE at 0 range 16 .. 19;
Reserved_20_31 at 0 range 20 .. 31;
end record;
-- TICK event enable.
type EVTEN_TICK_Field is
(-- Event disabled.
Disabled,
-- Event enabled.
Enabled)
with Size => 1;
for EVTEN_TICK_Field use
(Disabled => 0,
Enabled => 1);
-- OVRFLW event enable.
type EVTEN_OVRFLW_Field is
(-- Event disabled.
Disabled,
-- Event enabled.
Enabled)
with Size => 1;
for EVTEN_OVRFLW_Field use
(Disabled => 0,
Enabled => 1);
-- COMPARE[0] event enable.
type EVTEN_COMPARE0_Field is
(-- Event disabled.
Disabled,
-- Event enabled.
Enabled)
with Size => 1;
for EVTEN_COMPARE0_Field use
(Disabled => 0,
Enabled => 1);
-- EVTEN_COMPARE array
type EVTEN_COMPARE_Field_Array is array (0 .. 3) of EVTEN_COMPARE0_Field
with Component_Size => 1, Size => 4;
-- Type definition for EVTEN_COMPARE
type EVTEN_COMPARE_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- COMPARE as a value
Val : HAL.UInt4;
when True =>
-- COMPARE as an array
Arr : EVTEN_COMPARE_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for EVTEN_COMPARE_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- Configures event enable routing to PPI for each RTC event.
type EVTEN_Register is record
-- TICK event enable.
TICK : EVTEN_TICK_Field := NRF_SVD.RTC.Disabled;
-- OVRFLW event enable.
OVRFLW : EVTEN_OVRFLW_Field := NRF_SVD.RTC.Disabled;
-- unspecified
Reserved_2_15 : HAL.UInt14 := 16#0#;
-- COMPARE[0] event enable.
COMPARE : EVTEN_COMPARE_Field :=
(As_Array => False, Val => 16#0#);
-- unspecified
Reserved_20_31 : HAL.UInt12 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for EVTEN_Register use record
TICK at 0 range 0 .. 0;
OVRFLW at 0 range 1 .. 1;
Reserved_2_15 at 0 range 2 .. 15;
COMPARE at 0 range 16 .. 19;
Reserved_20_31 at 0 range 20 .. 31;
end record;
-- Enable routing to PPI of TICK event.
type EVTENSET_TICK_Field is
(-- Event disabled.
Disabled,
-- Event enabled.
Enabled)
with Size => 1;
for EVTENSET_TICK_Field use
(Disabled => 0,
Enabled => 1);
-- Enable routing to PPI of TICK event.
type EVTENSET_TICK_Field_1 is
(-- Reset value for the field
Evtenset_Tick_Field_Reset,
-- Enable event on write.
Set)
with Size => 1;
for EVTENSET_TICK_Field_1 use
(Evtenset_Tick_Field_Reset => 0,
Set => 1);
-- Enable routing to PPI of OVRFLW event.
type EVTENSET_OVRFLW_Field is
(-- Event disabled.
Disabled,
-- Event enabled.
Enabled)
with Size => 1;
for EVTENSET_OVRFLW_Field use
(Disabled => 0,
Enabled => 1);
-- Enable routing to PPI of OVRFLW event.
type EVTENSET_OVRFLW_Field_1 is
(-- Reset value for the field
Evtenset_Ovrflw_Field_Reset,
-- Enable event on write.
Set)
with Size => 1;
for EVTENSET_OVRFLW_Field_1 use
(Evtenset_Ovrflw_Field_Reset => 0,
Set => 1);
-- Enable routing to PPI of COMPARE[0] event.
type EVTENSET_COMPARE0_Field is
(-- Event disabled.
Disabled,
-- Event enabled.
Enabled)
with Size => 1;
for EVTENSET_COMPARE0_Field use
(Disabled => 0,
Enabled => 1);
-- Enable routing to PPI of COMPARE[0] event.
type EVTENSET_COMPARE0_Field_1 is
(-- Reset value for the field
Evtenset_Compare0_Field_Reset,
-- Enable event on write.
Set)
with Size => 1;
for EVTENSET_COMPARE0_Field_1 use
(Evtenset_Compare0_Field_Reset => 0,
Set => 1);
-- EVTENSET_COMPARE array
type EVTENSET_COMPARE_Field_Array is array (0 .. 3)
of EVTENSET_COMPARE0_Field_1
with Component_Size => 1, Size => 4;
-- Type definition for EVTENSET_COMPARE
type EVTENSET_COMPARE_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- COMPARE as a value
Val : HAL.UInt4;
when True =>
-- COMPARE as an array
Arr : EVTENSET_COMPARE_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for EVTENSET_COMPARE_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- Enable events routing to PPI. The reading of this register gives the
-- value of EVTEN.
type EVTENSET_Register is record
-- Enable routing to PPI of TICK event.
TICK : EVTENSET_TICK_Field_1 := Evtenset_Tick_Field_Reset;
-- Enable routing to PPI of OVRFLW event.
OVRFLW : EVTENSET_OVRFLW_Field_1 := Evtenset_Ovrflw_Field_Reset;
-- unspecified
Reserved_2_15 : HAL.UInt14 := 16#0#;
-- Enable routing to PPI of COMPARE[0] event.
COMPARE : EVTENSET_COMPARE_Field :=
(As_Array => False, Val => 16#0#);
-- unspecified
Reserved_20_31 : HAL.UInt12 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for EVTENSET_Register use record
TICK at 0 range 0 .. 0;
OVRFLW at 0 range 1 .. 1;
Reserved_2_15 at 0 range 2 .. 15;
COMPARE at 0 range 16 .. 19;
Reserved_20_31 at 0 range 20 .. 31;
end record;
-- Disable routing to PPI of TICK event.
type EVTENCLR_TICK_Field is
(-- Event disabled.
Disabled,
-- Event enabled.
Enabled)
with Size => 1;
for EVTENCLR_TICK_Field use
(Disabled => 0,
Enabled => 1);
-- Disable routing to PPI of TICK event.
type EVTENCLR_TICK_Field_1 is
(-- Reset value for the field
Evtenclr_Tick_Field_Reset,
-- Disable event on write.
Clear)
with Size => 1;
for EVTENCLR_TICK_Field_1 use
(Evtenclr_Tick_Field_Reset => 0,
Clear => 1);
-- Disable routing to PPI of OVRFLW event.
type EVTENCLR_OVRFLW_Field is
(-- Event disabled.
Disabled,
-- Event enabled.
Enabled)
with Size => 1;
for EVTENCLR_OVRFLW_Field use
(Disabled => 0,
Enabled => 1);
-- Disable routing to PPI of OVRFLW event.
type EVTENCLR_OVRFLW_Field_1 is
(-- Reset value for the field
Evtenclr_Ovrflw_Field_Reset,
-- Disable event on write.
Clear)
with Size => 1;
for EVTENCLR_OVRFLW_Field_1 use
(Evtenclr_Ovrflw_Field_Reset => 0,
Clear => 1);
-- Disable routing to PPI of COMPARE[0] event.
type EVTENCLR_COMPARE0_Field is
(-- Event disabled.
Disabled,
-- Event enabled.
Enabled)
with Size => 1;
for EVTENCLR_COMPARE0_Field use
(Disabled => 0,
Enabled => 1);
-- Disable routing to PPI of COMPARE[0] event.
type EVTENCLR_COMPARE0_Field_1 is
(-- Reset value for the field
Evtenclr_Compare0_Field_Reset,
-- Disable event on write.
Clear)
with Size => 1;
for EVTENCLR_COMPARE0_Field_1 use
(Evtenclr_Compare0_Field_Reset => 0,
Clear => 1);
-- EVTENCLR_COMPARE array
type EVTENCLR_COMPARE_Field_Array is array (0 .. 3)
of EVTENCLR_COMPARE0_Field_1
with Component_Size => 1, Size => 4;
-- Type definition for EVTENCLR_COMPARE
type EVTENCLR_COMPARE_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- COMPARE as a value
Val : HAL.UInt4;
when True =>
-- COMPARE as an array
Arr : EVTENCLR_COMPARE_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for EVTENCLR_COMPARE_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- Disable events routing to PPI. The reading of this register gives the
-- value of EVTEN.
type EVTENCLR_Register is record
-- Disable routing to PPI of TICK event.
TICK : EVTENCLR_TICK_Field_1 := Evtenclr_Tick_Field_Reset;
-- Disable routing to PPI of OVRFLW event.
OVRFLW : EVTENCLR_OVRFLW_Field_1 := Evtenclr_Ovrflw_Field_Reset;
-- unspecified
Reserved_2_15 : HAL.UInt14 := 16#0#;
-- Disable routing to PPI of COMPARE[0] event.
COMPARE : EVTENCLR_COMPARE_Field :=
(As_Array => False, Val => 16#0#);
-- unspecified
Reserved_20_31 : HAL.UInt12 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for EVTENCLR_Register use record
TICK at 0 range 0 .. 0;
OVRFLW at 0 range 1 .. 1;
Reserved_2_15 at 0 range 2 .. 15;
COMPARE at 0 range 16 .. 19;
Reserved_20_31 at 0 range 20 .. 31;
end record;
subtype COUNTER_COUNTER_Field is HAL.UInt24;
-- Current COUNTER value.
type COUNTER_Register is record
-- Read-only. Counter value.
COUNTER : COUNTER_COUNTER_Field;
-- unspecified
Reserved_24_31 : HAL.UInt8;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for COUNTER_Register use record
COUNTER at 0 range 0 .. 23;
Reserved_24_31 at 0 range 24 .. 31;
end record;
subtype PRESCALER_PRESCALER_Field is HAL.UInt12;
-- 12-bit prescaler for COUNTER frequency (32768/(PRESCALER+1)). Must be
-- written when RTC is STOPed.
type PRESCALER_Register is record
-- RTC PRESCALER value.
PRESCALER : PRESCALER_PRESCALER_Field := 16#0#;
-- unspecified
Reserved_12_31 : HAL.UInt20 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for PRESCALER_Register use record
PRESCALER at 0 range 0 .. 11;
Reserved_12_31 at 0 range 12 .. 31;
end record;
subtype CC_COMPARE_Field is HAL.UInt24;
-- Capture/compare registers.
type CC_Register is record
-- Compare value.
COMPARE : CC_COMPARE_Field := 16#0#;
-- unspecified
Reserved_24_31 : HAL.UInt8 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CC_Register use record
COMPARE at 0 range 0 .. 23;
Reserved_24_31 at 0 range 24 .. 31;
end record;
-- Capture/compare registers.
type CC_Registers is array (0 .. 3) of CC_Register;
-- Peripheral power control.
type POWER_POWER_Field is
(-- Module power disabled.
Disabled,
-- Module power enabled.
Enabled)
with Size => 1;
for POWER_POWER_Field use
(Disabled => 0,
Enabled => 1);
-- Peripheral power control.
type POWER_Register is record
-- Peripheral power control.
POWER : POWER_POWER_Field := NRF_SVD.RTC.Disabled;
-- unspecified
Reserved_1_31 : HAL.UInt31 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for POWER_Register use record
POWER at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- Real time counter 0.
type RTC_Peripheral is record
-- Start RTC Counter.
TASKS_START : aliased HAL.UInt32;
-- Stop RTC Counter.
TASKS_STOP : aliased HAL.UInt32;
-- Clear RTC Counter.
TASKS_CLEAR : aliased HAL.UInt32;
-- Set COUNTER to 0xFFFFFFF0.
TASKS_TRIGOVRFLW : aliased HAL.UInt32;
-- Event on COUNTER increment.
EVENTS_TICK : aliased HAL.UInt32;
-- Event on COUNTER overflow.
EVENTS_OVRFLW : aliased HAL.UInt32;
-- Compare event on CC[n] match.
EVENTS_COMPARE : aliased EVENTS_COMPARE_Registers;
-- Interrupt enable set register.
INTENSET : aliased INTENSET_Register;
-- Interrupt enable clear register.
INTENCLR : aliased INTENCLR_Register;
-- Configures event enable routing to PPI for each RTC event.
EVTEN : aliased EVTEN_Register;
-- Enable events routing to PPI. The reading of this register gives the
-- value of EVTEN.
EVTENSET : aliased EVTENSET_Register;
-- Disable events routing to PPI. The reading of this register gives the
-- value of EVTEN.
EVTENCLR : aliased EVTENCLR_Register;
-- Current COUNTER value.
COUNTER : aliased COUNTER_Register;
-- 12-bit prescaler for COUNTER frequency (32768/(PRESCALER+1)). Must be
-- written when RTC is STOPed.
PRESCALER : aliased PRESCALER_Register;
-- Capture/compare registers.
CC : aliased CC_Registers;
-- Peripheral power control.
POWER : aliased POWER_Register;
end record
with Volatile;
for RTC_Peripheral use record
TASKS_START at 16#0# range 0 .. 31;
TASKS_STOP at 16#4# range 0 .. 31;
TASKS_CLEAR at 16#8# range 0 .. 31;
TASKS_TRIGOVRFLW at 16#C# range 0 .. 31;
EVENTS_TICK at 16#100# range 0 .. 31;
EVENTS_OVRFLW at 16#104# range 0 .. 31;
EVENTS_COMPARE at 16#140# range 0 .. 127;
INTENSET at 16#304# range 0 .. 31;
INTENCLR at 16#308# range 0 .. 31;
EVTEN at 16#340# range 0 .. 31;
EVTENSET at 16#344# range 0 .. 31;
EVTENCLR at 16#348# range 0 .. 31;
COUNTER at 16#504# range 0 .. 31;
PRESCALER at 16#508# range 0 .. 31;
CC at 16#540# range 0 .. 127;
POWER at 16#FFC# range 0 .. 31;
end record;
-- Real time counter 0.
RTC0_Periph : aliased RTC_Peripheral
with Import, Address => RTC0_Base;
-- Real time counter 1.
RTC1_Periph : aliased RTC_Peripheral
with Import, Address => RTC1_Base;
end NRF_SVD.RTC;
| 30.892287 | 82 | 0.61758 |
181025fe9deea029c35d3bdfa3ae512f3fe81feb | 5,036 | adb | Ada | source/web/soap/web_services-soap-handler_registry.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | source/web/soap/web_services-soap-handler_registry.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | source/web/soap/web_services-soap-handler_registry.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 4 | 2017-07-18T07:11:05.000Z | 2020-06-21T03:02:25.000Z | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Web Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2012, Vadim Godunko <[email protected]> --
-- 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 Ada.Containers.Hashed_Maps;
with Ada.Strings.Hash;
package body Web_Services.SOAP.Handler_Registry is
function Hash (Item : Ada.Tags.Tag) return Ada.Containers.Hash_Type;
package Tag_Handler_Maps is
new Ada.Containers.Hashed_Maps
(Ada.Tags.Tag,
Web_Services.SOAP.Handlers.SOAP_Message_Handler,
Hash,
Ada.Tags."=",
Web_Services.SOAP.Handlers."=");
Registry : Tag_Handler_Maps.Map;
----------
-- Hash --
----------
function Hash (Item : Ada.Tags.Tag) return Ada.Containers.Hash_Type is
use type Ada.Tags.Tag;
begin
if Item = Ada.Tags.No_Tag then
return 0;
else
return Ada.Strings.Hash (Ada.Tags.External_Tag (Item));
end if;
end Hash;
--------------
-- Register --
--------------
procedure Register
(Tag : Ada.Tags.Tag;
Handler : not null Web_Services.SOAP.Handlers.SOAP_Message_Handler) is
begin
Registry.Insert (Tag, Handler);
end Register;
--------------
-- Register --
--------------
procedure Register
(Handler : not null Web_Services.SOAP.Handlers.SOAP_RPC_Handler) is
begin
RPC_Registry.Append (Handler);
end Register;
-------------
-- Resolve --
-------------
function Resolve
(Tag : Ada.Tags.Tag)
return Web_Services.SOAP.Handlers.SOAP_Message_Handler
is
Position : constant Tag_Handler_Maps.Cursor := Registry.Find (Tag);
begin
if Tag_Handler_Maps.Has_Element (Position) then
return Tag_Handler_Maps.Element (Position);
else
return null;
end if;
end Resolve;
end Web_Services.SOAP.Handler_Registry;
| 42.677966 | 78 | 0.460286 |
594912312a180c9f264a89d47b1dc61b8e21c185 | 5,663 | adb | Ada | demo/adainclude/a-exetim.adb | e3l6/SSMDev | 2929757aab3842aefd84debb2d7c3e8b28c2b340 | [
"MIT"
] | 12 | 2017-06-08T14:19:57.000Z | 2022-03-09T02:48:59.000Z | demo/adainclude/a-exetim.adb | e3l6/SSMDev | 2929757aab3842aefd84debb2d7c3e8b28c2b340 | [
"MIT"
] | 6 | 2017-06-08T13:13:50.000Z | 2020-05-15T09:32:43.000Z | demo/adainclude/a-exetim.adb | e3l6/SSMDev | 2929757aab3842aefd84debb2d7c3e8b28c2b340 | [
"MIT"
] | 3 | 2017-06-30T14:05:06.000Z | 2022-02-17T12:20:45.000Z | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . E X E C U T I O N _ T I M E --
-- --
-- B o d y --
-- --
-- Copyright (C) 2007-2012, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- 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 Bare Board version of this package
with Ada.Task_Identification; use Ada.Task_Identification;
with Ada.Unchecked_Conversion;
with System.Tasking;
with System.Task_Primitives.Operations;
with System.OS_Interface; use System.OS_Interface;
with System.BB.Execution_Time;
with System.BB.Time;
with System.BB.Threads;
package body Ada.Execution_Time is
package BB_Exec_Time renames System.BB.Execution_Time;
function To_CPU_Time is new Ada.Unchecked_Conversion
(System.BB.Time.Time, CPU_Time);
-- Function to change the view from System.BB.Time.Time (unsigned 64-bit)
-- to CPU_Time (unsigned 64-bit).
--
-- CPU_Time is derived from Ada.Real_Time.Time which is derived from
-- System.BB.Time.Time. So CPU_Time and System.BB.Time.Time are the same
-- type, but Ada.Real_Time.Time is private so we don't have visibility.
---------
-- "+" --
---------
function "+"
(Left : CPU_Time;
Right : Ada.Real_Time.Time_Span) return CPU_Time
is
use type Ada.Real_Time.Time;
begin
return CPU_Time (Ada.Real_Time.Time (Left) + Right);
end "+";
function "+"
(Left : Ada.Real_Time.Time_Span;
Right : CPU_Time) return CPU_Time
is
use type Ada.Real_Time.Time;
begin
return CPU_Time (Left + Ada.Real_Time.Time (Right));
end "+";
---------
-- "-" --
---------
function "-"
(Left : CPU_Time;
Right : Ada.Real_Time.Time_Span) return CPU_Time
is
use type Ada.Real_Time.Time;
begin
return CPU_Time (Ada.Real_Time.Time (Left) - Right);
end "-";
function "-"
(Left : CPU_Time;
Right : CPU_Time) return Ada.Real_Time.Time_Span
is
use type Ada.Real_Time.Time;
begin
return (Ada.Real_Time.Time (Left) - Ada.Real_Time.Time (Right));
end "-";
-----------
-- Clock --
-----------
function Clock
(T : Ada.Task_Identification.Task_Id :=
Ada.Task_Identification.Current_Task) return CPU_Time
is
function To_Task_Id is new Ada.Unchecked_Conversion
(Ada.Task_Identification.Task_Id, System.Tasking.Task_Id);
Th : System.BB.Threads.Thread_Id;
begin
if T = Ada.Task_Identification.Null_Task_Id then
raise Program_Error;
end if;
Th := System.Task_Primitives.Operations.Get_Thread_Id (To_Task_Id (T));
return To_CPU_Time (BB_Exec_Time.Thread_Clock (Th));
end Clock;
-----------
-- Split --
-----------
procedure Split
(T : CPU_Time;
SC : out Ada.Real_Time.Seconds_Count;
TS : out Ada.Real_Time.Time_Span)
is
use type Ada.Real_Time.Time;
begin
Ada.Real_Time.Split (Ada.Real_Time.Time (T), SC, TS);
end Split;
-------------
-- Time_Of --
-------------
function Time_Of
(SC : Ada.Real_Time.Seconds_Count;
TS : Ada.Real_Time.Time_Span := Ada.Real_Time.Time_Span_Zero)
return CPU_Time
is
begin
return CPU_Time (Ada.Real_Time.Time_Of (SC, TS));
end Time_Of;
--------------------------
-- Clock_For_Interrupts --
--------------------------
function Clock_For_Interrupts return CPU_Time is
begin
return To_CPU_Time (BB_Exec_Time.Global_Interrupt_Clock);
end Clock_For_Interrupts;
end Ada.Execution_Time;
| 35.173913 | 78 | 0.492142 |
419d45ffb094e75f8cb43a62e6389c31ba98805a | 798 | ads | Ada | gdb/testsuite/gdb.ada/ptr_typedef/pck.ads | greyblue9/binutils-gdb | 05377632b124fe7600eea7f4ee0e9a35d1b0cbdc | [
"BSD-3-Clause"
] | 1 | 2020-10-14T03:24:35.000Z | 2020-10-14T03:24:35.000Z | gdb/testsuite/gdb.ada/ptr_typedef/pck.ads | greyblue9/binutils-gdb | 05377632b124fe7600eea7f4ee0e9a35d1b0cbdc | [
"BSD-3-Clause"
] | null | null | null | gdb/testsuite/gdb.ada/ptr_typedef/pck.ads | greyblue9/binutils-gdb | 05377632b124fe7600eea7f4ee0e9a35d1b0cbdc | [
"BSD-3-Clause"
] | null | null | null | -- Copyright 2011-2021 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
with System;
package Pck is
procedure Do_Nothing (A : System.Address);
end Pck;
| 39.9 | 73 | 0.738095 |
1227626139570d8f60adfc1042c8796446f3b1f5 | 229 | adb | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/nested_generic1_pkg.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 7 | 2020-05-02T17:34:05.000Z | 2021-10-17T10:15:18.000Z | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/nested_generic1_pkg.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/nested_generic1_pkg.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | package body Nested_Generic1_Pkg is
procedure Image_Generic
(Renderer : in not null Element_Renderer) is
begin
null;
end;
procedure Image_Standard_Instance is new Image_Generic;
end Nested_Generic1_Pkg;
| 19.083333 | 58 | 0.755459 |
41c6950441c6c773e7552b99190927e6901a381a | 1,461 | adb | Ada | src/plugins/plugin_management.adb | Okasu/Byron | 85b4b69fce59adecc8b5285f4a3bd6a561a038f4 | [
"BSD-2-Clause"
] | 1 | 2017-10-07T05:51:13.000Z | 2017-10-07T05:51:13.000Z | src/plugins/plugin_management.adb | gsmnv/Byron | 85b4b69fce59adecc8b5285f4a3bd6a561a038f4 | [
"BSD-2-Clause"
] | null | null | null | src/plugins/plugin_management.adb | gsmnv/Byron | 85b4b69fce59adecc8b5285f4a3bd6a561a038f4 | [
"BSD-2-Clause"
] | null | null | null | with Ada.Characters.Handling; use Ada.Characters.Handling;
package body Plugin_Management
is
function Get_Command (Message : IRC.Message) return Unbounded_String
is
Command : Unbounded_String;
begin
for I in 1 .. Length (Message.Content) loop
if Element (Message.Content, I) /= ' ' then
Append (Command, Element (Message.Content, I));
else
exit;
end if;
end loop;
return Command;
end Get_Command;
procedure Execute_Commands (Message : IRC.Message;
Owner : Unbounded_String;
Prefix : Character)
is
Command : constant String := To_Upper (To_String (Get_Command (Message)));
Answer : IRC.Message := Message;
begin
for I in 0 .. Plugins'Pos (Plugins'Last) loop
if Command = Prefix & To_Upper (Plugins'Image (Plugins'Val (I))) then
if Settings (Plugins'Val (I)) (Secure) and Message.Sender /= Owner then
Answer.Content := To_Unbounded_String ("You can't do that.");
IRC.Put_Message (Answer);
exit;
else
Callbacks (Plugins'Val (I)) (Message);
exit;
end if;
end if;
if Settings (Plugins'Val (I)) (Contextual) then
Callbacks (Plugins'Val (I)) (Message);
end if;
end loop;
end Execute_Commands;
end Plugin_Management;
| 32.466667 | 83 | 0.570157 |
a189e9c29c5452c0d381af2204ff92f69b2d0665 | 1,478 | ads | Ada | tier-1/xcb/source/thin/xcb-xcb_glx_get_minmax_parameteriv_cookie_t.ads | charlie5/cBound | 741be08197a61ad9c72553e3302f3b669902216d | [
"0BSD"
] | 2 | 2015-11-12T11:16:20.000Z | 2021-08-24T22:32:04.000Z | tier-1/xcb/source/thin/xcb-xcb_glx_get_minmax_parameteriv_cookie_t.ads | charlie5/cBound | 741be08197a61ad9c72553e3302f3b669902216d | [
"0BSD"
] | 1 | 2018-06-05T05:19:35.000Z | 2021-11-20T01:13:23.000Z | tier-1/xcb/source/thin/xcb-xcb_glx_get_minmax_parameteriv_cookie_t.ads | charlie5/cBound | 741be08197a61ad9c72553e3302f3b669902216d | [
"0BSD"
] | null | null | null | -- This file is generated by SWIG. Please do not modify by hand.
--
with Interfaces.C;
with Interfaces.C;
with Interfaces.C.Pointers;
package xcb.xcb_glx_get_minmax_parameteriv_cookie_t is
-- Item
--
type Item is record
sequence : aliased Interfaces.C.unsigned;
end record;
-- Item_Array
--
type Item_Array is
array
(Interfaces.C
.size_t range <>) of aliased xcb
.xcb_glx_get_minmax_parameteriv_cookie_t
.Item;
-- Pointer
--
package C_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_glx_get_minmax_parameteriv_cookie_t.Item,
Element_Array => xcb.xcb_glx_get_minmax_parameteriv_cookie_t.Item_Array,
Default_Terminator => (others => <>));
subtype Pointer is C_Pointers.Pointer;
-- Pointer_Array
--
type Pointer_Array is
array
(Interfaces.C
.size_t range <>) of aliased xcb
.xcb_glx_get_minmax_parameteriv_cookie_t
.Pointer;
-- Pointer_Pointer
--
package C_Pointer_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_glx_get_minmax_parameteriv_cookie_t.Pointer,
Element_Array =>
xcb.xcb_glx_get_minmax_parameteriv_cookie_t.Pointer_Array,
Default_Terminator => null);
subtype Pointer_Pointer is C_Pointer_Pointers.Pointer;
end xcb.xcb_glx_get_minmax_parameteriv_cookie_t;
| 26.392857 | 78 | 0.684032 |
2976fa5506670f095c5e55b41ffe9e1dd8e09d5f | 5,170 | adb | Ada | src/natools-hmac.adb | faelys/natools | 947c004e6f69ca144942c6af40e102d089223cf8 | [
"0BSD"
] | null | null | null | src/natools-hmac.adb | faelys/natools | 947c004e6f69ca144942c6af40e102d089223cf8 | [
"0BSD"
] | null | null | null | src/natools-hmac.adb | faelys/natools | 947c004e6f69ca144942c6af40e102d089223cf8 | [
"0BSD"
] | null | null | null | ------------------------------------------------------------------------------
-- Copyright (c) 2014, Natacha Porté --
-- --
-- Permission to use, copy, modify, and distribute this software for any --
-- purpose with or without fee is hereby granted, provided that the above --
-- copyright notice and this permission notice appear in all copies. --
-- --
-- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES --
-- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF --
-- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR --
-- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES --
-- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN --
-- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF --
-- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --
------------------------------------------------------------------------------
with Ada.Unchecked_Conversion;
package body Natools.HMAC is
function To_Stream_Element_Array (Key : String)
return Ada.Streams.Stream_Element_Array;
pragma Inline (To_Stream_Element_Array);
-- Convert a String into a Stream_Element_Array
function Pad
(Key : Ada.Streams.Stream_Element_Array;
Pattern : Ada.Streams.Stream_Element)
return Ada.Streams.Stream_Element_Array;
-- Scramble Key with the given pattern
Outer_Pattern : constant Ada.Streams.Stream_Element := 16#5C#;
Inner_Pattern : constant Ada.Streams.Stream_Element := 16#36#;
------------------------------
-- Local Helper Subprograms --
------------------------------
function To_Stream_Element_Array (Key : String)
return Ada.Streams.Stream_Element_Array
is
subtype Ad_Hoc_String is String (Key'Range);
subtype Ad_Hoc_Array
is Ada.Streams.Stream_Element_Array (1 .. Key'Length);
function Unchecked_Conversion is new Ada.Unchecked_Conversion
(Ad_Hoc_String, Ad_Hoc_Array);
begin
return Unchecked_Conversion (Key);
end To_Stream_Element_Array;
function Pad
(Key : Ada.Streams.Stream_Element_Array;
Pattern : Ada.Streams.Stream_Element)
return Ada.Streams.Stream_Element_Array
is
use type Ada.Streams.Stream_Element;
Result : Ada.Streams.Stream_Element_Array (Key'Range);
begin
for I in Result'Range loop
Result (I) := Key (I) xor Pattern;
end loop;
return Result;
end Pad;
--------------------
-- HAMC Interface --
--------------------
procedure Setup
(C : out Context;
Key : in Ada.Streams.Stream_Element_Array) is
begin
C := Create (Key);
end Setup;
procedure Setup
(C : out Context;
Key : in String) is
begin
C := Create (Key);
end Setup;
function Create (Key : Ada.Streams.Stream_Element_Array) return Context is
Result : Context
:= (Key => (others => 0),
Hash => Initial_Context);
use type Ada.Streams.Stream_Element_Count;
begin
if Key'Length <= Block_Size_In_SE then
Result.Key (1 .. Key'Length) := Key;
else
declare
Local_Hash : Hash_Context := Initial_Context;
begin
Update (Local_Hash, Key);
declare
Hashed_Key : constant Ada.Streams.Stream_Element_Array
:= Digest (Local_Hash);
begin
Result.Key (1 .. Hashed_Key'Length) := Hashed_Key;
end;
end;
end if;
Update (Result.Hash, Pad (Result.Key, Inner_Pattern));
return Result;
end Create;
function Create (Key : String) return Context is
begin
return Create (To_Stream_Element_Array (Key));
end Create;
procedure Update
(C : in out Context;
Input : in Ada.Streams.Stream_Element_Array) is
begin
Update (C.Hash, Input);
end Update;
procedure Update
(C : in out Context;
Input : in String) is
begin
Update (C.Hash, To_Stream_Element_Array (Input));
end Update;
function Digest (C : Context) return Ada.Streams.Stream_Element_Array is
Local_Hash : Hash_Context := Initial_Context;
begin
Update (Local_Hash, Pad (C.Key, Outer_Pattern));
Update (Local_Hash, Digest (C.Hash));
return Digest (Local_Hash);
end Digest;
function Digest (Key : String; Message : Ada.Streams.Stream_Element_Array)
return Ada.Streams.Stream_Element_Array
is
Local_Context : Context := Create (Key);
begin
Update (Local_Context, Message);
return Digest (Local_Context);
end Digest;
function Digest (Key, Message : Ada.Streams.Stream_Element_Array)
return Ada.Streams.Stream_Element_Array
is
Local_Context : Context := Create (Key);
begin
Update (Local_Context, Message);
return Digest (Local_Context);
end Digest;
end Natools.HMAC;
| 29.884393 | 78 | 0.602708 |
a1e85b3badd7466fae426b7e713746356f7430dc | 1,320 | adb | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/sso/r6.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 7 | 2020-05-02T17:34:05.000Z | 2021-10-17T10:15:18.000Z | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/sso/r6.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/sso/r6.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | -- { dg-do run }
with Init6; use Init6;
with Text_IO; use Text_IO;
with Dump;
procedure R6 is
function Get_Elem (R : R1) return Integer is
Tmp : R1 := R;
begin
return Tmp.A(1);
end;
procedure Set_Elem (R : access R1; I : Integer) is
Tmp : R1 := R.all;
begin
Tmp.A(1) := I;
R.all := Tmp;
end;
function Get_Elem (R : R2) return Integer is
Tmp : R2 := R;
begin
return Tmp.A(1);
end;
procedure Set_Elem (R : access R2; I : Integer) is
Tmp : R2 := R.all;
begin
Tmp.A(1) := I;
R.all := Tmp;
end;
A1 : aliased R1 := My_R1;
A2 : aliased R2 := My_R2;
begin
Put ("A1 :");
Dump (A1'Address, R1'Max_Size_In_Storage_Elements);
New_Line;
-- { dg-output "A1 : 78 56 34 12 00 ab 00 12 00 cd 00 34 00 ef 00 56.*\n" }
Put ("A2 :");
Dump (A2'Address, R1'Max_Size_In_Storage_Elements);
New_Line;
-- { dg-output "A2 : 12 34 56 78 12 00 ab 00 34 00 cd 00 56 00 ef 00.*\n" }
if Get_Elem (A1) /= 16#AB0012# then
raise Program_Error;
end if;
Set_Elem (A1'Access, 16#CD0034#);
if Get_Elem (A1) /= 16#CD0034# then
raise Program_Error;
end if;
if Get_Elem (A2) /= 16#AB0012# then
raise Program_Error;
end if;
Set_Elem (A2'Access, 16#CD0034#);
if Get_Elem (A2) /= 16#CD0034# then
raise Program_Error;
end if;
end;
| 19.130435 | 77 | 0.598485 |
4da6000797e2aa61764bc805470f8dbbfbc62637 | 372,880 | adb | Ada | final-project/repositories/Deep_Learning_Inference_Accelerator_with_CNNIOT/MSOC_final-main/finalconv_hls/parallel_Cin/.autopilot/db/load_filter_buffer.adb | bol-edu/2020-fall-ntu | 5e009875dec5a3bbcebd1b3fae327990371d1b6a | [
"MIT"
] | 7 | 2021-02-10T17:59:48.000Z | 2021-09-27T15:02:56.000Z | final-project/repositories/Deep_Learning_Inference_Accelerator_with_CNNIOT/MSOC_final-main/finalconv_hls/parallel_Cin/.autopilot/db/load_filter_buffer.adb | bol-edu/2020-fall-ntu | 5e009875dec5a3bbcebd1b3fae327990371d1b6a | [
"MIT"
] | null | null | null | final-project/repositories/Deep_Learning_Inference_Accelerator_with_CNNIOT/MSOC_final-main/finalconv_hls/parallel_Cin/.autopilot/db/load_filter_buffer.adb | bol-edu/2020-fall-ntu | 5e009875dec5a3bbcebd1b3fae327990371d1b6a | [
"MIT"
] | 1 | 2022-03-22T01:46:01.000Z | 2022-03-22T01:46:01.000Z | <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE boost_serialization>
<boost_serialization signature="serialization::archive" version="15">
<syndb class_id="0" tracking_level="0" version="0">
<userIPLatency>-1</userIPLatency>
<userIPName/>
<cdfg class_id="1" tracking_level="1" version="0" object_id="_0">
<name>load_filter_buffer</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>28</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>wgt</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>wgt</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>512</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs class_id="7" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_2">
<Value>
<Obj>
<type>1</type>
<id>2</id>
<name>filter_buff_0_0_0</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[0][0][0]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</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>filter_buff_0_0_1</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[0][0][1]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</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>filter_buff_0_0_2</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[0][0][2]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</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>filter_buff_0_1_0</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[0][1][0]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</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>filter_buff_0_1_1</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[0][1][1]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</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>filter_buff_0_1_2</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[0][1][2]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</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>filter_buff_0_2_0</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[0][2][0]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</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>filter_buff_0_2_1</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[0][2][1]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</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>filter_buff_0_2_2</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[0][2][2]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</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>filter_buff_1_0_0</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[1][0][0]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</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>filter_buff_1_0_1</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[1][0][1]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</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>filter_buff_1_0_2</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[1][0][2]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</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>filter_buff_1_1_0</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[1][1][0]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</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>filter_buff_1_1_1</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[1][1][1]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</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>filter_buff_1_1_2</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[1][1][2]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</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>filter_buff_1_2_0</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[1][2][0]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</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>filter_buff_1_2_1</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[1][2][1]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</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>filter_buff_1_2_2</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[1][2][2]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</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>filter_buff_2_0_0</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[2][0][0]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_21">
<Value>
<Obj>
<type>1</type>
<id>21</id>
<name>filter_buff_2_0_1</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[2][0][1]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_22">
<Value>
<Obj>
<type>1</type>
<id>22</id>
<name>filter_buff_2_0_2</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[2][0][2]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_23">
<Value>
<Obj>
<type>1</type>
<id>23</id>
<name>filter_buff_2_1_0</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[2][1][0]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_24">
<Value>
<Obj>
<type>1</type>
<id>24</id>
<name>filter_buff_2_1_1</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[2][1][1]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_25">
<Value>
<Obj>
<type>1</type>
<id>25</id>
<name>filter_buff_2_1_2</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[2][1][2]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_26">
<Value>
<Obj>
<type>1</type>
<id>26</id>
<name>filter_buff_2_2_0</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[2][2][0]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_27">
<Value>
<Obj>
<type>1</type>
<id>27</id>
<name>filter_buff_2_2_1</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[2][2][1]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_28">
<Value>
<Obj>
<type>1</type>
<id>28</id>
<name>filter_buff_2_2_2</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>filter_buff[2][2][2]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>6</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>92</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>30</id>
<name>_ln113</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>113</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="10" tracking_level="0" version="0">
<first>D:\Course\mSOC\final</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>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>113</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>134</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.76</m_delay>
<m_topoIndex>1</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>32</id>
<name>indvar_flatten</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>113</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>113</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>136</item>
<item>137</item>
<item>138</item>
<item>139</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>2</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>33</id>
<name>m_0</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>128</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>128</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>141</item>
<item>142</item>
<item>143</item>
<item>144</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>3</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>34</id>
<name>n_0</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>n</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>2</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>4</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>35</id>
<name>icmp_ln113</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>113</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>113</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln113_fu_526_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>150</item>
<item>152</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.36</m_delay>
<m_topoIndex>5</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>36</id>
<name>add_ln113</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>113</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>113</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>add_ln113_fu_532_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>153</item>
<item>155</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.78</m_delay>
<m_topoIndex>6</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name>_ln113</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>113</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>113</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>156</item>
<item>157</item>
<item>158</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>7</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>icmp_ln115</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>115</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>115</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln115_fu_538_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>163</item>
<item>165</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>8</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name>select_ln128</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>128</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>128</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>select_ln128_fu_544_p3</rtlName>
<coreName/>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>166</item>
<item>167</item>
<item>168</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.99</m_delay>
<m_topoIndex>9</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>42</id>
<name>add_ln113_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>113</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>113</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>add_ln113_1_fu_552_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>170</item>
<item>171</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.65</m_delay>
<m_topoIndex>10</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name>select_ln128_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>128</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>128</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>select_ln128_1_fu_558_p3</rtlName>
<coreName/>
</Obj>
<bitwidth>3</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.98</m_delay>
<m_topoIndex>11</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_40">
<Value>
<Obj>
<type>0</type>
<id>44</id>
<name>zext_ln128</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>128</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>128</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>zext_ln128_fu_566_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>175</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>12</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>47</id>
<name>wgt_read</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>119</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>119</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>512</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>177</item>
<item>178</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>13</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_42">
<Value>
<Obj>
<type>0</type>
<id>48</id>
<name>trunc_ln119</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>119</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>119</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>trunc_ln119_fu_597_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>179</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>14</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_43">
<Value>
<Obj>
<type>0</type>
<id>49</id>
<name>bitcast_ln119</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>119</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>119</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>bitcast_ln119_fu_601_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>180</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>15</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_44">
<Value>
<Obj>
<type>0</type>
<id>50</id>
<name>wgt_f1_load_new6</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>120</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>120</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>wgt_f1_load_new6_fu_608_p4</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>182</item>
<item>183</item>
<item>185</item>
<item>187</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>16</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_45">
<Value>
<Obj>
<type>0</type>
<id>51</id>
<name>bitcast_ln120</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>120</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>120</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>bitcast_ln120_fu_618_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>188</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>17</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_46">
<Value>
<Obj>
<type>0</type>
<id>52</id>
<name>wgt_f2_load_new</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>121</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>121</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>wgt_f2_load_new_fu_625_p4</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>189</item>
<item>190</item>
<item>192</item>
<item>194</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>18</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_47">
<Value>
<Obj>
<type>0</type>
<id>53</id>
<name>bitcast_ln121</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>121</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>121</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>bitcast_ln121_fu_635_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>195</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>19</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_48">
<Value>
<Obj>
<type>0</type>
<id>54</id>
<name>wgt_f3_load_new</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>122</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>122</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>wgt_f3_load_new_fu_642_p4</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>196</item>
<item>197</item>
<item>199</item>
<item>201</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>20</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_49">
<Value>
<Obj>
<type>0</type>
<id>55</id>
<name>bitcast_ln122</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>122</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>122</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>bitcast_ln122_fu_652_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>202</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>21</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_50">
<Value>
<Obj>
<type>0</type>
<id>56</id>
<name>wgt_f4_load_new</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>123</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>123</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>wgt_f4_load_new_fu_659_p4</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>203</item>
<item>204</item>
<item>206</item>
<item>208</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>22</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_51">
<Value>
<Obj>
<type>0</type>
<id>57</id>
<name>bitcast_ln123</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>123</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>123</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>bitcast_ln123_fu_669_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>209</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>23</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_52">
<Value>
<Obj>
<type>0</type>
<id>58</id>
<name>wgt_f5_load_new</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>124</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>124</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>wgt_f5_load_new_fu_676_p4</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>210</item>
<item>211</item>
<item>213</item>
<item>215</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>24</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_53">
<Value>
<Obj>
<type>0</type>
<id>59</id>
<name>bitcast_ln124</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>124</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>124</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>bitcast_ln124_fu_686_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>216</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>25</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_54">
<Value>
<Obj>
<type>0</type>
<id>60</id>
<name>wgt_f6_load_new</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>125</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>wgt_f6_load_new_fu_693_p4</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>217</item>
<item>218</item>
<item>220</item>
<item>222</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="_55">
<Value>
<Obj>
<type>0</type>
<id>61</id>
<name>bitcast_ln125</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>125</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>bitcast_ln125_fu_703_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>223</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>27</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_56">
<Value>
<Obj>
<type>0</type>
<id>62</id>
<name>wgt_f7_load_new</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>126</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>126</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>wgt_f7_load_new_fu_710_p4</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>224</item>
<item>225</item>
<item>227</item>
<item>229</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>28</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_57">
<Value>
<Obj>
<type>0</type>
<id>63</id>
<name>bitcast_ln126</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>126</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>126</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>bitcast_ln126_fu_720_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>230</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>29</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_58">
<Value>
<Obj>
<type>0</type>
<id>64</id>
<name>wgt_f8_load_new</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>127</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>127</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>wgt_f8_load_new_fu_727_p4</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>231</item>
<item>232</item>
<item>234</item>
<item>236</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>30</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_59">
<Value>
<Obj>
<type>0</type>
<id>65</id>
<name>bitcast_ln127</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>127</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>127</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>bitcast_ln127_fu_737_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>237</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>31</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_60">
<Value>
<Obj>
<type>0</type>
<id>66</id>
<name>_ln119</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>119</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>119</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>6</count>
<item_version>0</item_version>
<item>238</item>
<item>239</item>
<item>240</item>
<item>241</item>
<item>242</item>
<item>243</item>
</oprand_edges>
<opcode>switch</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.13</m_delay>
<m_topoIndex>32</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_61">
<Value>
<Obj>
<type>0</type>
<id>68</id>
<name>filter_buff_1_0_0_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>119</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>119</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>291</item>
<item>292</item>
<item>293</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>33</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_62">
<Value>
<Obj>
<type>0</type>
<id>69</id>
<name>filter_buff_1_0_0_1_write_ln119</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>119</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>119</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>294</item>
<item>295</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>34</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_63">
<Value>
<Obj>
<type>0</type>
<id>70</id>
<name>filter_buff_1_0_1_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>120</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>120</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>296</item>
<item>297</item>
<item>298</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>35</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_64">
<Value>
<Obj>
<type>0</type>
<id>71</id>
<name>filter_buff_1_0_1_1_write_ln120</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>120</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>120</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>299</item>
<item>300</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>36</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_65">
<Value>
<Obj>
<type>0</type>
<id>72</id>
<name>filter_buff_1_0_2_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>121</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>121</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>301</item>
<item>302</item>
<item>303</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>37</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_66">
<Value>
<Obj>
<type>0</type>
<id>73</id>
<name>filter_buff_1_0_2_1_write_ln121</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>121</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>121</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>304</item>
<item>305</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>38</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_67">
<Value>
<Obj>
<type>0</type>
<id>74</id>
<name>filter_buff_1_1_0_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>122</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>122</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>306</item>
<item>307</item>
<item>308</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>39</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_68">
<Value>
<Obj>
<type>0</type>
<id>75</id>
<name>filter_buff_1_1_0_1_write_ln122</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>122</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>122</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>309</item>
<item>310</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>40</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_69">
<Value>
<Obj>
<type>0</type>
<id>76</id>
<name>filter_buff_1_1_1_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>123</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>123</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>311</item>
<item>312</item>
<item>313</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>41</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_70">
<Value>
<Obj>
<type>0</type>
<id>77</id>
<name>filter_buff_1_1_1_1_write_ln123</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>123</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>123</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>314</item>
<item>315</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>42</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_71">
<Value>
<Obj>
<type>0</type>
<id>78</id>
<name>filter_buff_1_1_2_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>124</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>124</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>316</item>
<item>317</item>
<item>318</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>43</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_72">
<Value>
<Obj>
<type>0</type>
<id>79</id>
<name>filter_buff_1_1_2_1_write_ln124</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>124</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>124</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>319</item>
<item>320</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>44</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_73">
<Value>
<Obj>
<type>0</type>
<id>80</id>
<name>filter_buff_1_2_0_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>125</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>321</item>
<item>322</item>
<item>323</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>45</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_74">
<Value>
<Obj>
<type>0</type>
<id>81</id>
<name>filter_buff_1_2_0_1_write_ln125</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>125</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>324</item>
<item>325</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>46</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_75">
<Value>
<Obj>
<type>0</type>
<id>82</id>
<name>filter_buff_1_2_1_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>126</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>126</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>326</item>
<item>327</item>
<item>328</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="_76">
<Value>
<Obj>
<type>0</type>
<id>83</id>
<name>filter_buff_1_2_1_1_write_ln126</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>126</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>126</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>329</item>
<item>330</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>48</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_77">
<Value>
<Obj>
<type>0</type>
<id>84</id>
<name>filter_buff_1_2_2_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>127</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>127</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>331</item>
<item>332</item>
<item>333</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>49</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_78">
<Value>
<Obj>
<type>0</type>
<id>85</id>
<name>filter_buff_1_2_2_1_write_ln127</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>127</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>127</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>334</item>
<item>335</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>50</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_79">
<Value>
<Obj>
<type>0</type>
<id>86</id>
<name>_ln0</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>336</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>51</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_80">
<Value>
<Obj>
<type>0</type>
<id>88</id>
<name>filter_buff_0_0_0_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>119</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>119</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>244</item>
<item>246</item>
<item>247</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="_81">
<Value>
<Obj>
<type>0</type>
<id>89</id>
<name>filter_buff_0_0_0_1_write_ln119</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>119</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>119</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>248</item>
<item>249</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>53</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_82">
<Value>
<Obj>
<type>0</type>
<id>90</id>
<name>filter_buff_0_0_1_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>120</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>120</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>250</item>
<item>251</item>
<item>252</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>54</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_83">
<Value>
<Obj>
<type>0</type>
<id>91</id>
<name>filter_buff_0_0_1_1_write_ln120</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>120</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>120</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>253</item>
<item>254</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>55</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_84">
<Value>
<Obj>
<type>0</type>
<id>92</id>
<name>filter_buff_0_0_2_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>121</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>121</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>255</item>
<item>256</item>
<item>257</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>56</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_85">
<Value>
<Obj>
<type>0</type>
<id>93</id>
<name>filter_buff_0_0_2_1_write_ln121</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>121</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>121</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>258</item>
<item>259</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>57</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_86">
<Value>
<Obj>
<type>0</type>
<id>94</id>
<name>filter_buff_0_1_0_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>122</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>122</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>260</item>
<item>261</item>
<item>262</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>58</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_87">
<Value>
<Obj>
<type>0</type>
<id>95</id>
<name>filter_buff_0_1_0_1_write_ln122</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>122</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>122</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>263</item>
<item>264</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>59</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_88">
<Value>
<Obj>
<type>0</type>
<id>96</id>
<name>filter_buff_0_1_1_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>123</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>123</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>265</item>
<item>266</item>
<item>267</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>60</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_89">
<Value>
<Obj>
<type>0</type>
<id>97</id>
<name>filter_buff_0_1_1_1_write_ln123</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>123</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>123</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>268</item>
<item>269</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>61</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_90">
<Value>
<Obj>
<type>0</type>
<id>98</id>
<name>filter_buff_0_1_2_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>124</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>124</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>270</item>
<item>271</item>
<item>272</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>62</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_91">
<Value>
<Obj>
<type>0</type>
<id>99</id>
<name>filter_buff_0_1_2_1_write_ln124</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>124</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>124</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>273</item>
<item>274</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>63</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_92">
<Value>
<Obj>
<type>0</type>
<id>100</id>
<name>filter_buff_0_2_0_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>125</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>275</item>
<item>276</item>
<item>277</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>64</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_93">
<Value>
<Obj>
<type>0</type>
<id>101</id>
<name>filter_buff_0_2_0_1_write_ln125</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>125</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>278</item>
<item>279</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>65</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_94">
<Value>
<Obj>
<type>0</type>
<id>102</id>
<name>filter_buff_0_2_1_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>126</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>126</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>280</item>
<item>281</item>
<item>282</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>66</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_95">
<Value>
<Obj>
<type>0</type>
<id>103</id>
<name>filter_buff_0_2_1_1_write_ln126</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>126</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>126</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>283</item>
<item>284</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>67</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_96">
<Value>
<Obj>
<type>0</type>
<id>104</id>
<name>filter_buff_0_2_2_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>127</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>127</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>285</item>
<item>286</item>
<item>287</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>68</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_97">
<Value>
<Obj>
<type>0</type>
<id>105</id>
<name>filter_buff_0_2_2_1_write_ln127</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>127</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>127</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>288</item>
<item>289</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>69</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_98">
<Value>
<Obj>
<type>0</type>
<id>106</id>
<name>_ln0</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>290</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>70</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_99">
<Value>
<Obj>
<type>0</type>
<id>108</id>
<name>filter_buff_2_0_0_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>119</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>119</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>337</item>
<item>338</item>
<item>339</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>71</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_100">
<Value>
<Obj>
<type>0</type>
<id>109</id>
<name>filter_buff_2_0_0_1_write_ln119</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>119</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>119</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>340</item>
<item>341</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>72</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_101">
<Value>
<Obj>
<type>0</type>
<id>110</id>
<name>filter_buff_2_0_1_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>120</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>120</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>342</item>
<item>343</item>
<item>344</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>73</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_102">
<Value>
<Obj>
<type>0</type>
<id>111</id>
<name>filter_buff_2_0_1_1_write_ln120</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>120</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>120</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>345</item>
<item>346</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>74</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_103">
<Value>
<Obj>
<type>0</type>
<id>112</id>
<name>filter_buff_2_0_2_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>121</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>121</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>347</item>
<item>348</item>
<item>349</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>75</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_104">
<Value>
<Obj>
<type>0</type>
<id>113</id>
<name>filter_buff_2_0_2_1_write_ln121</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>121</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>121</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>350</item>
<item>351</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>76</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_105">
<Value>
<Obj>
<type>0</type>
<id>114</id>
<name>filter_buff_2_1_0_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>122</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>122</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>352</item>
<item>353</item>
<item>354</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>77</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_106">
<Value>
<Obj>
<type>0</type>
<id>115</id>
<name>filter_buff_2_1_0_1_write_ln122</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>122</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>122</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>355</item>
<item>356</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>78</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_107">
<Value>
<Obj>
<type>0</type>
<id>116</id>
<name>filter_buff_2_1_1_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>123</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>123</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>357</item>
<item>358</item>
<item>359</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>79</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_108">
<Value>
<Obj>
<type>0</type>
<id>117</id>
<name>filter_buff_2_1_1_1_write_ln123</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>123</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>123</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>360</item>
<item>361</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>80</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_109">
<Value>
<Obj>
<type>0</type>
<id>118</id>
<name>filter_buff_2_1_2_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>124</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>124</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>362</item>
<item>363</item>
<item>364</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>81</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_110">
<Value>
<Obj>
<type>0</type>
<id>119</id>
<name>filter_buff_2_1_2_1_write_ln124</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>124</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>124</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>365</item>
<item>366</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>82</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_111">
<Value>
<Obj>
<type>0</type>
<id>120</id>
<name>filter_buff_2_2_0_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>125</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>367</item>
<item>368</item>
<item>369</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>83</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_112">
<Value>
<Obj>
<type>0</type>
<id>121</id>
<name>filter_buff_2_2_0_1_write_ln125</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>125</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>370</item>
<item>371</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>84</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_113">
<Value>
<Obj>
<type>0</type>
<id>122</id>
<name>filter_buff_2_2_1_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>126</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>126</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>372</item>
<item>373</item>
<item>374</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>85</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_114">
<Value>
<Obj>
<type>0</type>
<id>123</id>
<name>filter_buff_2_2_1_1_write_ln126</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>126</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>126</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>375</item>
<item>376</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>86</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_115">
<Value>
<Obj>
<type>0</type>
<id>124</id>
<name>filter_buff_2_2_2_1</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>127</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>127</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>377</item>
<item>378</item>
<item>379</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>87</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_116">
<Value>
<Obj>
<type>0</type>
<id>125</id>
<name>filter_buff_2_2_2_1_write_ln127</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>127</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>127</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>380</item>
<item>381</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>88</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_117">
<Value>
<Obj>
<type>0</type>
<id>126</id>
<name>_ln0</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>382</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>89</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_118">
<Value>
<Obj>
<type>0</type>
<id>129</id>
<name>n</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>115</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>115</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>n</originalName>
<rtlName>n_fu_744_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>159</item>
<item>161</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>90</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_119">
<Value>
<Obj>
<type>0</type>
<id>130</id>
<name>_ln115</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>115</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>115</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>162</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>91</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_120">
<Value>
<Obj>
<type>0</type>
<id>132</id>
<name>_ln131</name>
<fileName>finalconv_Jan19.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>131</lineNumber>
<contextFuncName>load_filter_buffer</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalconv_Jan19.cpp</first>
<second>load_filter_buffer</second>
</first>
<second>131</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>0</count>
<item_version>0</item_version>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>92</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>25</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_121">
<Value>
<Obj>
<type>2</type>
<id>135</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>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_122">
<Value>
<Obj>
<type>2</type>
<id>140</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_123">
<Value>
<Obj>
<type>2</type>
<id>145</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_124">
<Value>
<Obj>
<type>2</type>
<id>151</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>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>18</content>
</item>
<item class_id_reference="16" object_id="_125">
<Value>
<Obj>
<type>2</type>
<id>154</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>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_126">
<Value>
<Obj>
<type>2</type>
<id>160</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_127">
<Value>
<Obj>
<type>2</type>
<id>164</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>3</content>
</item>
<item class_id_reference="16" object_id="_128">
<Value>
<Obj>
<type>2</type>
<id>169</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_129">
<Value>
<Obj>
<type>2</type>
<id>184</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>32</content>
</item>
<item class_id_reference="16" object_id="_130">
<Value>
<Obj>
<type>2</type>
<id>186</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>63</content>
</item>
<item class_id_reference="16" object_id="_131">
<Value>
<Obj>
<type>2</type>
<id>191</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>64</content>
</item>
<item class_id_reference="16" object_id="_132">
<Value>
<Obj>
<type>2</type>
<id>193</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>95</content>
</item>
<item class_id_reference="16" object_id="_133">
<Value>
<Obj>
<type>2</type>
<id>198</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>96</content>
</item>
<item class_id_reference="16" object_id="_134">
<Value>
<Obj>
<type>2</type>
<id>200</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>127</content>
</item>
<item class_id_reference="16" object_id="_135">
<Value>
<Obj>
<type>2</type>
<id>205</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>128</content>
</item>
<item class_id_reference="16" object_id="_136">
<Value>
<Obj>
<type>2</type>
<id>207</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>159</content>
</item>
<item class_id_reference="16" object_id="_137">
<Value>
<Obj>
<type>2</type>
<id>212</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>160</content>
</item>
<item class_id_reference="16" object_id="_138">
<Value>
<Obj>
<type>2</type>
<id>214</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>191</content>
</item>
<item class_id_reference="16" object_id="_139">
<Value>
<Obj>
<type>2</type>
<id>219</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>192</content>
</item>
<item class_id_reference="16" object_id="_140">
<Value>
<Obj>
<type>2</type>
<id>221</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>223</content>
</item>
<item class_id_reference="16" object_id="_141">
<Value>
<Obj>
<type>2</type>
<id>226</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>224</content>
</item>
<item class_id_reference="16" object_id="_142">
<Value>
<Obj>
<type>2</type>
<id>228</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>255</content>
</item>
<item class_id_reference="16" object_id="_143">
<Value>
<Obj>
<type>2</type>
<id>233</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>256</content>
</item>
<item class_id_reference="16" object_id="_144">
<Value>
<Obj>
<type>2</type>
<id>235</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>287</content>
</item>
<item class_id_reference="16" object_id="_145">
<Value>
<Obj>
<type>2</type>
<id>245</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>8</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_146">
<Obj>
<type>3</type>
<id>31</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_147">
<Obj>
<type>3</type>
<id>38</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>6</count>
<item_version>0</item_version>
<item>32</item>
<item>33</item>
<item>34</item>
<item>35</item>
<item>36</item>
<item>37</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_148">
<Obj>
<type>3</type>
<id>67</id>
<name>hls_label_4_begin</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>25</count>
<item_version>0</item_version>
<item>40</item>
<item>41</item>
<item>42</item>
<item>43</item>
<item>44</item>
<item>47</item>
<item>48</item>
<item>49</item>
<item>50</item>
<item>51</item>
<item>52</item>
<item>53</item>
<item>54</item>
<item>55</item>
<item>56</item>
<item>57</item>
<item>58</item>
<item>59</item>
<item>60</item>
<item>61</item>
<item>62</item>
<item>63</item>
<item>64</item>
<item>65</item>
<item>66</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_149">
<Obj>
<type>3</type>
<id>87</id>
<name>branch25</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>19</count>
<item_version>0</item_version>
<item>68</item>
<item>69</item>
<item>70</item>
<item>71</item>
<item>72</item>
<item>73</item>
<item>74</item>
<item>75</item>
<item>76</item>
<item>77</item>
<item>78</item>
<item>79</item>
<item>80</item>
<item>81</item>
<item>82</item>
<item>83</item>
<item>84</item>
<item>85</item>
<item>86</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_150">
<Obj>
<type>3</type>
<id>107</id>
<name>branch24</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>19</count>
<item_version>0</item_version>
<item>88</item>
<item>89</item>
<item>90</item>
<item>91</item>
<item>92</item>
<item>93</item>
<item>94</item>
<item>95</item>
<item>96</item>
<item>97</item>
<item>98</item>
<item>99</item>
<item>100</item>
<item>101</item>
<item>102</item>
<item>103</item>
<item>104</item>
<item>105</item>
<item>106</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_151">
<Obj>
<type>3</type>
<id>127</id>
<name>branch26</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>19</count>
<item_version>0</item_version>
<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>
<item>118</item>
<item>119</item>
<item>120</item>
<item>121</item>
<item>122</item>
<item>123</item>
<item>124</item>
<item>125</item>
<item>126</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_152">
<Obj>
<type>3</type>
<id>131</id>
<name>hls_label_4_end</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>129</item>
<item>130</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_153">
<Obj>
<type>3</type>
<id>133</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>132</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>223</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_154">
<id>134</id>
<edge_type>2</edge_type>
<source_obj>38</source_obj>
<sink_obj>30</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_155">
<id>136</id>
<edge_type>1</edge_type>
<source_obj>135</source_obj>
<sink_obj>32</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_156">
<id>137</id>
<edge_type>2</edge_type>
<source_obj>31</source_obj>
<sink_obj>32</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_157">
<id>138</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>32</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_158">
<id>139</id>
<edge_type>2</edge_type>
<source_obj>131</source_obj>
<sink_obj>32</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_159">
<id>141</id>
<edge_type>1</edge_type>
<source_obj>140</source_obj>
<sink_obj>33</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_160">
<id>142</id>
<edge_type>2</edge_type>
<source_obj>31</source_obj>
<sink_obj>33</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_161">
<id>143</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>33</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_162">
<id>144</id>
<edge_type>2</edge_type>
<source_obj>131</source_obj>
<sink_obj>33</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_163">
<id>146</id>
<edge_type>1</edge_type>
<source_obj>145</source_obj>
<sink_obj>34</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_164">
<id>147</id>
<edge_type>2</edge_type>
<source_obj>31</source_obj>
<sink_obj>34</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_165">
<id>148</id>
<edge_type>1</edge_type>
<source_obj>129</source_obj>
<sink_obj>34</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_166">
<id>149</id>
<edge_type>2</edge_type>
<source_obj>131</source_obj>
<sink_obj>34</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_167">
<id>150</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_168">
<id>152</id>
<edge_type>1</edge_type>
<source_obj>151</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_169">
<id>153</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>36</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_170">
<id>155</id>
<edge_type>1</edge_type>
<source_obj>154</source_obj>
<sink_obj>36</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_171">
<id>156</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_172">
<id>157</id>
<edge_type>2</edge_type>
<source_obj>67</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_173">
<id>158</id>
<edge_type>2</edge_type>
<source_obj>133</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_174">
<id>159</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>129</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_175">
<id>161</id>
<edge_type>1</edge_type>
<source_obj>160</source_obj>
<sink_obj>129</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_176">
<id>162</id>
<edge_type>2</edge_type>
<source_obj>38</source_obj>
<sink_obj>130</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_177">
<id>163</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_178">
<id>165</id>
<edge_type>1</edge_type>
<source_obj>164</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_179">
<id>166</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_180">
<id>167</id>
<edge_type>1</edge_type>
<source_obj>145</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_181">
<id>168</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_182">
<id>170</id>
<edge_type>1</edge_type>
<source_obj>169</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_183">
<id>171</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_184">
<id>172</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="_185">
<id>173</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_186">
<id>174</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_187">
<id>175</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>44</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_188">
<id>178</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_189">
<id>179</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>48</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_190">
<id>180</id>
<edge_type>1</edge_type>
<source_obj>48</source_obj>
<sink_obj>49</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_191">
<id>183</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_192">
<id>185</id>
<edge_type>1</edge_type>
<source_obj>184</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_193">
<id>187</id>
<edge_type>1</edge_type>
<source_obj>186</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_194">
<id>188</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>51</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_195">
<id>190</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>52</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_196">
<id>192</id>
<edge_type>1</edge_type>
<source_obj>191</source_obj>
<sink_obj>52</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_197">
<id>194</id>
<edge_type>1</edge_type>
<source_obj>193</source_obj>
<sink_obj>52</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_198">
<id>195</id>
<edge_type>1</edge_type>
<source_obj>52</source_obj>
<sink_obj>53</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_199">
<id>197</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>54</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_200">
<id>199</id>
<edge_type>1</edge_type>
<source_obj>198</source_obj>
<sink_obj>54</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_201">
<id>201</id>
<edge_type>1</edge_type>
<source_obj>200</source_obj>
<sink_obj>54</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_202">
<id>202</id>
<edge_type>1</edge_type>
<source_obj>54</source_obj>
<sink_obj>55</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_203">
<id>204</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>56</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_204">
<id>206</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>56</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_205">
<id>208</id>
<edge_type>1</edge_type>
<source_obj>207</source_obj>
<sink_obj>56</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_206">
<id>209</id>
<edge_type>1</edge_type>
<source_obj>56</source_obj>
<sink_obj>57</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_207">
<id>211</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_208">
<id>213</id>
<edge_type>1</edge_type>
<source_obj>212</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_209">
<id>215</id>
<edge_type>1</edge_type>
<source_obj>214</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_210">
<id>216</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="_211">
<id>218</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>60</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_212">
<id>220</id>
<edge_type>1</edge_type>
<source_obj>219</source_obj>
<sink_obj>60</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_213">
<id>222</id>
<edge_type>1</edge_type>
<source_obj>221</source_obj>
<sink_obj>60</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_214">
<id>223</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="_215">
<id>225</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_216">
<id>227</id>
<edge_type>1</edge_type>
<source_obj>226</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_217">
<id>229</id>
<edge_type>1</edge_type>
<source_obj>228</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_218">
<id>230</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>63</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_219">
<id>232</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>64</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_220">
<id>234</id>
<edge_type>1</edge_type>
<source_obj>233</source_obj>
<sink_obj>64</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_221">
<id>236</id>
<edge_type>1</edge_type>
<source_obj>235</source_obj>
<sink_obj>64</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_222">
<id>237</id>
<edge_type>1</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="_223">
<id>238</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>66</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_224">
<id>239</id>
<edge_type>2</edge_type>
<source_obj>127</source_obj>
<sink_obj>66</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_225">
<id>240</id>
<edge_type>1</edge_type>
<source_obj>145</source_obj>
<sink_obj>66</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_226">
<id>241</id>
<edge_type>2</edge_type>
<source_obj>107</source_obj>
<sink_obj>66</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_227">
<id>242</id>
<edge_type>1</edge_type>
<source_obj>160</source_obj>
<sink_obj>66</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_228">
<id>243</id>
<edge_type>2</edge_type>
<source_obj>87</source_obj>
<sink_obj>66</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_229">
<id>244</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_230">
<id>246</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_231">
<id>247</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_232">
<id>248</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>89</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_233">
<id>249</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>89</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_234">
<id>250</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>90</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_235">
<id>251</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>90</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_236">
<id>252</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>90</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_237">
<id>253</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>91</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_238">
<id>254</id>
<edge_type>1</edge_type>
<source_obj>90</source_obj>
<sink_obj>91</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_239">
<id>255</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>92</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_240">
<id>256</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>92</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_241">
<id>257</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>92</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_242">
<id>258</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_243">
<id>259</id>
<edge_type>1</edge_type>
<source_obj>92</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_244">
<id>260</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>94</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_245">
<id>261</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>94</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_246">
<id>262</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>94</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_247">
<id>263</id>
<edge_type>1</edge_type>
<source_obj>55</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_248">
<id>264</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="_249">
<id>265</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_250">
<id>266</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_251">
<id>267</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_252">
<id>268</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>97</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_253">
<id>269</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>97</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_254">
<id>270</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_255">
<id>271</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_256">
<id>272</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_257">
<id>273</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_258">
<id>274</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="_259">
<id>275</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_260">
<id>276</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_261">
<id>277</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_262">
<id>278</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_263">
<id>279</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="_264">
<id>280</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_265">
<id>281</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_266">
<id>282</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_267">
<id>283</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_268">
<id>284</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="_269">
<id>285</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_270">
<id>286</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_271">
<id>287</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_272">
<id>288</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_273">
<id>289</id>
<edge_type>1</edge_type>
<source_obj>104</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_274">
<id>290</id>
<edge_type>2</edge_type>
<source_obj>131</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_275">
<id>291</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>68</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_276">
<id>292</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>68</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_277">
<id>293</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>68</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_278">
<id>294</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>69</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_279">
<id>295</id>
<edge_type>1</edge_type>
<source_obj>68</source_obj>
<sink_obj>69</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_280">
<id>296</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>70</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_281">
<id>297</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>70</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_282">
<id>298</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>70</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_283">
<id>299</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>71</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_284">
<id>300</id>
<edge_type>1</edge_type>
<source_obj>70</source_obj>
<sink_obj>71</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_285">
<id>301</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>72</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_286">
<id>302</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>72</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_287">
<id>303</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>72</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_288">
<id>304</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>73</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_289">
<id>305</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>73</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_290">
<id>306</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_291">
<id>307</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_292">
<id>308</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_293">
<id>309</id>
<edge_type>1</edge_type>
<source_obj>55</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_294">
<id>310</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_295">
<id>311</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>76</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_296">
<id>312</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>76</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_297">
<id>313</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>76</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_298">
<id>314</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>77</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_299">
<id>315</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>77</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_300">
<id>316</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>78</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_301">
<id>317</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>78</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_302">
<id>318</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>78</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_303">
<id>319</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_304">
<id>320</id>
<edge_type>1</edge_type>
<source_obj>78</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_305">
<id>321</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>80</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_306">
<id>322</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>80</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_307">
<id>323</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>80</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_308">
<id>324</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_309">
<id>325</id>
<edge_type>1</edge_type>
<source_obj>80</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_310">
<id>326</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_311">
<id>327</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_312">
<id>328</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_313">
<id>329</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_314">
<id>330</id>
<edge_type>1</edge_type>
<source_obj>82</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_315">
<id>331</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_316">
<id>332</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_317">
<id>333</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_318">
<id>334</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_319">
<id>335</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_320">
<id>336</id>
<edge_type>2</edge_type>
<source_obj>131</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_321">
<id>337</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>108</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_322">
<id>338</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>108</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_323">
<id>339</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>108</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_324">
<id>340</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_325">
<id>341</id>
<edge_type>1</edge_type>
<source_obj>108</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_326">
<id>342</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_327">
<id>343</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_328">
<id>344</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_329">
<id>345</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>111</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_330">
<id>346</id>
<edge_type>1</edge_type>
<source_obj>110</source_obj>
<sink_obj>111</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_331">
<id>347</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>112</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_332">
<id>348</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>112</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_333">
<id>349</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>112</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_334">
<id>350</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>113</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_335">
<id>351</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="_336">
<id>352</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>114</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_337">
<id>353</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>114</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_338">
<id>354</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>114</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_339">
<id>355</id>
<edge_type>1</edge_type>
<source_obj>55</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_340">
<id>356</id>
<edge_type>1</edge_type>
<source_obj>114</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_341">
<id>357</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>116</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_342">
<id>358</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>116</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_343">
<id>359</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>116</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_344">
<id>360</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>117</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_345">
<id>361</id>
<edge_type>1</edge_type>
<source_obj>116</source_obj>
<sink_obj>117</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_346">
<id>362</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>118</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_347">
<id>363</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>118</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_348">
<id>364</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>118</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_349">
<id>365</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>119</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_350">
<id>366</id>
<edge_type>1</edge_type>
<source_obj>118</source_obj>
<sink_obj>119</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_351">
<id>367</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>120</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_352">
<id>368</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>120</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_353">
<id>369</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>120</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_354">
<id>370</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>121</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_355">
<id>371</id>
<edge_type>1</edge_type>
<source_obj>120</source_obj>
<sink_obj>121</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_356">
<id>372</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>122</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_357">
<id>373</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>122</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_358">
<id>374</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>122</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_359">
<id>375</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>123</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_360">
<id>376</id>
<edge_type>1</edge_type>
<source_obj>122</source_obj>
<sink_obj>123</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_361">
<id>377</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_362">
<id>378</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_363">
<id>379</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_364">
<id>380</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_365">
<id>381</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_366">
<id>382</id>
<edge_type>2</edge_type>
<source_obj>131</source_obj>
<sink_obj>126</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_367">
<id>432</id>
<edge_type>2</edge_type>
<source_obj>31</source_obj>
<sink_obj>38</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_368">
<id>433</id>
<edge_type>2</edge_type>
<source_obj>38</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_369">
<id>434</id>
<edge_type>2</edge_type>
<source_obj>38</source_obj>
<sink_obj>67</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_370">
<id>435</id>
<edge_type>2</edge_type>
<source_obj>67</source_obj>
<sink_obj>127</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_371">
<id>436</id>
<edge_type>2</edge_type>
<source_obj>67</source_obj>
<sink_obj>107</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_372">
<id>437</id>
<edge_type>2</edge_type>
<source_obj>67</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_373">
<id>438</id>
<edge_type>2</edge_type>
<source_obj>87</source_obj>
<sink_obj>131</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_374">
<id>439</id>
<edge_type>2</edge_type>
<source_obj>107</source_obj>
<sink_obj>131</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_375">
<id>440</id>
<edge_type>2</edge_type>
<source_obj>127</source_obj>
<sink_obj>131</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_376">
<id>441</id>
<edge_type>2</edge_type>
<source_obj>131</source_obj>
<sink_obj>38</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_377">
<mId>1</mId>
<mTag>load_filter_buffer</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>20</mMinLatency>
<mMaxLatency>20</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_378">
<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>31</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>0</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_379">
<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>6</count>
<item_version>0</item_version>
<item>38</item>
<item>67</item>
<item>87</item>
<item>107</item>
<item>127</item>
<item>131</item>
</basic_blocks>
<mII>1</mII>
<mDepth>1</mDepth>
<mMinTripCount>18</mMinTripCount>
<mMaxTripCount>18</mMaxTripCount>
<mMinLatency>18</mMinLatency>
<mMaxLatency>18</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_380">
<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>133</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>0</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
</cdfg_regions>
<fsm class_id="24" tracking_level="1" version="0" object_id="_381">
<states class_id="25" tracking_level="0" version="0">
<count>3</count>
<item_version>0</item_version>
<item class_id="26" tracking_level="1" version="0" object_id="_382">
<id>1</id>
<operations 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="_383">
<id>29</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_384">
<id>30</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_385">
<id>2</id>
<operations>
<count>94</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_386">
<id>32</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_387">
<id>33</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_388">
<id>34</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_389">
<id>35</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_390">
<id>36</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_391">
<id>37</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_392">
<id>39</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_393">
<id>40</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_394">
<id>41</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_395">
<id>42</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_396">
<id>43</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_397">
<id>44</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_398">
<id>45</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_399">
<id>46</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_400">
<id>47</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_401">
<id>48</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_402">
<id>49</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_403">
<id>50</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_404">
<id>51</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_405">
<id>52</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_406">
<id>53</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_407">
<id>54</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_408">
<id>55</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_409">
<id>56</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_410">
<id>57</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_411">
<id>58</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_412">
<id>59</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_413">
<id>60</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_414">
<id>61</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_415">
<id>62</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_416">
<id>63</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_417">
<id>64</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_418">
<id>65</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_419">
<id>66</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_420">
<id>68</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_421">
<id>69</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_422">
<id>70</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_423">
<id>71</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_424">
<id>72</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_425">
<id>73</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_426">
<id>74</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_427">
<id>75</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_428">
<id>76</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_429">
<id>77</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_430">
<id>78</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_431">
<id>79</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_432">
<id>80</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_433">
<id>81</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_434">
<id>82</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_435">
<id>83</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_436">
<id>84</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_437">
<id>85</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_438">
<id>86</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_439">
<id>88</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_440">
<id>89</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_441">
<id>90</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_442">
<id>91</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_443">
<id>92</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_444">
<id>93</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_445">
<id>94</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_446">
<id>95</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_447">
<id>96</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_448">
<id>97</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_449">
<id>98</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_450">
<id>99</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_451">
<id>100</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_452">
<id>101</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_453">
<id>102</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_454">
<id>103</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_455">
<id>104</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_456">
<id>105</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_457">
<id>106</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_458">
<id>108</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_459">
<id>109</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_460">
<id>110</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_461">
<id>111</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_462">
<id>112</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_463">
<id>113</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_464">
<id>114</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_465">
<id>115</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_466">
<id>116</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_467">
<id>117</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_468">
<id>118</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_469">
<id>119</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_470">
<id>120</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_471">
<id>121</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_472">
<id>122</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_473">
<id>123</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_474">
<id>124</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_475">
<id>125</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_476">
<id>126</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_477">
<id>128</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_478">
<id>129</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_479">
<id>130</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_480">
<id>3</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_481">
<id>132</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="29" tracking_level="0" version="0">
<count>3</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="1" version="0" object_id="_482">
<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="_483">
<inState>2</inState>
<outState>3</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item class_id="34" tracking_level="0" version="0">
<first class_id="35" tracking_level="0" version="0">
<first>35</first>
<second>0</second>
</first>
<second>0</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_484">
<inState>2</inState>
<outState>2</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>35</first>
<second>0</second>
</first>
<second>1</second>
</item>
</item>
</sop>
</condition>
</item>
</transitions>
</fsm>
<res class_id="36" tracking_level="1" version="0" object_id="_485">
<dp_component_resource class_id="37" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_component_resource>
<dp_expression_resource>
<count>8</count>
<item_version>0</item_version>
<item class_id="38" tracking_level="0" version="0">
<first>add_ln113_1_fu_552_p2 ( + ) </first>
<second class_id="39" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="40" tracking_level="0" version="0">
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>3</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>12</second>
</item>
</second>
</item>
<item>
<first>add_ln113_fu_532_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>5</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ap_block_state2 ( and ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>icmp_ln113_fu_526_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>5</second>
</item>
<item>
<first>(1P1)</first>
<second>5</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>icmp_ln115_fu_538_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>2</second>
</item>
<item>
<first>(1P1)</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>n_fu_744_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>2</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>10</second>
</item>
</second>
</item>
<item>
<first>select_ln128_1_fu_558_p3 ( select ) </first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>3</second>
</item>
<item>
<first>(2P2)</first>
<second>3</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>3</second>
</item>
</second>
</item>
<item>
<first>select_ln128_fu_544_p3 ( select ) </first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>(2P2)</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
</dp_expression_resource>
<dp_fifo_resource>
<count>0</count>
<item_version>0</item_version>
</dp_fifo_resource>
<dp_memory_resource>
<count>0</count>
<item_version>0</item_version>
</dp_memory_resource>
<dp_multiplexer_resource>
<count>5</count>
<item_version>0</item_version>
<item>
<first>ap_NS_fsm</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>indvar_flatten_reg_493</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>5</second>
</item>
<item>
<first>(2Count)</first>
<second>10</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>m_0_reg_504</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>3</second>
</item>
<item>
<first>(2Count)</first>
<second>6</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>n_0_reg_515</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>2</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>wgt_TDATA_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
</dp_multiplexer_resource>
<dp_register_resource>
<count>4</count>
<item_version>0</item_version>
<item>
<first>ap_CS_fsm</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>3</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>3</second>
</item>
</second>
</item>
<item>
<first>indvar_flatten_reg_493</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>5</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>5</second>
</item>
</second>
</item>
<item>
<first>m_0_reg_504</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>3</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>3</second>
</item>
</second>
</item>
<item>
<first>n_0_reg_515</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>2</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>2</second>
</item>
</second>
</item>
</dp_register_resource>
<dp_dsp_resource>
<count>0</count>
<item_version>0</item_version>
</dp_dsp_resource>
<dp_component_map class_id="41" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_component_map>
<dp_expression_map>
<count>7</count>
<item_version>0</item_version>
<item class_id="42" tracking_level="0" version="0">
<first>add_ln113_1_fu_552_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>add_ln113_fu_532_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>icmp_ln113_fu_526_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>icmp_ln115_fu_538_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>n_fu_744_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>129</item>
</second>
</item>
<item>
<first>select_ln128_1_fu_558_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>select_ln128_fu_544_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
</dp_expression_map>
<dp_fifo_map>
<count>0</count>
<item_version>0</item_version>
</dp_fifo_map>
<dp_memory_map>
<count>0</count>
<item_version>0</item_version>
</dp_memory_map>
</res>
<node_label_latency class_id="43" tracking_level="0" version="0">
<count>92</count>
<item_version>0</item_version>
<item class_id="44" tracking_level="0" version="0">
<first>30</first>
<second class_id="45" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>32</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>33</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>34</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>35</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>36</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>37</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>40</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>41</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>42</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>43</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>44</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>49</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>50</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>51</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>52</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>53</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>54</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>55</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>56</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>57</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>58</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>59</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>60</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>61</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>62</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>63</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>64</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>65</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>66</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>68</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>69</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>70</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>71</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>72</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>73</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>74</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>75</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>76</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>77</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>78</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>79</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>80</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>81</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>82</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>83</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>84</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>85</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>86</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>88</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>89</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>90</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>91</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>92</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>93</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>94</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>95</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>96</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>97</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>98</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>99</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>100</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>101</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>102</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>103</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>104</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>105</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>106</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>108</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>109</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>110</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>111</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>112</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>113</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>114</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>115</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>116</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>117</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>118</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>119</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>120</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>121</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>122</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>123</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>124</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>125</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>126</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>129</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>130</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>132</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="46" tracking_level="0" version="0">
<count>8</count>
<item_version>0</item_version>
<item class_id="47" tracking_level="0" version="0">
<first>31</first>
<second class_id="48" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>67</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>87</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>107</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>127</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>131</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>133</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="49" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="50" tracking_level="1" version="0" object_id="_486">
<region_name>Loop 1</region_name>
<basic_blocks>
<count>6</count>
<item_version>0</item_version>
<item>38</item>
<item>67</item>
<item>87</item>
<item>107</item>
<item>127</item>
<item>131</item>
</basic_blocks>
<nodes>
<count>0</count>
<item_version>0</item_version>
</nodes>
<anchor_node>-1</anchor_node>
<region_type>8</region_type>
<interval>1</interval>
<pipe_depth>1</pipe_depth>
</item>
</regions>
<dp_fu_nodes class_id="51" tracking_level="0" version="0">
<count>84</count>
<item_version>0</item_version>
<item class_id="52" tracking_level="0" version="0">
<first>136</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>142</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>149</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>155</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>70</item>
</second>
</item>
<item>
<first>162</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>168</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>175</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>181</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>188</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>194</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>201</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>207</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>214</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
<item>
<first>220</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>227</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>233</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>240</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>246</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>253</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>259</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>88</item>
</second>
</item>
<item>
<first>266</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
<item>
<first>272</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>279</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
<item>
<first>285</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>92</item>
</second>
</item>
<item>
<first>292</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>93</item>
</second>
</item>
<item>
<first>298</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>305</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>311</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>96</item>
</second>
</item>
<item>
<first>318</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>324</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>331</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>337</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>344</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>101</item>
</second>
</item>
<item>
<first>350</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>357</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>363</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>370</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>376</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>108</item>
</second>
</item>
<item>
<first>383</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>389</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</second>
</item>
<item>
<first>396</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>111</item>
</second>
</item>
<item>
<first>402</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>409</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>113</item>
</second>
</item>
<item>
<first>415</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</second>
</item>
<item>
<first>422</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
<item>
<first>428</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>116</item>
</second>
</item>
<item>
<first>435</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>117</item>
</second>
</item>
<item>
<first>441</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>118</item>
</second>
</item>
<item>
<first>448</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>119</item>
</second>
</item>
<item>
<first>454</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>120</item>
</second>
</item>
<item>
<first>461</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</second>
</item>
<item>
<first>467</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>122</item>
</second>
</item>
<item>
<first>474</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>123</item>
</second>
</item>
<item>
<first>480</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>124</item>
</second>
</item>
<item>
<first>487</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>125</item>
</second>
</item>
<item>
<first>497</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>508</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>519</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>526</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>532</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>538</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>544</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>552</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>558</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>566</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>597</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>601</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>608</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>618</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>625</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>635</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>642</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>54</item>
</second>
</item>
<item>
<first>652</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>659</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>669</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>676</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>686</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>693</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>703</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>710</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>62</item>
</second>
</item>
<item>
<first>720</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>727</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>737</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>744</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>129</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="54" tracking_level="0" version="0">
<count>56</count>
<item_version>0</item_version>
<item class_id="55" tracking_level="0" version="0">
<first>add_ln113_1_fu_552</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>add_ln113_fu_532</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>bitcast_ln119_fu_601</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>bitcast_ln120_fu_618</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>bitcast_ln121_fu_635</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>bitcast_ln122_fu_652</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>bitcast_ln123_fu_669</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>bitcast_ln124_fu_686</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>bitcast_ln125_fu_703</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>bitcast_ln126_fu_720</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>bitcast_ln127_fu_737</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>filter_buff_0_0_0_1_gep_fu_259</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>88</item>
</second>
</item>
<item>
<first>filter_buff_0_0_1_1_gep_fu_272</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>filter_buff_0_0_2_1_gep_fu_285</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>92</item>
</second>
</item>
<item>
<first>filter_buff_0_1_0_1_gep_fu_298</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>filter_buff_0_1_1_1_gep_fu_311</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>96</item>
</second>
</item>
<item>
<first>filter_buff_0_1_2_1_gep_fu_324</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>filter_buff_0_2_0_1_gep_fu_337</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>filter_buff_0_2_1_1_gep_fu_350</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>filter_buff_0_2_2_1_gep_fu_363</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>filter_buff_1_0_0_1_gep_fu_142</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>filter_buff_1_0_1_1_gep_fu_155</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>70</item>
</second>
</item>
<item>
<first>filter_buff_1_0_2_1_gep_fu_168</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>filter_buff_1_1_0_1_gep_fu_181</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>filter_buff_1_1_1_1_gep_fu_194</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>filter_buff_1_1_2_1_gep_fu_207</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>filter_buff_1_2_0_1_gep_fu_220</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>filter_buff_1_2_1_1_gep_fu_233</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>filter_buff_1_2_2_1_gep_fu_246</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>filter_buff_2_0_0_1_gep_fu_376</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>108</item>
</second>
</item>
<item>
<first>filter_buff_2_0_1_1_gep_fu_389</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</second>
</item>
<item>
<first>filter_buff_2_0_2_1_gep_fu_402</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>filter_buff_2_1_0_1_gep_fu_415</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</second>
</item>
<item>
<first>filter_buff_2_1_1_1_gep_fu_428</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>116</item>
</second>
</item>
<item>
<first>filter_buff_2_1_2_1_gep_fu_441</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>118</item>
</second>
</item>
<item>
<first>filter_buff_2_2_0_1_gep_fu_454</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>120</item>
</second>
</item>
<item>
<first>filter_buff_2_2_1_1_gep_fu_467</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>122</item>
</second>
</item>
<item>
<first>filter_buff_2_2_2_1_gep_fu_480</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>124</item>
</second>
</item>
<item>
<first>icmp_ln113_fu_526</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>icmp_ln115_fu_538</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>indvar_flatten_phi_fu_497</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>m_0_phi_fu_508</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>n_0_phi_fu_519</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>n_fu_744</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>129</item>
</second>
</item>
<item>
<first>select_ln128_1_fu_558</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>select_ln128_fu_544</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>trunc_ln119_fu_597</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>wgt_f1_load_new6_fu_608</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>wgt_f2_load_new_fu_625</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>wgt_f3_load_new_fu_642</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>54</item>
</second>
</item>
<item>
<first>wgt_f4_load_new_fu_659</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>wgt_f5_load_new_fu_676</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>wgt_f6_load_new_fu_693</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>wgt_f7_load_new_fu_710</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>62</item>
</second>
</item>
<item>
<first>wgt_f8_load_new_fu_727</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>zext_ln128_fu_566</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</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>wgt_read_read_fu_136</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
</dp_fu_nodes_io>
<return_ports>
<count>0</count>
<item_version>0</item_version>
</return_ports>
<dp_mem_port_nodes class_id="56" tracking_level="0" version="0">
<count>27</count>
<item_version>0</item_version>
<item class_id="57" tracking_level="0" version="0">
<first class_id="58" tracking_level="0" version="0">
<first>filter_buff_0_0_0</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
<item>
<first>
<first>filter_buff_0_0_1</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
<item>
<first>
<first>filter_buff_0_0_2</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>93</item>
</second>
</item>
<item>
<first>
<first>filter_buff_0_1_0</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>
<first>filter_buff_0_1_1</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>
<first>filter_buff_0_1_2</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>
<first>filter_buff_0_2_0</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>101</item>
</second>
</item>
<item>
<first>
<first>filter_buff_0_2_1</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>
<first>filter_buff_0_2_2</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>
<first>filter_buff_1_0_0</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>
<first>filter_buff_1_0_1</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>
<first>filter_buff_1_0_2</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>
<first>filter_buff_1_1_0</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>
<first>filter_buff_1_1_1</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>
<first>filter_buff_1_1_2</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
<item>
<first>
<first>filter_buff_1_2_0</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>
<first>filter_buff_1_2_1</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>
<first>filter_buff_1_2_2</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>
<first>filter_buff_2_0_0</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>
<first>filter_buff_2_0_1</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>111</item>
</second>
</item>
<item>
<first>
<first>filter_buff_2_0_2</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>113</item>
</second>
</item>
<item>
<first>
<first>filter_buff_2_1_0</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
<item>
<first>
<first>filter_buff_2_1_1</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>117</item>
</second>
</item>
<item>
<first>
<first>filter_buff_2_1_2</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>119</item>
</second>
</item>
<item>
<first>
<first>filter_buff_2_2_0</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</second>
</item>
<item>
<first>
<first>filter_buff_2_2_1</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>123</item>
</second>
</item>
<item>
<first>
<first>filter_buff_2_2_2</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>125</item>
</second>
</item>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>6</count>
<item_version>0</item_version>
<item>
<first>493</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>504</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>515</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>753</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>761</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>766</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>129</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>6</count>
<item_version>0</item_version>
<item>
<first>add_ln113_reg_753</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>indvar_flatten_reg_493</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>m_0_reg_504</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>n_0_reg_515</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>n_reg_766</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>129</item>
</second>
</item>
<item>
<first>select_ln128_1_reg_761</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
</dp_regname_nodes>
<dp_reg_phi>
<count>3</count>
<item_version>0</item_version>
<item>
<first>493</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>504</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>515</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
</dp_reg_phi>
<dp_regname_phi>
<count>3</count>
<item_version>0</item_version>
<item>
<first>indvar_flatten_reg_493</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>m_0_reg_504</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>n_0_reg_515</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
</dp_regname_phi>
<dp_port_io_nodes class_id="59" tracking_level="0" version="0">
<count>28</count>
<item_version>0</item_version>
<item class_id="60" tracking_level="0" version="0">
<first>filter_buff_0_0_0(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
</second>
</item>
<item>
<first>filter_buff_0_0_1(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
</second>
</item>
<item>
<first>filter_buff_0_0_2(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>93</item>
</second>
</item>
</second>
</item>
<item>
<first>filter_buff_0_1_0(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
</second>
</item>
<item>
<first>filter_buff_0_1_1(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
</second>
</item>
<item>
<first>filter_buff_0_1_2(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
</second>
</item>
<item>
<first>filter_buff_0_2_0(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>101</item>
</second>
</item>
</second>
</item>
<item>
<first>filter_buff_0_2_1(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
</second>
</item>
<item>
<first>filter_buff_0_2_2(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
</second>
</item>
<item>
<first>filter_buff_1_0_0(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
</second>
</item>
<item>
<first>filter_buff_1_0_1(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
</second>
</item>
<item>
<first>filter_buff_1_0_2(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
</second>
</item>
<item>
<first>filter_buff_1_1_0(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
</second>
</item>
<item>
<first>filter_buff_1_1_1(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
</second>
</item>
<item>
<first>filter_buff_1_1_2(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
</second>
</item>
<item>
<first>filter_buff_1_2_0(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
</second>
</item>
<item>
<first>filter_buff_1_2_1(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
</second>
</item>
<item>
<first>filter_buff_1_2_2(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
</second>
</item>
<item>
<first>filter_buff_2_0_0(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
</second>
</item>
<item>
<first>filter_buff_2_0_1(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>111</item>
</second>
</item>
</second>
</item>
<item>
<first>filter_buff_2_0_2(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>113</item>
</second>
</item>
</second>
</item>
<item>
<first>filter_buff_2_1_0(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
</second>
</item>
<item>
<first>filter_buff_2_1_1(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>117</item>
</second>
</item>
</second>
</item>
<item>
<first>filter_buff_2_1_2(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>119</item>
</second>
</item>
</second>
</item>
<item>
<first>filter_buff_2_2_0(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</second>
</item>
</second>
</item>
<item>
<first>filter_buff_2_2_1(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>123</item>
</second>
</item>
</second>
</item>
<item>
<first>filter_buff_2_2_2(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>125</item>
</second>
</item>
</second>
</item>
<item>
<first>wgt</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core class_id="61" tracking_level="0" version="0">
<count>27</count>
<item_version>0</item_version>
<item class_id="62" tracking_level="0" version="0">
<first>2</first>
<second>RAM</second>
</item>
<item>
<first>3</first>
<second>RAM</second>
</item>
<item>
<first>4</first>
<second>RAM</second>
</item>
<item>
<first>5</first>
<second>RAM</second>
</item>
<item>
<first>6</first>
<second>RAM</second>
</item>
<item>
<first>7</first>
<second>RAM</second>
</item>
<item>
<first>8</first>
<second>RAM</second>
</item>
<item>
<first>9</first>
<second>RAM</second>
</item>
<item>
<first>10</first>
<second>RAM</second>
</item>
<item>
<first>11</first>
<second>RAM</second>
</item>
<item>
<first>12</first>
<second>RAM</second>
</item>
<item>
<first>13</first>
<second>RAM</second>
</item>
<item>
<first>14</first>
<second>RAM</second>
</item>
<item>
<first>15</first>
<second>RAM</second>
</item>
<item>
<first>16</first>
<second>RAM</second>
</item>
<item>
<first>17</first>
<second>RAM</second>
</item>
<item>
<first>18</first>
<second>RAM</second>
</item>
<item>
<first>19</first>
<second>RAM</second>
</item>
<item>
<first>20</first>
<second>RAM</second>
</item>
<item>
<first>21</first>
<second>RAM</second>
</item>
<item>
<first>22</first>
<second>RAM</second>
</item>
<item>
<first>23</first>
<second>RAM</second>
</item>
<item>
<first>24</first>
<second>RAM</second>
</item>
<item>
<first>25</first>
<second>RAM</second>
</item>
<item>
<first>26</first>
<second>RAM</second>
</item>
<item>
<first>27</first>
<second>RAM</second>
</item>
<item>
<first>28</first>
<second>RAM</second>
</item>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
| 31.729067 | 80 | 0.462757 |
592b019e12c8f596d270150757e92fc107314c31 | 1,471 | ads | Ada | source/asis/spec/annex_c/ada-task_termination.ads | faelys/gela-asis | 48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253 | [
"BSD-3-Clause"
] | 4 | 2016-02-05T15:51:56.000Z | 2022-03-25T20:38:32.000Z | source/asis/spec/annex_c/ada-task_termination.ads | faelys/gela-asis | 48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253 | [
"BSD-3-Clause"
] | null | null | null | source/asis/spec/annex_c/ada-task_termination.ads | faelys/gela-asis | 48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253 | [
"BSD-3-Clause"
] | null | null | null | ------------------------------------------------------------------------------
-- A d a r u n - t i m e s p e c i f i c a t i o n --
-- ASIS implementation for Gela project, a portable Ada compiler --
-- http://gela.ada-ru.org --
-- - - - - - - - - - - - - - - - --
-- Read copyright and license at the end of ada.ads file --
------------------------------------------------------------------------------
-- $Revision: 209 $ $Date: 2013-11-30 21:03:24 +0200 (Сб., 30 нояб. 2013) $
with Ada.Task_Identification;
with Ada.Exceptions;
package Ada.Task_Termination is
pragma Preelaborate(Task_Termination);
type Cause_Of_Termination is (Normal, Abnormal, Unhandled_Exception);
type Termination_Handler is access protected procedure
(Cause : in Cause_Of_Termination;
T : in Ada.Task_Identification.Task_Id;
X : in Ada.Exceptions.Exception_Occurrence);
procedure Set_Dependents_Fallback_Handler
(Handler: in Termination_Handler);
function Current_Task_Fallback_Handler return Termination_Handler;
procedure Set_Specific_Handler
(T : in Ada.Task_Identification.Task_Id;
Handler : in Termination_Handler);
function Specific_Handler (T : Ada.Task_Identification.Task_Id)
return Termination_Handler;
end Ada.Task_Termination;
| 40.861111 | 78 | 0.548606 |
1d280f8d41fddee76ca7e814cb51f8511290bdf8 | 440 | ada | Ada | Task/Same-Fringe/Ada/same-fringe-3.ada | mullikine/RosettaCodeData | 4f0027c6ce83daa36118ee8b67915a13cd23ab67 | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:38.000Z | 2018-11-09T22:08:38.000Z | Task/Same-Fringe/Ada/same-fringe-3.ada | mullikine/RosettaCodeData | 4f0027c6ce83daa36118ee8b67915a13cd23ab67 | [
"Info-ZIP"
] | null | null | null | Task/Same-Fringe/Ada/same-fringe-3.ada | mullikine/RosettaCodeData | 4f0027c6ce83daa36118ee8b67915a13cd23ab67 | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:40.000Z | 2018-11-09T22:08:40.000Z | generic
with procedure Process_Data(Item: Data);
with function Stop return Boolean;
with procedure Finish;
package Bin_Trees.Traverse is
task Inorder_Task is
entry Run(Tree: Tree_Type);
-- this will call each Item in Tree and, at the very end, it will call Finish
-- except when Stop becomes true; in this case, the task terminates
end Inorder_Task;
end Bin_Trees.Traverse;
| 36.666667 | 86 | 0.675 |
2f4cd582c94b1e420eea306758457e3b82c573fc | 16,413 | adb | Ada | source/amf/uml/amf-internals-uml_messages.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | source/amf/uml/amf-internals-uml_messages.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | source/amf/uml/amf-internals-uml_messages.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 4 | 2017-07-18T07:11:05.000Z | 2020-06-21T03:02:25.000Z | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2011-2012, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with AMF.Elements;
with AMF.Internals.Element_Collections;
with AMF.Internals.Helpers;
with AMF.Internals.Tables.UML_Attributes;
with AMF.Visitors.UML_Iterators;
with AMF.Visitors.UML_Visitors;
with League.Strings.Internals;
with Matreshka.Internals.Strings;
package body AMF.Internals.UML_Messages is
-------------------
-- Enter_Element --
-------------------
overriding procedure Enter_Element
(Self : not null access constant UML_Message_Proxy;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control) is
begin
if Visitor in AMF.Visitors.UML_Visitors.UML_Visitor'Class then
AMF.Visitors.UML_Visitors.UML_Visitor'Class
(Visitor).Enter_Message
(AMF.UML.Messages.UML_Message_Access (Self),
Control);
end if;
end Enter_Element;
-------------------
-- Leave_Element --
-------------------
overriding procedure Leave_Element
(Self : not null access constant UML_Message_Proxy;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control) is
begin
if Visitor in AMF.Visitors.UML_Visitors.UML_Visitor'Class then
AMF.Visitors.UML_Visitors.UML_Visitor'Class
(Visitor).Leave_Message
(AMF.UML.Messages.UML_Message_Access (Self),
Control);
end if;
end Leave_Element;
-------------------
-- Visit_Element --
-------------------
overriding procedure Visit_Element
(Self : not null access constant UML_Message_Proxy;
Iterator : in out AMF.Visitors.Abstract_Iterator'Class;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control) is
begin
if Iterator in AMF.Visitors.UML_Iterators.UML_Iterator'Class then
AMF.Visitors.UML_Iterators.UML_Iterator'Class
(Iterator).Visit_Message
(Visitor,
AMF.UML.Messages.UML_Message_Access (Self),
Control);
end if;
end Visit_Element;
------------------
-- Get_Argument --
------------------
overriding function Get_Argument
(Self : not null access constant UML_Message_Proxy)
return AMF.UML.Value_Specifications.Collections.Ordered_Set_Of_UML_Value_Specification is
begin
return
AMF.UML.Value_Specifications.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Argument
(Self.Element)));
end Get_Argument;
-------------------
-- Get_Connector --
-------------------
overriding function Get_Connector
(Self : not null access constant UML_Message_Proxy)
return AMF.UML.Connectors.UML_Connector_Access is
begin
return
AMF.UML.Connectors.UML_Connector_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Connector
(Self.Element)));
end Get_Connector;
-------------------
-- Set_Connector --
-------------------
overriding procedure Set_Connector
(Self : not null access UML_Message_Proxy;
To : AMF.UML.Connectors.UML_Connector_Access) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Connector
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_Connector;
---------------------
-- Get_Interaction --
---------------------
overriding function Get_Interaction
(Self : not null access constant UML_Message_Proxy)
return AMF.UML.Interactions.UML_Interaction_Access is
begin
return
AMF.UML.Interactions.UML_Interaction_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Interaction
(Self.Element)));
end Get_Interaction;
---------------------
-- Set_Interaction --
---------------------
overriding procedure Set_Interaction
(Self : not null access UML_Message_Proxy;
To : AMF.UML.Interactions.UML_Interaction_Access) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Interaction
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_Interaction;
----------------------
-- Get_Message_Kind --
----------------------
overriding function Get_Message_Kind
(Self : not null access constant UML_Message_Proxy)
return AMF.UML.UML_Message_Kind is
begin
return
AMF.Internals.Tables.UML_Attributes.Internal_Get_Message_Kind
(Self.Element);
end Get_Message_Kind;
----------------------
-- Get_Message_Sort --
----------------------
overriding function Get_Message_Sort
(Self : not null access constant UML_Message_Proxy)
return AMF.UML.UML_Message_Sort is
begin
return
AMF.Internals.Tables.UML_Attributes.Internal_Get_Message_Sort
(Self.Element);
end Get_Message_Sort;
----------------------
-- Set_Message_Sort --
----------------------
overriding procedure Set_Message_Sort
(Self : not null access UML_Message_Proxy;
To : AMF.UML.UML_Message_Sort) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Message_Sort
(Self.Element, To);
end Set_Message_Sort;
-----------------------
-- Get_Receive_Event --
-----------------------
overriding function Get_Receive_Event
(Self : not null access constant UML_Message_Proxy)
return AMF.UML.Message_Ends.UML_Message_End_Access is
begin
return
AMF.UML.Message_Ends.UML_Message_End_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Receive_Event
(Self.Element)));
end Get_Receive_Event;
-----------------------
-- Set_Receive_Event --
-----------------------
overriding procedure Set_Receive_Event
(Self : not null access UML_Message_Proxy;
To : AMF.UML.Message_Ends.UML_Message_End_Access) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Receive_Event
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_Receive_Event;
--------------------
-- Get_Send_Event --
--------------------
overriding function Get_Send_Event
(Self : not null access constant UML_Message_Proxy)
return AMF.UML.Message_Ends.UML_Message_End_Access is
begin
return
AMF.UML.Message_Ends.UML_Message_End_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Send_Event
(Self.Element)));
end Get_Send_Event;
--------------------
-- Set_Send_Event --
--------------------
overriding procedure Set_Send_Event
(Self : not null access UML_Message_Proxy;
To : AMF.UML.Message_Ends.UML_Message_End_Access) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Send_Event
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_Send_Event;
-------------------
-- Get_Signature --
-------------------
overriding function Get_Signature
(Self : not null access constant UML_Message_Proxy)
return AMF.UML.Named_Elements.UML_Named_Element_Access is
begin
return
AMF.UML.Named_Elements.UML_Named_Element_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Signature
(Self.Element)));
end Get_Signature;
-------------------
-- Set_Signature --
-------------------
overriding procedure Set_Signature
(Self : not null access UML_Message_Proxy;
To : AMF.UML.Named_Elements.UML_Named_Element_Access) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Signature
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_Signature;
---------------------------
-- Get_Client_Dependency --
---------------------------
overriding function Get_Client_Dependency
(Self : not null access constant UML_Message_Proxy)
return AMF.UML.Dependencies.Collections.Set_Of_UML_Dependency is
begin
return
AMF.UML.Dependencies.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Client_Dependency
(Self.Element)));
end Get_Client_Dependency;
-------------------------
-- Get_Name_Expression --
-------------------------
overriding function Get_Name_Expression
(Self : not null access constant UML_Message_Proxy)
return AMF.UML.String_Expressions.UML_String_Expression_Access is
begin
return
AMF.UML.String_Expressions.UML_String_Expression_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Name_Expression
(Self.Element)));
end Get_Name_Expression;
-------------------------
-- Set_Name_Expression --
-------------------------
overriding procedure Set_Name_Expression
(Self : not null access UML_Message_Proxy;
To : AMF.UML.String_Expressions.UML_String_Expression_Access) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Name_Expression
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_Name_Expression;
-------------------
-- Get_Namespace --
-------------------
overriding function Get_Namespace
(Self : not null access constant UML_Message_Proxy)
return AMF.UML.Namespaces.UML_Namespace_Access is
begin
return
AMF.UML.Namespaces.UML_Namespace_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Namespace
(Self.Element)));
end Get_Namespace;
------------------------
-- Get_Qualified_Name --
------------------------
overriding function Get_Qualified_Name
(Self : not null access constant UML_Message_Proxy)
return AMF.Optional_String is
begin
declare
use type Matreshka.Internals.Strings.Shared_String_Access;
Aux : constant Matreshka.Internals.Strings.Shared_String_Access
:= AMF.Internals.Tables.UML_Attributes.Internal_Get_Qualified_Name (Self.Element);
begin
if Aux = null then
return (Is_Empty => True);
else
return (False, League.Strings.Internals.Create (Aux));
end if;
end;
end Get_Qualified_Name;
------------------
-- Message_Kind --
------------------
overriding function Message_Kind
(Self : not null access constant UML_Message_Proxy)
return AMF.UML.UML_Message_Kind is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Message_Kind unimplemented");
raise Program_Error with "Unimplemented procedure UML_Message_Proxy.Message_Kind";
return Message_Kind (Self);
end Message_Kind;
-------------------------
-- All_Owning_Packages --
-------------------------
overriding function All_Owning_Packages
(Self : not null access constant UML_Message_Proxy)
return AMF.UML.Packages.Collections.Set_Of_UML_Package is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "All_Owning_Packages unimplemented");
raise Program_Error with "Unimplemented procedure UML_Message_Proxy.All_Owning_Packages";
return All_Owning_Packages (Self);
end All_Owning_Packages;
-----------------------------
-- Is_Distinguishable_From --
-----------------------------
overriding function Is_Distinguishable_From
(Self : not null access constant UML_Message_Proxy;
N : AMF.UML.Named_Elements.UML_Named_Element_Access;
Ns : AMF.UML.Namespaces.UML_Namespace_Access)
return Boolean is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Is_Distinguishable_From unimplemented");
raise Program_Error with "Unimplemented procedure UML_Message_Proxy.Is_Distinguishable_From";
return Is_Distinguishable_From (Self, N, Ns);
end Is_Distinguishable_From;
---------------
-- Namespace --
---------------
overriding function Namespace
(Self : not null access constant UML_Message_Proxy)
return AMF.UML.Namespaces.UML_Namespace_Access is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Namespace unimplemented");
raise Program_Error with "Unimplemented procedure UML_Message_Proxy.Namespace";
return Namespace (Self);
end Namespace;
end AMF.Internals.UML_Messages;
| 36.636161 | 99 | 0.592153 |
294cd726e07a41bab66f8c604d3f691562c176b0 | 799 | ada | Ada | Task/Arithmetic-geometric-mean/Ada/arithmetic-geometric-mean.ada | mullikine/RosettaCodeData | 4f0027c6ce83daa36118ee8b67915a13cd23ab67 | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:38.000Z | 2018-11-09T22:08:38.000Z | Task/Arithmetic-geometric-mean/Ada/arithmetic-geometric-mean.ada | mullikine/RosettaCodeData | 4f0027c6ce83daa36118ee8b67915a13cd23ab67 | [
"Info-ZIP"
] | null | null | null | Task/Arithmetic-geometric-mean/Ada/arithmetic-geometric-mean.ada | mullikine/RosettaCodeData | 4f0027c6ce83daa36118ee8b67915a13cd23ab67 | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:40.000Z | 2018-11-09T22:08:40.000Z | with Ada.Text_IO, Ada.Numerics.Generic_Elementary_Functions;
procedure Arith_Geom_Mean is
type Num is digits 18; -- the largest value gnat/gcc allows
package N_IO is new Ada.Text_IO.Float_IO(Num);
package Math is new Ada.Numerics.Generic_Elementary_Functions(Num);
function AGM(A, G: Num) return Num is
Old_G: Num;
New_G: Num := G;
New_A: Num := A;
begin
loop
Old_G := New_G;
New_G := Math.Sqrt(New_A*New_G);
New_A := (Old_G + New_A) * 0.5;
exit when (New_A - New_G) <= Num'Epsilon;
-- Num'Epsilon denotes the relative error when performing arithmetic over Num
end loop;
return New_G;
end AGM;
begin
N_IO.Put(AGM(1.0, 1.0/Math.Sqrt(2.0)), Fore => 1, Aft => 17, Exp => 0);
end Arith_Geom_Mean;
| 29.592593 | 86 | 0.635795 |
2966df635e5a3eba9ae11a4013c1913fd5924cce | 2,841 | ads | Ada | llvm-gcc-4.2-2.9/gcc/ada/g-soliop-mingw.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | 1 | 2016-04-09T02:58:13.000Z | 2016-04-09T02:58:13.000Z | llvm-gcc-4.2-2.9/gcc/ada/g-soliop-mingw.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | llvm-gcc-4.2-2.9/gcc/ada/g-soliop-mingw.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- G N A T . S O C K E T S . L I N K E R _ O P T I O N S --
-- --
-- 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 is used to provide target specific linker_options for the
-- support of scokets as required by the package GNAT.Sockets.
-- This is the Windows/NT version of this package
package GNAT.Sockets.Linker_Options is
private
pragma Linker_Options ("-lwsock32");
end GNAT.Sockets.Linker_Options;
| 66.069767 | 78 | 0.447026 |
104bec4e50fa65e5761dcceb6d7dd458fa91c147 | 14,342 | adb | Ada | 4-high/gel/applet/demo/full/launch_full_demo.adb | charlie5/lace-alire | 9ace9682cf4daac7adb9f980c2868d6225b8111c | [
"0BSD"
] | 1 | 2022-01-20T07:13:42.000Z | 2022-01-20T07:13:42.000Z | 4-high/gel/applet/demo/full/launch_full_demo.adb | charlie5/lace-alire | 9ace9682cf4daac7adb9f980c2868d6225b8111c | [
"0BSD"
] | null | null | null | 4-high/gel/applet/demo/full/launch_full_demo.adb | charlie5/lace-alire | 9ace9682cf4daac7adb9f980c2868d6225b8111c | [
"0BSD"
] | null | null | null | with
gel.Window.setup,
gel.Applet.gui_and_sim_world,
gel.Forge,
gel.Sprite,
physics.Model,
openGL.Model.box .colored,
openGL.Model.sphere .textured,
openGL.Model.capsule.textured,
openGL.Model.any,
openGL.Model.terrain,
openGL.IO,
openGL.Light,
openGL.Palette;
pragma unreferenced (gel.Window.setup);
procedure launch_full_Demo
--
-- Drops a variety of shapes onto a terrain.
--
is
use gel.Math,
openGL,
openGL.Model.box,
opengl.Palette;
the_Applet : constant gel.Applet.gui_and_sim_world.view := gel.Forge.new_gui_and_sim_Applet ("mixed Shapes", 1536, 864);
text_line_Site : gel.Math.Vector_3 := (-10.0, 50.0, -60.0);
procedure put_Line (Message : in String)
is
Text : constant gel.Sprite.view := gel.Forge.new_text_Sprite (the_Applet.gui_World,
text_line_Site,
Message,
the_Applet.Font,
White);
begin
the_Applet.gui_World.add (Text);
text_line_Site (2) := text_line_Site (2) - 2.0;
end put_Line;
x : math.Real := 0.0;
y : math.Real := 10.0;
-----------
-- Terrain
--
-- Heightfield
--
function to_Heightfield (From : in openGL.height_Map) return physics.Heightfield
is
Result : physics.Heightfield (1 .. Integer (From'Last (1)),
1 .. Integer (From'Last (2)));
Last_i : constant Index_t := From'Last (1);
begin
for i in Result'Range (1)
loop
for j in Result'Range (1)
loop
Result (i, j) := math.Real (From (Last_i - Index_t (i) + 1,
Index_t (j)));
end loop;
end loop;
return Result;
end to_Heightfield;
terrain_Heights : constant openGL.asset_Name := to_Asset ("assets/gel/kidwelly-terrain.png");
terrain_Texture : constant openGL.asset_Name := to_Asset ("assets/gel/kidwelly-terrain-texture.png");
hs : constant := 1.0;
gl_Heights : constant openGL.IO.height_Map_view := openGL.IO.to_height_Map (image_Filename => terrain_Heights,
Scale => 10.0);
the_terrain_Model : constant openGL.Model.terrain.view
:= openGL.Model.terrain.new_Terrain (heights_Asset => terrain_Heights,
Row => 1,
Col => 1,
Heights => openGL.Model.terrain.height_Map_view (gl_Heights),
color_Map => terrain_Texture,
Tiling => (s => (0.0, 1.0),
t => (0.0, 1.0)));
the_terrain_physics_Model : constant physics.Model.view
:= physics.Model.forge.new_physics_Model (shape_Info => (Kind => physics.Model.heightfield,
Heights => new physics.Heightfield' (to_Heightfield (gl_Heights.all)),
height_Range => (0.0, 200.0)),
Scale => (hs, 1.0, hs));
the_Terrain : constant gel.Sprite.view
:= gel.Sprite.forge.new_Sprite ("demo.Terrain",
the_Applet.gui_World.all'Access,
Origin_3D,
the_terrain_Model,
the_terrain_physics_Model);
begin
-- Setup the applet.
--
the_Applet.gui_Camera.Site_is ((0.0, 4.0, 30.0)); -- Position the camera.
the_Applet.sim_Camera.Site_is ((0.0, 4.0, 30.0)); -- Position the camera.
the_Applet.enable_simple_Dolly (in_World => the_Applet.sim_World.Id); -- Enable user camera control via keyboard.
the_Applet.Dolly.Speed_is (0.1);
the_Applet.Renderer.Background_is (sky_Blue);
the_Applet.sim_World.Gravity_is ((0.0, -9.8, 0.0));
-- Camera controls text.
--
put_Line ("Camera Controls: - Use arrow and PgUp/PgDn keys to move.");
put_Line (" - Use Shift key to move faster.");
put_Line (" - Use Ctrl key to rotate instead of move.");
put_Line (" - Use Alt key to orbit instead of move.");
-- Set the lights position.
--
declare
use openGL.Light;
Light : openGL.Light.item := the_Applet.Renderer.new_Light;
begin
Light.Kind_is (Diffuse);
Light.Site_is ((0.0, 100.0, 100.0));
Light.ambient_Coefficient_is (0.2);
the_Applet.Renderer.set (Light);
end;
-- Terrain.
--
the_Applet.sim_World.add (the_Terrain); -- Add the terrain.
-- Add several sprites of each shape.
--
for i in 1 .. 5
loop
declare
-- Box
--
the_box_Model : constant openGL.Model.box.colored.view
:= openGL.Model.box.colored.new_Box (Size => (1.0, 1.0, 1.0),
Faces => (Front => (Colors => (others => (Red, Opaque))),
Rear => (Colors => (others => (Green, Opaque))),
Upper => (Colors => (others => (Violet, Opaque))),
Lower => (Colors => (others => (Yellow, Opaque))),
Left => (Colors => (others => (Cyan, Opaque))),
Right => (Colors => (others => (Magenta, Opaque)))));
the_box_physics_Model : constant physics.Model.view
:= physics.Model.forge.new_physics_Model (shape_Info => (Kind => physics.Model.Cube,
half_Extents => the_box_Model.Size / 2.0),
Mass => 1.0);
the_Box : constant gel.Sprite.view
:= gel.Sprite.forge.new_Sprite ("demo.Box",
the_Applet.gui_World.all'Access,
Origin_3D,
the_box_Model.all'Access,
the_box_physics_Model);
-- Ball
--
the_ball_physics_Model : constant physics.Model.view
:= physics.Model.forge.new_physics_Model (shape_Info => (Kind => physics.Model.a_sphere,
sphere_Radius => 0.5),
Mass => 1.0);
the_ball_Model : constant openGL.Model.sphere.textured.view
:= openGL.Model.sphere.textured.new_Sphere (Radius => 0.5,
Image => openGL.to_Asset ("assets/gel/texture/earth_map.bmp"));
the_Ball : constant gel.Sprite.view
:= gel.Sprite.forge.new_Sprite ("demo.Ball",
the_Applet.gui_World.all'Access,
Origin_3D,
the_ball_Model,
the_ball_physics_Model);
-- Cone
--
the_cone_Model : constant openGL.Model.any.view
:= openGL.Model.any.new_Model (Model => openGL.to_Asset ("assets/gel/model/unit_cone.obj"),
Texture => openGL.to_Asset ("assets/gel/Face1.bmp"),
Texture_is_lucid => False);
the_cone_physics_Model : constant physics.Model.view
:= physics.Model.forge.new_physics_Model (shape_Info => (Kind => physics.Model.cone),
Mass => 1.0);
the_Cone : constant gel.Sprite.view
:= gel.Sprite.forge.new_Sprite ("demo.Cone",
the_Applet.gui_World.all'Access,
Origin_3D,
the_cone_Model.all'Access,
the_cone_physics_Model);
-- Capsule
--
the_capsule_Model : constant openGL.Model.capsule.textured.view
:= openGL.Model.capsule.textured.new_Capsule (Radius => 0.5,
Height => 1.0,
Image => openGL.to_Asset ("assets/gel/Face1.bmp"));
the_capsule_physics_Model : constant physics.Model.view
:= physics.Model.forge.new_physics_Model (shape_Info => (Kind => physics.Model.a_Capsule,
lower_Radius => 0.5,
upper_Radius => 0.5,
Height => 1.0),
Mass => 1.0);
the_Capsule : constant gel.Sprite.view
:= gel.Sprite.forge.new_Sprite ("demo.Capsule",
the_Applet.gui_World.all'Access,
Origin_3D,
the_capsule_Model.all'Access,
the_capsule_physics_Model);
-- multi_Sphere
--
the_multi_Sphere_Model : constant openGL.Model.capsule.textured.view
:= openGL.Model.capsule.textured.new_Capsule (Radius => 0.5,
Height => 0.0,
Image => openGL.to_Asset ("assets/gel/golf_green-16x16.tga"));
the_multi_Sphere_physics_Model : constant physics.Model.view
:= physics.Model.forge.new_physics_Model (shape_Info => (Kind => physics.Model.multi_Sphere,
Sites => new physics.Vector_3_array' ((-0.5, 0.0, 0.0),
( 0.5, 0.0, 0.0)),
Radii => new gel.math.Vector' (1 => 0.5,
2 => 0.5)),
Mass => 1.0);
the_multi_Sphere : constant gel.Sprite.view
:= gel.Sprite.forge.new_Sprite ("demo.multi_Sphere",
the_Applet.gui_World.all'Access,
Origin_3D,
the_multi_Sphere_Model.all'Access,
the_multi_Sphere_physics_Model);
-- Hull
--
s : constant := 0.5;
the_hull_Model : constant openGL.Model.box.colored.view
:= openGL.Model.box.colored.new_Box (Size => (s * 2.0, s * 2.0, s * 2.0),
Faces => (others => (others => (others => (Palette.random_Color, Opaque)))));
the_hull_physics_Model : constant physics.Model.view
:= physics.Model.forge.new_physics_Model (shape_Info => (Kind => physics.Model.hull,
Points => new physics.Vector_3_array' ((-s, -s, s),
( s, -s, s),
( s, s, s),
(-s, s, s),
(-s, -s, -s),
( s, -s, -s),
( s, s, -s),
(-s, s, -s))),
Mass => 1.0);
the_Hull : constant gel.Sprite.view
:= gel.Sprite.forge.new_Sprite ("demo.Hull",
the_Applet.gui_World.all'Access,
Origin_3D,
the_hull_Model.all'Access,
the_hull_physics_Model);
begin
the_Applet.sim_World.add (the_Ball);
the_Applet.sim_World.add (the_Box);
the_Applet.sim_World.add (the_Cone);
the_Applet.sim_World.add (the_Capsule);
the_Applet.sim_World.add (the_multi_Sphere);
the_Applet.sim_World.add (the_Hull);
the_Ball .Site_is (( x, y, 0.0));
the_Box .Site_is (( 0.0, y, -2.5));
the_Cone .Site_is (( 0.0, y, 0.0));
the_Capsule .Site_is (( 0.0 + X, y, 0.0 + x));
the_multi_Sphere.Site_is ((-4.0, y, 4.4));
the_Hull .Site_is (( 4.0, y, 4.4));
x := x + 2.0;
y := y + 2.0;
end;
end loop;
-- Main loop.
--
while the_Applet.is_open
loop
the_Applet.freshen; -- Handle any new events, evolve physics and update the screen.
end loop;
the_Applet.destroy;
end launch_full_Demo;
| 47.022951 | 137 | 0.416678 |
592d3895487d123aac4b854fd7f0e0fc4066a897 | 49,747 | adb | Ada | src/lang/stemmer-arabic.adb | stcarrez/ada-stemmer | 08f540a33d471a9823d8f1a88ce2a2c4d40faaec | [
"Apache-2.0"
] | 3 | 2020-05-11T21:21:17.000Z | 2020-05-17T02:16:08.000Z | src/lang/stemmer-arabic.adb | stcarrez/ada-stemmer | 08f540a33d471a9823d8f1a88ce2a2c4d40faaec | [
"Apache-2.0"
] | null | null | null | src/lang/stemmer-arabic.adb | stcarrez/ada-stemmer | 08f540a33d471a9823d8f1a88ce2a2c4d40faaec | [
"Apache-2.0"
] | null | null | null | -- Generated by Snowball 2.2.0 - https://snowballstem.org/
package body Stemmer.Arabic is
pragma Style_Checks ("-mr");
pragma Warnings (Off, "*variable*is never read and never assigned*");
pragma Warnings (Off, "*mode could be*instead of*");
pragma Warnings (Off, "*formal parameter.*is not modified*");
pragma Warnings (Off, "*this line is too long*");
pragma Warnings (Off, "*is not referenced*");
procedure R_Checks1 (Z : in out Context_Type; Result : out Boolean);
procedure R_Normalize_pre (Z : in out Context_Type; Result : out Boolean);
procedure R_Normalize_post (Z : in out Context_Type; Result : out Boolean);
procedure R_Suffix_Verb_Step2c (Z : in out Context_Type; Result : out Boolean);
procedure R_Suffix_Verb_Step2b (Z : in out Context_Type; Result : out Boolean);
procedure R_Suffix_Verb_Step2a (Z : in out Context_Type; Result : out Boolean);
procedure R_Suffix_Verb_Step1 (Z : in out Context_Type; Result : out Boolean);
procedure R_Suffix_Noun_Step3 (Z : in out Context_Type; Result : out Boolean);
procedure R_Suffix_Noun_Step2c2 (Z : in out Context_Type; Result : out Boolean);
procedure R_Suffix_Noun_Step2c1 (Z : in out Context_Type; Result : out Boolean);
procedure R_Suffix_Noun_Step2b (Z : in out Context_Type; Result : out Boolean);
procedure R_Suffix_Noun_Step2a (Z : in out Context_Type; Result : out Boolean);
procedure R_Suffix_Noun_Step1b (Z : in out Context_Type; Result : out Boolean);
procedure R_Suffix_Noun_Step1a (Z : in out Context_Type; Result : out Boolean);
procedure R_Suffix_All_alef_maqsura (Z : in out Context_Type; Result : out Boolean);
procedure R_Prefix_Step4_Verb (Z : in out Context_Type; Result : out Boolean);
procedure R_Prefix_Step3_Verb (Z : in out Context_Type; Result : out Boolean);
procedure R_Prefix_Step3b_Noun (Z : in out Context_Type; Result : out Boolean);
procedure R_Prefix_Step3a_Noun (Z : in out Context_Type; Result : out Boolean);
procedure R_Prefix_Step2 (Z : in out Context_Type; Result : out Boolean);
procedure R_Prefix_Step1 (Z : in out Context_Type; Result : out Boolean);
Among_String : constant String := "ـ" & "ً" & "ٌ" & "ٍ" & "َ" & "ُ"
& "ِ" & "ّ" & "ْ" & "٠" & "١" & "٢" & "٣" & "٤" & "٥" & "٦" & "٧"
& "٨" & "٩" & "ﺀ" & "ﺁ" & "ﺂ" & "ﺃ" & "ﺄ" & "ﺅ" & "ﺆ" & "ﺇ"
& "ﺈ" & "ﺉ" & "ﺊ" & "ﺋ" & "ﺌ" & "ﺍ" & "ﺎ" & "ﺏ" & "ﺐ" & "ﺑ"
& "ﺒ" & "ﺓ" & "ﺔ" & "ﺕ" & "ﺖ" & "ﺗ" & "ﺘ" & "ﺙ" & "ﺚ" & "ﺛ"
& "ﺜ" & "ﺝ" & "ﺞ" & "ﺟ" & "ﺠ" & "ﺡ" & "ﺢ" & "ﺣ" & "ﺤ" & "ﺥ"
& "ﺦ" & "ﺧ" & "ﺨ" & "ﺩ" & "ﺪ" & "ﺫ" & "ﺬ" & "ﺭ" & "ﺮ" & "ﺯ"
& "ﺰ" & "ﺱ" & "ﺲ" & "ﺳ" & "ﺴ" & "ﺵ" & "ﺶ" & "ﺷ" & "ﺸ" & "ﺹ"
& "ﺺ" & "ﺻ" & "ﺼ" & "ﺽ" & "ﺾ" & "ﺿ" & "ﻀ" & "ﻁ" & "ﻂ" & "ﻃ"
& "ﻄ" & "ﻅ" & "ﻆ" & "ﻇ" & "ﻈ" & "ﻉ" & "ﻊ" & "ﻋ" & "ﻌ" & "ﻍ"
& "ﻎ" & "ﻏ" & "ﻐ" & "ﻑ" & "ﻒ" & "ﻓ" & "ﻔ" & "ﻕ" & "ﻖ" & "ﻗ"
& "ﻘ" & "ﻙ" & "ﻚ" & "ﻛ" & "ﻜ" & "ﻝ" & "ﻞ" & "ﻟ" & "ﻠ" & "ﻡ"
& "ﻢ" & "ﻣ" & "ﻤ" & "ﻥ" & "ﻦ" & "ﻧ" & "ﻨ" & "ﻩ" & "ﻪ" & "ﻫ"
& "ﻬ" & "ﻭ" & "ﻮ" & "ﻯ" & "ﻰ" & "ﻱ" & "ﻲ" & "ﻳ" & "ﻴ" & "ﻵ"
& "ﻶ" & "ﻷ" & "ﻸ" & "ﻹ" & "ﻺ" & "ﻻ" & "ﻼ" & "آ" & "أ" & "ؤ"
& "إ" & "ئ" & "آ" & "أ" & "ؤ" & "إ" & "ئ" & "ال" & "بال" & "كال"
& "لل" & "أآ" & "أأ" & "أؤ" & "أإ" & "أا" & "ف" & "و" & "ال"
& "بال" & "كال" & "لل" & "ب" & "با" & "بب" & "كك" & "سأ"
& "ست" & "سن" & "سي" & "تست" & "نست" & "يست" & "ك" & "كم"
& "هم" & "هن" & "ه" & "ي" & "كما" & "هما" & "نا" & "ها" & "ن"
& "و" & "ي" & "ا" & "ات" & "ت" & "ة" & "ي" & "ك" & "كم" & "هم"
& "كن" & "هن" & "ه" & "كمو" & "ني" & "كما" & "هما" & "نا"
& "ها" & "ن" & "ون" & "ين" & "ان" & "تن" & "ي" & "ا" & "تما"
& "نا" & "تا" & "ت" & "تم" & "وا" & "و" & "تمو" & "ى";
A_0 : constant Among_Array_Type (0 .. 143) := (
(1, 2, -1, 1, 0),
(3, 4, -1, 1, 0),
(5, 6, -1, 1, 0),
(7, 8, -1, 1, 0),
(9, 10, -1, 1, 0),
(11, 12, -1, 1, 0),
(13, 14, -1, 1, 0),
(15, 16, -1, 1, 0),
(17, 18, -1, 1, 0),
(19, 20, -1, 2, 0),
(21, 22, -1, 3, 0),
(23, 24, -1, 4, 0),
(25, 26, -1, 5, 0),
(27, 28, -1, 6, 0),
(29, 30, -1, 7, 0),
(31, 32, -1, 8, 0),
(33, 34, -1, 9, 0),
(35, 36, -1, 10, 0),
(37, 38, -1, 11, 0),
(39, 41, -1, 12, 0),
(42, 44, -1, 16, 0),
(45, 47, -1, 16, 0),
(48, 50, -1, 13, 0),
(51, 53, -1, 13, 0),
(54, 56, -1, 17, 0),
(57, 59, -1, 17, 0),
(60, 62, -1, 14, 0),
(63, 65, -1, 14, 0),
(66, 68, -1, 15, 0),
(69, 71, -1, 15, 0),
(72, 74, -1, 15, 0),
(75, 77, -1, 15, 0),
(78, 80, -1, 18, 0),
(81, 83, -1, 18, 0),
(84, 86, -1, 19, 0),
(87, 89, -1, 19, 0),
(90, 92, -1, 19, 0),
(93, 95, -1, 19, 0),
(96, 98, -1, 20, 0),
(99, 101, -1, 20, 0),
(102, 104, -1, 21, 0),
(105, 107, -1, 21, 0),
(108, 110, -1, 21, 0),
(111, 113, -1, 21, 0),
(114, 116, -1, 22, 0),
(117, 119, -1, 22, 0),
(120, 122, -1, 22, 0),
(123, 125, -1, 22, 0),
(126, 128, -1, 23, 0),
(129, 131, -1, 23, 0),
(132, 134, -1, 23, 0),
(135, 137, -1, 23, 0),
(138, 140, -1, 24, 0),
(141, 143, -1, 24, 0),
(144, 146, -1, 24, 0),
(147, 149, -1, 24, 0),
(150, 152, -1, 25, 0),
(153, 155, -1, 25, 0),
(156, 158, -1, 25, 0),
(159, 161, -1, 25, 0),
(162, 164, -1, 26, 0),
(165, 167, -1, 26, 0),
(168, 170, -1, 27, 0),
(171, 173, -1, 27, 0),
(174, 176, -1, 28, 0),
(177, 179, -1, 28, 0),
(180, 182, -1, 29, 0),
(183, 185, -1, 29, 0),
(186, 188, -1, 30, 0),
(189, 191, -1, 30, 0),
(192, 194, -1, 30, 0),
(195, 197, -1, 30, 0),
(198, 200, -1, 31, 0),
(201, 203, -1, 31, 0),
(204, 206, -1, 31, 0),
(207, 209, -1, 31, 0),
(210, 212, -1, 32, 0),
(213, 215, -1, 32, 0),
(216, 218, -1, 32, 0),
(219, 221, -1, 32, 0),
(222, 224, -1, 33, 0),
(225, 227, -1, 33, 0),
(228, 230, -1, 33, 0),
(231, 233, -1, 33, 0),
(234, 236, -1, 34, 0),
(237, 239, -1, 34, 0),
(240, 242, -1, 34, 0),
(243, 245, -1, 34, 0),
(246, 248, -1, 35, 0),
(249, 251, -1, 35, 0),
(252, 254, -1, 35, 0),
(255, 257, -1, 35, 0),
(258, 260, -1, 36, 0),
(261, 263, -1, 36, 0),
(264, 266, -1, 36, 0),
(267, 269, -1, 36, 0),
(270, 272, -1, 37, 0),
(273, 275, -1, 37, 0),
(276, 278, -1, 37, 0),
(279, 281, -1, 37, 0),
(282, 284, -1, 38, 0),
(285, 287, -1, 38, 0),
(288, 290, -1, 38, 0),
(291, 293, -1, 38, 0),
(294, 296, -1, 39, 0),
(297, 299, -1, 39, 0),
(300, 302, -1, 39, 0),
(303, 305, -1, 39, 0),
(306, 308, -1, 40, 0),
(309, 311, -1, 40, 0),
(312, 314, -1, 40, 0),
(315, 317, -1, 40, 0),
(318, 320, -1, 41, 0),
(321, 323, -1, 41, 0),
(324, 326, -1, 41, 0),
(327, 329, -1, 41, 0),
(330, 332, -1, 42, 0),
(333, 335, -1, 42, 0),
(336, 338, -1, 42, 0),
(339, 341, -1, 42, 0),
(342, 344, -1, 43, 0),
(345, 347, -1, 43, 0),
(348, 350, -1, 43, 0),
(351, 353, -1, 43, 0),
(354, 356, -1, 44, 0),
(357, 359, -1, 44, 0),
(360, 362, -1, 44, 0),
(363, 365, -1, 44, 0),
(366, 368, -1, 45, 0),
(369, 371, -1, 45, 0),
(372, 374, -1, 46, 0),
(375, 377, -1, 46, 0),
(378, 380, -1, 47, 0),
(381, 383, -1, 47, 0),
(384, 386, -1, 47, 0),
(387, 389, -1, 47, 0),
(390, 392, -1, 51, 0),
(393, 395, -1, 51, 0),
(396, 398, -1, 49, 0),
(399, 401, -1, 49, 0),
(402, 404, -1, 50, 0),
(405, 407, -1, 50, 0),
(408, 410, -1, 48, 0),
(411, 413, -1, 48, 0));
A_1 : constant Among_Array_Type (0 .. 4) := (
(414, 415, -1, 1, 0),
(416, 417, -1, 1, 0),
(418, 419, -1, 1, 0),
(420, 421, -1, 1, 0),
(422, 423, -1, 1, 0));
A_2 : constant Among_Array_Type (0 .. 4) := (
(424, 425, -1, 1, 0),
(426, 427, -1, 1, 0),
(428, 429, -1, 2, 0),
(430, 431, -1, 1, 0),
(432, 433, -1, 3, 0));
A_3 : constant Among_Array_Type (0 .. 3) := (
(434, 437, -1, 2, 0),
(438, 443, -1, 1, 0),
(444, 449, -1, 1, 0),
(450, 453, -1, 2, 0));
A_4 : constant Among_Array_Type (0 .. 4) := (
(454, 457, -1, 2, 0),
(458, 461, -1, 1, 0),
(462, 465, -1, 1, 0),
(466, 469, -1, 4, 0),
(470, 473, -1, 3, 0));
A_5 : constant Among_Array_Type (0 .. 1) := (
(474, 475, -1, 1, 0),
(476, 477, -1, 1, 0));
A_6 : constant Among_Array_Type (0 .. 3) := (
(478, 481, -1, 2, 0),
(482, 487, -1, 1, 0),
(488, 493, -1, 1, 0),
(494, 497, -1, 2, 0));
A_7 : constant Among_Array_Type (0 .. 3) := (
(498, 499, -1, 1, 0),
(500, 503, 0, -1, 0),
(504, 507, 0, 2, 0),
(508, 511, -1, 3, 0));
A_8 : constant Among_Array_Type (0 .. 3) := (
(512, 515, -1, 4, 0),
(516, 519, -1, 2, 0),
(520, 523, -1, 3, 0),
(524, 527, -1, 1, 0));
A_9 : constant Among_Array_Type (0 .. 2) := (
(528, 533, -1, 1, 0),
(534, 539, -1, 1, 0),
(540, 545, -1, 1, 0));
A_10 : constant Among_Array_Type (0 .. 9) := (
(546, 547, -1, 1, 0),
(548, 551, -1, 2, 0),
(552, 555, -1, 2, 0),
(556, 559, -1, 2, 0),
(560, 561, -1, 1, 0),
(562, 563, -1, 1, 0),
(564, 569, -1, 3, 0),
(570, 575, -1, 3, 0),
(576, 579, -1, 2, 0),
(580, 583, -1, 2, 0));
A_11 : constant Among_Array_Type (0 .. 0) := (
others => (584, 585, -1, 1, 0));
A_12 : constant Among_Array_Type (0 .. 2) := (
(586, 587, -1, 1, 0),
(588, 589, -1, 1, 0),
(590, 591, -1, 1, 0));
A_13 : constant Among_Array_Type (0 .. 0) := (
others => (592, 595, -1, 1, 0));
A_14 : constant Among_Array_Type (0 .. 0) := (
others => (596, 597, -1, 1, 0));
A_15 : constant Among_Array_Type (0 .. 0) := (
others => (598, 599, -1, 1, 0));
A_16 : constant Among_Array_Type (0 .. 0) := (
others => (600, 601, -1, 1, 0));
A_17 : constant Among_Array_Type (0 .. 11) := (
(602, 603, -1, 1, 0),
(604, 607, -1, 2, 0),
(608, 611, -1, 2, 0),
(612, 615, -1, 2, 0),
(616, 619, -1, 2, 0),
(620, 621, -1, 1, 0),
(622, 627, -1, 3, 0),
(628, 631, -1, 2, 0),
(632, 637, -1, 3, 0),
(638, 643, -1, 3, 0),
(644, 647, -1, 2, 0),
(648, 651, -1, 2, 0));
A_18 : constant Among_Array_Type (0 .. 10) := (
(652, 653, -1, 1, 0),
(654, 657, 0, 3, 0),
(658, 661, 0, 3, 0),
(662, 665, 0, 3, 0),
(666, 669, 0, 2, 0),
(670, 671, -1, 1, 0),
(672, 673, -1, 1, 0),
(674, 679, 6, 4, 0),
(680, 683, 6, 2, 0),
(684, 687, 6, 2, 0),
(688, 689, -1, 1, 0));
A_19 : constant Among_Array_Type (0 .. 1) := (
(690, 693, -1, 1, 0),
(694, 697, -1, 1, 0));
A_20 : constant Among_Array_Type (0 .. 1) := (
(698, 699, -1, 1, 0),
(700, 705, 0, 2, 0));
A_21 : constant Among_Array_Type (0 .. 0) := (
others => (706, 707, -1, 1, 0));
procedure R_Normalize_pre (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
v_1 : Char_Index;
v_2 : Char_Index;
v_3 : Char_Index;
begin
-- do, line 247
v_1 := Z.C;
-- repeat, line 247
<<lab1>>
loop
v_2 := Z.C;
-- or, line 311
v_3 := Z.C;
-- (, line 248
Z.Bra := Z.C; -- [, line 249
-- substring, line 249
Find_Among (Z, A_0, Among_String, null, A);
if A = 0 then
goto lab4;
end if;
Z.Ket := Z.C; -- ], line 249
-- among, line 249
case A is
when 1 =>
-- (, line 250
-- delete, line 250
Slice_Del (Z);
when 2 =>
-- (, line 254
-- <-, line 254
Slice_From (Z, "0");
when 3 =>
-- (, line 255
-- <-, line 255
Slice_From (Z, "1");
when 4 =>
-- (, line 256
-- <-, line 256
Slice_From (Z, "2");
when 5 =>
-- (, line 257
-- <-, line 257
Slice_From (Z, "3");
when 6 =>
-- (, line 258
-- <-, line 258
Slice_From (Z, "4");
when 7 =>
-- (, line 259
-- <-, line 259
Slice_From (Z, "5");
when 8 =>
-- (, line 260
-- <-, line 260
Slice_From (Z, "6");
when 9 =>
-- (, line 261
-- <-, line 261
Slice_From (Z, "7");
when 10 =>
-- (, line 262
-- <-, line 262
Slice_From (Z, "8");
when 11 =>
-- (, line 263
-- <-, line 263
Slice_From (Z, "9");
when 12 =>
-- (, line 266
-- <-, line 266
Slice_From (Z, "ء");
when 13 =>
-- (, line 267
-- <-, line 267
Slice_From (Z, "أ");
when 14 =>
-- (, line 268
-- <-, line 268
Slice_From (Z, "إ");
when 15 =>
-- (, line 269
-- <-, line 269
Slice_From (Z, "ئ");
when 16 =>
-- (, line 270
-- <-, line 270
Slice_From (Z, "آ");
when 17 =>
-- (, line 271
-- <-, line 271
Slice_From (Z, "ؤ");
when 18 =>
-- (, line 272
-- <-, line 272
Slice_From (Z, "ا");
when 19 =>
-- (, line 273
-- <-, line 273
Slice_From (Z, "ب");
when 20 =>
-- (, line 274
-- <-, line 274
Slice_From (Z, "ة");
when 21 =>
-- (, line 275
-- <-, line 275
Slice_From (Z, "ت");
when 22 =>
-- (, line 276
-- <-, line 276
Slice_From (Z, "ث");
when 23 =>
-- (, line 277
-- <-, line 277
Slice_From (Z, "ج");
when 24 =>
-- (, line 278
-- <-, line 278
Slice_From (Z, "ح");
when 25 =>
-- (, line 279
-- <-, line 279
Slice_From (Z, "خ");
when 26 =>
-- (, line 280
-- <-, line 280
Slice_From (Z, "د");
when 27 =>
-- (, line 281
-- <-, line 281
Slice_From (Z, "ذ");
when 28 =>
-- (, line 282
-- <-, line 282
Slice_From (Z, "ر");
when 29 =>
-- (, line 283
-- <-, line 283
Slice_From (Z, "ز");
when 30 =>
-- (, line 284
-- <-, line 284
Slice_From (Z, "س");
when 31 =>
-- (, line 285
-- <-, line 285
Slice_From (Z, "ش");
when 32 =>
-- (, line 286
-- <-, line 286
Slice_From (Z, "ص");
when 33 =>
-- (, line 287
-- <-, line 287
Slice_From (Z, "ض");
when 34 =>
-- (, line 288
-- <-, line 288
Slice_From (Z, "ط");
when 35 =>
-- (, line 289
-- <-, line 289
Slice_From (Z, "ظ");
when 36 =>
-- (, line 290
-- <-, line 290
Slice_From (Z, "ع");
when 37 =>
-- (, line 291
-- <-, line 291
Slice_From (Z, "غ");
when 38 =>
-- (, line 292
-- <-, line 292
Slice_From (Z, "ف");
when 39 =>
-- (, line 293
-- <-, line 293
Slice_From (Z, "ق");
when 40 =>
-- (, line 294
-- <-, line 294
Slice_From (Z, "ك");
when 41 =>
-- (, line 295
-- <-, line 295
Slice_From (Z, "ل");
when 42 =>
-- (, line 296
-- <-, line 296
Slice_From (Z, "م");
when 43 =>
-- (, line 297
-- <-, line 297
Slice_From (Z, "ن");
when 44 =>
-- (, line 298
-- <-, line 298
Slice_From (Z, "ه");
when 45 =>
-- (, line 299
-- <-, line 299
Slice_From (Z, "و");
when 46 =>
-- (, line 300
-- <-, line 300
Slice_From (Z, "ى");
when 47 =>
-- (, line 301
-- <-, line 301
Slice_From (Z, "ي");
when 48 =>
-- (, line 304
-- <-, line 304
Slice_From (Z, "لا");
when 49 =>
-- (, line 305
-- <-, line 305
Slice_From (Z, "لأ");
when 50 =>
-- (, line 306
-- <-, line 306
Slice_From (Z, "لإ");
when 51 =>
-- (, line 307
-- <-, line 307
Slice_From (Z, "لآ");
when others =>
null;
end case;
goto lab3;
<<lab4>>
Z.C := v_3;
-- next, line 312
C := Skip_Utf8 (Z);
if C < 0 then
goto lab2;
end if;
Z.C := C;
<<lab3>>
goto lab1;
<<lab2>>
Z.C := v_2;
exit;
end loop;
<<lab0>>
Z.C := v_1;
Result := True;
end R_Normalize_pre;
procedure R_Normalize_post (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
v_1 : Char_Index;
v_2 : Char_Index;
v_3 : Char_Index;
v_4 : Char_Index;
begin
-- (, line 316
-- do, line 318
v_1 := Z.C;
Z.Lb := Z.C; Z.C := Z.L; -- backwards, line 320
-- (, line 320
Z.Ket := Z.C; -- [, line 321
-- substring, line 321
if Z.C - 1 <= Z.Lb or else Check_Among (Z, Z.C - 1, 5, 16#7c#) then
goto lab0;
-- substring, line 321
end if;
Find_Among_Backward (Z, A_1, Among_String, null, A);
if A = 0 then
goto lab0;
end if;
Z.Bra := Z.C; -- ], line 321
-- (, line 322
-- <-, line 322
Slice_From (Z, "ء");
Z.C := Z.Lb;
<<lab0>>
Z.C := v_1;
-- do, line 329
v_2 := Z.C;
-- repeat, line 329
<<lab2>>
loop
v_3 := Z.C;
-- or, line 338
v_4 := Z.C;
-- (, line 330
Z.Bra := Z.C; -- [, line 332
-- substring, line 332
if Z.C + 1 >= Z.L or else Check_Among (Z, Z.C + 1, 5, 16#7c#) then
goto lab5;
-- substring, line 332
end if;
Find_Among (Z, A_2, Among_String, null, A);
if A = 0 then
goto lab5;
end if;
Z.Ket := Z.C; -- ], line 332
-- among, line 332
case A is
when 1 =>
-- (, line 333
-- <-, line 333
Slice_From (Z, "ا");
when 2 =>
-- (, line 334
-- <-, line 334
Slice_From (Z, "و");
when 3 =>
-- (, line 335
-- <-, line 335
Slice_From (Z, "ي");
when others =>
null;
end case;
goto lab4;
<<lab5>>
Z.C := v_4;
-- next, line 339
C := Skip_Utf8 (Z);
if C < 0 then
goto lab3;
end if;
Z.C := C;
<<lab4>>
goto lab2;
<<lab3>>
Z.C := v_3;
exit;
end loop;
<<lab1>>
Z.C := v_2;
Result := True;
end R_Normalize_post;
procedure R_Checks1 (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
begin
-- (, line 344
Z.Bra := Z.C; -- [, line 345
-- substring, line 345
if Z.C + 3 >= Z.L or else (Character'Pos (Z.P (Z.C + 3 + 1)) /= 132 and then Character'Pos (Z.P (Z.C + 3 + 1)) /= 167) then
Result := False;
return;
-- substring, line 345
end if;
Find_Among (Z, A_3, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
Z.Ket := Z.C; -- ], line 345
-- among, line 345
case A is
when 1 =>
-- (, line 346
if not (Length_Utf8 (Z) > 4) then
Result := False;
return;
end if;
-- set is_noun, line 346
Z.B_Is_noun := True;
-- unset is_verb, line 346
Z.B_Is_verb := False;
-- set is_defined, line 346
Z.B_Is_defined := True;
when 2 =>
-- (, line 347
if not (Length_Utf8 (Z) > 3) then
Result := False;
return;
end if;
-- set is_noun, line 347
Z.B_Is_noun := True;
-- unset is_verb, line 347
Z.B_Is_verb := False;
-- set is_defined, line 347
Z.B_Is_defined := True;
when others =>
null;
end case;
Result := True;
end R_Checks1;
procedure R_Prefix_Step1 (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
begin
-- (, line 353
Z.Bra := Z.C; -- [, line 354
-- substring, line 354
if Z.C + 3 >= Z.L or else Check_Among (Z, Z.C + 3, 5, 16#bc#) then
Result := False;
return;
-- substring, line 354
end if;
Find_Among (Z, A_4, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
Z.Ket := Z.C; -- ], line 354
-- among, line 354
case A is
when 1 =>
-- (, line 355
if not (Length_Utf8 (Z) > 3) then
Result := False;
return;
end if;
-- <-, line 355
Slice_From (Z, "أ");
when 2 =>
-- (, line 356
if not (Length_Utf8 (Z) > 3) then
Result := False;
return;
end if;
-- <-, line 356
Slice_From (Z, "آ");
when 3 =>
-- (, line 358
if not (Length_Utf8 (Z) > 3) then
Result := False;
return;
end if;
-- <-, line 358
Slice_From (Z, "ا");
when 4 =>
-- (, line 359
if not (Length_Utf8 (Z) > 3) then
Result := False;
return;
end if;
-- <-, line 359
Slice_From (Z, "إ");
when others =>
null;
end case;
Result := True;
end R_Prefix_Step1;
procedure R_Prefix_Step2 (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
v_1 : Char_Index;
begin
-- (, line 364
Z.Bra := Z.C; -- [, line 365
-- substring, line 365
if Z.C + 1 >= Z.L or else (Character'Pos (Z.P (Z.C + 1 + 1)) /= 129 and then Character'Pos (Z.P (Z.C + 1 + 1)) /= 136) then
Result := False;
return;
-- substring, line 365
end if;
Find_Among (Z, A_5, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
Z.Ket := Z.C; -- ], line 365
-- (, line 366
if not (Length_Utf8 (Z) > 3) then
Result := False;
return;
end if;
-- not, line 366
v_1 := Z.C;
-- literal, line 366
C := Eq_S (Z, "ا");
if C = 0 then
goto lab0;
end if;
Z.C := Z.C + C;
Result := False;
return;
<<lab0>>
Z.C := v_1;
-- delete, line 366
Slice_Del (Z);
Result := True;
end R_Prefix_Step2;
procedure R_Prefix_Step3a_Noun (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
begin
-- (, line 370
Z.Bra := Z.C; -- [, line 371
-- substring, line 371
if Z.C + 3 >= Z.L or else (Character'Pos (Z.P (Z.C + 3 + 1)) /= 132 and then Character'Pos (Z.P (Z.C + 3 + 1)) /= 167) then
Result := False;
return;
-- substring, line 371
end if;
Find_Among (Z, A_6, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
Z.Ket := Z.C; -- ], line 371
-- among, line 371
case A is
when 1 =>
-- (, line 372
if not (Length_Utf8 (Z) > 5) then
Result := False;
return;
end if;
-- delete, line 372
Slice_Del (Z);
when 2 =>
-- (, line 373
if not (Length_Utf8 (Z) > 4) then
Result := False;
return;
end if;
-- delete, line 373
Slice_Del (Z);
when others =>
null;
end case;
Result := True;
end R_Prefix_Step3a_Noun;
procedure R_Prefix_Step3b_Noun (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
begin
-- (, line 377
Z.Bra := Z.C; -- [, line 378
-- substring, line 378
if Z.C + 1 >= Z.L or else (Character'Pos (Z.P (Z.C + 1 + 1)) /= 168 and then Character'Pos (Z.P (Z.C + 1 + 1)) /= 131) then
Result := False;
return;
-- substring, line 378
end if;
Find_Among (Z, A_7, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
Z.Ket := Z.C; -- ], line 378
-- among, line 378
case A is
when 1 =>
-- (, line 380
if not (Length_Utf8 (Z) > 3) then
Result := False;
return;
end if;
-- delete, line 380
Slice_Del (Z);
when 2 =>
-- (, line 382
if not (Length_Utf8 (Z) > 3) then
Result := False;
return;
end if;
-- <-, line 382
Slice_From (Z, "ب");
when 3 =>
-- (, line 383
if not (Length_Utf8 (Z) > 3) then
Result := False;
return;
end if;
-- <-, line 383
Slice_From (Z, "ك");
when others =>
null;
end case;
Result := True;
end R_Prefix_Step3b_Noun;
procedure R_Prefix_Step3_Verb (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
begin
-- (, line 388
Z.Bra := Z.C; -- [, line 389
-- substring, line 389
Find_Among (Z, A_8, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
Z.Ket := Z.C; -- ], line 389
-- among, line 389
case A is
when 1 =>
-- (, line 391
if not (Length_Utf8 (Z) > 4) then
Result := False;
return;
end if;
-- <-, line 391
Slice_From (Z, "ي");
when 2 =>
-- (, line 392
if not (Length_Utf8 (Z) > 4) then
Result := False;
return;
end if;
-- <-, line 392
Slice_From (Z, "ت");
when 3 =>
-- (, line 393
if not (Length_Utf8 (Z) > 4) then
Result := False;
return;
end if;
-- <-, line 393
Slice_From (Z, "ن");
when 4 =>
-- (, line 394
if not (Length_Utf8 (Z) > 4) then
Result := False;
return;
end if;
-- <-, line 394
Slice_From (Z, "أ");
when others =>
null;
end case;
Result := True;
end R_Prefix_Step3_Verb;
procedure R_Prefix_Step4_Verb (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
begin
-- (, line 398
Z.Bra := Z.C; -- [, line 399
-- substring, line 399
if Z.C + 5 >= Z.L or else Character'Pos (Z.P (Z.C + 5 + 1)) /= 170 then
Result := False;
return;
-- substring, line 399
end if;
Find_Among (Z, A_9, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
Z.Ket := Z.C; -- ], line 399
-- (, line 400
if not (Length_Utf8 (Z) > 4) then
Result := False;
return;
end if;
-- set is_verb, line 400
Z.B_Is_verb := True;
-- unset is_noun, line 400
Z.B_Is_noun := False;
-- <-, line 400
Slice_From (Z, "است");
Result := True;
end R_Prefix_Step4_Verb;
procedure R_Suffix_Noun_Step1a (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
begin
-- (, line 407
Z.Ket := Z.C; -- [, line 408
-- substring, line 408
Find_Among_Backward (Z, A_10, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
Z.Bra := Z.C; -- ], line 408
-- among, line 408
case A is
when 1 =>
-- (, line 409
if not (Length_Utf8 (Z) >= 4) then
Result := False;
return;
end if;
-- delete, line 409
Slice_Del (Z);
when 2 =>
-- (, line 410
if not (Length_Utf8 (Z) >= 5) then
Result := False;
return;
end if;
-- delete, line 410
Slice_Del (Z);
when 3 =>
-- (, line 411
if not (Length_Utf8 (Z) >= 6) then
Result := False;
return;
end if;
-- delete, line 411
Slice_Del (Z);
when others =>
null;
end case;
Result := True;
end R_Suffix_Noun_Step1a;
procedure R_Suffix_Noun_Step1b (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
begin
-- (, line 414
Z.Ket := Z.C; -- [, line 415
-- substring, line 415
if Z.C - 1 <= Z.Lb or else Character'Pos (Z.P (Z.C)) /= 134 then
Result := False;
return;
-- substring, line 415
end if;
Find_Among_Backward (Z, A_11, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
Z.Bra := Z.C; -- ], line 415
-- (, line 416
if not (Length_Utf8 (Z) > 5) then
Result := False;
return;
end if;
-- delete, line 416
Slice_Del (Z);
Result := True;
end R_Suffix_Noun_Step1b;
procedure R_Suffix_Noun_Step2a (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
begin
-- (, line 420
Z.Ket := Z.C; -- [, line 421
-- substring, line 421
Find_Among_Backward (Z, A_12, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
Z.Bra := Z.C; -- ], line 421
-- (, line 422
if not (Length_Utf8 (Z) > 4) then
Result := False;
return;
end if;
-- delete, line 422
Slice_Del (Z);
Result := True;
end R_Suffix_Noun_Step2a;
procedure R_Suffix_Noun_Step2b (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
begin
-- (, line 426
Z.Ket := Z.C; -- [, line 427
-- substring, line 427
if Z.C - 3 <= Z.Lb or else Character'Pos (Z.P (Z.C)) /= 170 then
Result := False;
return;
-- substring, line 427
end if;
Find_Among_Backward (Z, A_13, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
Z.Bra := Z.C; -- ], line 427
-- (, line 428
if not (Length_Utf8 (Z) >= 5) then
Result := False;
return;
end if;
-- delete, line 428
Slice_Del (Z);
Result := True;
end R_Suffix_Noun_Step2b;
procedure R_Suffix_Noun_Step2c1 (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
begin
-- (, line 432
Z.Ket := Z.C; -- [, line 433
-- substring, line 433
if Z.C - 1 <= Z.Lb or else Character'Pos (Z.P (Z.C)) /= 170 then
Result := False;
return;
-- substring, line 433
end if;
Find_Among_Backward (Z, A_14, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
Z.Bra := Z.C; -- ], line 433
-- (, line 434
if not (Length_Utf8 (Z) >= 4) then
Result := False;
return;
end if;
-- delete, line 434
Slice_Del (Z);
Result := True;
end R_Suffix_Noun_Step2c1;
procedure R_Suffix_Noun_Step2c2 (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
begin
-- (, line 437
Z.Ket := Z.C; -- [, line 438
-- substring, line 438
if Z.C - 1 <= Z.Lb or else Character'Pos (Z.P (Z.C)) /= 169 then
Result := False;
return;
-- substring, line 438
end if;
Find_Among_Backward (Z, A_15, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
Z.Bra := Z.C; -- ], line 438
-- (, line 439
if not (Length_Utf8 (Z) >= 4) then
Result := False;
return;
end if;
-- delete, line 439
Slice_Del (Z);
Result := True;
end R_Suffix_Noun_Step2c2;
procedure R_Suffix_Noun_Step3 (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
begin
-- (, line 442
Z.Ket := Z.C; -- [, line 443
-- substring, line 443
if Z.C - 1 <= Z.Lb or else Character'Pos (Z.P (Z.C)) /= 138 then
Result := False;
return;
-- substring, line 443
end if;
Find_Among_Backward (Z, A_16, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
Z.Bra := Z.C; -- ], line 443
-- (, line 444
if not (Length_Utf8 (Z) >= 3) then
Result := False;
return;
end if;
-- delete, line 444
Slice_Del (Z);
Result := True;
end R_Suffix_Noun_Step3;
procedure R_Suffix_Verb_Step1 (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
begin
-- (, line 448
Z.Ket := Z.C; -- [, line 449
-- substring, line 449
Find_Among_Backward (Z, A_17, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
Z.Bra := Z.C; -- ], line 449
-- among, line 449
case A is
when 1 =>
-- (, line 450
if not (Length_Utf8 (Z) >= 4) then
Result := False;
return;
end if;
-- delete, line 450
Slice_Del (Z);
when 2 =>
-- (, line 451
if not (Length_Utf8 (Z) >= 5) then
Result := False;
return;
end if;
-- delete, line 451
Slice_Del (Z);
when 3 =>
-- (, line 452
if not (Length_Utf8 (Z) >= 6) then
Result := False;
return;
end if;
-- delete, line 452
Slice_Del (Z);
when others =>
null;
end case;
Result := True;
end R_Suffix_Verb_Step1;
procedure R_Suffix_Verb_Step2a (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
begin
-- (, line 455
Z.Ket := Z.C; -- [, line 456
-- substring, line 456
Find_Among_Backward (Z, A_18, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
Z.Bra := Z.C; -- ], line 456
-- among, line 456
case A is
when 1 =>
-- (, line 457
if not (Length_Utf8 (Z) >= 4) then
Result := False;
return;
end if;
-- delete, line 457
Slice_Del (Z);
when 2 =>
-- (, line 459
if not (Length_Utf8 (Z) >= 5) then
Result := False;
return;
end if;
-- delete, line 459
Slice_Del (Z);
when 3 =>
-- (, line 460
if not (Length_Utf8 (Z) > 5) then
Result := False;
return;
end if;
-- delete, line 460
Slice_Del (Z);
when 4 =>
-- (, line 461
if not (Length_Utf8 (Z) >= 6) then
Result := False;
return;
end if;
-- delete, line 461
Slice_Del (Z);
when others =>
null;
end case;
Result := True;
end R_Suffix_Verb_Step2a;
procedure R_Suffix_Verb_Step2b (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
begin
-- (, line 465
Z.Ket := Z.C; -- [, line 466
-- substring, line 466
if Z.C - 3 <= Z.Lb or else (Character'Pos (Z.P (Z.C)) /= 133 and then Character'Pos (Z.P (Z.C)) /= 167) then
Result := False;
return;
-- substring, line 466
end if;
Find_Among_Backward (Z, A_19, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
Z.Bra := Z.C; -- ], line 466
-- (, line 467
if not (Length_Utf8 (Z) >= 5) then
Result := False;
return;
end if;
-- delete, line 467
Slice_Del (Z);
Result := True;
end R_Suffix_Verb_Step2b;
procedure R_Suffix_Verb_Step2c (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
begin
-- (, line 472
Z.Ket := Z.C; -- [, line 473
-- substring, line 473
if Z.C - 1 <= Z.Lb or else Character'Pos (Z.P (Z.C)) /= 136 then
Result := False;
return;
-- substring, line 473
end if;
Find_Among_Backward (Z, A_20, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
Z.Bra := Z.C; -- ], line 473
-- among, line 473
case A is
when 1 =>
-- (, line 474
if not (Length_Utf8 (Z) >= 4) then
Result := False;
return;
end if;
-- delete, line 474
Slice_Del (Z);
when 2 =>
-- (, line 475
if not (Length_Utf8 (Z) >= 6) then
Result := False;
return;
end if;
-- delete, line 475
Slice_Del (Z);
when others =>
null;
end case;
Result := True;
end R_Suffix_Verb_Step2c;
procedure R_Suffix_All_alef_maqsura (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
begin
-- (, line 479
Z.Ket := Z.C; -- [, line 480
-- substring, line 480
if Z.C - 1 <= Z.Lb or else Character'Pos (Z.P (Z.C)) /= 137 then
Result := False;
return;
-- substring, line 480
end if;
Find_Among_Backward (Z, A_21, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
Z.Bra := Z.C; -- ], line 480
-- (, line 481
-- <-, line 481
Slice_From (Z, "ي");
Result := True;
end R_Suffix_All_alef_maqsura;
procedure Stem (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
v_1 : Char_Index;
v_3 : Char_Index;
v_4 : Char_Index;
v_5 : Char_Index;
v_6 : Integer;
v_7 : Char_Index;
v_8 : Char_Index;
v_9 : Char_Index;
v_10 : Char_Index;
v_12 : Char_Index;
v_13 : Char_Index;
v_15 : Char_Index;
v_16 : Char_Index;
v_17 : Char_Index;
v_18 : Char_Index;
v_19 : Char_Index;
begin
-- (, line 488
-- set is_noun, line 490
Z.B_Is_noun := True;
-- set is_verb, line 491
Z.B_Is_verb := True;
-- unset is_defined, line 492
Z.B_Is_defined := False;
-- do, line 495
v_1 := Z.C;
-- call Checks1, line 495
R_Checks1 (Z, Result);
Z.C := v_1;
-- do, line 498
-- call Normalize_pre, line 498
R_Normalize_pre (Z, Result);
Z.Lb := Z.C; Z.C := Z.L; -- backwards, line 501
-- do, line 503
v_3 := Z.L - Z.C;
-- or, line 517
v_4 := Z.L - Z.C;
-- (, line 505
-- Boolean test is_verb, line 506
if not Z.B_Is_verb then
goto lab2;
end if;
-- or, line 512
v_5 := Z.L - Z.C;
-- (, line 508
-- atleast, line 509
begin
v_6 := 1;
<<lab5>>
loop
v_7 := Z.L - Z.C;
-- call Suffix_Verb_Step1, line 509
R_Suffix_Verb_Step1 (Z, Result);
if not Result then
goto lab6;
end if;
v_6 := v_6 - 1;
goto lab5;
<<lab6>>
Z.C := Z.L - v_7;
exit;
end loop;
if v_6 > 0 then
goto lab4;
end if;
end;
-- or, line 510
v_8 := Z.L - Z.C;
-- call Suffix_Verb_Step2a, line 510
R_Suffix_Verb_Step2a (Z, Result);
if not Result then
goto lab8;
end if;
goto lab7;
<<lab8>>
Z.C := Z.L - v_8;
-- call Suffix_Verb_Step2c, line 510
R_Suffix_Verb_Step2c (Z, Result);
if not Result then
goto lab9;
end if;
goto lab7;
<<lab9>>
Z.C := Z.L - v_8;
-- next, line 510
C := Skip_Utf8_Backward (Z);
if C < 0 then
goto lab4;
end if;
Z.C := C;
<<lab7>>
goto lab3;
<<lab4>>
Z.C := Z.L - v_5;
-- call Suffix_Verb_Step2b, line 512
R_Suffix_Verb_Step2b (Z, Result);
if not Result then
goto lab10;
end if;
goto lab3;
<<lab10>>
Z.C := Z.L - v_5;
-- call Suffix_Verb_Step2a, line 513
R_Suffix_Verb_Step2a (Z, Result);
if not Result then
goto lab2;
end if;
<<lab3>>
goto lab1;
<<lab2>>
Z.C := Z.L - v_4;
-- (, line 517
-- Boolean test is_noun, line 518
if not Z.B_Is_noun then
goto lab11;
end if;
-- (, line 519
-- try, line 521
v_9 := Z.L - Z.C;
-- or, line 523
v_10 := Z.L - Z.C;
-- call Suffix_Noun_Step2c2, line 522
R_Suffix_Noun_Step2c2 (Z, Result);
if not Result then
goto lab14;
end if;
goto lab13;
<<lab14>>
Z.C := Z.L - v_10;
-- (, line 523
-- not, line 523
-- Boolean test is_defined, line 523
if not Z.B_Is_defined then
goto lab16;
end if;
goto lab15;
<<lab16>>
-- call Suffix_Noun_Step1a, line 523
R_Suffix_Noun_Step1a (Z, Result);
if not Result then
goto lab15;
end if;
-- or, line 525
v_12 := Z.L - Z.C;
-- call Suffix_Noun_Step2a, line 524
R_Suffix_Noun_Step2a (Z, Result);
if not Result then
goto lab18;
end if;
goto lab17;
<<lab18>>
Z.C := Z.L - v_12;
-- call Suffix_Noun_Step2b, line 525
R_Suffix_Noun_Step2b (Z, Result);
if not Result then
goto lab19;
end if;
goto lab17;
<<lab19>>
Z.C := Z.L - v_12;
-- call Suffix_Noun_Step2c1, line 526
R_Suffix_Noun_Step2c1 (Z, Result);
if not Result then
goto lab20;
end if;
goto lab17;
<<lab20>>
Z.C := Z.L - v_12;
-- next, line 527
C := Skip_Utf8_Backward (Z);
if C < 0 then
goto lab15;
end if;
Z.C := C;
<<lab17>>
goto lab13;
<<lab15>>
Z.C := Z.L - v_10;
-- (, line 528
-- call Suffix_Noun_Step1b, line 528
R_Suffix_Noun_Step1b (Z, Result);
if not Result then
goto lab21;
end if;
-- or, line 530
v_13 := Z.L - Z.C;
-- call Suffix_Noun_Step2a, line 529
R_Suffix_Noun_Step2a (Z, Result);
if not Result then
goto lab23;
end if;
goto lab22;
<<lab23>>
Z.C := Z.L - v_13;
-- call Suffix_Noun_Step2b, line 530
R_Suffix_Noun_Step2b (Z, Result);
if not Result then
goto lab24;
end if;
goto lab22;
<<lab24>>
Z.C := Z.L - v_13;
-- call Suffix_Noun_Step2c1, line 531
R_Suffix_Noun_Step2c1 (Z, Result);
if not Result then
goto lab21;
end if;
<<lab22>>
goto lab13;
<<lab21>>
Z.C := Z.L - v_10;
-- (, line 532
-- not, line 532
-- Boolean test is_defined, line 532
if not Z.B_Is_defined then
goto lab26;
end if;
goto lab25;
<<lab26>>
-- call Suffix_Noun_Step2a, line 532
R_Suffix_Noun_Step2a (Z, Result);
if not Result then
goto lab25;
end if;
goto lab13;
<<lab25>>
Z.C := Z.L - v_10;
-- call Suffix_Noun_Step2b, line 533
R_Suffix_Noun_Step2b (Z, Result);
if not Result then
Z.C := Z.L - v_9;
goto lab12;
end if;
<<lab13>>
<<lab12>>
-- call Suffix_Noun_Step3, line 535
R_Suffix_Noun_Step3 (Z, Result);
if not Result then
goto lab11;
end if;
goto lab1;
<<lab11>>
Z.C := Z.L - v_4;
-- call Suffix_All_alef_maqsura, line 541
R_Suffix_All_alef_maqsura (Z, Result);
if not Result then
goto lab0;
end if;
<<lab1>>
<<lab0>>
Z.C := Z.L - v_3;
Z.C := Z.Lb;
-- do, line 546
v_15 := Z.C;
-- (, line 546
-- try, line 547
v_16 := Z.C;
-- call Prefix_Step1, line 547
R_Prefix_Step1 (Z, Result);
if not Result then
Z.C := v_16;
goto lab28;
end if;
<<lab28>>
-- try, line 548
v_17 := Z.C;
-- call Prefix_Step2, line 548
R_Prefix_Step2 (Z, Result);
if not Result then
Z.C := v_17;
goto lab29;
end if;
<<lab29>>
-- or, line 550
v_18 := Z.C;
-- call Prefix_Step3a_Noun, line 549
R_Prefix_Step3a_Noun (Z, Result);
if not Result then
goto lab31;
end if;
goto lab30;
<<lab31>>
Z.C := v_18;
-- (, line 550
-- Boolean test is_noun, line 550
if not Z.B_Is_noun then
goto lab32;
end if;
-- call Prefix_Step3b_Noun, line 550
R_Prefix_Step3b_Noun (Z, Result);
if not Result then
goto lab32;
end if;
goto lab30;
<<lab32>>
Z.C := v_18;
-- (, line 551
-- Boolean test is_verb, line 551
if not Z.B_Is_verb then
goto lab27;
end if;
-- try, line 551
v_19 := Z.C;
-- call Prefix_Step3_Verb, line 551
R_Prefix_Step3_Verb (Z, Result);
if not Result then
Z.C := v_19;
goto lab33;
end if;
<<lab33>>
-- call Prefix_Step4_Verb, line 551
R_Prefix_Step4_Verb (Z, Result);
if not Result then
goto lab27;
end if;
<<lab30>>
<<lab27>>
Z.C := v_15;
-- do, line 556
-- call Normalize_post, line 556
R_Normalize_post (Z, Result);
Result := True;
end Stem;
end Stemmer.Arabic;
| 27.021727 | 129 | 0.418276 |
59d7800b569e43c94d0775e7763c31af21838fb1 | 12,864 | adb | Ada | source/league/league-characters.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | source/league/league-characters.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | source/league/league-characters.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 4 | 2017-07-18T07:11:05.000Z | 2020-06-21T03:02:25.000Z | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Localization, Internationalization, Globalization for Ada --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2011-2015, Vadim Godunko <[email protected]> --
-- 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.Internals.Unicode.Properties;
package body League.Characters is
use type Matreshka.Internals.Unicode.Code_Unit_32;
---------
-- "<" --
---------
not overriding function "<"
(Left : Universal_Character; Right : Universal_Character) return Boolean is
begin
return Left.Code < Right.Code;
end "<";
---------
-- "<" --
---------
not overriding function "<"
(Left : Universal_Character; Right : Wide_Wide_Character) return Boolean is
begin
return Left.Code < Wide_Wide_Character'Pos (Right);
end "<";
---------
-- "<" --
---------
not overriding function "<"
(Left : Wide_Wide_Character; Right : Universal_Character) return Boolean is
begin
return Wide_Wide_Character'Pos (Left) < Right.Code;
end "<";
----------
-- "<=" --
----------
not overriding function "<="
(Left : Universal_Character; Right : Universal_Character) return Boolean is
begin
return Left.Code <= Right.Code;
end "<=";
----------
-- "<=" --
----------
not overriding function "<="
(Left : Universal_Character; Right : Wide_Wide_Character) return Boolean is
begin
return Left.Code <= Wide_Wide_Character'Pos (Right);
end "<=";
----------
-- "<=" --
----------
not overriding function "<="
(Left : Wide_Wide_Character; Right : Universal_Character) return Boolean is
begin
return Wide_Wide_Character'Pos (Left) <= Right.Code;
end "<=";
---------
-- "=" --
---------
overriding function "="
(Left : Universal_Character; Right : Universal_Character) return Boolean is
begin
return Left.Code = Right.Code;
end "=";
---------
-- "=" --
---------
not overriding function "="
(Left : Universal_Character; Right : Wide_Wide_Character) return Boolean is
begin
return Left.Code = Wide_Wide_Character'Pos (Right);
end "=";
---------
-- "=" --
---------
not overriding function "="
(Left : Wide_Wide_Character; Right : Universal_Character) return Boolean is
begin
return Wide_Wide_Character'Pos (Left) = Right.Code;
end "=";
---------
-- ">" --
---------
not overriding function ">"
(Left : Universal_Character; Right : Universal_Character) return Boolean is
begin
return Left.Code > Right.Code;
end ">";
---------
-- ">" --
---------
not overriding function ">"
(Left : Universal_Character; Right : Wide_Wide_Character) return Boolean is
begin
return Left.Code > Wide_Wide_Character'Pos (Right);
end ">";
---------
-- ">" --
---------
not overriding function ">"
(Left : Wide_Wide_Character; Right : Universal_Character) return Boolean is
begin
return Wide_Wide_Character'Pos (Left) > Right.Code;
end ">";
----------
-- ">=" --
----------
not overriding function ">="
(Left : Universal_Character; Right : Universal_Character) return Boolean is
begin
return Left.Code >= Right.Code;
end ">=";
----------
-- ">=" --
----------
not overriding function ">="
(Left : Universal_Character; Right : Wide_Wide_Character) return Boolean is
begin
return Left.Code >= Wide_Wide_Character'Pos (Right);
end ">=";
----------
-- ">=" --
----------
not overriding function ">="
(Left : Wide_Wide_Character; Right : Universal_Character) return Boolean is
begin
return Wide_Wide_Character'Pos (Left) >= Right.Code;
end ">=";
----------------------
-- General_Category --
----------------------
function General_Category
(Self : Universal_Character'Class) return General_Category_Values is
begin
if Self.Code in Matreshka.Internals.Unicode.Code_Point then
return
Matreshka.Internals.Unicode.Properties.General_Category (Self.Code);
else
raise Constraint_Error with "Invalid Unicode code point";
end if;
end General_Category;
--------------
-- Is_Digit --
--------------
function Is_Digit (Self : Universal_Character'Class) return Boolean is
begin
return Self.General_Category in Decimal_Number .. Other_Number;
end Is_Digit;
--------------------
-- Is_ID_Continue --
--------------------
function Is_ID_Continue (Self : Universal_Character'Class) return Boolean is
begin
return
Self.Code in Matreshka.Internals.Unicode.Code_Point
and then Matreshka.Internals.Unicode.Properties.Is_ID_Continue
(Self.Code);
end Is_ID_Continue;
-----------------
-- Is_ID_Start --
-----------------
function Is_ID_Start (Self : Universal_Character'Class) return Boolean is
begin
return
Self.Code in Matreshka.Internals.Unicode.Code_Point
and then Matreshka.Internals.Unicode.Properties.Is_ID_Start
(Self.Code);
end Is_ID_Start;
--------------------------------
-- Is_Noncharacter_Code_Point --
--------------------------------
function Is_Noncharacter_Code_Point
(Self : Universal_Character'Class) return Boolean is
begin
return
Self.Code in Matreshka.Internals.Unicode.Code_Point
and then
Matreshka.Internals.Unicode.Properties.Is_Noncharacter_Code_Point
(Self.Code);
end Is_Noncharacter_Code_Point;
--------------------
-- Is_Punctuation --
--------------------
function Is_Punctuation (Self : Universal_Character'Class) return Boolean is
begin
return
Self.General_Category in Connector_Punctuation .. Other_Punctuation;
end Is_Punctuation;
--------------
-- Is_Valid --
--------------
function Is_Valid (Self : Universal_Character'Class) return Boolean is
begin
return Matreshka.Internals.Unicode.Is_Valid (Self.Code);
end Is_Valid;
--------------------
-- Is_White_Space --
--------------------
function Is_White_Space (Self : Universal_Character'Class) return Boolean is
begin
return
Self.Code in Matreshka.Internals.Unicode.Code_Point
and then Matreshka.Internals.Unicode.Properties.Is_White_Space
(Self.Code);
end Is_White_Space;
----------------------
-- East_Asian_Width --
----------------------
function East_Asian_Width
(Self : Universal_Character'Class) return East_Asian_Width_Values is
begin
if Self.Code in Matreshka.Internals.Unicode.Code_Point then
return
Matreshka.Internals.Unicode.Properties.East_Asian_Width (Self.Code);
else
raise Constraint_Error with "Invalid Unicode code point";
end if;
end East_Asian_Width;
---------------
-- Lowercase --
---------------
function Lowercase (Self : Universal_Character'Class) return Boolean is
begin
return
Self.Code in Matreshka.Internals.Unicode.Code_Point
and then Matreshka.Internals.Unicode.Properties.Lowercase
(Self.Code);
end Lowercase;
-----------------------------
-- Simple_Casefold_Mapping --
-----------------------------
function Simple_Casefold_Mapping
(Self : Universal_Character'Class) return Universal_Character is
begin
return
(Code =>
Matreshka.Internals.Unicode.Properties.Simple_Casefold_Mapping
(Self.Code));
end Simple_Casefold_Mapping;
------------------------------
-- Simple_Lowercase_Mapping --
------------------------------
function Simple_Lowercase_Mapping
(Self : Universal_Character'Class) return Universal_Character is
begin
return
(Code =>
Matreshka.Internals.Unicode.Properties.Simple_Lowercase_Mapping
(Self.Code));
end Simple_Lowercase_Mapping;
------------------------------
-- Simple_Titlecase_Mapping --
------------------------------
function Simple_Titlecase_Mapping
(Self : Universal_Character'Class) return Universal_Character is
begin
return
(Code =>
Matreshka.Internals.Unicode.Properties.Simple_Titlecase_Mapping
(Self.Code));
end Simple_Titlecase_Mapping;
------------------------------
-- Simple_Uppercase_Mapping --
------------------------------
function Simple_Uppercase_Mapping
(Self : Universal_Character'Class) return Universal_Character is
begin
return
(Code =>
Matreshka.Internals.Unicode.Properties.Simple_Uppercase_Mapping
(Self.Code));
end Simple_Uppercase_Mapping;
----------------------------
-- To_Universal_Character --
----------------------------
function To_Universal_Character
(Self : Wide_Wide_Character) return Universal_Character is
begin
return Universal_Character'(Code => Wide_Wide_Character'Pos (Self));
end To_Universal_Character;
----------------------------
-- To_Wide_Wide_Character --
----------------------------
function To_Wide_Wide_Character
(Self : Universal_Character'Class) return Wide_Wide_Character is
begin
return Wide_Wide_Character'Val (Self.Code);
end To_Wide_Wide_Character;
---------------
-- Uppercase --
---------------
function Uppercase (Self : Universal_Character'Class) return Boolean is
begin
return
Self.Code in Matreshka.Internals.Unicode.Code_Point
and then Matreshka.Internals.Unicode.Properties.Uppercase
(Self.Code);
end Uppercase;
end League.Characters;
| 31.60688 | 79 | 0.536536 |
41f2c9b7f303fd68de653096adbc20020522cf22 | 4,127 | ads | Ada | Ada95/samples/ncurses2-genericputs.ads | neverware-mirrors/ncurses | 931939e0d2765af13962820e59cb6629df3ee638 | [
"X11"
] | 269 | 2015-03-01T21:34:42.000Z | 2022-03-30T23:07:18.000Z | Ada95/samples/ncurses2-genericputs.ads | neverware-mirrors/ncurses | 931939e0d2765af13962820e59cb6629df3ee638 | [
"X11"
] | 3 | 2020-10-09T15:00:37.000Z | 2020-10-09T15:05:19.000Z | Ada95/samples/ncurses2-genericputs.ads | neverware-mirrors/ncurses | 931939e0d2765af13962820e59cb6629df3ee638 | [
"X11"
] | 97 | 2016-04-25T06:22:54.000Z | 2022-03-30T23:07:19.000Z | ------------------------------------------------------------------------------
-- --
-- GNAT ncurses Binding Samples --
-- --
-- ncurses --
-- --
-- B O D Y --
-- --
------------------------------------------------------------------------------
-- Copyright 2020 Thomas E. Dickey --
-- Copyright 2000-2006,2009 Free Software Foundation, Inc. --
-- --
-- Permission is hereby granted, free of charge, to any person obtaining a --
-- copy of this software and associated documentation files (the --
-- "Software"), to deal in the Software without restriction, including --
-- without limitation the rights to use, copy, modify, merge, publish, --
-- distribute, distribute with modifications, sublicense, and/or sell --
-- copies of the Software, and to permit persons to whom the Software is --
-- furnished to do so, subject to the following conditions: --
-- --
-- The above copyright notice and this permission notice shall be included --
-- in all copies or substantial portions of the Software. --
-- --
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS --
-- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF --
-- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. --
-- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, --
-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR --
-- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR --
-- THE USE OR OTHER DEALINGS IN THE SOFTWARE. --
-- --
-- Except as contained in this notice, the name(s) of the above copyright --
-- holders shall not be used in advertising or otherwise to promote the --
-- sale, use or other dealings in this Software without prior written --
-- authorization. --
------------------------------------------------------------------------------
-- Author: Eugene V. Melaragno <[email protected]> 2000
-- Version Control
-- $Revision: 1.4 $
-- $Date: 2020/02/02 23:34:34 $
-- Binding Version 01.00
------------------------------------------------------------------------------
with Ada.Text_IO; use Ada.Text_IO;
with Ada.Strings.Bounded;
use Ada.Strings.Bounded;
with Interfaces.C; use Interfaces.C;
with Interfaces.C.Strings; use Interfaces.C.Strings;
with Terminal_Interface.Curses;
generic
Max : Natural;
-- type mystring is private;
-- type myint is
package ncurses2.genericPuts is
package BS is new
Ada.Strings.Bounded.Generic_Bounded_Length (Max);
use BS;
procedure myGet (Win : Terminal_Interface.Curses.Window
:= Terminal_Interface.Curses.Standard_Window;
Str : out BS.Bounded_String;
Len : Integer := -1);
procedure myPut (Str : out BS.Bounded_String;
i : Integer;
Base : Number_Base := 10);
-- the default should be Ada.Text_IO.Integer_IO.Default_Base
-- but Default_Base is hidden in the generic so doesn't exist!
procedure myAdd (Str : BS.Bounded_String);
procedure Fill_String (Cp : chars_ptr; Str : out BS.Bounded_String);
end ncurses2.genericPuts;
| 55.77027 | 78 | 0.468621 |
41e4b831626c57c7f25b00244c1458fb3d767d11 | 3,720 | ads | Ada | resources/scripts/misc/shadowserver.ads | rbadguy/Amass | 24c04bb4f26d3ee41149de36dd94bc115e05be40 | [
"Apache-2.0"
] | null | null | null | resources/scripts/misc/shadowserver.ads | rbadguy/Amass | 24c04bb4f26d3ee41149de36dd94bc115e05be40 | [
"Apache-2.0"
] | null | null | null | resources/scripts/misc/shadowserver.ads | rbadguy/Amass | 24c04bb4f26d3ee41149de36dd94bc115e05be40 | [
"Apache-2.0"
] | null | null | null | -- Copyright © by Jeff Foley 2017-2022. All rights reserved.
-- Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
-- SPDX-License-Identifier: Apache-2.0
name = "ShadowServer"
type = "misc"
local shadowServerWhoisAddress = ""
-- shadowServerWhoisURL is the URL for the ShadowServer whois server.
local shadowServerWhoisURL = "asn.shadowserver.org"
function start()
set_rate_limit(2)
end
function asn(ctx, addr, asn)
if (shadowServerWhoisAddress == "") then
shadowServerWhoisAddress = get_whois_addr(ctx)
if (shadowServerWhoisAddress == "") then return end
end
local result
if (asn == 0) then
if (addr == "") then return end
result = origin(ctx, addr)
if (result == nil) then return end
check_rate_limit()
local cidrs = netblocks(ctx, result.asn)
if (cidrs == nil or #cidrs == 0) then return end
result['netblocks'] = cidrs
else
local cidrs = netblocks(ctx, asn)
if (cidrs == nil or #cidrs == 0) then return end
check_rate_limit()
if (addr == "") then
local parts = split(cidrs[1], "/")
if (#parts < 2) then return end
addr = parts[1]
end
result = origin(ctx, addr)
if (result == nil) then return end
result['netblocks'] = cidrs
end
new_asn(ctx, result)
end
function origin(ctx, addr)
if not is_ipv4(addr) then return nil end
local name = reverse_ip(addr) .. ".origin.asn.shadowserver.org"
local resp, err = resolve(ctx, name, "TXT", false)
if ((err ~= nil and err ~= "") or #resp == 0) then return nil end
local fields = split(resp[1].rrdata, "|")
return {
['addr']=addr,
['asn']=tonumber(trim_space(fields[1])),
['prefix']=trim_space(fields[2]),
['cc']=trim_space(fields[4]),
['desc']=trim_space(fields[3]) .. " - " .. trim_space(fields[5]),
}
end
function netblocks(ctx, asn)
local conn, err = socket.connect(ctx, shadowServerWhoisAddress, 43, "tcp")
if (err ~= nil and err ~= "") then return nil end
_, err = conn:send("prefix " .. tostring(asn) .. "\n")
if (err ~= nil and err ~= "") then
conn:close()
return nil
end
local data
data, err = conn:recv_all()
if (err ~= nil and err ~= "") then
conn:close()
return nil
end
local netblocks = {}
for _, block in pairs(split(data, "\n")) do
table.insert(netblocks, trim_space(block))
end
conn:close()
return netblocks
end
function split(str, delim)
local result = {}
local pattern = "[^%" .. delim .. "]+"
local matches = find(str, pattern)
if (matches == nil or #matches == 0) then return result end
for _, match in pairs(matches) do
table.insert(result, match)
end
return result
end
function get_whois_addr(ctx)
local resp, err = resolve(ctx, shadowServerWhoisURL, "A", false)
if ((err ~= nil and err ~= "") or #resp == 0) then return "" end
return resp[1].rrdata
end
function is_ipv4(addr)
local octets = { addr:match("^(%d+)%.(%d+)%.(%d+)%.(%d+)$") }
if (#octets == 4) then
for _, v in pairs(octets) do
if tonumber(v) > 255 then return false end
end
return true
end
return false
end
function reverse_ip(addr)
local octets = { addr:match("^(%d+)%.(%d+)%.(%d+)%.(%d+)$") }
local ip = ""
for i, o in pairs(octets) do
local n = o
if (i ~= 1) then n = n .. "." end
ip = n .. ip
end
return ip
end
function trim_space(s)
if (s == nil) then return "" end
return s:match( "^%s*(.-)%s*$" )
end
| 26.013986 | 97 | 0.581452 |
a1f4cb00b3539fa318c22a45b144c8d83ae17800 | 58 | ads | Ada | Ada/inc/Problem_63.ads | Tim-Tom/project-euler | 177e0043ee93409742ec596c4379251f681b4275 | [
"Unlicense"
] | null | null | null | Ada/inc/Problem_63.ads | Tim-Tom/project-euler | 177e0043ee93409742ec596c4379251f681b4275 | [
"Unlicense"
] | null | null | null | Ada/inc/Problem_63.ads | Tim-Tom/project-euler | 177e0043ee93409742ec596c4379251f681b4275 | [
"Unlicense"
] | null | null | null | package Problem_63 is
procedure Solve;
end Problem_63;
| 14.5 | 21 | 0.793103 |
41737255a68cbf8cfb8818dc99f90293d0759b8a | 649 | ads | Ada | firmware/coreboot/src/mainboard/google/link/gma-mainboard.ads | fabiojna02/OpenCellular | 45b6a202d6b2e2485c89955b9a6da920c4d56ddb | [
"CC-BY-4.0",
"BSD-3-Clause"
] | 1 | 2019-11-04T07:11:25.000Z | 2019-11-04T07:11:25.000Z | firmware/coreboot/src/mainboard/google/link/gma-mainboard.ads | aimin-wang/OpenCellular | 5308146bf7edf43cc81c0e4d15305b711117070a | [
"CC-BY-4.0",
"BSD-3-Clause"
] | 13 | 2018-10-12T21:29:09.000Z | 2018-10-25T20:06:51.000Z | firmware/coreboot/src/mainboard/google/link/gma-mainboard.ads | aimin-wang/OpenCellular | 5308146bf7edf43cc81c0e4d15305b711117070a | [
"CC-BY-4.0",
"BSD-3-Clause"
] | null | null | null | --
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 2 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
--
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
use HW.GFX.GMA;
use HW.GFX.GMA.Display_Probing;
private package GMA.Mainboard is
ports : constant Port_List :=
(Internal,
DP3,
HDMI3,
others => Disabled);
end GMA.Mainboard;
| 24.961538 | 71 | 0.718028 |
2f09adb6fabd316f709cbde55177e058a0d5189a | 5,729 | ads | Ada | src/natools-s_expressions-interpreters.ads | faelys/natools | 947c004e6f69ca144942c6af40e102d089223cf8 | [
"0BSD"
] | null | null | null | src/natools-s_expressions-interpreters.ads | faelys/natools | 947c004e6f69ca144942c6af40e102d089223cf8 | [
"0BSD"
] | null | null | null | src/natools-s_expressions-interpreters.ads | faelys/natools | 947c004e6f69ca144942c6af40e102d089223cf8 | [
"0BSD"
] | null | null | null | ------------------------------------------------------------------------------
-- Copyright (c) 2013-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.S_Expressions.Interpreters provides an implemntation of a --
-- dispatching command interpreter. The base list of a given S-expression --
-- is considered as list of command, either argumentless (atoms) or with a --
-- S-expression argument (sublist). Sublists that don't start with an atom --
-- are silently ignored and can be used as comments. --
-- --
-- Formal types represent common objets for all the command, Shared_State --
-- begin read/write while Shared_Context is read-only. --
------------------------------------------------------------------------------
with Natools.S_Expressions.Lockable;
private with Ada.Containers.Indefinite_Ordered_Maps;
private with Natools.References;
private with Natools.S_Expressions.Atom_Refs;
private with Natools.Storage_Pools;
generic
type Shared_State (<>) is limited private;
type Shared_Context (<>) is limited private;
package Natools.S_Expressions.Interpreters is
pragma Preelaborate (Interpreters);
Command_Not_Found : exception;
type Command is interface;
procedure Execute
(Self : in Command;
State : in out Shared_State;
Context : in Shared_Context;
Name : in Atom)
is null;
-- Execute a single argumentless command
procedure Execute
(Self : in Command;
State : in out Shared_State;
Context : in Shared_Context;
Cmd : in out Lockable.Descriptor'Class)
is null;
-- Execute a single command with arguments
type Null_Command is new Command with null record;
Do_Nothing : Null_Command := Null_Command'(null record);
type Interpreter is new Command with private;
pragma Preelaborable_Initialization (Interpreter);
procedure Add_Command
(Self : in out Interpreter;
Name : in Atom;
Cmd : in Command'Class);
procedure Add
(Self : in out Interpreter;
Name : in String;
Cmd : in Command'Class);
function Has_Command (Self : Interpreter; Name : Atom) return Boolean;
function Is_Empty (Self : Interpreter) return Boolean;
procedure Set_Fallback
(Self : in out Interpreter;
Name : in Atom);
procedure Reset_Fallback (Self : in out Interpreter);
not overriding procedure Execute
(Self : in Interpreter;
Expression : in out Lockable.Descriptor'Class;
State : in out Shared_State;
Context : in Shared_Context);
-- Execute an expression, raising Command_Not_Found on unknown commands
not overriding procedure Execute
(Self : in Interpreter;
Fallback : in Command'Class;
Expression : in out Lockable.Descriptor'Class;
State : in out Shared_State;
Context : in Shared_Context);
-- Execute an expression with temporary fallback for unknown commands
overriding procedure Execute
(Self : in Interpreter;
State : in out Shared_State;
Context : in Shared_Context;
Name : in Atom);
-- Execute a single argumentless command
overriding procedure Execute
(Self : in Interpreter;
State : in out Shared_State;
Context : in Shared_Context;
Cmd : in out Lockable.Descriptor'Class);
-- Execute a single command with arguments
type Command_Description is private;
pragma Preelaborable_Initialization (Command_Description);
type Command_Array is array (Positive range <>) of Command_Description;
function Build (Commands : Command_Array) return Interpreter;
function Build (Commands : Command_Array; Fallback : String)
return Interpreter;
function Item (Name : String; Cmd : Command'Class)
return Command_Description;
private
type Exception_Command is new Command with null record;
package Command_Maps is new Ada.Containers.Indefinite_Ordered_Maps
(Atom, Command'Class, Less_Than);
type Interpreter is new Command with record
Commands : Command_Maps.Map;
Max_Length : Count := 0;
Fallback_Name : Atom_Refs.Reference;
end record;
package Command_Refs is new Natools.References
(Command'Class,
Storage_Pools.Access_In_Default_Pool'Storage_Pool,
Storage_Pools.Access_In_Default_Pool'Storage_Pool);
type Command_Description is record
Name : Atom_Refs.Immutable_Reference;
Cmd : Command_Refs.Immutable_Reference;
end record;
end Natools.S_Expressions.Interpreters;
| 36.724359 | 78 | 0.636062 |
415373af059bb3e47694f70787bd8bd53b29b4c2 | 1,961 | adb | Ada | src/gdb/gdb-7.11/gdb/testsuite/gdb.ada/fixed_points/fixed_points.adb | alrooney/unum-sdk | bbccb10b0cd3500feccbbef22e27ea111c3d18eb | [
"Apache-2.0"
] | 31 | 2018-08-01T21:25:24.000Z | 2022-02-14T07:52:34.000Z | src/gdb/gdb-7.11/gdb/testsuite/gdb.ada/fixed_points/fixed_points.adb | alrooney/unum-sdk | bbccb10b0cd3500feccbbef22e27ea111c3d18eb | [
"Apache-2.0"
] | 40 | 2018-12-03T19:48:52.000Z | 2021-03-10T06:34:26.000Z | src/gdb/gdb-7.11/gdb/testsuite/gdb.ada/fixed_points/fixed_points.adb | alrooney/unum-sdk | bbccb10b0cd3500feccbbef22e27ea111c3d18eb | [
"Apache-2.0"
] | 20 | 2018-11-16T21:19:22.000Z | 2021-10-18T23:08:24.000Z | -- Copyright 2004-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 System;
procedure Fixed_Points is
------------
-- Test 1 --
------------
-- Fixed point subtypes
type Base_Fixed_Point_Type is
delta 1.0 / 16.0
range (System.Min_Int / 2) * 1.0 / 16.0 ..
(System.Max_Int / 2) * 1.0 / 16.0;
subtype Fixed_Point_Subtype is
Base_Fixed_Point_Type range -50.0 .. 50.0;
type New_Fixed_Point_Type is
new Base_Fixed_Point_Type range -50.0 .. 50.0;
Base_Object : Base_Fixed_Point_Type := -50.0;
Subtype_Object : Fixed_Point_Subtype := -50.0;
New_Type_Object : New_Fixed_Point_Type := -50.0;
------------
-- Test 2 --
------------
-- Overprecise delta
Overprecise_Delta : constant := 0.135791357913579;
-- delta whose significant figures cannot be stored into a long.
type Overprecise_Fixed_Point is
delta Overprecise_Delta range 0.0 .. 200.0;
for Overprecise_Fixed_Point'Small use Overprecise_Delta;
Overprecise_Object : Overprecise_Fixed_Point :=
Overprecise_Fixed_Point'Small;
begin
Base_Object := 1.0/16.0; -- Set breakpoint here
Subtype_Object := 1.0/16.0;
New_Type_Object := 1.0/16.0;
Overprecise_Object := Overprecise_Fixed_Point'Small * 2;
end Fixed_Points;
| 30.640625 | 73 | 0.677206 |
299992f6b7c0d0731d46164bd5ace4a250221fd7 | 10,326 | adb | Ada | aunit/aunit-test_results.adb | btmalone/alog | 164a0a3e82aee414dc6125b64cd8ccc3a01876f9 | [
"Apache-2.0"
] | null | null | null | aunit/aunit-test_results.adb | btmalone/alog | 164a0a3e82aee414dc6125b64cd8ccc3a01876f9 | [
"Apache-2.0"
] | 3 | 2018-12-23T03:07:49.000Z | 2019-06-03T20:16:30.000Z | aunit/aunit-test_results.adb | btmalone/alog | 164a0a3e82aee414dc6125b64cd8ccc3a01876f9 | [
"Apache-2.0"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- A U N I T . T E S T _ R E S U L T S --
-- --
-- B o d y --
-- --
-- --
-- Copyright (C) 2000-2011, AdaCore --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT is maintained by AdaCore (http://www.adacore.com) --
-- --
------------------------------------------------------------------------------
with AUnit.Memory.Utils;
-- Record test results.
package body AUnit.Test_Results is
-----------------------
-- Local Subprograms --
-----------------------
function Alloc_Failure is new AUnit.Memory.Utils.Gen_Alloc
(Test_Failure, Test_Failure_Access);
function Alloc_Error is new AUnit.Memory.Utils.Gen_Alloc
(Test_Error, Test_Error_Access);
E_Count : Count_Type;
F_Count : Count_Type;
S_Count : Count_Type;
procedure Iterate_Error (Position : Result_Lists.Cursor);
procedure Iterate_Failure (Position : Result_Lists.Cursor);
procedure Iterate_Success (Position : Result_Lists.Cursor);
function Is_Error (Position : Result_Lists.Cursor) return Boolean;
function Is_Failure (Position : Result_Lists.Cursor) return Boolean;
function Is_Success (Position : Result_Lists.Cursor) return Boolean;
generic
with function Test (Position : Result_Lists.Cursor) return Boolean;
procedure Gen_Extract (R : in out Result;
E : in out Result_Lists.List);
-------------------
-- Iterate_Error --
-------------------
procedure Iterate_Error (Position : Result_Lists.Cursor) is
begin
if Result_Lists.Element (Position).Error /= null then
E_Count := E_Count + 1;
end if;
end Iterate_Error;
---------------------
-- Iterate_Failure --
---------------------
procedure Iterate_Failure (Position : Result_Lists.Cursor) is
begin
if Result_Lists.Element (Position).Failure /= null then
F_Count := F_Count + 1;
end if;
end Iterate_Failure;
---------------------
-- Iterate_Success --
---------------------
procedure Iterate_Success (Position : Result_Lists.Cursor) is
begin
if Result_Lists.Element (Position).Error = null
and then Result_Lists.Element (Position).Failure = null
then
S_Count := S_Count + 1;
end if;
end Iterate_Success;
-----------------
-- Gen_Extract --
-----------------
procedure Gen_Extract
(R : in out Result;
E : in out Result_Lists.List)
is
C : Result_Lists.Cursor;
Prev : Result_Lists.Cursor;
use Result_Lists;
begin
C := First (R.Result_List);
Prev := No_Element;
while Has_Element (C) loop
if Test (C) then
Splice (Target => E,
Before => No_Element,
Source => R.Result_List,
Position => C);
if Prev = No_Element then
C := First (R.Result_List);
else
C := Next (Prev);
end if;
else
Prev := C;
Next (C);
end if;
end loop;
end Gen_Extract;
--------------
-- Is_Error --
--------------
function Is_Error (Position : Result_Lists.Cursor) return Boolean is
begin
return Result_Lists.Element (Position).Error /= null;
end Is_Error;
----------------
-- Is_Failure --
----------------
function Is_Failure (Position : Result_Lists.Cursor) return Boolean is
begin
return Result_Lists.Element (Position).Failure /= null;
end Is_Failure;
----------------
-- Is_Success --
----------------
function Is_Success (Position : Result_Lists.Cursor) return Boolean is
begin
return not Is_Error (Position) and then not Is_Failure (Position);
end Is_Success;
---------------
-- Add_Error --
---------------
procedure Add_Error
(R : in out Result;
Test_Name : Message_String;
Routine_Name : Message_String;
Error : Test_Error;
Elapsed : Time)
is
Val : constant Test_Result := (Test_Name, Routine_Name,
Failure => null,
Error => Alloc_Error,
Elapsed => Elapsed);
use Result_Lists;
begin
Val.Error.all := Error;
Append (R.Result_List, Val);
end Add_Error;
-----------------
-- Add_Failure --
-----------------
procedure Add_Failure
(R : in out Result;
Test_Name : Message_String;
Routine_Name : Message_String;
Failure : Test_Failure;
Elapsed : Time) is
Val : constant Test_Result := (Test_Name, Routine_Name,
Failure => Alloc_Failure,
Error => null,
Elapsed => Elapsed);
use Result_Lists;
begin
Val.Failure.all := Failure;
Append (R.Result_List, Val);
end Add_Failure;
-----------------
-- Add_Success --
-----------------
procedure Add_Success
(R : in out Result;
Test_Name : Message_String;
Routine_Name : Message_String;
Elapsed : Time) is
Val : constant Test_Result :=
(Test_Name, Routine_Name, null, null, Elapsed);
use Result_Lists;
begin
Append (R.Result_List, Val);
end Add_Success;
-----------------
-- Set_Elapsed --
-----------------
procedure Set_Elapsed (R : in out Result;
T : Time_Measure.Time) is
begin
R.Elapsed_Time := T;
end Set_Elapsed;
-----------------
-- Error_Count --
-----------------
function Error_Count (R : Result) return Count_Type is
use Result_Lists;
begin
E_Count := 0;
Iterate (R.Result_List, Iterate_Error'Access);
return E_Count;
end Error_Count;
------------
-- Errors --
------------
procedure Errors (R : in out Result;
E : in out Result_Lists.List) is
procedure Extract is new Gen_Extract (Is_Error);
begin
Extract (R, E);
end Errors;
-------------------
-- Failure_Count --
-------------------
function Failure_Count (R : Result) return Count_Type is
use Result_Lists;
begin
F_Count := 0;
Iterate (R.Result_List, Iterate_Failure'Access);
return F_Count;
end Failure_Count;
--------------
-- Failures --
--------------
procedure Failures (R : in out Result;
F : in out Result_Lists.List) is
procedure Extract is new Gen_Extract (Is_Failure);
begin
Extract (R, F);
end Failures;
-------------
-- Elapsed --
-------------
function Elapsed (R : Result) return Time_Measure.Time is
begin
return R.Elapsed_Time;
end Elapsed;
----------------
-- Start_Test --
----------------
procedure Start_Test (R : in out Result; Subtest_Count : Count_Type) is
begin
R.Tests_Run := R.Tests_Run + Subtest_Count;
end Start_Test;
-------------------
-- Success_Count --
-------------------
function Success_Count (R : Result) return Count_Type is
begin
S_Count := 0;
Result_Lists.Iterate (R.Result_List, Iterate_Success'Access);
return S_Count;
end Success_Count;
---------------
-- Successes --
---------------
procedure Successes (R : in out Result;
S : in out Result_Lists.List) is
procedure Extract is new Gen_Extract (Is_Success);
begin
Extract (R, S);
end Successes;
----------------
-- Successful --
----------------
function Successful (R : Result) return Boolean is
begin
return Success_Count (R) = Test_Count (R);
end Successful;
----------------
-- Test_Count --
----------------
function Test_Count (R : Result) return Ada_Containers.Count_Type is
begin
return R.Tests_Run;
end Test_Count;
-----------
-- Clear --
-----------
procedure Clear (R : in out Result) is
begin
R.Tests_Run := 0;
R.Elapsed_Time := Time_Measure.Null_Time;
Result_Lists.Clear (R.Result_List);
end Clear;
end AUnit.Test_Results;
| 29.587393 | 78 | 0.466589 |
29dc92f47c64823326eaaa29f40f58a4e948b035 | 5,786 | ads | Ada | source/xml/sax/xml-sax-input_sources.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | source/xml/sax/xml-sax-input_sources.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | source/xml/sax/xml-sax-input_sources.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 4 | 2017-07-18T07:11:05.000Z | 2020-06-21T03:02:25.000Z | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- XML Processor --
-- --
-- Testsuite Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2010-2011, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with League.Strings;
with Matreshka.Internals.Strings;
package XML.SAX.Input_Sources is
pragma Preelaborate;
type SAX_Input_Source is limited interface;
type SAX_Input_Source_Access is access all SAX_Input_Source'Class;
-- not overriding procedure Set_String
-- (Self : in out SAX_Input_Source;
-- String : League.Strings.Universal_String) is abstract;
--
-- procedure Set_Stream
-- (Self : in out SAX_Input_Source;
-- Stream : not null access Ada.Streams.Root_Stream_Type'Class);
-- not overriding function Encoding
-- (Self : SAX_Input_Source) return League.Strings.Universal_String;
not overriding function Public_Id
(Self : SAX_Input_Source) return League.Strings.Universal_String
is abstract;
-- Returns public identifier for the input source, or an empty string if
-- non was supplied.
not overriding function System_Id
(Self : SAX_Input_Source) return League.Strings.Universal_String
is abstract;
-- Returns system identifier for the input source, or an empty string if
-- non was supplied.
-- not overriding procedure Set_Encoding
-- (Self : in out SAX_Input_Source;
-- Encoding : League.Strings.Universal_String);
-- not overriding procedure Set_Public_Id
-- (Self : in out SAX_Input_Source;
-- Id : League.Strings.Universal_String) is abstract;
not overriding procedure Set_System_Id
(Self : in out SAX_Input_Source;
Id : League.Strings.Universal_String) is abstract;
-- Sets system identifier of the entity.
not overriding procedure Set_Version
(Self : in out SAX_Input_Source;
Version : League.Strings.Universal_String) is abstract;
-- Sets XML version for the entity.
not overriding procedure Next
(Self : in out SAX_Input_Source;
Buffer : in out
not null Matreshka.Internals.Strings.Shared_String_Access;
End_Of_Data : out Boolean) is abstract;
not overriding procedure Reset
(Self : in out SAX_Input_Source;
Version : League.Strings.Universal_String;
Encoding : League.Strings.Universal_String;
Rescan : out Boolean;
Success : out Boolean) is abstract;
-- Resets used version and encoding to specified. Sets Rescan to True when
-- encoding is changed and scanning must be restarted from the beginning of
-- the entity. Sets Success to False when error is detected.
end XML.SAX.Input_Sources;
| 51.20354 | 79 | 0.526616 |
06236c4b668d365dbd1490827c1caaabba7c49f0 | 9,512 | ads | Ada | 1A/S5/PIM/projet/src/arbre_genealogique.ads | MOUDDENEHamza/ENSEEIHT | a90b1dee0c8d18a9578153a357278d99405bb534 | [
"Apache-2.0"
] | 4 | 2020-05-02T12:32:32.000Z | 2022-01-12T20:20:35.000Z | 1A/S5/PIM/projet/src/arbre_genealogique.ads | MOUDDENEHamza/ENSEEIHT | a90b1dee0c8d18a9578153a357278d99405bb534 | [
"Apache-2.0"
] | 2 | 2021-01-14T20:03:26.000Z | 2022-01-30T01:10:00.000Z | 1A/S5/PIM/projet/src/arbre_genealogique.ads | MOUDDENEHamza/ENSEEIHT | a90b1dee0c8d18a9578153a357278d99405bb534 | [
"Apache-2.0"
] | 13 | 2020-11-11T21:28:11.000Z | 2022-02-19T13:54:22.000Z | -------------------------------------------------------------------------------
-- Fichier : arbre_genealogique.ads
-- Auteur : MOUDDENE Hamza & CAZES Noa
-- Objectif : Spécification du module Arbre_Genealogique
-- Crée : Dimanche Nov 10 2019
--------------------------------------------------------------------------------
with Arbre_Binaire;
with Ensemble;
with Registre; use Registre;
package Arbre_Genealogique is
type T_ABG is private; -- Type Arbre genealogique.
type T_List is array(1..10) of Integer;
type T_Node is record
ID : Integer;
Cohabitant : T_List;
Half_Brother : T_List;
end record;
-- Instancier Ensemble avec T_Element comme Integer.
package Ens is
New Ensemble (T_Element => T_Node);
use Ens;
ARBRE_VIDE_EXCEPTION : Exception; -- Arbre est vDATAe.
ARBRE_NON_VIDE_EXCEPTION : Exception; -- Arbre n'est pas vDATAe.
ID_PRESENT_EXCEPTION : Exception; -- ID Present.
ID_ABSENT_EXCEPTION : Exception; -- ID Absent.
DEUX_PARENTS_PRESENTS_EXCEPTION : Exception; -- Deux parents existants.
----------------------------------Constuctor--------------------------------
-- Nom : Initialize_List
-- Sémantique : Initialiser List. Tree est List.
-- Paramètres :
-- List -- List que l'on va initialiser.
function Initialize_List (List : out T_List) return T_List;
-- Nom : Initialize_Data
-- Sémantique : Initialiser Data. Tree est Data.
-- Paramètres :
-- Tree --Tree que l'on va initialiser.
procedure Initialize_Data (Data : out T_Node; ID : in Integer);
-- Nom : Initialize_Genealogical_Tree
-- Sémantique : Initialiser un arbre genéalogique. L'arbre est vide.
-- Paramètres :
-- Ab -- Ab que l'on va initialiser.
procedure Initialize_Genealogical_Tree (Ab : out T_ABG);
-- Nom : Creer_Arbre_Minimal
-- Sémantique : Initialiser un Ab. L'Ab contient la racine.
-- Exception : ARBRE_NON_VDATAE_EXCEPTION.
-- Paramètre :
-- Ab -- L'Ab que l'on va initialiser avec sa racine.
procedure Creer_Arbre_Minimal (Ab : out T_ABG; DATA : in T_Node);
-- Nom : Ajouter_Parent
-- Sémantique : Ajouter un parent (mère ou père) à un noeud donné.
-- Exception :
-- ARBRE_VDATAE_EXCEPTION.
-- DATA_ABSENT_EXCEPTION.
-- DEUX_PARENTS_PRESENTS_EXCEPTION.
-- Paramètre :
-- Ab -- L'Ab auquel on va ajouter un parent.
-- ID -- ID de l'individu qu'on va lui ajouter un parent.
-- New_ID -- ID du parent.
-- Flag -- Un entier binaire pour désigner si c'est un père ou une mère.
procedure Ajouter_Parent (Ab : in out T_ABG; New_Data : in T_Node; ID, Flag : in Integer);
-----------------------------------Getters----------------------------------
-- Nom : Get_ID
-- Sémantique : Obtenir l'ID de Node.
-- Type_De_Retour : Integer est l'ID du noeud.
-- Paramètres
-- Ab : L'arbre qu'on va parcourir.
function Get_ID (Ab : in T_ABG) return Integer;
-- Nom : Get_Cohabitant
-- Sémantique : Obtenir la liste des concubains.
-- Type_De_Retour : T_List est la liste des concubains.
-- Paramètres
-- Ab : Arbre qu'on va parcourir.
function Get_Cohabitant (Ab : in T_ABG) return T_List;
-- Nom : Get_Half_Brother.
-- Sémantique : Obtenir l'ensemble des demi-frères.
-- Type_De_Retour : T_List est la liste des demi_frères.
-- Paramètres
-- Ab : Arbre qu'on va parcourir.
function Get_Half_Brother (Ab : in T_ABG) return T_List;
-- Nom : Get_ID_Father
-- Sémantique : Obtenir l'ensemble des demi-frères.
-- Type_De_Retour : Integer est l'ID du père.
-- Paramètres
-- Ab : Arbre qu'on va parcourir.
function Get_ID_Father (Ab : in T_ABG) return Integer;
-- Nom : Get_ID_Father
-- Sémantique : Obtenir l'ensemble des demi-frères.
-- Type_De_Retour : Integer est l'ID du mère.
-- Paramètres
-- Ab : Arbre qu'on va parcourir.
function Get_ID_Mother (Ab : in T_ABG) return Integer;
----------------------------------------------------------------------------
-- Nom : Is_Present_ID
-- Sémantique : Vérifier qu'un ID passé en paramètre est dans l'arbre.
-- Type_De_Retour : Boolean -- True si l'ID est dans Tree, False sinon.
-- Paramètres :
-- Tree -- Tree que l'on va parcourir.
-- ID -- L'DATA pour lequel on voudra savoir s'il est dans Tree.
function Is_Present_ID (Tree : in T_ABG; ID : in Integer) return Boolean;
-- Nom : Generate_ID
-- Sémantique : Générer un ID unique.
-- Type_De_Retour : Integer -- l'ID généré
-- Paramètre :
-- Ab : L'Ab que l'on va parcourir.
function Generate_ID (Ab : in T_ABG) return Integer;
-- Nom : Get_Child_ID
-- Sémantique : Obtenir l'ID du fils.
-- Type_De_Retour : Integer -- Integer l'ID du fils.
-- Paramètres :
-- Ab -- Tree que l'on va parcourir.
-- Parent_ID -- L'ID du parent passé en paramètre.
function Get_Child_ID (Ab : in T_ABG; Parent_ID : in Integer) return Integer;
-- Nom : Nombre_Ancetres
-- Sémantique : Obtenir le nombre d'ancêtres connus (lui compris) d'un indivDATAu donné.
-- Type_De_Retour : Integer -- nombre d'ancêtres, entier strictement positif
-- Exception : DATA_ABSENT_EXCEPTION.
-- Paramètres :
-- Ab : L'Ab que l'on va parcourir.
-- ID : ID unique d'un indivDATAu dans l'Ab.
function Nombre_Ancetres (Ab : in T_ABG; ID : in Integer) return Integer;
-- Nom : Ancetres_N_Generation
-- Sémantique : Obtenir l'ensemble des ancêtres situé à une certaine génération d'un noeud donné.
-- Type_De_Retour : T_Ensemble : Retourne un ensemble non vDATAe d'ancêtres.
-- Exception : ID_ABSENT_EXCEPTION.
-- Paramètres :
-- Ab -- L'Ab que l'on va parcourir.
-- ID -- DATAentifiant unique d'un indivDATAu dans l'Ab.
-- Generation -- le niveau d'ancêtres que l'on cherche.
procedure Ancetres_N_Generation (Ab : in T_ABG; ID, Generation : in Integer);
-- Nom : Afficher_Arbre_Noeud
-- Sémantique : Afficher l'arbre à partir d'un noeud donné.
-- Paramètres :
-- Ab -- L'Ab que l'on va parcourir.
-- DATA -- DATAentifiant unique d'un indivDATAu dans l'Ab.
procedure Afficher_Arbre_Noeud (Ab : in T_ABG; ID : in Integer);
-- Nom : Supprimer
-- Sémantique : Supprimer, pour un arbre, un noeud et ses ancêtres.
-- Exception : DATA_ABSENT_EXCEPTION.
-- Paramètres :
-- Ab -- L'Ab que l'on va parcourir.
-- DATA -- DATAentifiant unique d'un indivDATAu dans l'Ab.
procedure Supprimer (Ab : in out T_ABG; ID : in Integer);
-- Nom : Individus_1_Parent_Connu
-- Sémantique : Obtenir l'ensemble des individus qui n'ont qu'un parent connu.
-- Type_De_Retour : T_Ensemble -- ensemble vide ou non vide de parents.
-- Paramètre :
-- Ab -- L'Ab que l'on va parcourir.
procedure Individus_1_Parent_Connu (Ab : in T_ABG);
-- Nom : Individus_2_Parent_Connu
-- Sémantique : Obtenir l'ensemble des individus dont les deux parents sont connus.
-- Type_De_Retour : T_Ensemble -- ensemble vide ou non vide de parents.
-- Paramètre :
-- Ab -- L'Ab que l'on va parcourir.
procedure Individus_2_Parent_Connu (Ab : in T_ABG);
-- Nom : Ensemble_Feuilles
-- Sémantique : Obtenir l'ensemble des individus dont les deux parents sont inconnus.
-- Type_De_Retour : T_Ensemble -- ensemble vide ou non vide de parents.
-- Paramètre :
-- Ab -- L'Ab que l'on va parcourir.
procedure Ensemble_Feuilles (Ab : in T_ABG);
-- Nom : Ancetres_Sur_N_Generation
-- Sémantique : Identifier les ancêtres d'un individu donné sur N generations données par un noeud donné.
-- Type_De_Retour : T_Ensemble -- ensemble vide ou non vide de parents.
-- Exception : ID_ABSENT_EXCEPTION.
-- Paramètres :
-- Ab -- L'Ab que l'on va parcourir.
-- ID -- Identifiant unique d'un indivDATAu dans l'Ab.
-- Generation -- Le niveau d'ancêtres que l'on cherche.
procedure Ancetres_Sur_N_Generation (Ab : in T_ABG; ID, Generation : in Integer);
-- Nom : Ancetres_Homonymes
-- Sémantique : Vérifier que deux individus n et m ont un ou plusieurs ancêtres homonymes (mêmes non et prénom).
-- Type_De_Retour : Boolean -- True si ID1 et ID2 ont des ancêtres homonymes, sinon False.
-- Exception : ID_ABSENT_EXCEPTION.
-- Paramètres :
-- Ab -- L'Ab que l'on va parcourir.
-- R -- Le registre des arbres genealogiques.
-- ID1|2 -- iDentifiant unique d'un indivDATAu dans l'Ab.
function Ancetres_Homonymes (Ab1, Ab2 : in T_ABG; R : in T_Registre; ID1, ID2 : in Integer) return Boolean;
private
-- Instancier Arbre_Binaire avec T_DATA comme Integer.
package Ab_Genealogique is
New Arbre_Binaire (T_DATA => T_Node);
use Ab_Genealogique;
type T_ABG is new T_BT;
end Arbre_Genealogique;
| 38.510121 | 116 | 0.600084 |
311df3fcae28b018880e1fe2f1997c6a9de6338f | 5,351 | ads | Ada | llvm-gcc-4.2-2.9/gcc/ada/s-taspri-hpux-dce.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | 1 | 2016-04-09T02:58:13.000Z | 2016-04-09T02:58:13.000Z | llvm-gcc-4.2-2.9/gcc/ada/s-taspri-hpux-dce.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | llvm-gcc-4.2-2.9/gcc/ada/s-taspri-hpux-dce.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
-- --
-- S Y S T E M . T A S K _ P R I M I T I V E S --
-- --
-- S p e c --
-- --
-- Copyright (C) 1991-2005 Free Software Foundation, Inc. --
-- --
-- GNARL is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNARL is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNARL; see file COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNARL was developed by the GNARL team at Florida State University. --
-- Extensive contributions were provided by Ada Core Technologies, Inc. --
-- --
------------------------------------------------------------------------------
-- This is a HP-UX version of this package
-- This package provides low-level support for most tasking features
pragma Polling (Off);
-- Turn off polling, we do not want ATC polling to take place during
-- tasking operations. It causes infinite loops and other problems.
with System.OS_Interface;
-- used for pthread_mutex_t
-- pthread_cond_t
-- pthread_t
package System.Task_Primitives is
pragma Preelaborate;
type Lock is limited private;
-- Should be used for implementation of protected objects
type RTS_Lock is limited private;
-- Should be used inside the runtime system. The difference between Lock
-- and the RTS_Lock is that the later one serves only as a semaphore so
-- that do not check for ceiling violations.
type Suspension_Object is limited private;
-- Should be used for the implementation of Ada.Synchronous_Task_Control
type Task_Body_Access is access procedure;
-- Pointer to the task body's entry point (or possibly a wrapper
-- declared local to the GNARL).
type Private_Data is limited private;
-- Any information that the GNULLI needs maintained on a per-task basis.
-- A component of this type is guaranteed to be included in the
-- Ada_Task_Control_Block.
private
type Lock is record
L : aliased System.OS_Interface.pthread_mutex_t;
Priority : Integer;
Owner_Priority : Integer;
end record;
type RTS_Lock is new System.OS_Interface.pthread_mutex_t;
type Suspension_Object is record
State : Boolean;
pragma Atomic (State);
-- Boolean that indicates whether the object is open. This field is
-- marked Atomic to ensure that we can read its value without locking
-- the access to the Suspension_Object.
Waiting : Boolean;
-- Flag showing if there is a task already suspended on this object
L : aliased System.OS_Interface.pthread_mutex_t;
-- Protection for ensuring mutual exclusion on the Suspension_Object
CV : aliased System.OS_Interface.pthread_cond_t;
-- Condition variable used to queue threads until condition is signaled
end record;
type Private_Data is record
Thread : aliased System.OS_Interface.pthread_t;
pragma Atomic (Thread);
-- Thread field may be updated by two different threads of control.
-- (See, Enter_Task and Create_Task in s-taprop.adb). They put the
-- same value (thr_self value). We do not want to use lock on those
-- operations and the only thing we have to make sure is that they
-- are updated in atomic fashion.
CV : aliased System.OS_Interface.pthread_cond_t;
L : aliased RTS_Lock;
-- Protection for all components is lock L
end record;
end System.Task_Primitives;
| 47.776786 | 78 | 0.570174 |
41f6496a781d6f2ca3fbae3d77ba6cbd2583b1ab | 9,025 | adb | Ada | source/web/spikedog/daemon/service/services.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | source/web/spikedog/daemon/service/services.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | source/web/spikedog/daemon/service/services.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 4 | 2017-07-18T07:11:05.000Z | 2020-06-21T03:02:25.000Z | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Web Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2017, Vadim Godunko <[email protected]> --
-- 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 Interfaces.C.Pointers;
with League.Strings.Internals;
with Matreshka.Internals.Strings.C;
package body Services is
subtype LPWSTR is Matreshka.Internals.Strings.C.Utf16_Code_Unit_Access;
type LPWSTR_Array is array (Positive range <>) of aliased LPWSTR;
package LPWSTR_Pointers is new Interfaces.C.Pointers
(Positive, LPWSTR, LPWSTR_Array, null);
type LPSERVICE_MAIN_FUNCTION is access
procedure (dwArgc : DWORD; lpszArgv : LPWSTR_Pointers.Pointer)
with Convention => Stdcall;
type LPHANDLER_FUNCTION_EX is access
function
(dwControl : DWORD;
dwEventType : DWORD;
lpEventData : System.Address;
lpContext : access Service'Class) return DWORD
with Convention => Stdcall;
type SERVICE_TABLE_ENTRY is record
lpServiceName : LPWSTR;
lpServiceProc : LPSERVICE_MAIN_FUNCTION;
end record;
procedure Service_Main (dwArgc : DWORD; lpszArgv : LPWSTR_Pointers.Pointer)
with Convention => Stdcall;
function Handler_Ex
(dwControl : DWORD;
dwEventType : DWORD;
lpEventData : System.Address;
lpContext : access Service'Class) return DWORD
with Convention => Stdcall;
function To_LPWSTR (Value : League.Strings.Universal_String) return LPWSTR;
Service_List : array (1 .. 1) of Service_Access;
--------------
-- Dispatch --
--------------
procedure Dispatch (Service : Service_Access) is
use type DWORD;
TABLE : constant array (1 .. 2) of aliased SERVICE_TABLE_ENTRY :=
(1 => (To_LPWSTR (Service.Name), Service_Main'Access),
2 => (null, null));
function StartServiceCtrlDispatcher
(lpServiceTable : access constant SERVICE_TABLE_ENTRY)
return DWORD
with Import,
Convention => Stdcall,
External_Name => "StartServiceCtrlDispatcherW";
begin
Service_List (1) := Service;
if StartServiceCtrlDispatcher (TABLE (TABLE'First)'Access)
/= NO_ERROR
then
raise Program_Error;
end if;
end Dispatch;
----------------
-- Handler_Ex --
----------------
function Handler_Ex
(dwControl : DWORD;
dwEventType : DWORD;
lpEventData : System.Address;
lpContext : access Service'Class) return DWORD
is
pragma Unreferenced (dwEventType, lpEventData);
Value : Control_Kind;
begin
case dwControl is
when SERVICE_CONTROL_CONTINUE =>
Value := Continue;
when SERVICE_CONTROL_INTERROGATE =>
Value := Interrogate;
when SERVICE_CONTROL_PAUSE =>
Value := Pause;
when SERVICE_CONTROL_PRESHUTDOWN =>
Value := Pre_Shutdown;
when SERVICE_CONTROL_SHUTDOWN =>
Value := Shutdown;
when SERVICE_CONTROL_STOP =>
Value := Stop;
when others =>
return NO_ERROR;
end case;
lpContext.Control
(Control => Value,
Status => lpContext.Listener'Access);
return NO_ERROR;
end Handler_Ex;
------------------
-- Service_Main --
------------------
procedure Service_Main
(dwArgc : DWORD;
lpszArgv : LPWSTR_Pointers.Pointer)
is
function RegisterServiceCtrlHandlerEx
(lpServiceName : LPWSTR;
lpHandlerProc : LPHANDLER_FUNCTION_EX;
lpContext : access Service'Class)
return HANDLE
with Import,
Convention => Stdcall,
External_Name => "RegisterServiceCtrlHandlerExW";
Service : Service_Access renames Service_List (1);
Args : League.String_Vectors.Universal_String_Vector;
Argv : constant LPWSTR_Array := LPWSTR_Pointers.Value
(lpszArgv, Length => Interfaces.C.ptrdiff_t (dwArgc));
begin
for Arg of Argv loop
Args.Append
(Matreshka.Internals.Strings.C.To_Valid_Universal_String (Arg));
end loop;
Service.Listener.StatusHandle := RegisterServiceCtrlHandlerEx
(lpServiceName => To_LPWSTR (Service.Name),
lpHandlerProc => Handler_Ex'Access,
lpContext => Service);
Service.Listener.Set_Status (Start_Pending);
Service.Run (Args, Service.Listener'Access);
exception
when others =>
Service.Listener.Set_Status (Stopped);
end Service_Main;
----------------
-- Set_Status --
----------------
not overriding procedure Set_Status
(Self : in out Status_Listener;
Value : Service_Status)
is
use type DWORD;
procedure SetServiceStatus
(hServiceStatus : HANDLE;
lpServiceStatus : access C_SERVICE_STATUS)
with Import,
Convention => Stdcall,
External_Name => "SetServiceStatus";
Map : constant array (Service_Status) of DWORD :=
(Stopped => SERVICE_STOPPED,
Start_Pending => SERVICE_START_PENDING,
Stop_Pending => SERVICE_STOP_PENDING,
Running => SERVICE_RUNNING,
Continue_Pending => SERVICE_CONTINUE_PENDING,
Pause_Pending => SERVICE_PAUSE_PENDING,
Paused => SERVICE_PAUSED);
begin
Self.Status.dwCurrentState := Map (Value);
Self.Status.dwCheckPoint := Self.Status.dwCheckPoint + 1;
SetServiceStatus (Self.StatusHandle, Self.Status'Access);
end Set_Status;
---------------
-- To_LPWSTR --
---------------
function To_LPWSTR (Value : League.Strings.Universal_String)
return LPWSTR is
begin
return League.Strings.Internals.Internal (Value).Value (0)'Access;
end To_LPWSTR;
end Services;
| 38.404255 | 78 | 0.534404 |
29dfe7e388669193e46efc3ac1ccf1f07b870a8b | 4,428 | ads | Ada | gcc-gcc-7_3_0-release/gcc/ada/par_sco.ads | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 7 | 2020-05-02T17:34:05.000Z | 2021-10-17T10:15:18.000Z | gcc-gcc-7_3_0-release/gcc/ada/par_sco.ads | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/ada/par_sco.ads | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- P A R _ S C O --
-- --
-- S p e c --
-- --
-- Copyright (C) 2009-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. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING3. If not, go to --
-- http://www.gnu.org/licenses for a complete copy of the license. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package contains the routines used to deal with generation and output
-- of Source Coverage Obligations (SCO's) used for coverage analysis purposes.
-- See package SCOs for full documentation of format of SCO information.
with Types; use Types;
package Par_SCO is
-----------------
-- Subprograms --
-----------------
procedure Initialize;
-- Initialize internal tables for a new compilation
procedure SCO_Record_Raw (U : Unit_Number_Type);
-- This procedure scans the tree for the unit identified by U, populating
-- internal tables recording the SCO information. Note that this is done
-- before any semantic analysis/expansion happens.
procedure Set_SCO_Condition (Cond : Node_Id; Val : Boolean);
-- This procedure is called during semantic analysis to record a condition
-- which has been identified as always True or always False, as indicated
-- by Val. The condition is identified by the First_Sloc value in the
-- original tree associated with Cond.
procedure Set_SCO_Logical_Operator (Op : Node_Id);
-- Mark some putative logical operator as a short circuit one
procedure Set_SCO_Pragma_Enabled (Loc : Source_Ptr);
-- This procedure is called from Sem_Prag when a pragma is enabled (i.e.
-- when the Pragma_Enabled flag is set). Loc is the Sloc of the N_Pragma
-- node. This is used to enable the corresponding statement SCO entry. Note
-- that we use the Sloc as the key here, since in the generic case, the
-- analysis is on a copy of the node, which is different from the node
-- seen by Par_SCO in the parse tree (but the Sloc values are the same).
function SCO_Pragma_Disabled (Loc : Source_Ptr) return Boolean;
-- True if Loc is the source location of a disabled pragma
procedure SCO_Record_Filtered;
-- This procedure filters remaining putative AND/OR short-circuit operators
-- from the internal SCO raw table after the semantic analysis and fills
-- the filtered SCO table.
procedure SCO_Output;
-- Outputs SCO lines for all units, with appropriate section headers, as
-- recorded by previous calls to SCO_Record, possibly modified by calls to
-- Set_SCO_Condition.
procedure dsco;
-- Debug routine to dump internal SCO tables. This is a raw format dump
-- showing exactly what the tables contain.
procedure pscos;
-- Debugging procedure to output contents of SCO binary tables in the
-- format in which they appear in an ALI file.
end Par_SCO;
| 52.094118 | 79 | 0.570009 |
12d170b05b87757bb5fdbe9f349ffb21a79934e4 | 2,487 | ads | Ada | source/oasis/program-elements-record_component_associations.ads | optikos/oasis | 9f64d46d26d964790d69f9db681c874cfb3bf96d | [
"MIT"
] | null | null | null | source/oasis/program-elements-record_component_associations.ads | optikos/oasis | 9f64d46d26d964790d69f9db681c874cfb3bf96d | [
"MIT"
] | null | null | null | source/oasis/program-elements-record_component_associations.ads | optikos/oasis | 9f64d46d26d964790d69f9db681c874cfb3bf96d | [
"MIT"
] | 2 | 2019-09-14T23:18:50.000Z | 2019-10-02T10:11:40.000Z | -- Copyright (c) 2019 Maxim Reznik <[email protected]>
--
-- SPDX-License-Identifier: MIT
-- License-Filename: LICENSE
-------------------------------------------------------------
with Program.Element_Vectors;
with Program.Elements.Associations;
with Program.Lexical_Elements;
with Program.Elements.Expressions;
package Program.Elements.Record_Component_Associations is
pragma Pure (Program.Elements.Record_Component_Associations);
type Record_Component_Association is
limited interface and Program.Elements.Associations.Association;
type Record_Component_Association_Access is
access all Record_Component_Association'Class with Storage_Size => 0;
not overriding function Choices
(Self : Record_Component_Association)
return Program.Element_Vectors.Element_Vector_Access is abstract;
not overriding function Expression
(Self : Record_Component_Association)
return Program.Elements.Expressions.Expression_Access is abstract;
type Record_Component_Association_Text is limited interface;
type Record_Component_Association_Text_Access is
access all Record_Component_Association_Text'Class with Storage_Size => 0;
not overriding function To_Record_Component_Association_Text
(Self : aliased in out Record_Component_Association)
return Record_Component_Association_Text_Access is abstract;
not overriding function Arrow_Token
(Self : Record_Component_Association_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function Box_Token
(Self : Record_Component_Association_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
type Record_Component_Association_Vector is
limited interface and Program.Element_Vectors.Element_Vector;
type Record_Component_Association_Vector_Access is
access all Record_Component_Association_Vector'Class
with Storage_Size => 0;
overriding function Element
(Self : Record_Component_Association_Vector;
Index : Positive)
return not null Program.Elements.Element_Access is abstract
with Post'Class => Element'Result.Is_Record_Component_Association;
function To_Record_Component_Association
(Self : Record_Component_Association_Vector'Class;
Index : Positive)
return not null Record_Component_Association_Access
is (Self.Element (Index).To_Record_Component_Association);
end Program.Elements.Record_Component_Associations;
| 37.119403 | 79 | 0.78649 |
50a24a9512d0817a068d0e19144b1674ab556984 | 4,761 | adb | Ada | llvm-gcc-4.2-2.9/gcc/ada/a-wtfiio.adb | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | 1 | 2016-04-09T02:58:13.000Z | 2016-04-09T02:58:13.000Z | llvm-gcc-4.2-2.9/gcc/ada/a-wtfiio.adb | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | llvm-gcc-4.2-2.9/gcc/ada/a-wtfiio.adb | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . T E X T _ I O . W I D E _ T E X T _ I O . F I X E D _ I O --
-- --
-- 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. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Ada.Wide_Text_IO.Float_Aux;
with System.WCh_Con; use System.WCh_Con;
with System.WCh_WtS; use System.WCh_WtS;
package body Ada.Wide_Text_IO.Fixed_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.Float_Aux;
---------
-- Get --
---------
procedure Get
(File : File_Type;
Item : out Num;
Width : Field := 0)
is
begin
Aux.Get (TFT (File), Long_Long_Float (Item), Width);
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
Aux.Gets (S, Long_Long_Float (Item), Last);
exception
when Constraint_Error => raise Data_Error;
end Get;
---------
-- Put --
---------
procedure Put
(File : File_Type;
Item : Num;
Fore : Field := Default_Fore;
Aft : Field := Default_Aft;
Exp : Field := Default_Exp)
is
begin
Aux.Put (TFT (File), Long_Long_Float (Item), Fore, Aft, Exp);
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
Aux.Puts (S, Long_Long_Float (Item), Aft, Exp);
for J in S'Range loop
To (J) := Wide_Character'Val (Character'Pos (S (J)));
end loop;
end Put;
end Ada.Wide_Text_IO.Fixed_IO;
| 36.906977 | 78 | 0.501575 |
06672fde535c6b4db8498e60749cfcfaf9b229e9 | 3,780 | ads | Ada | src/el-methods-proc_2.ads | jquorning/ada-el | b0b07da093ac6109286404cb54a62a9a93816610 | [
"Apache-2.0"
] | 6 | 2015-01-18T23:04:00.000Z | 2022-01-26T12:34:07.000Z | src/el-methods-proc_2.ads | jquorning/ada-el | b0b07da093ac6109286404cb54a62a9a93816610 | [
"Apache-2.0"
] | 1 | 2022-01-30T20:46:16.000Z | 2022-01-30T20:46:16.000Z | src/el-methods-proc_2.ads | jquorning/ada-el | b0b07da093ac6109286404cb54a62a9a93816610 | [
"Apache-2.0"
] | 2 | 2021-01-06T08:27:49.000Z | 2022-01-30T19:33:41.000Z | -----------------------------------------------------------------------
-- el-methods-proc_2 -- Procedure Binding with 2 arguments
-- Copyright (C) 2010, 2011, 2012, 2013, 2015, 2021 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- 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 EL.Expressions;
with EL.Contexts;
with Util.Beans.Methods;
with Util.Beans.Basic;
generic
type Param1_Type (<>) is limited private;
type Param2_Type (<>) is limited private;
package EL.Methods.Proc_2 is
use Util.Beans.Methods;
-- Returns True if the method is a valid method which accepts the arguments
-- defined by the package instantiation.
function Is_Valid (Method : in EL.Expressions.Method_Info) return Boolean;
-- Execute the method describe by the method expression
-- and with the given context. The method signature is:
--
-- procedure F (Obj : in out <Bean>;
-- Param1 : in Param1_Type;
-- Param2 : in Param2_Type);
--
-- where <Bean> inherits from <b>Readonly_Bean</b>
-- (See <b>Bind</b> package)
--
-- Raises <b>Invalid_Method</b> if the method referenced by
-- the method expression does not exist or does not match
-- the signature.
procedure Execute (Method : in EL.Expressions.Method_Expression'Class;
Param1 : in Param1_Type;
Param2 : in Param2_Type;
Context : in EL.Contexts.ELContext'Class);
-- Function access to the proxy.
type Proxy_Access is
access procedure (O : access Util.Beans.Basic.Readonly_Bean'Class;
P1 : in Param1_Type;
P2 : in Param2_Type);
-- The binding record which links the method name
-- to the proxy function.
type Binding is new Method_Binding with record
Method : Proxy_Access;
end record;
type Binding_Access is access constant Binding;
-- Proxy for the binding.
-- The proxy declares the binding definition that links
-- the name to the function and it implements the necessary
-- object conversion to translate the <b>Readonly_Bean</b>
-- object to the target object type.
generic
-- Name of the method (as exposed in the EL expression)
Name : String;
-- The bean type
type Bean is abstract limited new Util.Beans.Basic.Readonly_Bean with private;
-- The bean method to invoke
with procedure Method (O : in out Bean;
P1 : in Param1_Type;
P2 : in Param2_Type);
package Bind is
-- Method that <b>Execute</b> will invoke.
procedure Method_Access (O : access Util.Beans.Basic.Readonly_Bean'Class;
P1 : in Param1_Type;
P2 : in Param2_Type);
F_NAME : aliased constant String := Name;
-- The proxy binding that can be exposed through
-- the <b>Method_Bean</b> interface.
Proxy : aliased constant Binding
:= Binding '(Name => F_NAME'Access,
Method => Method_Access'Access);
end Bind;
end EL.Methods.Proc_2;
| 38.571429 | 84 | 0.61746 |
29987643f0e73ff4e75a4fea0e736cfe45ac25b1 | 4,626 | ads | Ada | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-tiinio.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-tiinio.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-tiinio.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . T E X T _ I O . I N T E G E R _ I O --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2020, Free Software Foundation, Inc. --
-- --
-- This specification is derived from the Ada Reference Manual for use with --
-- GNAT. The copyright notice above, and the license provisions that follow --
-- apply solely to the contents of the part following the private keyword. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- In Ada 95, the package Ada.Text_IO.Integer_IO is a subpackage of Text_IO.
-- This is for compatibility with Ada 83. In GNAT we make it a child package
-- to avoid loading the necessary code if Integer_IO is not instantiated.
-- See routine Rtsfind.Check_Text_IO_Special_Unit for a description of how
-- we patch up the difference in semantics so that it is invisible to the
-- Ada programmer.
private generic
type Num is range <>;
package Ada.Text_IO.Integer_IO is
Default_Width : Field := Num'Width;
Default_Base : Number_Base := 10;
procedure Get
(File : File_Type;
Item : out Num;
Width : Field := 0)
with
Pre => Is_Open (File) and then Mode (File) = In_File,
Global => (In_Out => File_System);
procedure Get
(Item : out Num;
Width : Field := 0)
with
Post =>
Line_Length'Old = Line_Length
and Page_Length'Old = Page_Length,
Global => (In_Out => File_System);
procedure Put
(File : File_Type;
Item : Num;
Width : Field := Default_Width;
Base : Number_Base := Default_Base)
with
Pre => Is_Open (File) and then Mode (File) /= In_File,
Post =>
Line_Length (File)'Old = Line_Length (File)
and Page_Length (File)'Old = Page_Length (File),
Global => (In_Out => File_System);
procedure Put
(Item : Num;
Width : Field := Default_Width;
Base : Number_Base := Default_Base)
with
Post =>
Line_Length'Old = Line_Length
and Page_Length'Old = Page_Length,
Global => (In_Out => File_System);
procedure Get
(From : String;
Item : out Num;
Last : out Positive)
with
Global => null;
procedure Put
(To : out String;
Item : Num;
Base : Number_Base := Default_Base)
with
Global => null;
private
pragma Inline (Get);
pragma Inline (Put);
end Ada.Text_IO.Integer_IO;
| 42.440367 | 78 | 0.487895 |
594bdeac6fa0a43f77ed7b9159e611450823a477 | 2,103 | adb | Ada | gdb/testsuite/gdb.ada/homonym/homonym.adb | greyblue9/binutils-gdb | 05377632b124fe7600eea7f4ee0e9a35d1b0cbdc | [
"BSD-3-Clause"
] | 1 | 2020-10-14T03:24:35.000Z | 2020-10-14T03:24:35.000Z | gdb/testsuite/gdb.ada/homonym/homonym.adb | greyblue9/binutils-gdb | 05377632b124fe7600eea7f4ee0e9a35d1b0cbdc | [
"BSD-3-Clause"
] | null | null | null | gdb/testsuite/gdb.ada/homonym/homonym.adb | greyblue9/binutils-gdb | 05377632b124fe7600eea7f4ee0e9a35d1b0cbdc | [
"BSD-3-Clause"
] | null | null | null | -- Copyright 2008-2021 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
with Pck; use Pck;
package body Homonym is
type Integer_Range is new Integer range -100 .. 100;
type Positive_Range is new Positive range 1 .. 19740804;
---------------
-- Get_Value --
---------------
function Get_Value return Integer_Range
is
subtype Local_Type is Integer_Range;
subtype Local_Type_Subtype is Local_Type;
subtype Int_Type is Integer_Range;
Lcl : Local_Type := 29;
Some_Local_Type_Subtype : Local_Type_Subtype := Lcl;
I : Int_Type := 1;
begin
Do_Nothing (Some_Local_Type_Subtype'Address);
Do_Nothing (I'Address);
return Lcl; -- BREAK_1
end Get_Value;
---------------
-- Get_Value --
---------------
function Get_Value return Positive_Range
is
subtype Local_Type is Positive_Range;
subtype Local_Type_Subtype is Local_Type;
subtype Pos_Type is Positive_Range;
Lcl : Local_Type := 17;
Some_Local_Type_Subtype : Local_Type_Subtype := Lcl;
P : Pos_Type := 2;
begin
Do_Nothing (Some_Local_Type_Subtype'Address);
Do_Nothing (P'Address);
return Lcl; -- BREAK_2
end Get_Value;
----------------
-- Start_Test --
----------------
procedure Start_Test is
Int : Integer_Range;
Pos : Positive_Range;
begin
Int := Get_Value;
Pos := Get_Value;
end Start_Test;
end Homonym;
| 29.208333 | 73 | 0.654779 |
416ab89a02e65a115dff365047ed59922e92f077 | 5,466 | ads | Ada | stm32f0/stm32f072x/svd/stm32_svd.ads | ekoeppen/STM32_Generic_Ada_Drivers | 4ff29c3026c4b24280baf22a5b81ea9969375466 | [
"MIT"
] | 1 | 2021-04-06T07:57:56.000Z | 2021-04-06T07:57:56.000Z | stm32f0/stm32f072x/svd/stm32_svd.ads | ekoeppen/STM32_Generic_Ada_Drivers | 4ff29c3026c4b24280baf22a5b81ea9969375466 | [
"MIT"
] | null | null | null | stm32f0/stm32f072x/svd/stm32_svd.ads | ekoeppen/STM32_Generic_Ada_Drivers | 4ff29c3026c4b24280baf22a5b81ea9969375466 | [
"MIT"
] | 2 | 2018-05-29T13:59:31.000Z | 2019-02-03T19:48:08.000Z | -- This spec has been automatically generated from STM32F072x.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with Interfaces; use Interfaces;
with System;
-- STM32F072x
package STM32_SVD is
pragma Preelaborate;
---------------
-- Base type --
---------------
type UInt32 is new Interfaces.Unsigned_32;
type UInt16 is new Interfaces.Unsigned_16;
type Byte is new Interfaces.Unsigned_8;
type Bit is mod 2**1
with Size => 1;
type UInt2 is mod 2**2
with Size => 2;
type UInt3 is mod 2**3
with Size => 3;
type UInt4 is mod 2**4
with Size => 4;
type UInt5 is mod 2**5
with Size => 5;
type UInt6 is mod 2**6
with Size => 6;
type UInt7 is mod 2**7
with Size => 7;
type UInt9 is mod 2**9
with Size => 9;
type UInt10 is mod 2**10
with Size => 10;
type UInt11 is mod 2**11
with Size => 11;
type UInt12 is mod 2**12
with Size => 12;
type UInt13 is mod 2**13
with Size => 13;
type UInt14 is mod 2**14
with Size => 14;
type UInt15 is mod 2**15
with Size => 15;
type UInt17 is mod 2**17
with Size => 17;
type UInt18 is mod 2**18
with Size => 18;
type UInt19 is mod 2**19
with Size => 19;
type UInt20 is mod 2**20
with Size => 20;
type UInt21 is mod 2**21
with Size => 21;
type UInt22 is mod 2**22
with Size => 22;
type UInt23 is mod 2**23
with Size => 23;
type UInt24 is mod 2**24
with Size => 24;
type UInt25 is mod 2**25
with Size => 25;
type UInt26 is mod 2**26
with Size => 26;
type UInt27 is mod 2**27
with Size => 27;
type UInt28 is mod 2**28
with Size => 28;
type UInt29 is mod 2**29
with Size => 29;
type UInt30 is mod 2**30
with Size => 30;
type UInt31 is mod 2**31
with Size => 31;
--------------------
-- Base addresses --
--------------------
CRC_Base : constant System.Address :=
System'To_Address (16#40023000#);
GPIOF_Base : constant System.Address :=
System'To_Address (16#48001400#);
GPIOD_Base : constant System.Address :=
System'To_Address (16#48000C00#);
GPIOC_Base : constant System.Address :=
System'To_Address (16#48000800#);
GPIOB_Base : constant System.Address :=
System'To_Address (16#48000400#);
GPIOE_Base : constant System.Address :=
System'To_Address (16#48001000#);
GPIOA_Base : constant System.Address :=
System'To_Address (16#48000000#);
SPI1_Base : constant System.Address :=
System'To_Address (16#40013000#);
SPI2_Base : constant System.Address :=
System'To_Address (16#40003800#);
DAC_Base : constant System.Address :=
System'To_Address (16#40007400#);
PWR_Base : constant System.Address :=
System'To_Address (16#40007000#);
I2C1_Base : constant System.Address :=
System'To_Address (16#40005400#);
I2C2_Base : constant System.Address :=
System'To_Address (16#40005800#);
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#40012C00#);
TIM2_Base : constant System.Address :=
System'To_Address (16#40000000#);
TIM3_Base : constant System.Address :=
System'To_Address (16#40000400#);
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#);
EXTI_Base : constant System.Address :=
System'To_Address (16#40010400#);
NVIC_Base : constant System.Address :=
System'To_Address (16#E000E100#);
DMA_Base : constant System.Address :=
System'To_Address (16#40020000#);
RCC_Base : constant System.Address :=
System'To_Address (16#40021000#);
SYSCFG_Base : constant System.Address :=
System'To_Address (16#40010000#);
ADC_Base : constant System.Address :=
System'To_Address (16#40012400#);
USART1_Base : constant System.Address :=
System'To_Address (16#40013800#);
USART2_Base : constant System.Address :=
System'To_Address (16#40004400#);
USART3_Base : constant System.Address :=
System'To_Address (16#40004800#);
USART4_Base : constant System.Address :=
System'To_Address (16#40004C00#);
COMP_Base : constant System.Address :=
System'To_Address (16#4001001C#);
RTC_Base : constant System.Address :=
System'To_Address (16#40002800#);
TIM15_Base : constant System.Address :=
System'To_Address (16#40014000#);
TIM16_Base : constant System.Address :=
System'To_Address (16#40014400#);
TIM17_Base : constant System.Address :=
System'To_Address (16#40014800#);
TSC_Base : constant System.Address :=
System'To_Address (16#40024000#);
CEC_Base : constant System.Address :=
System'To_Address (16#40007800#);
Flash_Base : constant System.Address :=
System'To_Address (16#40022000#);
DBGMCU_Base : constant System.Address :=
System'To_Address (16#40015800#);
USB_Base : constant System.Address :=
System'To_Address (16#40005C00#);
CRS_Base : constant System.Address :=
System'To_Address (16#40006C00#);
CAN_Base : constant System.Address :=
System'To_Address (16#40006400#);
end STM32_SVD;
| 31.77907 | 66 | 0.649835 |
2f71f32d0d4c835b22c0fe1b55e43e1027e3ee51 | 1,993 | ada | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c6/c64002b.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 7 | 2020-05-02T17:34:05.000Z | 2021-10-17T10:15:18.000Z | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c6/c64002b.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c6/c64002b.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | -- C64002B.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 PARAMETERLESS SUBPROGRAMS CAN BE CALLED WITH APPROPRIATE
-- NOTATION.
-- DAS 1/27/81
-- SPS 10/26/82
WITH REPORT;
PROCEDURE C64002B IS
USE REPORT;
I : INTEGER := 1;
FUNCTION F0 RETURN INTEGER IS
BEGIN
RETURN 7;
END F0;
PROCEDURE P0 IS
BEGIN
I := 15;
END P0;
BEGIN
TEST ("C64002B", "CHECK THAT PARAMETERLESS SUBPROGRAMS CAN BE" &
" CALLED");
IF (F0 /= 7) THEN
FAILED ("PARAMETERLESS FUNCTION CALL RETURNS BAD VALUE");
END IF;
P0;
IF (I /= 15) THEN
FAILED ("PARAMETERLESS PROCEDURE CALL YIELDS INCORRECT" &
" RESULT");
END IF;
RESULT;
END C64002B;
| 30.19697 | 79 | 0.630206 |
5960a1d4abf01dae5d36b04c4e86a4a85a422921 | 8,493 | ads | Ada | src/ada-pulse/src/pulse-context.ads | mstewartgallus/linted | 4d4cf9390353ea045b95671474ab278456793a35 | [
"Apache-2.0"
] | null | null | null | src/ada-pulse/src/pulse-context.ads | mstewartgallus/linted | 4d4cf9390353ea045b95671474ab278456793a35 | [
"Apache-2.0"
] | null | null | null | src/ada-pulse/src/pulse-context.ads | mstewartgallus/linted | 4d4cf9390353ea045b95671474ab278456793a35 | [
"Apache-2.0"
] | null | null | null | -- Copyright 2016 Steven Stewart-Gallus
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
-- implied. See the License for the specific language governing
-- permissions and limitations under the License.
with System;
with Interfaces.C; use Interfaces.C;
with Interfaces.C.Strings;
with Libc.Stdint;
with Libc.Stddef;
with Pulse.Mainloop.API;
with Pulse.Def;
with Pulse.Proplist;
with Pulse.Sample;
package Pulse.Context with
Spark_Mode => Off is
type pa_context is limited private;
type pa_context_access is access all pa_context;
type pa_context_notify_cb_t is access procedure
(c : pa_context_access;
userdata : System.Address);
pragma Convention
(C,
pa_context_notify_cb_t); -- /usr/include/pulse/context.h:159
type pa_context_success_cb_t is access procedure
(arg1 : System.Address;
arg2 : int;
arg3 : System.Address);
pragma Convention
(C,
pa_context_success_cb_t); -- /usr/include/pulse/context.h:162
type pa_context_event_cb_t is access procedure
(arg1 : System.Address;
arg2 : Interfaces.C.Strings.chars_ptr;
arg3 : System.Address;
arg4 : System.Address);
pragma Convention
(C,
pa_context_event_cb_t); -- /usr/include/pulse/context.h:169
function pa_context_new
(mainloop : access Pulse.Mainloop.API.pa_mainloop_api;
name : Interfaces.C.Strings.chars_ptr)
return pa_context_access; -- /usr/include/pulse/context.h:174
pragma Import (C, pa_context_new, "pa_context_new");
function pa_context_new_with_proplist
(mainloop : access Pulse.Mainloop.API.pa_mainloop_api;
name : Interfaces.C.Strings.chars_ptr;
proplist : Pulse.Proplist.pa_proplist_access)
return pa_context_access; -- /usr/include/pulse/context.h:179
pragma Import
(C,
pa_context_new_with_proplist,
"pa_context_new_with_proplist");
procedure pa_context_unref
(c : pa_context_access); -- /usr/include/pulse/context.h:182
pragma Import (C, pa_context_unref, "pa_context_unref");
function pa_context_ref
(c : pa_context_access)
return System.Address; -- /usr/include/pulse/context.h:185
pragma Import (C, pa_context_ref, "pa_context_ref");
procedure pa_context_set_state_callback
(c : pa_context_access;
cb : pa_context_notify_cb_t;
userdata : System.Address); -- /usr/include/pulse/context.h:188
pragma Import
(C,
pa_context_set_state_callback,
"pa_context_set_state_callback");
procedure pa_context_set_event_callback
(p : System.Address;
cb : pa_context_event_cb_t;
userdata : System.Address); -- /usr/include/pulse/context.h:192
pragma Import
(C,
pa_context_set_event_callback,
"pa_context_set_event_callback");
function pa_context_errno
(c : pa_context_access) return int; -- /usr/include/pulse/context.h:195
pragma Import (C, pa_context_errno, "pa_context_errno");
function pa_context_is_pending
(c : pa_context_access) return int; -- /usr/include/pulse/context.h:198
pragma Import (C, pa_context_is_pending, "pa_context_is_pending");
function pa_context_get_state
(c : pa_context_access)
return Pulse.Def.pa_context_state_t; -- /usr/include/pulse/context.h:201
pragma Import (C, pa_context_get_state, "pa_context_get_state");
function pa_context_connect
(c : pa_context_access;
server : Interfaces.C.Strings.chars_ptr;
flags : Pulse.Def.pa_context_flags_t;
api : access constant Pulse.Def.pa_spawn_api)
return int; -- /usr/include/pulse/context.h:211
pragma Import (C, pa_context_connect, "pa_context_connect");
procedure pa_context_disconnect
(c : pa_context_access); -- /usr/include/pulse/context.h:214
pragma Import (C, pa_context_disconnect, "pa_context_disconnect");
function pa_context_drain
(c : pa_context_access;
cb : pa_context_notify_cb_t;
userdata : System.Address)
return System.Address; -- /usr/include/pulse/context.h:217
pragma Import (C, pa_context_drain, "pa_context_drain");
function pa_context_exit_daemon
(c : pa_context_access;
cb : pa_context_success_cb_t;
userdata : System.Address)
return System.Address; -- /usr/include/pulse/context.h:222
pragma Import (C, pa_context_exit_daemon, "pa_context_exit_daemon");
function pa_context_set_default_sink
(c : pa_context_access;
name : Interfaces.C.Strings.chars_ptr;
cb : pa_context_success_cb_t;
userdata : System.Address)
return System.Address; -- /usr/include/pulse/context.h:225
pragma Import
(C,
pa_context_set_default_sink,
"pa_context_set_default_sink");
function pa_context_set_default_source
(c : pa_context_access;
name : Interfaces.C.Strings.chars_ptr;
cb : pa_context_success_cb_t;
userdata : System.Address)
return System.Address; -- /usr/include/pulse/context.h:228
pragma Import
(C,
pa_context_set_default_source,
"pa_context_set_default_source");
function pa_context_is_local
(c : pa_context_access) return int; -- /usr/include/pulse/context.h:231
pragma Import (C, pa_context_is_local, "pa_context_is_local");
function pa_context_set_name
(c : pa_context_access;
name : Interfaces.C.Strings.chars_ptr;
cb : pa_context_success_cb_t;
userdata : System.Address)
return System.Address; -- /usr/include/pulse/context.h:234
pragma Import (C, pa_context_set_name, "pa_context_set_name");
function pa_context_get_server
(c : pa_context_access)
return Interfaces.C.Strings
.chars_ptr; -- /usr/include/pulse/context.h:237
pragma Import (C, pa_context_get_server, "pa_context_get_server");
function pa_context_get_protocol_version
(c : pa_context_access)
return Libc.Stdint.uint32_t; -- /usr/include/pulse/context.h:240
pragma Import
(C,
pa_context_get_protocol_version,
"pa_context_get_protocol_version");
function pa_context_get_server_protocol_version
(c : pa_context_access)
return Libc.Stdint.uint32_t; -- /usr/include/pulse/context.h:243
pragma Import
(C,
pa_context_get_server_protocol_version,
"pa_context_get_server_protocol_version");
function pa_context_proplist_update
(c : pa_context_access;
mode : Pulse.Proplist.pa_update_mode_t;
p : System.Address;
cb : pa_context_success_cb_t;
userdata : System.Address)
return System.Address; -- /usr/include/pulse/context.h:250
pragma Import (C, pa_context_proplist_update, "pa_context_proplist_update");
function pa_context_proplist_remove
(c : pa_context_access;
keys : System.Address;
cb : pa_context_success_cb_t;
userdata : System.Address)
return System.Address; -- /usr/include/pulse/context.h:253
pragma Import (C, pa_context_proplist_remove, "pa_context_proplist_remove");
function pa_context_get_index
(s : System.Address)
return Libc.Stdint.uint32_t; -- /usr/include/pulse/context.h:258
pragma Import (C, pa_context_get_index, "pa_context_get_index");
function pa_context_rttime_new
(c : pa_context_access;
usec : Pulse.Sample.pa_usec_t;
cb : Pulse.Mainloop.API.pa_time_event_cb_t;
userdata : System.Address)
return System.Address; -- /usr/include/pulse/context.h:262
pragma Import (C, pa_context_rttime_new, "pa_context_rttime_new");
procedure pa_context_rttime_restart
(c : pa_context_access;
e : System.Address;
usec : Pulse.Sample.pa_usec_t); -- /usr/include/pulse/context.h:266
pragma Import (C, pa_context_rttime_restart, "pa_context_rttime_restart");
function pa_context_get_tile_size
(c : pa_context_access;
ss : access constant Pulse.Sample.pa_sample_spec)
return Libc.Stddef.size_t; -- /usr/include/pulse/context.h:281
pragma Import (C, pa_context_get_tile_size, "pa_context_get_tile_size");
private
type pa_context is limited record
null;
end record;
end Pulse.Context;
| 35.095041 | 79 | 0.719769 |
414d446e7b5a147bef7a276f798089fe5ced5c6a | 912 | adb | Ada | source/interactive.adb | jquorning/iDoNu | 1618b679f7d0895729dded62f22b0826e7da7cb1 | [
"blessing"
] | 1 | 2016-08-09T20:47:23.000Z | 2016-08-09T20:47:23.000Z | source/interactive.adb | jquorning/iDoNu | 1618b679f7d0895729dded62f22b0826e7da7cb1 | [
"blessing"
] | null | null | null | source/interactive.adb | jquorning/iDoNu | 1618b679f7d0895729dded62f22b0826e7da7cb1 | [
"blessing"
] | null | null | null | --
-- The author disclaims copyright to this source code. In place of
-- a legal notice, here is a blessing:
--
-- May you do good and not evil.
-- May you find forgiveness for yourself and forgive others.
-- May you share freely, not taking more than you give.
--
with GNATCOLL.Readline;
with Setup;
with Readline_Helper;
package body Interactive is
History_File : constant String := Setup.Program_Name & ".history";
procedure Initialize is
begin
GNATCOLL.Readline.Initialize
(Appname => Setup.Program_Name,
History_File => History_File,
Completer => Readline_Helper.Completer'Access);
end Initialize;
procedure Finalize is
begin
GNATCOLL.Readline.Finalize (History_File);
end Finalize;
function Get_Line return String is
begin
return GNATCOLL.Readline.Get_Line ("TODO$ ");
end Get_Line;
end Interactive;
| 21.714286 | 69 | 0.689693 |
2fbb366402ebbd41a60cc77a6c1bff2700c3d9ea | 16,973 | adb | Ada | awa/plugins/awa-jobs/src/awa-jobs-services.adb | My-Colaborations/ada-awa | cc2dee291a14e4df0dbc9c10285bf284a7f1caa8 | [
"Apache-2.0"
] | 81 | 2015-01-18T23:02:30.000Z | 2022-03-19T17:34:57.000Z | awa/plugins/awa-jobs/src/awa-jobs-services.adb | My-Colaborations/ada-awa | cc2dee291a14e4df0dbc9c10285bf284a7f1caa8 | [
"Apache-2.0"
] | 20 | 2015-12-09T19:26:19.000Z | 2022-03-23T14:32:43.000Z | awa/plugins/awa-jobs/src/awa-jobs-services.adb | My-Colaborations/ada-awa | cc2dee291a14e4df0dbc9c10285bf284a7f1caa8 | [
"Apache-2.0"
] | 16 | 2015-06-29T02:44:06.000Z | 2021-09-23T18:47:50.000Z | -----------------------------------------------------------------------
-- awa-jobs-services -- Job services
-- Copyright (C) 2012, 2014, 2015, 2016, 2019, 2020 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- 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.Serialize.Tools;
with Util.Log.Loggers;
with Ada.Tags;
with Ada.Calendar;
with ADO.Utils;
with ADO.Statements;
with AWA.Users.Models;
with AWA.Services.Contexts;
with AWA.Jobs.Modules;
with AWA.Applications;
with AWA.Modules;
package body AWA.Jobs.Services is
package ASC renames AWA.Services.Contexts;
Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("AWA.Jobs.Services");
-- ------------------------------
-- Get the job status.
-- ------------------------------
function Get_Job_Status (Id : in ADO.Identifier) return Models.Job_Status_Type is
Ctx : constant ASC.Service_Context_Access := ASC.Current;
DB : constant ADO.Sessions.Session := ASC.Get_Session (Ctx);
Stmt : ADO.Statements.Query_Statement
:= DB.Create_Statement ("SELECT status FROM awa_job WHERE id = ?");
begin
Stmt.Add_Param (Id);
Stmt.Execute;
return Models.Job_Status_Type'Val (Stmt.Get_Result_Integer);
end Get_Job_Status;
-- ------------------------------
-- Set the job parameter identified by the `Name` to the value
-- given in `Value`.
-- ------------------------------
procedure Set_Parameter (Job : in out Abstract_Job_Type;
Name : in String;
Value : in String) is
begin
Job.Set_Parameter (Name, Util.Beans.Objects.To_Object (Value));
end Set_Parameter;
-- ------------------------------
-- Set the job parameter identified by the `Name` to the value
-- given in `Value`.
-- ------------------------------
procedure Set_Parameter (Job : in out Abstract_Job_Type;
Name : in String;
Value : in Integer) is
begin
Job.Set_Parameter (Name, Util.Beans.Objects.To_Object (Value));
end Set_Parameter;
-- ------------------------------
-- Set the job parameter identified by the `Name` to the value
-- given in `Value`.
-- ------------------------------
procedure Set_Parameter (Job : in out Abstract_Job_Type;
Name : in String;
Value : in ADO.Objects.Object_Ref'Class) is
begin
if Value.Is_Null then
Job.Set_Parameter (Name, Util.Beans.Objects.Null_Object);
else
Job.Set_Parameter (Name, ADO.Objects.To_Object (Value.Get_Key));
end if;
end Set_Parameter;
-- ------------------------------
-- Set the job parameter identified by the `Name` to the value
-- given in `Value`.
-- The value object can hold any kind of basic value type
-- (integer, enum, date, strings). If the value represents
-- a bean, the `Invalid_Value` exception is raised.
-- ------------------------------
procedure Set_Parameter (Job : in out Abstract_Job_Type;
Name : in String;
Value : in Util.Beans.Objects.Object) is
begin
Job.Props.Include (Name, Value);
Job.Props_Modified := True;
end Set_Parameter;
-- ------------------------------
-- Set the job result identified by the `Name` to the value given
-- in `Value`. The value object can hold any kind of basic value
-- type (integer, enum, date, strings). If the value represents a bean,
-- the `Invalid_Value` exception is raised.
-- ------------------------------
procedure Set_Result (Job : in out Abstract_Job_Type;
Name : in String;
Value : in Util.Beans.Objects.Object) is
begin
Job.Results.Include (Name, Value);
Job.Results_Modified := True;
end Set_Result;
-- ------------------------------
-- Set the job result identified by the `Name` to the value given in `Value`.
-- ------------------------------
procedure Set_Result (Job : in out Abstract_Job_Type;
Name : in String;
Value : in String) is
begin
Job.Set_Result (Name, Util.Beans.Objects.To_Object (Value));
end Set_Result;
-- ------------------------------
-- Get the value identified by the name.
-- If the name cannot be found, the method should return the Null object.
-- ------------------------------
overriding
function Get_Value (Job : in Abstract_Job_Type;
Name : in String) return Util.Beans.Objects.Object is
begin
return Job.Get_Parameter (Name);
end Get_Value;
-- ------------------------------
-- Get the job parameter identified by the `Name` and convert
-- the value into a string.
-- ------------------------------
function Get_Parameter (Job : in Abstract_Job_Type;
Name : in String) return String is
Value : constant Util.Beans.Objects.Object := Job.Get_Parameter (Name);
begin
return Util.Beans.Objects.To_String (Value);
end Get_Parameter;
-- ------------------------------
-- Get the job parameter identified by the `Name` and convert
-- the value as an integer. If the parameter is not defined,
-- return the default value passed in `Default`.
-- ------------------------------
function Get_Parameter (Job : in Abstract_Job_Type;
Name : in String;
Default : in Integer) return Integer is
Pos : constant Util.Beans.Objects.Maps.Cursor := Job.Props.Find (Name);
begin
if Util.Beans.Objects.Maps.Has_Element (Pos) then
declare
Value : constant Util.Beans.Objects.Object := Util.Beans.Objects.Maps.Element (Pos);
begin
if Util.Beans.Objects.Is_Null (Value) then
return Default;
else
return Util.Beans.Objects.To_Integer (Value);
end if;
end;
else
return Default;
end if;
end Get_Parameter;
-- ------------------------------
-- Get the job parameter identified by the `Name` and convert
-- the value as a database identifier. If the parameter is not defined,
-- return the `ADO.NO_IDENTIFIER`.
-- ------------------------------
function Get_Parameter (Job : in Abstract_Job_Type;
Name : in String) return ADO.Identifier is
Pos : constant Util.Beans.Objects.Maps.Cursor := Job.Props.Find (Name);
begin
if Util.Beans.Objects.Maps.Has_Element (Pos) then
declare
Value : constant Util.Beans.Objects.Object := Util.Beans.Objects.Maps.Element (Pos);
begin
if Util.Beans.Objects.Is_Null (Value) then
return ADO.NO_IDENTIFIER;
else
return ADO.Utils.To_Identifier (Value);
end if;
end;
else
return ADO.NO_IDENTIFIER;
end if;
end Get_Parameter;
-- ------------------------------
-- Get the job parameter identified by the `Name` and return it as
-- a typed object.
-- ------------------------------
function Get_Parameter (Job : in Abstract_Job_Type;
Name : in String) return Util.Beans.Objects.Object is
begin
return Job.Props.Element (Name);
end Get_Parameter;
-- ------------------------------
-- Get the job status.
-- ------------------------------
function Get_Status (Job : in Abstract_Job_Type) return Models.Job_Status_Type is
begin
return Job.Job.Get_Status;
end Get_Status;
-- ------------------------------
-- Get the job identifier once the job was scheduled.
-- The job identifier allows to retrieve the job and check its
-- execution and completion status later on.
-- ------------------------------
function Get_Identifier (Job : in Abstract_Job_Type) return ADO.Identifier is
begin
return Job.Job.Get_Id;
end Get_Identifier;
-- ------------------------------
-- Set the job status. When the job is terminated, it is closed
-- and the job parameters or results cannot be changed.
-- ------------------------------
procedure Set_Status (Job : in out Abstract_Job_Type;
Status : in AWA.Jobs.Models.Job_Status_Type) is
begin
case Job.Job.Get_Status is
when AWA.Jobs.Models.CANCELED | Models.FAILED | Models.TERMINATED =>
Log.Info ("Job {0} is closed", ADO.Identifier'Image (Job.Job.Get_Id));
raise Closed_Error;
when Models.SCHEDULED | Models.RUNNING =>
Job.Job.Set_Status (Status);
end case;
end Set_Status;
-- ------------------------------
-- Save the job information in the database. Use the database session
-- defined by `DB` to save the job.
-- ------------------------------
procedure Save (Job : in out Abstract_Job_Type;
DB : in out ADO.Sessions.Master_Session'Class) is
begin
if Job.Props_Modified then
Job.Job.Set_Parameters (Util.Serialize.Tools.To_JSON (Job.Props));
Job.Props_Modified := False;
end if;
if Job.Results_Modified then
Job.Job.Set_Results (Util.Serialize.Tools.To_JSON (Job.Results));
Job.Results_Modified := False;
end if;
Job.Job.Save (DB);
end Save;
-- ------------------------------
-- Schedule the job.
-- ------------------------------
procedure Schedule (Job : in out Abstract_Job_Type;
Definition : in Job_Factory'Class) is
Ctx : constant ASC.Service_Context_Access := ASC.Current;
DB : ADO.Sessions.Master_Session := ASC.Get_Master_Session (Ctx);
User : constant AWA.Users.Models.User_Ref := Ctx.Get_User;
Sess : constant AWA.Users.Models.Session_Ref := Ctx.Get_User_Session;
App : constant AWA.Applications.Application_Access := Ctx.Get_Application;
Msg : AWA.Events.Module_Event;
begin
if Job.Job.Is_Inserted then
Log.Error ("Job is already scheduled");
raise Schedule_Error with "The job is already scheduled.";
end if;
Job.Job.Set_Create_Date (Ada.Calendar.Clock);
DB.Begin_Transaction;
Job.Job.Set_Name (Definition.Get_Name);
Job.Job.Set_User (User);
Job.Job.Set_Session (Sess);
Job.Save (DB);
-- Create the event
Msg.Set_Parameters (Job.Props);
Msg.Set_Entity (Job.Job, DB);
Msg.Set_Event_Kind (Job_Create_Event.Kind);
App.Send_Event (Msg);
DB.Commit;
end Schedule;
-- ------------------------------
-- Execute the job and save the job information in the database.
-- ------------------------------
procedure Execute (Job : in out Abstract_Job_Type'Class;
DB : in out ADO.Sessions.Master_Session'Class) is
use type AWA.Jobs.Models.Job_Status_Type;
begin
-- Execute the job with an exception guard.
Log.Info ("Execute job {0}", String '(Job.Job.Get_Name));
begin
Job.Execute;
exception
when E : others =>
Log.Error ("Exception when executing job {0}", Job.Job.Get_Name);
Log.Error ("Exception:", E, True);
Job.Job.Set_Status (Models.FAILED);
end;
-- If the job did not set a completion status, mark it as terminated.
if Job.Job.Get_Status = Models.SCHEDULED or Job.Job.Get_Status = Models.RUNNING then
Job.Job.Set_Status (Models.TERMINATED);
end if;
-- And save the job.
DB.Begin_Transaction;
Job.Job.Set_Finish_Date (ADO.Nullable_Time '(Is_Null => False,
Value => Ada.Calendar.Clock));
Job.Save (DB);
DB.Commit;
end Execute;
-- ------------------------------
-- Execute the job associated with the given event.
-- ------------------------------
procedure Execute (Event : in AWA.Events.Module_Event'Class;
Result : in out Job_Ref) is
use AWA.Jobs.Modules;
use type AWA.Modules.Module_Access;
Ctx : constant ASC.Service_Context_Access := ASC.Current;
App : constant AWA.Applications.Application_Access := Ctx.Get_Application;
Module : constant AWA.Modules.Module_Access := App.Find_Module (AWA.Jobs.Modules.NAME);
DB : ADO.Sessions.Master_Session := ASC.Get_Master_Session (Ctx);
Job : AWA.Jobs.Models.Job_Ref;
Id : constant ADO.Identifier := Event.Get_Entity_Identifier;
begin
if Module = null then
Log.Warn ("There is no Job module to execute a job");
raise Execute_Error;
end if;
if not (Module.all in AWA.Jobs.Modules.Job_Module'Class) then
Log.Warn ("The 'job' module is not a valid module for job execution");
raise Execute_Error;
end if;
DB.Begin_Transaction;
Job.Load (Session => DB,
Id => Id);
Job.Set_Start_Date (ADO.Nullable_Time '(Is_Null => False,
Value => Ada.Calendar.Clock));
Job.Set_Status (AWA.Jobs.Models.RUNNING);
Job.Save (Session => DB);
DB.Commit;
declare
Name : constant String := Job.Get_Name;
Ident : constant String := ADO.Identifier'Image (Id);
begin
Log.Info ("Restoring job {0} - '{1}'", Ident, Name);
declare
Plugin : constant Job_Module_Access := Job_Module'Class (Module.all)'Access;
Factory : constant Job_Factory_Access := Plugin.Find_Factory (Name);
Work : AWA.Jobs.Services.Abstract_Job_Type_Access := null;
begin
if Factory /= null then
Work := Factory.Create;
Work.Job := Job;
Event.Copy (Work.Props);
Result := Job_Ref '(Job_Refs.Create (Work) with null record);
Work.Execute (DB);
else
Log.Error ("There is no factory to execute job {0} - '{1}'",
Ident, Name);
Job.Set_Status (AWA.Jobs.Models.FAILED);
Job.Set_Finish_Date (ADO.Nullable_Time '(Is_Null => False,
Value => Ada.Calendar.Clock));
DB.Begin_Transaction;
Job.Save (Session => DB);
DB.Commit;
end if;
end;
end;
end Execute;
-- ------------------------------
-- Get the job parameter identified by the `Name` and return it as
-- a typed object. Return the `Null_Object` if the job is empty
-- or there is no such parameter.
-- ------------------------------
function Get_Parameter (Job : in Job_Ref;
Name : in String) return Util.Beans.Objects.Object is
begin
if Job.Is_Null then
return Util.Beans.Objects.Null_Object;
else
return Job.Value.Get_Parameter (Name);
end if;
end Get_Parameter;
-- ------------------------------
-- Get the job factory name.
-- ------------------------------
function Get_Name (Factory : in Job_Factory'Class) return String is
begin
return Ada.Tags.Expanded_Name (Factory'Tag);
end Get_Name;
procedure Execute (Job : in out Job_Type) is
begin
Job.Work (Job);
end Execute;
-- ------------------------------
-- Create the job instance to execute the associated `Work_Access` procedure.
-- ------------------------------
overriding
function Create (Factory : in Work_Factory) return Abstract_Job_Type_Access is
begin
return new Job_Type '(Util.Refs.Ref_Entity with
Work => Factory.Work,
others => <>);
end Create;
-- ------------------------------
-- Job Declaration
-- ------------------------------
package body Definition is
function Create (Factory : in Job_Type_Factory) return Abstract_Job_Type_Access is
pragma Unreferenced (Factory);
begin
return new T;
end Create;
end Definition;
end AWA.Jobs.Services;
| 38.141573 | 96 | 0.552053 |
1d8a6cfaf100cd948fdcfe5d1fe94e672af613ad | 12,759 | adb | Ada | src/graphml_writers.adb | TNO/Dependency_Graph_Extractor-Ada | cfcc9132cf181e4db5139c14150f221efa69a6d6 | [
"BSD-3-Clause"
] | null | null | null | src/graphml_writers.adb | TNO/Dependency_Graph_Extractor-Ada | cfcc9132cf181e4db5139c14150f221efa69a6d6 | [
"BSD-3-Clause"
] | null | null | null | src/graphml_writers.adb | TNO/Dependency_Graph_Extractor-Ada | cfcc9132cf181e4db5139c14150f221efa69a6d6 | [
"BSD-3-Clause"
] | null | null | null | pragma Assertion_Policy (Check);
with Ada.Strings.Fixed;
package body GraphML_Writers is
package S_F renames Ada.Strings.Fixed;
use type S_U.Unbounded_String;
function "+" (Str : String) return S_U.Unbounded_String is
(S_U.To_Unbounded_String (Str));
NODE_TAG : constant String := "node";
EDGE_TAG : constant String := "edge";
NAME_TAG : constant S_U.Unbounded_String := +"name";
TYPE_TAG : constant S_U.Unbounded_String := +"type";
SUBTYPE_TAG : constant S_U.Unbounded_String := +"subtype";
function Edge_Data_Hash (Id : Edge_Data) return Ada.Containers.Hash_Type is
use type Ada.Containers.Hash_Type;
begin
return
5 * Ada.Containers.Hash_Type (Id.Source_Id) +
3 * Ada.Containers.Hash_Type (Id.Target_Id) + S_U.Hash (Id.Edge_Ty);
end Edge_Data_Hash;
function Replace_All
(Str : String; From : Character; To : String) return String;
function Replace_All
(Str : String; From : Character; To : String) return String
is
function Replace_Inner (Str : String; Index : Natural) return String;
function Replace_Inner (Str : String; Index : Natural) return String is
begin
if Index = Str'First - 1 then
return Str;
elsif Str (Index) = From then
return
Replace_Inner
(S_F.Replace_Slice (Str, Index, Index, To), Index - Str'First);
else
return Replace_Inner (Str, Index - 1);
end if;
end Replace_Inner;
begin
return Replace_Inner (Str, Str'Last);
end Replace_All;
function Escape (Str : String) return String;
function Escape (Str : String) return String is
begin
return
Replace_All
(Replace_All
(Replace_All
(Replace_All (Replace_All (Str, '&', "&"), '<', "<"),
'>', ">"),
'"', """),
''', "'");
end Escape;
function Escape (Str : S_U.Unbounded_String) return String;
function Escape (Str : S_U.Unbounded_String) return String is
begin
return Escape (S_U.To_String (Str));
end Escape;
function Image (Ty : GraphML_Type) return String;
function Image (Ty : GraphML_Type) return String is
begin
case Ty is
when GraphML_Boolean =>
return "boolean";
when GraphML_Int =>
return "int";
when GraphML_String =>
return "string";
end case;
end Image;
procedure Write_String
(Stream : Ada.Streams.Stream_IO.Stream_Access; Indent : Natural;
Str : String);
procedure Write_String
(Stream : Ada.Streams.Stream_IO.Stream_Access; Indent : Natural;
Str : String)
is
use S_F;
begin
String'Write (Stream, Indent * " ");
String'Write (Stream, Str);
Character'Write (Stream, ASCII.CR);
Character'Write (Stream, ASCII.LF);
end Write_String;
procedure Write_Attribute_Keys
(Stream : Ada.Streams.Stream_IO.Stream_Access; For_Tag : String;
Attributes : Attribute_Definition_Sets.Map);
procedure Write_Attribute_Keys
(Stream : Ada.Streams.Stream_IO.Stream_Access; For_Tag : String;
Attributes : Attribute_Definition_Sets.Map)
is
use Attribute_Definition_Sets;
begin
for Attribute in Attributes.Iterate loop
declare
Id_Attr : constant String :=
"id=""" & Escape (Key (Attribute)) & """";
For_Attr : constant String := "for=""" & For_Tag & """";
Attr_Name_Attr : constant String :=
"attr.name=""" & Escape (Key (Attribute)) & """";
Attr_Type_Attr : constant String :=
"attr.type=""" & Image (Element (Attribute)) & """";
begin
Write_String
(Stream, 1,
"<key " & Id_Attr & " " & For_Attr & " " & Attr_Name_Attr &
" " & Attr_Type_Attr & " />");
end;
end loop;
end Write_Attribute_Keys;
function Create_GraphML_Writer
(Filename : String;
Node_Attributes : Attribute_Definition_Sets.Map :=
Attribute_Definition_Sets.Empty_Map;
Edge_Attributes : Attribute_Definition_Sets.Map :=
Attribute_Definition_Sets.Empty_Map)
return GraphML_File
is
XMLNS : constant String :=
"xmlns=""http://graphml.graphdrawing.org/xmlns""";
XMLNS_XSI : constant String :=
"xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance""";
SCHEMALOCATION : constant String :=
"schemaLocation=""http://graphml.graphdrawing.org/xmlns "
& "http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd""";
begin
return File : GraphML_File do
Ada.Streams.Stream_IO.Create
(File.File,
Mode => Ada.Streams.Stream_IO.Out_File,
Name => Filename);
File.Stream := Ada.Streams.Stream_IO.Stream (File.File);
File.Node_Attributes := Node_Attributes;
File.Node_Attributes.Insert (NAME_TAG, GraphML_String);
File.Node_Attributes.Insert (TYPE_TAG, GraphML_String);
File.Node_Attributes.Insert (SUBTYPE_TAG, GraphML_String);
File.Edge_Attributes := Edge_Attributes;
File.Edge_Attributes.Insert (TYPE_TAG, GraphML_String);
Write_String
(File.Stream, 0, "<?xml version=""1.0"" encoding=""utf-8""?>");
Write_String
(File.Stream, 0,
"<graphml " & XMLNS & " " & XMLNS_XSI & " " & SCHEMALOCATION &
" >");
Write_Attribute_Keys (File.Stream, NODE_TAG, File.Node_Attributes);
Write_Attribute_Keys (File.Stream, EDGE_TAG, File.Edge_Attributes);
Write_String (File.Stream, 1, "<graph edgedefault=""directed"">");
end return;
end Create_GraphML_Writer;
procedure Close (This : in out GraphML_File) is
begin
Write_String (This.Stream, 1, "</graph>");
Write_String (This.Stream, 0, "</graphml>");
Ada.Streams.Stream_IO.Close (This.File);
end Close;
procedure Write_Data
(Stream : Ada.Streams.Stream_IO.Stream_Access;
Attribute_Definitions : Attribute_Definition_Sets.Map;
Attribute_Values : Attribute_Value_Sets.Map);
procedure Write_Data
(Stream : Ada.Streams.Stream_IO.Stream_Access;
Attribute_Definitions : Attribute_Definition_Sets.Map;
Attribute_Values : Attribute_Value_Sets.Map)
is
use Attribute_Value_Sets;
begin
for Attribute in Attribute_Values.Iterate loop
if Attribute_Definitions.Contains (Key (Attribute)) then
declare
Key_Attr : constant String :=
"key=""" & Escape (Key (Attribute)) & """";
Value : constant String := Escape (Element (Attribute));
begin
Write_String
(Stream, 3, "<data " & Key_Attr & ">" & Value & "</data>");
end;
end if;
end loop;
end Write_Data;
procedure Write_Node_Internal
(File : in out GraphML_File; Node_Key : String; Node_Name : String;
Node_Ty : String; Node_Subty : String; Has_Node_Subty : Boolean;
Node_Attributes : Attribute_Value_Sets.Map);
procedure Write_Node_Internal
(File : in out GraphML_File; Node_Key : String; Node_Name : String;
Node_Ty : String; Node_Subty : String; Has_Node_Subty : Boolean;
Node_Attributes : Attribute_Value_Sets.Map)
is
Key : constant S_U.Unbounded_String := +Node_Key;
Id : constant Node_Id :=
(if File.Known_Nodes.Contains (Key) then
File.Known_Nodes.Element (Key).Id
else File.Next_Node_Id);
Data : constant Node_Data :=
(Id => Id, Ty => +Node_Ty, Subty => +Node_Subty,
Attributes => Node_Attributes);
Id_Attr : constant String :=
"id=""" & S_F.Trim (Id'Image, Ada.Strings.Left) & """";
Subty : constant String :=
(if Has_Node_Subty then ":" & Escape (Node_Subty) else "");
Labels_Attr : constant String :=
"labels="":" & Escape (Node_Ty) & Subty & """";
begin
if File.Known_Nodes.Contains (Key) then
return;
end if;
File.Known_Nodes.Insert (Key, Data);
File.Next_Node_Id := Id + 1;
Write_String
(File.Stream, 2,
"<" & NODE_TAG & " " & Id_Attr & " " & Labels_Attr & ">");
declare
Attributes : Attribute_Value_Sets.Map := Node_Attributes;
begin
Attributes.Insert (NAME_TAG, +Node_Name);
Attributes.Insert (TYPE_TAG, +Node_Ty);
if Has_Node_Subty then
Attributes.Insert (SUBTYPE_TAG, +Node_Subty);
end if;
Write_Data (File.Stream, File.Node_Attributes, Attributes);
end;
Write_String (File.Stream, 2, "</" & NODE_TAG & ">");
end Write_Node_Internal;
procedure Write_Node
(This : in out GraphML_File; Node_Key : String; Node_Name : String;
Node_Ty : Node_Type;
Node_Attributes : Attribute_Value_Sets.Map :=
Attribute_Value_Sets.Empty_Map)
is
begin
Write_Node_Internal
(This, Node_Key, Node_Name, String (Node_Ty), "", False,
Node_Attributes);
end Write_Node;
procedure Write_Node
(This : in out GraphML_File; Node_Key : String; Node_Name : String;
Node_Ty : Node_Type; Node_Subty : Node_Subtype;
Node_Attributes : Attribute_Value_Sets.Map :=
Attribute_Value_Sets.Empty_Map)
is
NODE_SUBTY_STRING : constant String := String (Node_Subty);
HAS_NODE_SUBTY : constant Boolean := NODE_SUBTY_STRING /= "";
begin
Write_Node_Internal
(This, Node_Key, Node_Name, String (Node_Ty), NODE_SUBTY_STRING,
HAS_NODE_SUBTY, Node_Attributes);
end Write_Node;
procedure Write_Edge_Internal
(File : in out GraphML_File; Source_Node_Key : String;
Target_Node_Key : String; Edge_Ty : String;
Edge_Attributes : Attribute_Value_Sets.Map);
procedure Write_Edge_Internal
(File : in out GraphML_File; Source_Node_Key : String;
Target_Node_Key : String; Edge_Ty : String;
Edge_Attributes : Attribute_Value_Sets.Map)
is
Source_Id : constant Node_Id :=
File.Known_Nodes.Element (+Source_Node_Key).Id;
Target_Id : constant Node_Id :=
File.Known_Nodes.Element (+Target_Node_Key).Id;
Element : constant Edge_Data :=
(Source_Id => Source_Id, Target_Id => Target_Id, Edge_Ty => +Edge_Ty,
Attributes => Edge_Attributes);
Source_Attr : constant String :=
"source=""" & S_F.Trim (Source_Id'Image, Ada.Strings.Left) & """";
Target_Attr : constant String :=
"target=""" & S_F.Trim (Target_Id'Image, Ada.Strings.Left) & """";
Label_Attr : constant String := "label=""" & Escape (Edge_Ty) & """";
begin
if File.Known_Edges.Contains (Element) then
return;
end if;
File.Known_Edges.Insert (Element);
Write_String
(File.Stream, 2,
"<" & EDGE_TAG & " " & Source_Attr & " " & Target_Attr & " " &
Label_Attr & ">");
declare
TY : constant String := "type=" & Escape (Edge_Ty);
SOURCE : constant String := "source=" & Escape (Source_Node_Key);
TARGET : constant String := "target=" & Escape (Target_Node_Key);
Attributes : Attribute_Value_Sets.Map := Edge_Attributes;
begin
Write_String
(File.Stream, 3,
"<desc>" & TY & " " & SOURCE & " " & TARGET & " " & TY &
"</desc>");
Attributes.Insert (TYPE_TAG, +Edge_Ty);
Write_Data (File.Stream, File.Edge_Attributes, Attributes);
end;
Write_String (File.Stream, 2, "</" & EDGE_TAG & ">");
end Write_Edge_Internal;
procedure Write_Edge
(This : in out GraphML_File; Source_Node_Key : String;
Target_Node_Key : String; Edge_Ty : Edge_Type;
Edge_Attributes : Attribute_Value_Sets.Map :=
Attribute_Value_Sets.Empty_Map)
is
begin
pragma Assert
(This.Known_Nodes.Contains (+Source_Node_Key),
"Source_Node for " & String (Edge_Ty) & " absent: " &
Source_Node_Key);
pragma Assert
(This.Known_Nodes.Contains (+Target_Node_Key),
"Target_Node for " & String (Edge_Ty) & " absent: " &
Target_Node_Key);
Write_Edge_Internal
(This, Source_Node_Key, Target_Node_Key, String (Edge_Ty),
Edge_Attributes);
end Write_Edge;
end GraphML_Writers;
| 36.454286 | 79 | 0.606082 |
a124cd14a7ab8193e60d418f18343ea0a3bcee54 | 2,339 | ads | Ada | st/src/driver.ads | MatrixMike/AdaDemo1 | cbf2ad5a05dc06a8ee11d0780c19f5fd74c8990a | [
"MIT"
] | 1 | 2019-06-27T12:58:28.000Z | 2019-06-27T12:58:28.000Z | st/src/driver.ads | MatrixMike/AdaDemo1 | cbf2ad5a05dc06a8ee11d0780c19f5fd74c8990a | [
"MIT"
] | null | null | null | st/src/driver.ads | MatrixMike/AdaDemo1 | cbf2ad5a05dc06a8ee11d0780c19f5fd74c8990a | [
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT EXAMPLE --
-- --
-- Copyright (C) 2014, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- 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 the declaration for the task controlling the LEDs on
-- the STM32F4 Discovery board.
with System;
package Driver is
task Controller is
pragma Storage_Size (4 * 1024);
pragma Priority (System.Default_Priority);
end Controller;
end Driver;
| 57.04878 | 78 | 0.373236 |
2fe024fb3ead26fb9c7ee2b35aaf72ebd6bb5500 | 13,771 | adb | Ada | src/syscalls/ewok-syscalls-dma.adb | PThierry/ewok-kernel | e9c23cb3fd0afd8378bc27418778e1117d5e16cc | [
"Apache-2.0"
] | null | null | null | src/syscalls/ewok-syscalls-dma.adb | PThierry/ewok-kernel | e9c23cb3fd0afd8378bc27418778e1117d5e16cc | [
"Apache-2.0"
] | null | null | null | src/syscalls/ewok-syscalls-dma.adb | PThierry/ewok-kernel | e9c23cb3fd0afd8378bc27418778e1117d5e16cc | [
"Apache-2.0"
] | null | null | null | --
-- Copyright 2018 The wookey project team <[email protected]>
-- - Ryad Benadjila
-- - Arnauld Michelizza
-- - Mathieu Renard
-- - Philippe Thierry
-- - Philippe Trebuchet
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--
with ewok.tasks; use ewok.tasks;
with ewok.tasks_shared; use ewok.tasks_shared;
with ewok.exported.dma;
with ewok.dma_shared;
with ewok.dma;
with ewok.perm;
with ewok.sanitize;
with ewok.debug;
package body ewok.syscalls.dma
with spark_mode => off
is
package TSK renames ewok.tasks;
procedure svc_register_dma
(caller_id : in ewok.tasks_shared.t_task_id;
params : in t_parameters;
mode : in ewok.tasks_shared.t_task_mode)
is
dma_config : ewok.exported.dma.t_dma_user_config
with import, address => to_address (params(1));
descriptor : unsigned_32
with import, address => to_address (params(2));
index : ewok.dma_shared.t_registered_dma_index;
ok : boolean;
begin
-- Forbidden after end of task initialization
if is_init_done (caller_id) then
goto ret_denied;
end if;
-- DMA allowed for that task?
if not ewok.perm.ressource_is_granted
(ewok.perm.PERM_RES_DEV_DMA, caller_id)
then
pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma(): permission not granted"));
goto ret_denied;
end if;
-- Ada based sanitation using on types compliance
if not dma_config'valid_scalars
then
pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma(): invalid dma_t"));
goto ret_inval;
end if;
-- Does dma_config'address and descriptor'address are in the caller
-- address space ?
if not ewok.sanitize.is_range_in_data_slot
(to_system_address (dma_config'address),
dma_config'size/8,
caller_id,
mode)
or
not ewok.sanitize.is_word_in_data_slot
(to_system_address (descriptor'address), caller_id, mode)
then
pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma(): parameters not in task's memory space"));
goto ret_denied;
end if;
-- Verify DMA configuration transmitted by the user
if not ewok.dma.sanitize_dma
(dma_config, caller_id,
ewok.exported.dma.t_config_mask'(others => false), mode)
then
pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma(): invalid dma configuration"));
goto ret_inval;
end if;
-- Check if controller/stream are already used
-- Note: A DMA controller can manage only one channel per stream in the
-- same time.
if ewok.dma.stream_is_already_used (dma_config) then
pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma(): dma configuration already used"));
goto ret_denied;
end if;
-- Is there any user descriptor available ?
if TSK.tasks_list(caller_id).num_dma_id < MAX_DMAS_PER_TASK then
TSK.tasks_list(caller_id).num_dma_id :=
TSK.tasks_list(caller_id).num_dma_id + 1;
else
goto ret_busy;
end if;
-- Initialization
ewok.dma.init_stream (dma_config, caller_id, index, ok);
if not ok then
pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma(): dma initialization failed"));
goto ret_denied;
end if;
declare
dma_descriptor : constant unsigned_32 :=
TSK.tasks_list(caller_id).num_dma_id;
begin
TSK.tasks_list(caller_id).dma_id(dma_descriptor) := index;
end;
descriptor := TSK.tasks_list(caller_id).num_dma_id;
set_return_value (caller_id, mode, SYS_E_DONE);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
<<ret_busy>>
descriptor := 0;
set_return_value (caller_id, mode, SYS_E_BUSY);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
<<ret_inval>>
descriptor := 0;
set_return_value (caller_id, mode, SYS_E_INVAL);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
<<ret_denied>>
descriptor := 0;
set_return_value (caller_id, mode, SYS_E_DENIED);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
end svc_register_dma;
procedure svc_register_dma_shm
(caller_id : in ewok.tasks_shared.t_task_id;
params : in t_parameters;
mode : in ewok.tasks_shared.t_task_mode)
is
user_dma_shm : ewok.exported.dma.t_dma_shm_info
with import, address => to_address (params(1));
granted_id : ewok.tasks_shared.t_task_id;
begin
-- Forbidden after end of task initialization
if is_init_done (caller_id) then
goto ret_denied;
end if;
-- Ada based sanitation using on types compliance
if not user_dma_shm'valid_scalars
then
pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma_shm(): invalid dma_shm_t"));
goto ret_inval;
end if;
-- Does user_dma_shm'address is in the caller address space ?
if not ewok.sanitize.is_range_in_data_slot
(to_system_address (user_dma_shm'address),
user_dma_shm'size/8,
caller_id,
mode)
then
pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma_shm(): parameters not in task's memory space"));
goto ret_denied;
end if;
-- Verify DMA shared memory configuration transmitted by the user
if not ewok.dma.sanitize_dma_shm (user_dma_shm, caller_id, mode)
then
pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma_shm(): invalid configuration"));
goto ret_inval;
end if;
granted_id := user_dma_shm.granted_id;
-- Does the task can share memory with its target task?
if not ewok.perm.dmashm_is_granted (caller_id, granted_id)
then
pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma_shm(): not granted"));
goto ret_denied;
end if;
-- Is there any user descriptor available ?
if TSK.tasks_list(granted_id).num_dma_shms < MAX_DMA_SHM_PER_TASK and
TSK.tasks_list(caller_id).num_dma_shms < MAX_DMA_SHM_PER_TASK
then
TSK.tasks_list(granted_id).num_dma_shms := TSK.tasks_list(granted_id).num_dma_shms + 1;
TSK.tasks_list(caller_id).num_dma_shms := TSK.tasks_list(caller_id).num_dma_shms + 1;
else
pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma_shm(): busy"));
goto ret_busy;
end if;
TSK.tasks_list(granted_id).dma_shm(TSK.tasks_list(granted_id).num_dma_shms) := user_dma_shm;
TSK.tasks_list(caller_id).dma_shm(TSK.tasks_list(caller_id).num_dma_shms) := user_dma_shm;
set_return_value (caller_id, mode, SYS_E_DONE);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
<<ret_busy>>
set_return_value (caller_id, mode, SYS_E_BUSY);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
<<ret_inval>>
set_return_value (caller_id, mode, SYS_E_INVAL);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
<<ret_denied>>
set_return_value (caller_id, mode, SYS_E_DENIED);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
end svc_register_dma_shm;
procedure svc_dma_reconf
(caller_id : in ewok.tasks_shared.t_task_id;
params : in out t_parameters;
mode : in ewok.tasks_shared.t_task_mode)
is
new_dma_config : ewok.exported.dma.t_dma_user_config
with import, address => to_address (params(1));
config_mask : ewok.exported.dma.t_config_mask
with import, address => params(2)'address;
dma_descriptor : unsigned_32
with import, address => params(3)'address;
ok : boolean;
begin
-- Forbidden before end of task initialization
if not is_init_done (caller_id) then
goto ret_denied;
end if;
-- Ada based sanitation using on types compliance is not easy,
-- as only fields marked by config_mask have a real interpretation
-- These fields are checked in the dma_sanitize_dma() function call
-- bellow
-- Does new_dma_config'address is in the caller address space ?
if not ewok.sanitize.is_range_in_data_slot
(to_system_address (new_dma_config'address),
new_dma_config'size/8,
caller_id,
mode)
then
pragma DEBUG (debug.log (debug.ERROR, "svc_dma_reconf(): parameters not in task's memory space"));
goto ret_inval;
end if;
-- Valid DMA descriptor ?
if dma_descriptor < TSK.tasks_list(caller_id).dma_id'first or
dma_descriptor > TSK.tasks_list(caller_id).num_dma_id
then
pragma DEBUG (debug.log (debug.ERROR, "svc_dma_reconf(): invalid descriptor"));
goto ret_inval;
end if;
-- Check if the user tried to change the DMA ctrl/channel/stream
-- parameters
if not ewok.dma.has_same_dma_channel
(TSK.tasks_list(caller_id).dma_id(dma_descriptor), new_dma_config)
then
pragma DEBUG (debug.log (debug.ERROR, "svc_dma_reconf(): ctrl/channel/stream changed"));
goto ret_inval;
end if;
-- Verify DMA configuration transmitted by the user
if not ewok.dma.sanitize_dma
(new_dma_config, caller_id, config_mask, mode)
then
pragma DEBUG (debug.log (debug.ERROR, "svc_dma_reconf(): invalid configuration"));
goto ret_inval;
end if;
-- Reconfigure the DMA controller
ewok.dma.reconfigure_stream
(new_dma_config,
TSK.tasks_list(caller_id).dma_id(dma_descriptor),
config_mask,
caller_id,
ok);
if not ok then
goto ret_inval;
end if;
set_return_value (caller_id, mode, SYS_E_DONE);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
<<ret_inval>>
set_return_value (caller_id, mode, SYS_E_INVAL);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
<<ret_denied>>
set_return_value (caller_id, mode, SYS_E_DENIED);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
end svc_dma_reconf;
procedure svc_dma_reload
(caller_id : in ewok.tasks_shared.t_task_id;
params : in out t_parameters;
mode : in ewok.tasks_shared.t_task_mode)
is
dma_descriptor : unsigned_32
with import, address => params(1)'address;
begin
-- Forbidden before end of task initialization
if not is_init_done (caller_id) then
goto ret_denied;
end if;
-- Valid DMA descriptor ?
if dma_descriptor < TSK.tasks_list(caller_id).dma_id'first or
dma_descriptor > TSK.tasks_list(caller_id).num_dma_id
then
pragma DEBUG (debug.log (debug.ERROR, "svc_dma_reload(): invalid descriptor"));
goto ret_inval;
end if;
ewok.dma.enable_dma_stream
(TSK.tasks_list(caller_id).dma_id(dma_descriptor));
set_return_value (caller_id, mode, SYS_E_DONE);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
<<ret_inval>>
set_return_value (caller_id, mode, SYS_E_INVAL);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
<<ret_denied>>
set_return_value (caller_id, mode, SYS_E_DENIED);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
end svc_dma_reload;
procedure svc_dma_disable
(caller_id : in ewok.tasks_shared.t_task_id;
params : in out t_parameters;
mode : in ewok.tasks_shared.t_task_mode)
is
dma_descriptor : unsigned_32
with import, address => params(1)'address;
begin
-- Forbidden before end of task initialization
if not is_init_done (caller_id) then
goto ret_denied;
end if;
-- Valid DMA descriptor ?
if dma_descriptor < TSK.tasks_list(caller_id).dma_id'first or
dma_descriptor > TSK.tasks_list(caller_id).num_dma_id
then
pragma DEBUG (debug.log (debug.ERROR, "svc_dma_disable(): invalid descriptor"));
goto ret_inval;
end if;
ewok.dma.disable_dma_stream
(TSK.tasks_list(caller_id).dma_id(dma_descriptor));
set_return_value (caller_id, mode, SYS_E_DONE);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
<<ret_inval>>
set_return_value (caller_id, mode, SYS_E_INVAL);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
<<ret_denied>>
set_return_value (caller_id, mode, SYS_E_DENIED);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
end svc_dma_disable;
end ewok.syscalls.dma;
| 33.587805 | 113 | 0.652894 |
1cf798793fbfb46dbac355f01453f91239fbc92d | 3,853 | adb | Ada | firehog/ncurses/Ada95/ada_include/terminal_interface-curses-forms-field_types-ipv4_address.adb | KipodAfterFree/KAF-2019-FireHog | 5f6ee3c3c3329459bc9daeabc1a16ff4619508d9 | [
"MIT"
] | 1 | 2019-04-02T20:28:58.000Z | 2019-04-02T20:28:58.000Z | Ada95/ada_include/terminal_interface-curses-forms-field_types-ipv4_address.adb | mitchelhaan/ncurses | 0b8ae5088202164ecc1769aa255ed1aad283d2ae | [
"X11"
] | null | null | null | Ada95/ada_include/terminal_interface-curses-forms-field_types-ipv4_address.adb | mitchelhaan/ncurses | 0b8ae5088202164ecc1769aa255ed1aad283d2ae | [
"X11"
] | 1 | 2019-12-26T10:18:16.000Z | 2019-12-26T10:18:16.000Z | ------------------------------------------------------------------------------
-- --
-- GNAT ncurses Binding --
-- --
-- Terminal_Interface.Curses.Forms.Field_Types.IPV4_Address --
-- --
-- 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 <[email protected]> 1996
-- Version Control:
-- $Revision: 1.3 $
-- Binding Version 00.93
------------------------------------------------------------------------------
with Interfaces.C;
with Terminal_Interface.Curses.Aux; use Terminal_Interface.Curses.Aux;
package body Terminal_Interface.Curses.Forms.Field_Types.IPV4_Address is
use type Interfaces.C.Int;
procedure Set_Field_Type (Fld : in Field;
Typ : in Internet_V4_Address_Field)
is
C_IPV4_Field_Type : C_Field_Type;
pragma Import (C, C_IPV4_Field_Type, "TYPE_IPV4");
function Set_Fld_Type (F : Field := Fld;
Cft : C_Field_Type := C_IPV4_Field_Type)
return C_Int;
pragma Import (C, Set_Fld_Type, "set_field_type");
Res : Eti_Error;
begin
Res := Set_Fld_Type;
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.IPV4_Address;
| 55.84058 | 78 | 0.465611 |
59f0d6a4f2fe41850630c0f318452be2d3ed4d44 | 3,351 | ads | Ada | Validation/pyFrame3DD-master/gcc-master/gcc/ada/exp_prag.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/exp_prag.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/exp_prag.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- E X P _ P R A G --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2020, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING3. If not, go to --
-- http://www.gnu.org/licenses for a complete copy of the license. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- Expand routines for pragmas
with Types; use Types;
package Exp_Prag is
procedure Expand_N_Pragma (N : Node_Id);
procedure Expand_Pragma_Contract_Cases
(CCs : Node_Id;
Subp_Id : Entity_Id;
Decls : List_Id;
Stmts : in out List_Id);
-- Given pragma Contract_Cases CCs, create the circuitry needed to evaluate
-- case guards and trigger consequence expressions. Subp_Id is the related
-- subprogram for which the pragma applies. Decls are the declarations of
-- Subp_Id's body. All generated code is added to list Stmts. If Stmts is
-- No_List on entry, a new list is created.
procedure Expand_Pragma_Initial_Condition
(Pack_Id : Entity_Id;
N : Node_Id);
-- Verify the run-time semantics of pragma Initial_Condition when it
-- applies to package Pack_Id. N denotes the related package spec or
-- body.
procedure Expand_Pragma_Subprogram_Variant
(Prag : Node_Id;
Subp_Id : Entity_Id;
Body_Decls : List_Id);
-- Given pragma Subprogram_Variant Prag, create the circuitry needed
-- to evaluate variant expressions at the subprogram entry and at the
-- recursive call. Subp_Id is the related subprogram for which the pragma
-- applies and Body_Decls are its body declarations. On exit, the argument
-- of Prag is replaced with a reference to procedure with checks for the
-- variant expressions.
end Exp_Prag;
| 52.359375 | 79 | 0.514175 |
12727d7742588ef4e564154ebf11b8b62e216b62 | 2,579 | adb | Ada | aunit/aunit-memory-utils.adb | btmalone/alog | 164a0a3e82aee414dc6125b64cd8ccc3a01876f9 | [
"Apache-2.0"
] | null | null | null | aunit/aunit-memory-utils.adb | btmalone/alog | 164a0a3e82aee414dc6125b64cd8ccc3a01876f9 | [
"Apache-2.0"
] | 3 | 2018-12-23T03:07:49.000Z | 2019-06-03T20:16:30.000Z | aunit/aunit-memory-utils.adb | btmalone/alog | 164a0a3e82aee414dc6125b64cd8ccc3a01876f9 | [
"Apache-2.0"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- A U N I T . M E M O R Y . U T I L S --
-- --
-- B o d y --
-- --
-- --
-- Copyright (C) 2008-2012, AdaCore --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT is maintained by AdaCore (http://www.adacore.com) --
-- --
------------------------------------------------------------------------------
package body AUnit.Memory.Utils is
---------------
-- Gen_Alloc --
---------------
function Gen_Alloc return Name is
begin
return new Object;
end Gen_Alloc;
end AUnit.Memory.Utils;
| 58.613636 | 78 | 0.28228 |
41b6d6249bd596e46e9b11f269f99002cb43daa4 | 137 | ada | Ada | Task/Percentage-difference-between-images/Ada/percentage-difference-between-images-3.ada | mullikine/RosettaCodeData | 4f0027c6ce83daa36118ee8b67915a13cd23ab67 | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:38.000Z | 2018-11-09T22:08:38.000Z | Task/Percentage-difference-between-images/Ada/percentage-difference-between-images-3.ada | mullikine/RosettaCodeData | 4f0027c6ce83daa36118ee8b67915a13cd23ab67 | [
"Info-ZIP"
] | null | null | null | Task/Percentage-difference-between-images/Ada/percentage-difference-between-images-3.ada | mullikine/RosettaCodeData | 4f0027c6ce83daa36118ee8b67915a13cd23ab67 | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:40.000Z | 2018-11-09T22:08:40.000Z | function "-" (Left, Right : Pixel) return Count is
begin
return (Left.R - Right.R) + (Left.G - Left.G) + (Left.B - Right.B);
end "-";
| 27.4 | 70 | 0.591241 |
d039337fc7f68d36a3d13dcdb11c4468643a5db9 | 4,851 | ada | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c3/c34018a.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 7 | 2020-05-02T17:34:05.000Z | 2021-10-17T10:15:18.000Z | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c3/c34018a.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c3/c34018a.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | -- C34018A.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 CALLS OF DERIVED SUBPROGRAMS CHECK CONSTRAINTS OF THE
-- PARENT SUBPROGRAM, NOT THE CONSTRAINTS OF THE DERIVED SUBTYPE.
-- JBG 11/15/85
-- JRK 2/12/86 CORRECTED ERROR: RESOLVED AMBIGUOUS CALL G(41) TO
-- TYPE NEW_INT.
-- EDS 7/16/98 AVOID OPTIMIZATION
WITH REPORT; USE REPORT;
PROCEDURE C34018A IS
PACKAGE P IS
TYPE INT IS RANGE 1..100;
SUBTYPE INT_50 IS INT RANGE 1..50;
SUBTYPE INT_51 IS INT RANGE 51..100;
FUNCTION "+" (L, R : INT) RETURN INT;
FUNCTION G (X : INT_50) RETURN INT_51;
TYPE STR IS ARRAY (1..10) OF CHARACTER;
FUNCTION F (X : STR) RETURN STR;
END P;
USE P;
TYPE NEW_STR IS NEW P.STR;
TYPE NEW_INT IS NEW P.INT RANGE 51..90;
PACKAGE BODY P IS
FUNCTION "+" (L, R : INT) RETURN INT IS
BEGIN
RETURN INT(INTEGER(L) + INTEGER(R));
END "+";
FUNCTION G (X : INT_50) RETURN INT_51 IS
BEGIN
RETURN X + 10;
END G;
FUNCTION F (X : STR) RETURN STR IS
BEGIN
RETURN X;
END F;
END P;
BEGIN
TEST ("C34018A", "CHECK CONSTRAINTS PROCESSED CORRECTLY FOR " &
"CALLS OF DERIVED SUBPROGRAMS");
DECLARE
Y : NEW_STR := F("1234567890"); -- UNAMBIGUOUS.
BEGIN
IF Y /= "1234567890" THEN
FAILED ("DERIVED F");
END IF;
END;
DECLARE
A : INT := 51;
B : NEW_INT := NEW_INT(IDENT_INT(90));
BEGIN
BEGIN
A := A + 0;
FAILED ("NO EXCEPTION - A + 0 = " & INT'IMAGE(A) ); --Use A
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ("UNEXPECTED EXCEPTION - 1");
END;
BEGIN
IF B + 2 /= 92 THEN -- 92 IN INT.
FAILED ("WRONG RESULT - B + 2");
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
FAILED ("WRONG CONSTRAINT FOR DERIVED ""+""");
WHEN OTHERS =>
FAILED ("UNEXPECTED EXCEPTION - 2");
END;
BEGIN
IF B + 14 > 90 THEN -- 104 NOT IN INT.
FAILED ("NO EXCEPTION RAISED FOR DERIVED ""+""");
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ("UNEXPECTED EXCEPTION - 3");
END;
BEGIN
IF G(B) > 90 THEN -- 90 NOT IN INT_50.
FAILED ("NO EXCEPTION RAISED FOR DERIVED G");
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ("UNEXPECTED EXCEPTION - 4");
END;
BEGIN
IF C34018A.G(41) /= 51 THEN -- 41 CONVERTED TO
-- NEW_INT'BASE.
-- 41 IN INT_50.
-- 51 IN INT_51.
FAILED ("WRONG RESULT - G(41)");
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
FAILED ("C_E RAISED FOR LITERAL ARGUMENT");
WHEN OTHERS =>
FAILED ("UNEXPECTED EXCEPTION - 5");
END;
END;
RESULT;
END C34018A;
| 31.296774 | 79 | 0.502989 |
1cdb7a03288550f95ef21376f8d77e27201778f0 | 342,372 | adb | Ada | gcc-gcc-7_3_0-release/gcc/ada/sem_ch4.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 7 | 2020-05-02T17:34:05.000Z | 2021-10-17T10:15:18.000Z | gcc-gcc-7_3_0-release/gcc/ada/sem_ch4.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/ada/sem_ch4.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S E M _ C H 4 --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2016, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING3. If not, go to --
-- http://www.gnu.org/licenses for a complete copy of the license. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Aspects; use Aspects;
with Atree; use Atree;
with Debug; use Debug;
with Einfo; use Einfo;
with Elists; use Elists;
with Errout; use Errout;
with Exp_Util; use Exp_Util;
with Fname; use Fname;
with Itypes; use Itypes;
with Lib; use Lib;
with Lib.Xref; use Lib.Xref;
with Namet; use Namet;
with Namet.Sp; use Namet.Sp;
with Nlists; use Nlists;
with Nmake; use Nmake;
with Opt; use Opt;
with Output; use Output;
with Restrict; use Restrict;
with Rident; use Rident;
with Sem; use Sem;
with Sem_Aux; use Sem_Aux;
with Sem_Case; use Sem_Case;
with Sem_Cat; use Sem_Cat;
with Sem_Ch3; use Sem_Ch3;
with Sem_Ch6; use Sem_Ch6;
with Sem_Ch8; use Sem_Ch8;
with Sem_Dim; use Sem_Dim;
with Sem_Disp; use Sem_Disp;
with Sem_Dist; use Sem_Dist;
with Sem_Eval; use Sem_Eval;
with Sem_Res; use Sem_Res;
with Sem_Type; use Sem_Type;
with Sem_Util; use Sem_Util;
with Sem_Warn; use Sem_Warn;
with Stand; use Stand;
with Sinfo; use Sinfo;
with Snames; use Snames;
with Tbuild; use Tbuild;
with Uintp; use Uintp;
package body Sem_Ch4 is
-- Tables which speed up the identification of dangerous calls to Ada 2012
-- functions with writable actuals (AI05-0144).
-- The following table enumerates the Ada constructs which may evaluate in
-- arbitrary order. It does not cover all the language constructs which can
-- be evaluated in arbitrary order but the subset needed for AI05-0144.
Has_Arbitrary_Evaluation_Order : constant array (Node_Kind) of Boolean :=
(N_Aggregate => True,
N_Assignment_Statement => True,
N_Entry_Call_Statement => True,
N_Extension_Aggregate => True,
N_Full_Type_Declaration => True,
N_Indexed_Component => True,
N_Object_Declaration => True,
N_Pragma => True,
N_Range => True,
N_Slice => True,
N_Array_Type_Definition => True,
N_Membership_Test => True,
N_Binary_Op => True,
N_Subprogram_Call => True,
others => False);
-- The following table enumerates the nodes on which we stop climbing when
-- locating the outermost Ada construct that can be evaluated in arbitrary
-- order.
Stop_Subtree_Climbing : constant array (Node_Kind) of Boolean :=
(N_Aggregate => True,
N_Assignment_Statement => True,
N_Entry_Call_Statement => True,
N_Extended_Return_Statement => True,
N_Extension_Aggregate => True,
N_Full_Type_Declaration => True,
N_Object_Declaration => True,
N_Object_Renaming_Declaration => True,
N_Package_Specification => True,
N_Pragma => True,
N_Procedure_Call_Statement => True,
N_Simple_Return_Statement => True,
N_Has_Condition => True,
others => False);
-----------------------
-- Local Subprograms --
-----------------------
procedure Analyze_Concatenation_Rest (N : Node_Id);
-- Does the "rest" of the work of Analyze_Concatenation, after the left
-- operand has been analyzed. See Analyze_Concatenation for details.
procedure Analyze_Expression (N : Node_Id);
-- For expressions that are not names, this is just a call to analyze. If
-- the expression is a name, it may be a call to a parameterless function,
-- and if so must be converted into an explicit call node and analyzed as
-- such. This deproceduring must be done during the first pass of overload
-- resolution, because otherwise a procedure call with overloaded actuals
-- may fail to resolve.
procedure Analyze_Operator_Call (N : Node_Id; Op_Id : Entity_Id);
-- Analyze a call of the form "+"(x, y), etc. The prefix of the call is an
-- operator name or an expanded name whose selector is an operator name,
-- and one possible interpretation is as a predefined operator.
procedure Analyze_Overloaded_Selected_Component (N : Node_Id);
-- If the prefix of a selected_component is overloaded, the proper
-- interpretation that yields a record type with the proper selector
-- name must be selected.
procedure Analyze_User_Defined_Binary_Op (N : Node_Id; Op_Id : Entity_Id);
-- Procedure to analyze a user defined binary operator, which is resolved
-- like a function, but instead of a list of actuals it is presented
-- with the left and right operands of an operator node.
procedure Analyze_User_Defined_Unary_Op (N : Node_Id; Op_Id : Entity_Id);
-- Procedure to analyze a user defined unary operator, which is resolved
-- like a function, but instead of a list of actuals, it is presented with
-- the operand of the operator node.
procedure Ambiguous_Operands (N : Node_Id);
-- For equality, membership, and comparison operators with overloaded
-- arguments, list possible interpretations.
procedure Analyze_One_Call
(N : Node_Id;
Nam : Entity_Id;
Report : Boolean;
Success : out Boolean;
Skip_First : Boolean := False);
-- Check one interpretation of an overloaded subprogram name for
-- compatibility with the types of the actuals in a call. If there is a
-- single interpretation which does not match, post error if Report is
-- set to True.
--
-- Nam is the entity that provides the formals against which the actuals
-- are checked. Nam is either the name of a subprogram, or the internal
-- subprogram type constructed for an access_to_subprogram. If the actuals
-- are compatible with Nam, then Nam is added to the list of candidate
-- interpretations for N, and Success is set to True.
--
-- The flag Skip_First is used when analyzing a call that was rewritten
-- from object notation. In this case the first actual may have to receive
-- an explicit dereference, depending on the first formal of the operation
-- being called. The caller will have verified that the object is legal
-- for the call. If the remaining parameters match, the first parameter
-- will rewritten as a dereference if needed, prior to completing analysis.
procedure Check_Misspelled_Selector
(Prefix : Entity_Id;
Sel : Node_Id);
-- Give possible misspelling message if Sel seems likely to be a mis-
-- spelling of one of the selectors of the Prefix. This is called by
-- Analyze_Selected_Component after producing an invalid selector error
-- message.
function Defined_In_Scope (T : Entity_Id; S : Entity_Id) return Boolean;
-- Verify that type T is declared in scope S. Used to find interpretations
-- for operators given by expanded names. This is abstracted as a separate
-- function to handle extensions to System, where S is System, but T is
-- declared in the extension.
procedure Find_Arithmetic_Types
(L, R : Node_Id;
Op_Id : Entity_Id;
N : Node_Id);
-- L and R are the operands of an arithmetic operator. Find consistent
-- pairs of interpretations for L and R that have a numeric type consistent
-- with the semantics of the operator.
procedure Find_Comparison_Types
(L, R : Node_Id;
Op_Id : Entity_Id;
N : Node_Id);
-- L and R are operands of a comparison operator. Find consistent pairs of
-- interpretations for L and R.
procedure Find_Concatenation_Types
(L, R : Node_Id;
Op_Id : Entity_Id;
N : Node_Id);
-- For the four varieties of concatenation
procedure Find_Equality_Types
(L, R : Node_Id;
Op_Id : Entity_Id;
N : Node_Id);
-- Ditto for equality operators
procedure Find_Boolean_Types
(L, R : Node_Id;
Op_Id : Entity_Id;
N : Node_Id);
-- Ditto for binary logical operations
procedure Find_Negation_Types
(R : Node_Id;
Op_Id : Entity_Id;
N : Node_Id);
-- Find consistent interpretation for operand of negation operator
procedure Find_Non_Universal_Interpretations
(N : Node_Id;
R : Node_Id;
Op_Id : Entity_Id;
T1 : Entity_Id);
-- For equality and comparison operators, the result is always boolean, and
-- the legality of the operation is determined from the visibility of the
-- operand types. If one of the operands has a universal interpretation,
-- the legality check uses some compatible non-universal interpretation of
-- the other operand. N can be an operator node, or a function call whose
-- name is an operator designator. Any_Access, which is the initial type of
-- the literal NULL, is a universal type for the purpose of this routine.
function Find_Primitive_Operation (N : Node_Id) return Boolean;
-- Find candidate interpretations for the name Obj.Proc when it appears in
-- a subprogram renaming declaration.
procedure Find_Unary_Types
(R : Node_Id;
Op_Id : Entity_Id;
N : Node_Id);
-- Unary arithmetic types: plus, minus, abs
procedure Check_Arithmetic_Pair
(T1, T2 : Entity_Id;
Op_Id : Entity_Id;
N : Node_Id);
-- Subsidiary procedure to Find_Arithmetic_Types. T1 and T2 are valid types
-- for left and right operand. Determine whether they constitute a valid
-- pair for the given operator, and record the corresponding interpretation
-- of the operator node. The node N may be an operator node (the usual
-- case) or a function call whose prefix is an operator designator. In
-- both cases Op_Id is the operator name itself.
procedure Diagnose_Call (N : Node_Id; Nam : Node_Id);
-- Give detailed information on overloaded call where none of the
-- interpretations match. N is the call node, Nam the designator for
-- the overloaded entity being called.
function Junk_Operand (N : Node_Id) return Boolean;
-- Test for an operand that is an inappropriate entity (e.g. a package
-- name or a label). If so, issue an error message and return True. If
-- the operand is not an inappropriate entity kind, return False.
procedure Operator_Check (N : Node_Id);
-- Verify that an operator has received some valid interpretation. If none
-- was found, determine whether a use clause would make the operation
-- legal. The variable Candidate_Type (defined in Sem_Type) is set for
-- every type compatible with the operator, even if the operator for the
-- type is not directly visible. The routine uses this type to emit a more
-- informative message.
function Process_Implicit_Dereference_Prefix
(E : Entity_Id;
P : Node_Id) return Entity_Id;
-- Called when P is the prefix of an implicit dereference, denoting an
-- object E. The function returns the designated type of the prefix, taking
-- into account that the designated type of an anonymous access type may be
-- a limited view, when the non-limited view is visible.
--
-- If in semantics only mode (-gnatc or generic), the function also records
-- that the prefix is a reference to E, if any. Normally, such a reference
-- is generated only when the implicit dereference is expanded into an
-- explicit one, but for consistency we must generate the reference when
-- expansion is disabled as well.
procedure Remove_Abstract_Operations (N : Node_Id);
-- Ada 2005: implementation of AI-310. An abstract non-dispatching
-- operation is not a candidate interpretation.
function Try_Container_Indexing
(N : Node_Id;
Prefix : Node_Id;
Exprs : List_Id) return Boolean;
-- AI05-0139: Generalized indexing to support iterators over containers
function Try_Indexed_Call
(N : Node_Id;
Nam : Entity_Id;
Typ : Entity_Id;
Skip_First : Boolean) return Boolean;
-- If a function has defaults for all its actuals, a call to it may in fact
-- be an indexing on the result of the call. Try_Indexed_Call attempts the
-- interpretation as an indexing, prior to analysis as a call. If both are
-- possible, the node is overloaded with both interpretations (same symbol
-- but two different types). If the call is written in prefix form, the
-- prefix becomes the first parameter in the call, and only the remaining
-- actuals must be checked for the presence of defaults.
function Try_Indirect_Call
(N : Node_Id;
Nam : Entity_Id;
Typ : Entity_Id) return Boolean;
-- Similarly, a function F that needs no actuals can return an access to a
-- subprogram, and the call F (X) interpreted as F.all (X). In this case
-- the call may be overloaded with both interpretations.
procedure wpo (T : Entity_Id);
pragma Warnings (Off, wpo);
-- Used for debugging: obtain list of primitive operations even if
-- type is not frozen and dispatch table is not built yet.
------------------------
-- Ambiguous_Operands --
------------------------
procedure Ambiguous_Operands (N : Node_Id) is
procedure List_Operand_Interps (Opnd : Node_Id);
--------------------------
-- List_Operand_Interps --
--------------------------
procedure List_Operand_Interps (Opnd : Node_Id) is
Nam : Node_Id;
Err : Node_Id := N;
begin
if Is_Overloaded (Opnd) then
if Nkind (Opnd) in N_Op then
Nam := Opnd;
elsif Nkind (Opnd) = N_Function_Call then
Nam := Name (Opnd);
elsif Ada_Version >= Ada_2012 then
declare
It : Interp;
I : Interp_Index;
begin
Get_First_Interp (Opnd, I, It);
while Present (It.Nam) loop
if Has_Implicit_Dereference (It.Typ) then
Error_Msg_N
("can be interpreted as implicit dereference", Opnd);
return;
end if;
Get_Next_Interp (I, It);
end loop;
end;
return;
end if;
else
return;
end if;
if Opnd = Left_Opnd (N) then
Error_Msg_N
("\left operand has the following interpretations", N);
else
Error_Msg_N
("\right operand has the following interpretations", N);
Err := Opnd;
end if;
List_Interps (Nam, Err);
end List_Operand_Interps;
-- Start of processing for Ambiguous_Operands
begin
if Nkind (N) in N_Membership_Test then
Error_Msg_N ("ambiguous operands for membership", N);
elsif Nkind_In (N, N_Op_Eq, N_Op_Ne) then
Error_Msg_N ("ambiguous operands for equality", N);
else
Error_Msg_N ("ambiguous operands for comparison", N);
end if;
if All_Errors_Mode then
List_Operand_Interps (Left_Opnd (N));
List_Operand_Interps (Right_Opnd (N));
else
Error_Msg_N ("\use -gnatf switch for details", N);
end if;
end Ambiguous_Operands;
-----------------------
-- Analyze_Aggregate --
-----------------------
-- Most of the analysis of Aggregates requires that the type be known,
-- and is therefore put off until resolution.
procedure Analyze_Aggregate (N : Node_Id) is
begin
if No (Etype (N)) then
Set_Etype (N, Any_Composite);
end if;
end Analyze_Aggregate;
-----------------------
-- Analyze_Allocator --
-----------------------
procedure Analyze_Allocator (N : Node_Id) is
Loc : constant Source_Ptr := Sloc (N);
Sav_Errs : constant Nat := Serious_Errors_Detected;
E : Node_Id := Expression (N);
Acc_Type : Entity_Id;
Type_Id : Entity_Id;
P : Node_Id;
C : Node_Id;
Onode : Node_Id;
begin
Check_SPARK_05_Restriction ("allocator is not allowed", N);
-- Deal with allocator restrictions
-- In accordance with H.4(7), the No_Allocators restriction only applies
-- to user-written allocators. The same consideration applies to the
-- No_Standard_Allocators_Before_Elaboration restriction.
if Comes_From_Source (N) then
Check_Restriction (No_Allocators, N);
-- Processing for No_Standard_Allocators_After_Elaboration, loop to
-- look at enclosing context, checking task/main subprogram case.
C := N;
P := Parent (C);
while Present (P) loop
-- For the task case we need a handled sequence of statements,
-- where the occurrence of the allocator is within the statements
-- and the parent is a task body
if Nkind (P) = N_Handled_Sequence_Of_Statements
and then Is_List_Member (C)
and then List_Containing (C) = Statements (P)
then
Onode := Original_Node (Parent (P));
-- Check for allocator within task body, this is a definite
-- violation of No_Allocators_After_Elaboration we can detect
-- at compile time.
if Nkind (Onode) = N_Task_Body then
Check_Restriction
(No_Standard_Allocators_After_Elaboration, N);
exit;
end if;
end if;
-- The other case is appearance in a subprogram body. This is
-- a violation if this is a library level subprogram with no
-- parameters. Note that this is now a static error even if the
-- subprogram is not the main program (this is a change, in an
-- earlier version only the main program was affected, and the
-- check had to be done in the binder.
if Nkind (P) = N_Subprogram_Body
and then Nkind (Parent (P)) = N_Compilation_Unit
and then No (Parameter_Specifications (Specification (P)))
then
Check_Restriction
(No_Standard_Allocators_After_Elaboration, N);
end if;
C := P;
P := Parent (C);
end loop;
end if;
-- Ada 2012 (AI05-0111-3): Analyze the subpool_specification, if
-- any. The expected type for the name is any type. A non-overloading
-- rule then requires it to be of a type descended from
-- System.Storage_Pools.Subpools.Subpool_Handle.
-- This isn't exactly what the AI says, but it seems to be the right
-- rule. The AI should be fixed.???
declare
Subpool : constant Node_Id := Subpool_Handle_Name (N);
begin
if Present (Subpool) then
Analyze (Subpool);
if Is_Overloaded (Subpool) then
Error_Msg_N ("ambiguous subpool handle", Subpool);
end if;
-- Check that Etype (Subpool) is descended from Subpool_Handle
Resolve (Subpool);
end if;
end;
-- Analyze the qualified expression or subtype indication
if Nkind (E) = N_Qualified_Expression then
Acc_Type := Create_Itype (E_Allocator_Type, N);
Set_Etype (Acc_Type, Acc_Type);
Find_Type (Subtype_Mark (E));
-- Analyze the qualified expression, and apply the name resolution
-- rule given in 4.7(3).
Analyze (E);
Type_Id := Etype (E);
Set_Directly_Designated_Type (Acc_Type, Type_Id);
-- A qualified expression requires an exact match of the type,
-- class-wide matching is not allowed.
-- if Is_Class_Wide_Type (Type_Id)
-- and then Base_Type
-- (Etype (Expression (E))) /= Base_Type (Type_Id)
-- then
-- Wrong_Type (Expression (E), Type_Id);
-- end if;
-- We don't analyze the qualified expression itself because it's
-- part of the allocator. It is fully analyzed and resolved when
-- the allocator is resolved with the context type.
Set_Etype (E, Type_Id);
-- Case where allocator has a subtype indication
else
declare
Def_Id : Entity_Id;
Base_Typ : Entity_Id;
begin
-- If the allocator includes a N_Subtype_Indication then a
-- constraint is present, otherwise the node is a subtype mark.
-- Introduce an explicit subtype declaration into the tree
-- defining some anonymous subtype and rewrite the allocator to
-- use this subtype rather than the subtype indication.
-- It is important to introduce the explicit subtype declaration
-- so that the bounds of the subtype indication are attached to
-- the tree in case the allocator is inside a generic unit.
-- Finally, if there is no subtype indication and the type is
-- a tagged unconstrained type with discriminants, the designated
-- object is constrained by their default values, and it is
-- simplest to introduce an explicit constraint now. In some cases
-- this is done during expansion, but freeze actions are certain
-- to be emitted in the proper order if constraint is explicit.
if Is_Entity_Name (E) and then Expander_Active then
Find_Type (E);
Type_Id := Entity (E);
if Is_Tagged_Type (Type_Id)
and then Has_Discriminants (Type_Id)
and then not Is_Constrained (Type_Id)
and then
Present
(Discriminant_Default_Value
(First_Discriminant (Type_Id)))
then
declare
Constr : constant List_Id := New_List;
Loc : constant Source_Ptr := Sloc (E);
Discr : Entity_Id := First_Discriminant (Type_Id);
begin
if Present (Discriminant_Default_Value (Discr)) then
while Present (Discr) loop
Append (Discriminant_Default_Value (Discr), Constr);
Next_Discriminant (Discr);
end loop;
Rewrite (E,
Make_Subtype_Indication (Loc,
Subtype_Mark => New_Occurrence_Of (Type_Id, Loc),
Constraint =>
Make_Index_Or_Discriminant_Constraint (Loc,
Constraints => Constr)));
end if;
end;
end if;
end if;
if Nkind (E) = N_Subtype_Indication then
-- A constraint is only allowed for a composite type in Ada
-- 95. In Ada 83, a constraint is also allowed for an
-- access-to-composite type, but the constraint is ignored.
Find_Type (Subtype_Mark (E));
Base_Typ := Entity (Subtype_Mark (E));
if Is_Elementary_Type (Base_Typ) then
if not (Ada_Version = Ada_83
and then Is_Access_Type (Base_Typ))
then
Error_Msg_N ("constraint not allowed here", E);
if Nkind (Constraint (E)) =
N_Index_Or_Discriminant_Constraint
then
Error_Msg_N -- CODEFIX
("\if qualified expression was meant, " &
"use apostrophe", Constraint (E));
end if;
end if;
-- Get rid of the bogus constraint:
Rewrite (E, New_Copy_Tree (Subtype_Mark (E)));
Analyze_Allocator (N);
return;
end if;
if Expander_Active then
Def_Id := Make_Temporary (Loc, 'S');
Insert_Action (E,
Make_Subtype_Declaration (Loc,
Defining_Identifier => Def_Id,
Subtype_Indication => Relocate_Node (E)));
if Sav_Errs /= Serious_Errors_Detected
and then Nkind (Constraint (E)) =
N_Index_Or_Discriminant_Constraint
then
Error_Msg_N -- CODEFIX
("if qualified expression was meant, "
& "use apostrophe!", Constraint (E));
end if;
E := New_Occurrence_Of (Def_Id, Loc);
Rewrite (Expression (N), E);
end if;
end if;
Type_Id := Process_Subtype (E, N);
Acc_Type := Create_Itype (E_Allocator_Type, N);
Set_Etype (Acc_Type, Acc_Type);
Set_Directly_Designated_Type (Acc_Type, Type_Id);
Check_Fully_Declared (Type_Id, N);
-- Ada 2005 (AI-231): If the designated type is itself an access
-- type that excludes null, its default initialization will
-- be a null object, and we can insert an unconditional raise
-- before the allocator.
-- Ada 2012 (AI-104): A not null indication here is altogether
-- illegal.
if Can_Never_Be_Null (Type_Id) then
declare
Not_Null_Check : constant Node_Id :=
Make_Raise_Constraint_Error (Sloc (E),
Reason => CE_Null_Not_Allowed);
begin
if Expander_Active then
Insert_Action (N, Not_Null_Check);
Analyze (Not_Null_Check);
elsif Warn_On_Ada_2012_Compatibility then
Error_Msg_N
("null value not allowed here in Ada 2012?y?", E);
end if;
end;
end if;
-- Check for missing initialization. Skip this check if we already
-- had errors on analyzing the allocator, since in that case these
-- are probably cascaded errors.
if not Is_Definite_Subtype (Type_Id)
and then Serious_Errors_Detected = Sav_Errs
then
-- The build-in-place machinery may produce an allocator when
-- the designated type is indefinite but the underlying type is
-- not. In this case the unknown discriminants are meaningless
-- and should not trigger error messages. Check the parent node
-- because the allocator is marked as coming from source.
if Present (Underlying_Type (Type_Id))
and then Is_Definite_Subtype (Underlying_Type (Type_Id))
and then not Comes_From_Source (Parent (N))
then
null;
-- An unusual case arises when the parent of a derived type is
-- a limited record extension with unknown discriminants, and
-- its full view has no discriminants.
--
-- A more general fix might be to create the proper underlying
-- type for such a derived type, but it is a record type with
-- no private attributes, so this required extending the
-- meaning of this attribute. ???
elsif Ekind (Etype (Type_Id)) = E_Record_Type_With_Private
and then Present (Underlying_Type (Etype (Type_Id)))
and then
not Has_Discriminants (Underlying_Type (Etype (Type_Id)))
and then not Comes_From_Source (Parent (N))
then
null;
elsif Is_Class_Wide_Type (Type_Id) then
Error_Msg_N
("initialization required in class-wide allocation", N);
else
if Ada_Version < Ada_2005
and then Is_Limited_Type (Type_Id)
then
Error_Msg_N ("unconstrained allocation not allowed", N);
if Is_Array_Type (Type_Id) then
Error_Msg_N
("\constraint with array bounds required", N);
elsif Has_Unknown_Discriminants (Type_Id) then
null;
else pragma Assert (Has_Discriminants (Type_Id));
Error_Msg_N
("\constraint with discriminant values required", N);
end if;
-- Limited Ada 2005 and general non-limited case
else
Error_Msg_N
("uninitialized unconstrained allocation not "
& "allowed", N);
if Is_Array_Type (Type_Id) then
Error_Msg_N
("\qualified expression or constraint with "
& "array bounds required", N);
elsif Has_Unknown_Discriminants (Type_Id) then
Error_Msg_N ("\qualified expression required", N);
else pragma Assert (Has_Discriminants (Type_Id));
Error_Msg_N
("\qualified expression or constraint with "
& "discriminant values required", N);
end if;
end if;
end if;
end if;
end;
end if;
if Is_Abstract_Type (Type_Id) then
Error_Msg_N ("cannot allocate abstract object", E);
end if;
if Has_Task (Designated_Type (Acc_Type)) then
Check_Restriction (No_Tasking, N);
Check_Restriction (Max_Tasks, N);
Check_Restriction (No_Task_Allocators, N);
end if;
-- Check restriction against dynamically allocated protected objects
if Has_Protected (Designated_Type (Acc_Type)) then
Check_Restriction (No_Protected_Type_Allocators, N);
end if;
-- AI05-0013-1: No_Nested_Finalization forbids allocators if the access
-- type is nested, and the designated type needs finalization. The rule
-- is conservative in that class-wide types need finalization.
if Needs_Finalization (Designated_Type (Acc_Type))
and then not Is_Library_Level_Entity (Acc_Type)
then
Check_Restriction (No_Nested_Finalization, N);
end if;
-- Check that an allocator of a nested access type doesn't create a
-- protected object when restriction No_Local_Protected_Objects applies.
if Has_Protected (Designated_Type (Acc_Type))
and then not Is_Library_Level_Entity (Acc_Type)
then
Check_Restriction (No_Local_Protected_Objects, N);
end if;
-- Likewise for No_Local_Timing_Events
if Has_Timing_Event (Designated_Type (Acc_Type))
and then not Is_Library_Level_Entity (Acc_Type)
then
Check_Restriction (No_Local_Timing_Events, N);
end if;
-- If the No_Streams restriction is set, check that the type of the
-- object is not, and does not contain, any subtype derived from
-- Ada.Streams.Root_Stream_Type. Note that we guard the call to
-- Has_Stream just for efficiency reasons. There is no point in
-- spending time on a Has_Stream check if the restriction is not set.
if Restriction_Check_Required (No_Streams) then
if Has_Stream (Designated_Type (Acc_Type)) then
Check_Restriction (No_Streams, N);
end if;
end if;
Set_Etype (N, Acc_Type);
if not Is_Library_Level_Entity (Acc_Type) then
Check_Restriction (No_Local_Allocators, N);
end if;
if Serious_Errors_Detected > Sav_Errs then
Set_Error_Posted (N);
Set_Etype (N, Any_Type);
end if;
end Analyze_Allocator;
---------------------------
-- Analyze_Arithmetic_Op --
---------------------------
procedure Analyze_Arithmetic_Op (N : Node_Id) is
L : constant Node_Id := Left_Opnd (N);
R : constant Node_Id := Right_Opnd (N);
Op_Id : Entity_Id;
begin
Candidate_Type := Empty;
Analyze_Expression (L);
Analyze_Expression (R);
-- If the entity is already set, the node is the instantiation of a
-- generic node with a non-local reference, or was manufactured by a
-- call to Make_Op_xxx. In either case the entity is known to be valid,
-- and we do not need to collect interpretations, instead we just get
-- the single possible interpretation.
Op_Id := Entity (N);
if Present (Op_Id) then
if Ekind (Op_Id) = E_Operator then
if Nkind_In (N, N_Op_Divide, N_Op_Mod, N_Op_Multiply, N_Op_Rem)
and then Treat_Fixed_As_Integer (N)
then
null;
else
Set_Etype (N, Any_Type);
Find_Arithmetic_Types (L, R, Op_Id, N);
end if;
else
Set_Etype (N, Any_Type);
Add_One_Interp (N, Op_Id, Etype (Op_Id));
end if;
-- Entity is not already set, so we do need to collect interpretations
else
Set_Etype (N, Any_Type);
Op_Id := Get_Name_Entity_Id (Chars (N));
while Present (Op_Id) loop
if Ekind (Op_Id) = E_Operator
and then Present (Next_Entity (First_Entity (Op_Id)))
then
Find_Arithmetic_Types (L, R, Op_Id, N);
-- The following may seem superfluous, because an operator cannot
-- be generic, but this ignores the cleverness of the author of
-- ACVC bc1013a.
elsif Is_Overloadable (Op_Id) then
Analyze_User_Defined_Binary_Op (N, Op_Id);
end if;
Op_Id := Homonym (Op_Id);
end loop;
end if;
Operator_Check (N);
Check_Function_Writable_Actuals (N);
end Analyze_Arithmetic_Op;
------------------
-- Analyze_Call --
------------------
-- Function, procedure, and entry calls are checked here. The Name in
-- the call may be overloaded. The actuals have been analyzed and may
-- themselves be overloaded. On exit from this procedure, the node N
-- may have zero, one or more interpretations. In the first case an
-- error message is produced. In the last case, the node is flagged
-- as overloaded and the interpretations are collected in All_Interp.
-- If the name is an Access_To_Subprogram, it cannot be overloaded, but
-- the type-checking is similar to that of other calls.
procedure Analyze_Call (N : Node_Id) is
Actuals : constant List_Id := Parameter_Associations (N);
Loc : constant Source_Ptr := Sloc (N);
Nam : Node_Id;
X : Interp_Index;
It : Interp;
Nam_Ent : Entity_Id;
Success : Boolean := False;
Deref : Boolean := False;
-- Flag indicates whether an interpretation of the prefix is a
-- parameterless call that returns an access_to_subprogram.
procedure Check_Mixed_Parameter_And_Named_Associations;
-- Check that parameter and named associations are not mixed. This is
-- a restriction in SPARK mode.
procedure Check_Writable_Actuals (N : Node_Id);
-- If the call has out or in-out parameters then mark its outermost
-- enclosing construct as a node on which the writable actuals check
-- must be performed.
function Name_Denotes_Function return Boolean;
-- If the type of the name is an access to subprogram, this may be the
-- type of a name, or the return type of the function being called. If
-- the name is not an entity then it can denote a protected function.
-- Until we distinguish Etype from Return_Type, we must use this routine
-- to resolve the meaning of the name in the call.
procedure No_Interpretation;
-- Output error message when no valid interpretation exists
--------------------------------------------------
-- Check_Mixed_Parameter_And_Named_Associations --
--------------------------------------------------
procedure Check_Mixed_Parameter_And_Named_Associations is
Actual : Node_Id;
Named_Seen : Boolean;
begin
Named_Seen := False;
Actual := First (Actuals);
while Present (Actual) loop
case Nkind (Actual) is
when N_Parameter_Association =>
if Named_Seen then
Check_SPARK_05_Restriction
("named association cannot follow positional one",
Actual);
exit;
end if;
when others =>
Named_Seen := True;
end case;
Next (Actual);
end loop;
end Check_Mixed_Parameter_And_Named_Associations;
----------------------------
-- Check_Writable_Actuals --
----------------------------
-- The identification of conflicts in calls to functions with writable
-- actuals is performed in the analysis phase of the front end to ensure
-- that it reports exactly the same errors compiling with and without
-- expansion enabled. It is performed in two stages:
-- 1) When a call to a function with out-mode parameters is found,
-- we climb to the outermost enclosing construct that can be
-- evaluated in arbitrary order and we mark it with the flag
-- Check_Actuals.
-- 2) When the analysis of the marked node is complete, we traverse
-- its decorated subtree searching for conflicts (see function
-- Sem_Util.Check_Function_Writable_Actuals).
-- The unique exception to this general rule is for aggregates, since
-- their analysis is performed by the front end in the resolution
-- phase. For aggregates we do not climb to their enclosing construct:
-- we restrict the analysis to the subexpressions initializing the
-- aggregate components.
-- This implies that the analysis of expressions containing aggregates
-- is not complete, since there may be conflicts on writable actuals
-- involving subexpressions of the enclosing logical or arithmetic
-- expressions. However, we cannot wait and perform the analysis when
-- the whole subtree is resolved, since the subtrees may be transformed,
-- thus adding extra complexity and computation cost to identify and
-- report exactly the same errors compiling with and without expansion
-- enabled.
procedure Check_Writable_Actuals (N : Node_Id) is
begin
if Comes_From_Source (N)
and then Present (Get_Subprogram_Entity (N))
and then Has_Out_Or_In_Out_Parameter (Get_Subprogram_Entity (N))
then
-- For procedures and entries there is no need to climb since
-- we only need to check if the actuals of this call invoke
-- functions whose out-mode parameters overlap.
if Nkind (N) /= N_Function_Call then
Set_Check_Actuals (N);
-- For calls to functions we climb to the outermost enclosing
-- construct where the out-mode actuals of this function may
-- introduce conflicts.
else
declare
Outermost : Node_Id;
P : Node_Id := N;
begin
while Present (P) loop
-- For object declarations we can climb to the node from
-- its object definition branch or from its initializing
-- expression. We prefer to mark the child node as the
-- outermost construct to avoid adding further complexity
-- to the routine that will later take care of
-- performing the writable actuals check.
if Has_Arbitrary_Evaluation_Order (Nkind (P))
and then not Nkind_In (P, N_Assignment_Statement,
N_Object_Declaration)
then
Outermost := P;
end if;
-- Avoid climbing more than needed!
exit when Stop_Subtree_Climbing (Nkind (P))
or else (Nkind (P) = N_Range
and then not
Nkind_In (Parent (P), N_In, N_Not_In));
P := Parent (P);
end loop;
Set_Check_Actuals (Outermost);
end;
end if;
end if;
end Check_Writable_Actuals;
---------------------------
-- Name_Denotes_Function --
---------------------------
function Name_Denotes_Function return Boolean is
begin
if Is_Entity_Name (Nam) then
return Ekind (Entity (Nam)) = E_Function;
elsif Nkind (Nam) = N_Selected_Component then
return Ekind (Entity (Selector_Name (Nam))) = E_Function;
else
return False;
end if;
end Name_Denotes_Function;
-----------------------
-- No_Interpretation --
-----------------------
procedure No_Interpretation is
L : constant Boolean := Is_List_Member (N);
K : constant Node_Kind := Nkind (Parent (N));
begin
-- If the node is in a list whose parent is not an expression then it
-- must be an attempted procedure call.
if L and then K not in N_Subexpr then
if Ekind (Entity (Nam)) = E_Generic_Procedure then
Error_Msg_NE
("must instantiate generic procedure& before call",
Nam, Entity (Nam));
else
Error_Msg_N ("procedure or entry name expected", Nam);
end if;
-- Check for tasking cases where only an entry call will do
elsif not L
and then Nkind_In (K, N_Entry_Call_Alternative,
N_Triggering_Alternative)
then
Error_Msg_N ("entry name expected", Nam);
-- Otherwise give general error message
else
Error_Msg_N ("invalid prefix in call", Nam);
end if;
end No_Interpretation;
-- Start of processing for Analyze_Call
begin
if Restriction_Check_Required (SPARK_05) then
Check_Mixed_Parameter_And_Named_Associations;
end if;
-- Initialize the type of the result of the call to the error type,
-- which will be reset if the type is successfully resolved.
Set_Etype (N, Any_Type);
Nam := Name (N);
if not Is_Overloaded (Nam) then
-- Only one interpretation to check
if Ekind (Etype (Nam)) = E_Subprogram_Type then
Nam_Ent := Etype (Nam);
-- If the prefix is an access_to_subprogram, this may be an indirect
-- call. This is the case if the name in the call is not an entity
-- name, or if it is a function name in the context of a procedure
-- call. In this latter case, we have a call to a parameterless
-- function that returns a pointer_to_procedure which is the entity
-- being called. Finally, F (X) may be a call to a parameterless
-- function that returns a pointer to a function with parameters.
-- Note that if F returns an access-to-subprogram whose designated
-- type is an array, F (X) cannot be interpreted as an indirect call
-- through the result of the call to F.
elsif Is_Access_Type (Etype (Nam))
and then Ekind (Designated_Type (Etype (Nam))) = E_Subprogram_Type
and then
(not Name_Denotes_Function
or else Nkind (N) = N_Procedure_Call_Statement
or else
(Nkind (Parent (N)) /= N_Explicit_Dereference
and then Is_Entity_Name (Nam)
and then No (First_Formal (Entity (Nam)))
and then not
Is_Array_Type (Etype (Designated_Type (Etype (Nam))))
and then Present (Actuals)))
then
Nam_Ent := Designated_Type (Etype (Nam));
Insert_Explicit_Dereference (Nam);
-- Selected component case. Simple entry or protected operation,
-- where the entry name is given by the selector name.
elsif Nkind (Nam) = N_Selected_Component then
Nam_Ent := Entity (Selector_Name (Nam));
if not Ekind_In (Nam_Ent, E_Entry,
E_Entry_Family,
E_Function,
E_Procedure)
then
Error_Msg_N ("name in call is not a callable entity", Nam);
Set_Etype (N, Any_Type);
return;
end if;
-- If the name is an Indexed component, it can be a call to a member
-- of an entry family. The prefix must be a selected component whose
-- selector is the entry. Analyze_Procedure_Call normalizes several
-- kinds of call into this form.
elsif Nkind (Nam) = N_Indexed_Component then
if Nkind (Prefix (Nam)) = N_Selected_Component then
Nam_Ent := Entity (Selector_Name (Prefix (Nam)));
else
Error_Msg_N ("name in call is not a callable entity", Nam);
Set_Etype (N, Any_Type);
return;
end if;
elsif not Is_Entity_Name (Nam) then
Error_Msg_N ("name in call is not a callable entity", Nam);
Set_Etype (N, Any_Type);
return;
else
Nam_Ent := Entity (Nam);
-- If not overloadable, this may be a generalized indexing
-- operation with named associations. Rewrite again as an
-- indexed component and analyze as container indexing.
if not Is_Overloadable (Nam_Ent) then
if Present
(Find_Value_Of_Aspect
(Etype (Nam_Ent), Aspect_Constant_Indexing))
then
Replace (N,
Make_Indexed_Component (Sloc (N),
Prefix => Nam,
Expressions => Parameter_Associations (N)));
if Try_Container_Indexing (N, Nam, Expressions (N)) then
return;
else
No_Interpretation;
end if;
else
No_Interpretation;
end if;
return;
end if;
end if;
-- Operations generated for RACW stub types are called only through
-- dispatching, and can never be the static interpretation of a call.
if Is_RACW_Stub_Type_Operation (Nam_Ent) then
No_Interpretation;
return;
end if;
Analyze_One_Call (N, Nam_Ent, True, Success);
-- If this is an indirect call, the return type of the access_to
-- subprogram may be an incomplete type. At the point of the call,
-- use the full type if available, and at the same time update the
-- return type of the access_to_subprogram.
if Success
and then Nkind (Nam) = N_Explicit_Dereference
and then Ekind (Etype (N)) = E_Incomplete_Type
and then Present (Full_View (Etype (N)))
then
Set_Etype (N, Full_View (Etype (N)));
Set_Etype (Nam_Ent, Etype (N));
end if;
-- Overloaded call
else
-- An overloaded selected component must denote overloaded operations
-- of a concurrent type. The interpretations are attached to the
-- simple name of those operations.
if Nkind (Nam) = N_Selected_Component then
Nam := Selector_Name (Nam);
end if;
Get_First_Interp (Nam, X, It);
while Present (It.Nam) loop
Nam_Ent := It.Nam;
Deref := False;
-- Name may be call that returns an access to subprogram, or more
-- generally an overloaded expression one of whose interpretations
-- yields an access to subprogram. If the name is an entity, we do
-- not dereference, because the node is a call that returns the
-- access type: note difference between f(x), where the call may
-- return an access subprogram type, and f(x)(y), where the type
-- returned by the call to f is implicitly dereferenced to analyze
-- the outer call.
if Is_Access_Type (Nam_Ent) then
Nam_Ent := Designated_Type (Nam_Ent);
elsif Is_Access_Type (Etype (Nam_Ent))
and then
(not Is_Entity_Name (Nam)
or else Nkind (N) = N_Procedure_Call_Statement)
and then Ekind (Designated_Type (Etype (Nam_Ent)))
= E_Subprogram_Type
then
Nam_Ent := Designated_Type (Etype (Nam_Ent));
if Is_Entity_Name (Nam) then
Deref := True;
end if;
end if;
-- If the call has been rewritten from a prefixed call, the first
-- parameter has been analyzed, but may need a subsequent
-- dereference, so skip its analysis now.
if N /= Original_Node (N)
and then Nkind (Original_Node (N)) = Nkind (N)
and then Nkind (Name (N)) /= Nkind (Name (Original_Node (N)))
and then Present (Parameter_Associations (N))
and then Present (Etype (First (Parameter_Associations (N))))
then
Analyze_One_Call
(N, Nam_Ent, False, Success, Skip_First => True);
else
Analyze_One_Call (N, Nam_Ent, False, Success);
end if;
-- If the interpretation succeeds, mark the proper type of the
-- prefix (any valid candidate will do). If not, remove the
-- candidate interpretation. If this is a parameterless call
-- on an anonymous access to subprogram, X is a variable with
-- an access discriminant D, the entity in the interpretation is
-- D, so rewrite X as X.D.all.
if Success then
if Deref
and then Nkind (Parent (N)) /= N_Explicit_Dereference
then
if Ekind (It.Nam) = E_Discriminant
and then Has_Implicit_Dereference (It.Nam)
then
Rewrite (Name (N),
Make_Explicit_Dereference (Loc,
Prefix =>
Make_Selected_Component (Loc,
Prefix =>
New_Occurrence_Of (Entity (Nam), Loc),
Selector_Name =>
New_Occurrence_Of (It.Nam, Loc))));
Analyze (N);
return;
else
Set_Entity (Nam, It.Nam);
Insert_Explicit_Dereference (Nam);
Set_Etype (Nam, Nam_Ent);
end if;
else
Set_Etype (Nam, It.Typ);
end if;
elsif Nkind_In (Name (N), N_Function_Call, N_Selected_Component)
then
Remove_Interp (X);
end if;
Get_Next_Interp (X, It);
end loop;
-- If the name is the result of a function call, it can only be a
-- call to a function returning an access to subprogram. Insert
-- explicit dereference.
if Nkind (Nam) = N_Function_Call then
Insert_Explicit_Dereference (Nam);
end if;
if Etype (N) = Any_Type then
-- None of the interpretations is compatible with the actuals
Diagnose_Call (N, Nam);
-- Special checks for uninstantiated put routines
if Nkind (N) = N_Procedure_Call_Statement
and then Is_Entity_Name (Nam)
and then Chars (Nam) = Name_Put
and then List_Length (Actuals) = 1
then
declare
Arg : constant Node_Id := First (Actuals);
Typ : Entity_Id;
begin
if Nkind (Arg) = N_Parameter_Association then
Typ := Etype (Explicit_Actual_Parameter (Arg));
else
Typ := Etype (Arg);
end if;
if Is_Signed_Integer_Type (Typ) then
Error_Msg_N
("possible missing instantiation of "
& "'Text_'I'O.'Integer_'I'O!", Nam);
elsif Is_Modular_Integer_Type (Typ) then
Error_Msg_N
("possible missing instantiation of "
& "'Text_'I'O.'Modular_'I'O!", Nam);
elsif Is_Floating_Point_Type (Typ) then
Error_Msg_N
("possible missing instantiation of "
& "'Text_'I'O.'Float_'I'O!", Nam);
elsif Is_Ordinary_Fixed_Point_Type (Typ) then
Error_Msg_N
("possible missing instantiation of "
& "'Text_'I'O.'Fixed_'I'O!", Nam);
elsif Is_Decimal_Fixed_Point_Type (Typ) then
Error_Msg_N
("possible missing instantiation of "
& "'Text_'I'O.'Decimal_'I'O!", Nam);
elsif Is_Enumeration_Type (Typ) then
Error_Msg_N
("possible missing instantiation of "
& "'Text_'I'O.'Enumeration_'I'O!", Nam);
end if;
end;
end if;
elsif not Is_Overloaded (N)
and then Is_Entity_Name (Nam)
then
-- Resolution yields a single interpretation. Verify that the
-- reference has capitalization consistent with the declaration.
Set_Entity_With_Checks (Nam, Entity (Nam));
Generate_Reference (Entity (Nam), Nam);
Set_Etype (Nam, Etype (Entity (Nam)));
else
Remove_Abstract_Operations (N);
end if;
End_Interp_List;
end if;
if Ada_Version >= Ada_2012 then
-- Check if the call contains a function with writable actuals
Check_Writable_Actuals (N);
-- If found and the outermost construct that can be evaluated in
-- an arbitrary order is precisely this call, then check all its
-- actuals.
Check_Function_Writable_Actuals (N);
end if;
end Analyze_Call;
-----------------------------
-- Analyze_Case_Expression --
-----------------------------
procedure Analyze_Case_Expression (N : Node_Id) is
procedure Non_Static_Choice_Error (Choice : Node_Id);
-- Error routine invoked by the generic instantiation below when
-- the case expression has a non static choice.
package Case_Choices_Analysis is new
Generic_Analyze_Choices
(Process_Associated_Node => No_OP);
use Case_Choices_Analysis;
package Case_Choices_Checking is new
Generic_Check_Choices
(Process_Empty_Choice => No_OP,
Process_Non_Static_Choice => Non_Static_Choice_Error,
Process_Associated_Node => No_OP);
use Case_Choices_Checking;
-----------------------------
-- Non_Static_Choice_Error --
-----------------------------
procedure Non_Static_Choice_Error (Choice : Node_Id) is
begin
Flag_Non_Static_Expr
("choice given in case expression is not static!", Choice);
end Non_Static_Choice_Error;
-- Local variables
Expr : constant Node_Id := Expression (N);
Alt : Node_Id;
Exp_Type : Entity_Id;
Exp_Btype : Entity_Id;
FirstX : Node_Id := Empty;
-- First expression in the case for which there is some type information
-- available, i.e. it is not Any_Type, which can happen because of some
-- error, or from the use of e.g. raise Constraint_Error.
Others_Present : Boolean;
-- Indicates if Others was present
Wrong_Alt : Node_Id := Empty;
-- For error reporting
-- Start of processing for Analyze_Case_Expression
begin
if Comes_From_Source (N) then
Check_Compiler_Unit ("case expression", N);
end if;
Analyze_And_Resolve (Expr, Any_Discrete);
Check_Unset_Reference (Expr);
Exp_Type := Etype (Expr);
Exp_Btype := Base_Type (Exp_Type);
Alt := First (Alternatives (N));
while Present (Alt) loop
Analyze (Expression (Alt));
if No (FirstX) and then Etype (Expression (Alt)) /= Any_Type then
FirstX := Expression (Alt);
end if;
Next (Alt);
end loop;
-- Get our initial type from the first expression for which we got some
-- useful type information from the expression.
if not Is_Overloaded (FirstX) then
Set_Etype (N, Etype (FirstX));
else
declare
I : Interp_Index;
It : Interp;
begin
Set_Etype (N, Any_Type);
Get_First_Interp (FirstX, I, It);
while Present (It.Nam) loop
-- For each interpretation of the first expression, we only
-- add the interpretation if every other expression in the
-- case expression alternatives has a compatible type.
Alt := Next (First (Alternatives (N)));
while Present (Alt) loop
exit when not Has_Compatible_Type (Expression (Alt), It.Typ);
Next (Alt);
end loop;
if No (Alt) then
Add_One_Interp (N, It.Typ, It.Typ);
else
Wrong_Alt := Alt;
end if;
Get_Next_Interp (I, It);
end loop;
end;
end if;
Exp_Btype := Base_Type (Exp_Type);
-- The expression must be of a discrete type which must be determinable
-- independently of the context in which the expression occurs, but
-- using the fact that the expression must be of a discrete type.
-- Moreover, the type this expression must not be a character literal
-- (which is always ambiguous).
-- If error already reported by Resolve, nothing more to do
if Exp_Btype = Any_Discrete or else Exp_Btype = Any_Type then
return;
-- Special casee message for character literal
elsif Exp_Btype = Any_Character then
Error_Msg_N
("character literal as case expression is ambiguous", Expr);
return;
end if;
if Etype (N) = Any_Type and then Present (Wrong_Alt) then
Error_Msg_N
("type incompatible with that of previous alternatives",
Expression (Wrong_Alt));
return;
end if;
-- If the case expression is a formal object of mode in out, then
-- treat it as having a nonstatic subtype by forcing use of the base
-- type (which has to get passed to Check_Case_Choices below). Also
-- use base type when the case expression is parenthesized.
if Paren_Count (Expr) > 0
or else (Is_Entity_Name (Expr)
and then Ekind (Entity (Expr)) = E_Generic_In_Out_Parameter)
then
Exp_Type := Exp_Btype;
end if;
-- The case expression alternatives cover the range of a static subtype
-- subject to aspect Static_Predicate. Do not check the choices when the
-- case expression has not been fully analyzed yet because this may lead
-- to bogus errors.
if Is_OK_Static_Subtype (Exp_Type)
and then Has_Static_Predicate_Aspect (Exp_Type)
and then In_Spec_Expression
then
null;
-- Call Analyze_Choices and Check_Choices to do the rest of the work
else
Analyze_Choices (Alternatives (N), Exp_Type);
Check_Choices (N, Alternatives (N), Exp_Type, Others_Present);
end if;
if Exp_Type = Universal_Integer and then not Others_Present then
Error_Msg_N
("case on universal integer requires OTHERS choice", Expr);
end if;
end Analyze_Case_Expression;
---------------------------
-- Analyze_Comparison_Op --
---------------------------
procedure Analyze_Comparison_Op (N : Node_Id) is
L : constant Node_Id := Left_Opnd (N);
R : constant Node_Id := Right_Opnd (N);
Op_Id : Entity_Id := Entity (N);
begin
Set_Etype (N, Any_Type);
Candidate_Type := Empty;
Analyze_Expression (L);
Analyze_Expression (R);
if Present (Op_Id) then
if Ekind (Op_Id) = E_Operator then
Find_Comparison_Types (L, R, Op_Id, N);
else
Add_One_Interp (N, Op_Id, Etype (Op_Id));
end if;
if Is_Overloaded (L) then
Set_Etype (L, Intersect_Types (L, R));
end if;
else
Op_Id := Get_Name_Entity_Id (Chars (N));
while Present (Op_Id) loop
if Ekind (Op_Id) = E_Operator then
Find_Comparison_Types (L, R, Op_Id, N);
else
Analyze_User_Defined_Binary_Op (N, Op_Id);
end if;
Op_Id := Homonym (Op_Id);
end loop;
end if;
Operator_Check (N);
Check_Function_Writable_Actuals (N);
end Analyze_Comparison_Op;
---------------------------
-- Analyze_Concatenation --
---------------------------
procedure Analyze_Concatenation (N : Node_Id) is
-- We wish to avoid deep recursion, because concatenations are often
-- deeply nested, as in A&B&...&Z. Therefore, we walk down the left
-- operands nonrecursively until we find something that is not a
-- concatenation (A in this case), or has already been analyzed. We
-- analyze that, and then walk back up the tree following Parent
-- pointers, calling Analyze_Concatenation_Rest to do the rest of the
-- work at each level. The Parent pointers allow us to avoid recursion,
-- and thus avoid running out of memory.
NN : Node_Id := N;
L : Node_Id;
begin
Candidate_Type := Empty;
-- The following code is equivalent to:
-- Set_Etype (N, Any_Type);
-- Analyze_Expression (Left_Opnd (N));
-- Analyze_Concatenation_Rest (N);
-- where the Analyze_Expression call recurses back here if the left
-- operand is a concatenation.
-- Walk down left operands
loop
Set_Etype (NN, Any_Type);
L := Left_Opnd (NN);
exit when Nkind (L) /= N_Op_Concat or else Analyzed (L);
NN := L;
end loop;
-- Now (given the above example) NN is A&B and L is A
-- First analyze L ...
Analyze_Expression (L);
-- ... then walk NN back up until we reach N (where we started), calling
-- Analyze_Concatenation_Rest along the way.
loop
Analyze_Concatenation_Rest (NN);
exit when NN = N;
NN := Parent (NN);
end loop;
end Analyze_Concatenation;
--------------------------------
-- Analyze_Concatenation_Rest --
--------------------------------
-- If the only one-dimensional array type in scope is String,
-- this is the resulting type of the operation. Otherwise there
-- will be a concatenation operation defined for each user-defined
-- one-dimensional array.
procedure Analyze_Concatenation_Rest (N : Node_Id) is
L : constant Node_Id := Left_Opnd (N);
R : constant Node_Id := Right_Opnd (N);
Op_Id : Entity_Id := Entity (N);
LT : Entity_Id;
RT : Entity_Id;
begin
Analyze_Expression (R);
-- If the entity is present, the node appears in an instance, and
-- denotes a predefined concatenation operation. The resulting type is
-- obtained from the arguments when possible. If the arguments are
-- aggregates, the array type and the concatenation type must be
-- visible.
if Present (Op_Id) then
if Ekind (Op_Id) = E_Operator then
LT := Base_Type (Etype (L));
RT := Base_Type (Etype (R));
if Is_Array_Type (LT)
and then (RT = LT or else RT = Base_Type (Component_Type (LT)))
then
Add_One_Interp (N, Op_Id, LT);
elsif Is_Array_Type (RT)
and then LT = Base_Type (Component_Type (RT))
then
Add_One_Interp (N, Op_Id, RT);
-- If one operand is a string type or a user-defined array type,
-- and the other is a literal, result is of the specific type.
elsif
(Root_Type (LT) = Standard_String
or else Scope (LT) /= Standard_Standard)
and then Etype (R) = Any_String
then
Add_One_Interp (N, Op_Id, LT);
elsif
(Root_Type (RT) = Standard_String
or else Scope (RT) /= Standard_Standard)
and then Etype (L) = Any_String
then
Add_One_Interp (N, Op_Id, RT);
elsif not Is_Generic_Type (Etype (Op_Id)) then
Add_One_Interp (N, Op_Id, Etype (Op_Id));
else
-- Type and its operations must be visible
Set_Entity (N, Empty);
Analyze_Concatenation (N);
end if;
else
Add_One_Interp (N, Op_Id, Etype (Op_Id));
end if;
else
Op_Id := Get_Name_Entity_Id (Name_Op_Concat);
while Present (Op_Id) loop
if Ekind (Op_Id) = E_Operator then
-- Do not consider operators declared in dead code, they can
-- not be part of the resolution.
if Is_Eliminated (Op_Id) then
null;
else
Find_Concatenation_Types (L, R, Op_Id, N);
end if;
else
Analyze_User_Defined_Binary_Op (N, Op_Id);
end if;
Op_Id := Homonym (Op_Id);
end loop;
end if;
Operator_Check (N);
end Analyze_Concatenation_Rest;
-------------------------
-- Analyze_Equality_Op --
-------------------------
procedure Analyze_Equality_Op (N : Node_Id) is
Loc : constant Source_Ptr := Sloc (N);
L : constant Node_Id := Left_Opnd (N);
R : constant Node_Id := Right_Opnd (N);
Op_Id : Entity_Id;
begin
Set_Etype (N, Any_Type);
Candidate_Type := Empty;
Analyze_Expression (L);
Analyze_Expression (R);
-- If the entity is set, the node is a generic instance with a non-local
-- reference to the predefined operator or to a user-defined function.
-- It can also be an inequality that is expanded into the negation of a
-- call to a user-defined equality operator.
-- For the predefined case, the result is Boolean, regardless of the
-- type of the operands. The operands may even be limited, if they are
-- generic actuals. If they are overloaded, label the left argument with
-- the common type that must be present, or with the type of the formal
-- of the user-defined function.
if Present (Entity (N)) then
Op_Id := Entity (N);
if Ekind (Op_Id) = E_Operator then
Add_One_Interp (N, Op_Id, Standard_Boolean);
else
Add_One_Interp (N, Op_Id, Etype (Op_Id));
end if;
if Is_Overloaded (L) then
if Ekind (Op_Id) = E_Operator then
Set_Etype (L, Intersect_Types (L, R));
else
Set_Etype (L, Etype (First_Formal (Op_Id)));
end if;
end if;
else
Op_Id := Get_Name_Entity_Id (Chars (N));
while Present (Op_Id) loop
if Ekind (Op_Id) = E_Operator then
Find_Equality_Types (L, R, Op_Id, N);
else
Analyze_User_Defined_Binary_Op (N, Op_Id);
end if;
Op_Id := Homonym (Op_Id);
end loop;
end if;
-- If there was no match, and the operator is inequality, this may be
-- a case where inequality has not been made explicit, as for tagged
-- types. Analyze the node as the negation of an equality operation.
-- This cannot be done earlier, because before analysis we cannot rule
-- out the presence of an explicit inequality.
if Etype (N) = Any_Type
and then Nkind (N) = N_Op_Ne
then
Op_Id := Get_Name_Entity_Id (Name_Op_Eq);
while Present (Op_Id) loop
if Ekind (Op_Id) = E_Operator then
Find_Equality_Types (L, R, Op_Id, N);
else
Analyze_User_Defined_Binary_Op (N, Op_Id);
end if;
Op_Id := Homonym (Op_Id);
end loop;
if Etype (N) /= Any_Type then
Op_Id := Entity (N);
Rewrite (N,
Make_Op_Not (Loc,
Right_Opnd =>
Make_Op_Eq (Loc,
Left_Opnd => Left_Opnd (N),
Right_Opnd => Right_Opnd (N))));
Set_Entity (Right_Opnd (N), Op_Id);
Analyze (N);
end if;
end if;
Operator_Check (N);
Check_Function_Writable_Actuals (N);
end Analyze_Equality_Op;
----------------------------------
-- Analyze_Explicit_Dereference --
----------------------------------
procedure Analyze_Explicit_Dereference (N : Node_Id) is
Loc : constant Source_Ptr := Sloc (N);
P : constant Node_Id := Prefix (N);
T : Entity_Id;
I : Interp_Index;
It : Interp;
New_N : Node_Id;
function Is_Function_Type return Boolean;
-- Check whether node may be interpreted as an implicit function call
----------------------
-- Is_Function_Type --
----------------------
function Is_Function_Type return Boolean is
I : Interp_Index;
It : Interp;
begin
if not Is_Overloaded (N) then
return Ekind (Base_Type (Etype (N))) = E_Subprogram_Type
and then Etype (Base_Type (Etype (N))) /= Standard_Void_Type;
else
Get_First_Interp (N, I, It);
while Present (It.Nam) loop
if Ekind (Base_Type (It.Typ)) /= E_Subprogram_Type
or else Etype (Base_Type (It.Typ)) = Standard_Void_Type
then
return False;
end if;
Get_Next_Interp (I, It);
end loop;
return True;
end if;
end Is_Function_Type;
-- Start of processing for Analyze_Explicit_Dereference
begin
-- If source node, check SPARK restriction. We guard this with the
-- source node check, because ???
if Comes_From_Source (N) then
Check_SPARK_05_Restriction ("explicit dereference is not allowed", N);
end if;
-- In formal verification mode, keep track of all reads and writes
-- through explicit dereferences.
if GNATprove_Mode then
SPARK_Specific.Generate_Dereference (N);
end if;
Analyze (P);
Set_Etype (N, Any_Type);
-- Test for remote access to subprogram type, and if so return
-- after rewriting the original tree.
if Remote_AST_E_Dereference (P) then
return;
end if;
-- Normal processing for other than remote access to subprogram type
if not Is_Overloaded (P) then
if Is_Access_Type (Etype (P)) then
-- Set the Etype. We need to go through Is_For_Access_Subtypes to
-- avoid other problems caused by the Private_Subtype and it is
-- safe to go to the Base_Type because this is the same as
-- converting the access value to its Base_Type.
declare
DT : Entity_Id := Designated_Type (Etype (P));
begin
if Ekind (DT) = E_Private_Subtype
and then Is_For_Access_Subtype (DT)
then
DT := Base_Type (DT);
end if;
-- An explicit dereference is a legal occurrence of an
-- incomplete type imported through a limited_with clause, if
-- the full view is visible, or if we are within an instance
-- body, where the enclosing body has a regular with_clause
-- on the unit.
if From_Limited_With (DT)
and then not From_Limited_With (Scope (DT))
and then
(Is_Immediately_Visible (Scope (DT))
or else
(Is_Child_Unit (Scope (DT))
and then Is_Visible_Lib_Unit (Scope (DT)))
or else In_Instance_Body)
then
Set_Etype (N, Available_View (DT));
else
Set_Etype (N, DT);
end if;
end;
elsif Etype (P) /= Any_Type then
Error_Msg_N ("prefix of dereference must be an access type", N);
return;
end if;
else
Get_First_Interp (P, I, It);
while Present (It.Nam) loop
T := It.Typ;
if Is_Access_Type (T) then
Add_One_Interp (N, Designated_Type (T), Designated_Type (T));
end if;
Get_Next_Interp (I, It);
end loop;
-- Error if no interpretation of the prefix has an access type
if Etype (N) = Any_Type then
Error_Msg_N
("access type required in prefix of explicit dereference", P);
Set_Etype (N, Any_Type);
return;
end if;
end if;
if Is_Function_Type
and then Nkind (Parent (N)) /= N_Indexed_Component
and then (Nkind (Parent (N)) /= N_Function_Call
or else N /= Name (Parent (N)))
and then (Nkind (Parent (N)) /= N_Procedure_Call_Statement
or else N /= Name (Parent (N)))
and then Nkind (Parent (N)) /= N_Subprogram_Renaming_Declaration
and then (Nkind (Parent (N)) /= N_Attribute_Reference
or else
(Attribute_Name (Parent (N)) /= Name_Address
and then
Attribute_Name (Parent (N)) /= Name_Access))
then
-- Name is a function call with no actuals, in a context that
-- requires deproceduring (including as an actual in an enclosing
-- function or procedure call). There are some pathological cases
-- where the prefix might include functions that return access to
-- subprograms and others that return a regular type. Disambiguation
-- of those has to take place in Resolve.
New_N :=
Make_Function_Call (Loc,
Name => Make_Explicit_Dereference (Loc, P),
Parameter_Associations => New_List);
-- If the prefix is overloaded, remove operations that have formals,
-- we know that this is a parameterless call.
if Is_Overloaded (P) then
Get_First_Interp (P, I, It);
while Present (It.Nam) loop
T := It.Typ;
if No (First_Formal (Base_Type (Designated_Type (T)))) then
Set_Etype (P, T);
else
Remove_Interp (I);
end if;
Get_Next_Interp (I, It);
end loop;
end if;
Rewrite (N, New_N);
Analyze (N);
elsif not Is_Function_Type
and then Is_Overloaded (N)
then
-- The prefix may include access to subprograms and other access
-- types. If the context selects the interpretation that is a
-- function call (not a procedure call) we cannot rewrite the node
-- yet, but we include the result of the call interpretation.
Get_First_Interp (N, I, It);
while Present (It.Nam) loop
if Ekind (Base_Type (It.Typ)) = E_Subprogram_Type
and then Etype (Base_Type (It.Typ)) /= Standard_Void_Type
and then Nkind (Parent (N)) /= N_Procedure_Call_Statement
then
Add_One_Interp (N, Etype (It.Typ), Etype (It.Typ));
end if;
Get_Next_Interp (I, It);
end loop;
end if;
-- A value of remote access-to-class-wide must not be dereferenced
-- (RM E.2.2(16)).
Validate_Remote_Access_To_Class_Wide_Type (N);
end Analyze_Explicit_Dereference;
------------------------
-- Analyze_Expression --
------------------------
procedure Analyze_Expression (N : Node_Id) is
begin
-- If the expression is an indexed component that will be rewritten
-- as a container indexing, it has already been analyzed.
if Nkind (N) = N_Indexed_Component
and then Present (Generalized_Indexing (N))
then
null;
else
Analyze (N);
Check_Parameterless_Call (N);
end if;
end Analyze_Expression;
-------------------------------------
-- Analyze_Expression_With_Actions --
-------------------------------------
procedure Analyze_Expression_With_Actions (N : Node_Id) is
A : Node_Id;
begin
A := First (Actions (N));
while Present (A) loop
Analyze (A);
Next (A);
end loop;
Analyze_Expression (Expression (N));
Set_Etype (N, Etype (Expression (N)));
end Analyze_Expression_With_Actions;
---------------------------
-- Analyze_If_Expression --
---------------------------
procedure Analyze_If_Expression (N : Node_Id) is
Condition : constant Node_Id := First (Expressions (N));
Then_Expr : constant Node_Id := Next (Condition);
Else_Expr : Node_Id;
begin
-- Defend against error of missing expressions from previous error
if No (Then_Expr) then
Check_Error_Detected;
return;
end if;
if Comes_From_Source (N) then
Check_SPARK_05_Restriction ("if expression is not allowed", N);
end if;
Else_Expr := Next (Then_Expr);
if Comes_From_Source (N) then
Check_Compiler_Unit ("if expression", N);
end if;
-- Analyze and resolve the condition. We need to resolve this now so
-- that it gets folded to True/False if possible, before we analyze
-- the THEN/ELSE branches, because when analyzing these branches, we
-- may call Is_Statically_Unevaluated, which expects the condition of
-- an enclosing IF to have been analyze/resolved/evaluated.
Analyze_Expression (Condition);
Resolve (Condition, Any_Boolean);
-- Analyze THEN expression and (if present) ELSE expression. For those
-- we delay resolution in the normal manner, because of overloading etc.
Analyze_Expression (Then_Expr);
if Present (Else_Expr) then
Analyze_Expression (Else_Expr);
end if;
-- If then expression not overloaded, then that decides the type
if not Is_Overloaded (Then_Expr) then
Set_Etype (N, Etype (Then_Expr));
-- Case where then expression is overloaded
else
declare
I : Interp_Index;
It : Interp;
begin
Set_Etype (N, Any_Type);
-- Loop through interpretations of Then_Expr
Get_First_Interp (Then_Expr, I, It);
while Present (It.Nam) loop
-- Add possible interpretation of Then_Expr if no Else_Expr, or
-- Else_Expr is present and has a compatible type.
if No (Else_Expr)
or else Has_Compatible_Type (Else_Expr, It.Typ)
then
Add_One_Interp (N, It.Typ, It.Typ);
end if;
Get_Next_Interp (I, It);
end loop;
-- If no valid interpretation has been found, then the type of the
-- ELSE expression does not match any interpretation of the THEN
-- expression.
if Etype (N) = Any_Type then
Error_Msg_N
("type incompatible with that of `THEN` expression",
Else_Expr);
return;
end if;
end;
end if;
end Analyze_If_Expression;
------------------------------------
-- Analyze_Indexed_Component_Form --
------------------------------------
procedure Analyze_Indexed_Component_Form (N : Node_Id) is
P : constant Node_Id := Prefix (N);
Exprs : constant List_Id := Expressions (N);
Exp : Node_Id;
P_T : Entity_Id;
E : Node_Id;
U_N : Entity_Id;
procedure Process_Function_Call;
-- Prefix in indexed component form is an overloadable entity, so the
-- node is a function call. Reformat it as such.
procedure Process_Indexed_Component;
-- Prefix in indexed component form is actually an indexed component.
-- This routine processes it, knowing that the prefix is already
-- resolved.
procedure Process_Indexed_Component_Or_Slice;
-- An indexed component with a single index may designate a slice if
-- the index is a subtype mark. This routine disambiguates these two
-- cases by resolving the prefix to see if it is a subtype mark.
procedure Process_Overloaded_Indexed_Component;
-- If the prefix of an indexed component is overloaded, the proper
-- interpretation is selected by the index types and the context.
---------------------------
-- Process_Function_Call --
---------------------------
procedure Process_Function_Call is
Loc : constant Source_Ptr := Sloc (N);
Actual : Node_Id;
begin
Change_Node (N, N_Function_Call);
Set_Name (N, P);
Set_Parameter_Associations (N, Exprs);
-- Analyze actuals prior to analyzing the call itself
Actual := First (Parameter_Associations (N));
while Present (Actual) loop
Analyze (Actual);
Check_Parameterless_Call (Actual);
-- Move to next actual. Note that we use Next, not Next_Actual
-- here. The reason for this is a bit subtle. If a function call
-- includes named associations, the parser recognizes the node
-- as a call, and it is analyzed as such. If all associations are
-- positional, the parser builds an indexed_component node, and
-- it is only after analysis of the prefix that the construct
-- is recognized as a call, in which case Process_Function_Call
-- rewrites the node and analyzes the actuals. If the list of
-- actuals is malformed, the parser may leave the node as an
-- indexed component (despite the presence of named associations).
-- The iterator Next_Actual is equivalent to Next if the list is
-- positional, but follows the normalized chain of actuals when
-- named associations are present. In this case normalization has
-- not taken place, and actuals remain unanalyzed, which leads to
-- subsequent crashes or loops if there is an attempt to continue
-- analysis of the program.
-- IF there is a single actual and it is a type name, the node
-- can only be interpreted as a slice of a parameterless call.
-- Rebuild the node as such and analyze.
if No (Next (Actual))
and then Is_Entity_Name (Actual)
and then Is_Type (Entity (Actual))
and then Is_Discrete_Type (Entity (Actual))
then
Replace (N,
Make_Slice (Loc,
Prefix => P,
Discrete_Range =>
New_Occurrence_Of (Entity (Actual), Loc)));
Analyze (N);
return;
else
Next (Actual);
end if;
end loop;
Analyze_Call (N);
end Process_Function_Call;
-------------------------------
-- Process_Indexed_Component --
-------------------------------
procedure Process_Indexed_Component is
Exp : Node_Id;
Array_Type : Entity_Id;
Index : Node_Id;
Pent : Entity_Id := Empty;
begin
Exp := First (Exprs);
if Is_Overloaded (P) then
Process_Overloaded_Indexed_Component;
else
Array_Type := Etype (P);
if Is_Entity_Name (P) then
Pent := Entity (P);
elsif Nkind (P) = N_Selected_Component
and then Is_Entity_Name (Selector_Name (P))
then
Pent := Entity (Selector_Name (P));
end if;
-- Prefix must be appropriate for an array type, taking into
-- account a possible implicit dereference.
if Is_Access_Type (Array_Type) then
Error_Msg_NW
(Warn_On_Dereference, "?d?implicit dereference", N);
Array_Type := Process_Implicit_Dereference_Prefix (Pent, P);
end if;
if Is_Array_Type (Array_Type) then
-- In order to correctly access First_Index component later,
-- replace string literal subtype by its parent type.
if Ekind (Array_Type) = E_String_Literal_Subtype then
Array_Type := Etype (Array_Type);
end if;
elsif Present (Pent) and then Ekind (Pent) = E_Entry_Family then
Analyze (Exp);
Set_Etype (N, Any_Type);
if not Has_Compatible_Type (Exp, Entry_Index_Type (Pent)) then
Error_Msg_N ("invalid index type in entry name", N);
elsif Present (Next (Exp)) then
Error_Msg_N ("too many subscripts in entry reference", N);
else
Set_Etype (N, Etype (P));
end if;
return;
elsif Is_Record_Type (Array_Type)
and then Remote_AST_I_Dereference (P)
then
return;
elsif Try_Container_Indexing (N, P, Exprs) then
return;
elsif Array_Type = Any_Type then
Set_Etype (N, Any_Type);
-- In most cases the analysis of the prefix will have emitted
-- an error already, but if the prefix may be interpreted as a
-- call in prefixed notation, the report is left to the caller.
-- To prevent cascaded errors, report only if no previous ones.
if Serious_Errors_Detected = 0 then
Error_Msg_N ("invalid prefix in indexed component", P);
if Nkind (P) = N_Expanded_Name then
Error_Msg_NE ("\& is not visible", P, Selector_Name (P));
end if;
end if;
return;
-- Here we definitely have a bad indexing
else
if Nkind (Parent (N)) = N_Requeue_Statement
and then Present (Pent) and then Ekind (Pent) = E_Entry
then
Error_Msg_N
("REQUEUE does not permit parameters", First (Exprs));
elsif Is_Entity_Name (P)
and then Etype (P) = Standard_Void_Type
then
Error_Msg_NE ("incorrect use of &", P, Entity (P));
else
Error_Msg_N ("array type required in indexed component", P);
end if;
Set_Etype (N, Any_Type);
return;
end if;
Index := First_Index (Array_Type);
while Present (Index) and then Present (Exp) loop
if not Has_Compatible_Type (Exp, Etype (Index)) then
Wrong_Type (Exp, Etype (Index));
Set_Etype (N, Any_Type);
return;
end if;
Next_Index (Index);
Next (Exp);
end loop;
Set_Etype (N, Component_Type (Array_Type));
Check_Implicit_Dereference (N, Etype (N));
if Present (Index) then
Error_Msg_N
("too few subscripts in array reference", First (Exprs));
elsif Present (Exp) then
Error_Msg_N ("too many subscripts in array reference", Exp);
end if;
end if;
end Process_Indexed_Component;
----------------------------------------
-- Process_Indexed_Component_Or_Slice --
----------------------------------------
procedure Process_Indexed_Component_Or_Slice is
begin
Exp := First (Exprs);
while Present (Exp) loop
Analyze_Expression (Exp);
Next (Exp);
end loop;
Exp := First (Exprs);
-- If one index is present, and it is a subtype name, then the node
-- denotes a slice (note that the case of an explicit range for a
-- slice was already built as an N_Slice node in the first place,
-- so that case is not handled here).
-- We use a replace rather than a rewrite here because this is one
-- of the cases in which the tree built by the parser is plain wrong.
if No (Next (Exp))
and then Is_Entity_Name (Exp)
and then Is_Type (Entity (Exp))
then
Replace (N,
Make_Slice (Sloc (N),
Prefix => P,
Discrete_Range => New_Copy (Exp)));
Analyze (N);
-- Otherwise (more than one index present, or single index is not
-- a subtype name), then we have the indexed component case.
else
Process_Indexed_Component;
end if;
end Process_Indexed_Component_Or_Slice;
------------------------------------------
-- Process_Overloaded_Indexed_Component --
------------------------------------------
procedure Process_Overloaded_Indexed_Component is
Exp : Node_Id;
I : Interp_Index;
It : Interp;
Typ : Entity_Id;
Index : Node_Id;
Found : Boolean;
begin
Set_Etype (N, Any_Type);
Get_First_Interp (P, I, It);
while Present (It.Nam) loop
Typ := It.Typ;
if Is_Access_Type (Typ) then
Typ := Designated_Type (Typ);
Error_Msg_NW
(Warn_On_Dereference, "?d?implicit dereference", N);
end if;
if Is_Array_Type (Typ) then
-- Got a candidate: verify that index types are compatible
Index := First_Index (Typ);
Found := True;
Exp := First (Exprs);
while Present (Index) and then Present (Exp) loop
if Has_Compatible_Type (Exp, Etype (Index)) then
null;
else
Found := False;
Remove_Interp (I);
exit;
end if;
Next_Index (Index);
Next (Exp);
end loop;
if Found and then No (Index) and then No (Exp) then
declare
CT : constant Entity_Id :=
Base_Type (Component_Type (Typ));
begin
Add_One_Interp (N, CT, CT);
Check_Implicit_Dereference (N, CT);
end;
end if;
elsif Try_Container_Indexing (N, P, Exprs) then
return;
end if;
Get_Next_Interp (I, It);
end loop;
if Etype (N) = Any_Type then
Error_Msg_N ("no legal interpretation for indexed component", N);
Set_Is_Overloaded (N, False);
end if;
End_Interp_List;
end Process_Overloaded_Indexed_Component;
-- Start of processing for Analyze_Indexed_Component_Form
begin
-- Get name of array, function or type
Analyze (P);
-- If P is an explicit dereference whose prefix is of a remote access-
-- to-subprogram type, then N has already been rewritten as a subprogram
-- call and analyzed.
if Nkind (N) in N_Subprogram_Call then
return;
-- When the prefix is attribute 'Loop_Entry and the sole expression of
-- the indexed component denotes a loop name, the indexed form is turned
-- into an attribute reference.
elsif Nkind (N) = N_Attribute_Reference
and then Attribute_Name (N) = Name_Loop_Entry
then
return;
end if;
pragma Assert (Nkind (N) = N_Indexed_Component);
P_T := Base_Type (Etype (P));
if Is_Entity_Name (P) and then Present (Entity (P)) then
U_N := Entity (P);
if Is_Type (U_N) then
-- Reformat node as a type conversion
E := Remove_Head (Exprs);
if Present (First (Exprs)) then
Error_Msg_N
("argument of type conversion must be single expression", N);
end if;
Change_Node (N, N_Type_Conversion);
Set_Subtype_Mark (N, P);
Set_Etype (N, U_N);
Set_Expression (N, E);
-- After changing the node, call for the specific Analysis
-- routine directly, to avoid a double call to the expander.
Analyze_Type_Conversion (N);
return;
end if;
if Is_Overloadable (U_N) then
Process_Function_Call;
elsif Ekind (Etype (P)) = E_Subprogram_Type
or else (Is_Access_Type (Etype (P))
and then
Ekind (Designated_Type (Etype (P))) =
E_Subprogram_Type)
then
-- Call to access_to-subprogram with possible implicit dereference
Process_Function_Call;
elsif Is_Generic_Subprogram (U_N) then
-- A common beginner's (or C++ templates fan) error
Error_Msg_N ("generic subprogram cannot be called", N);
Set_Etype (N, Any_Type);
return;
else
Process_Indexed_Component_Or_Slice;
end if;
-- If not an entity name, prefix is an expression that may denote
-- an array or an access-to-subprogram.
else
if Ekind (P_T) = E_Subprogram_Type
or else (Is_Access_Type (P_T)
and then
Ekind (Designated_Type (P_T)) = E_Subprogram_Type)
then
Process_Function_Call;
elsif Nkind (P) = N_Selected_Component
and then Present (Entity (Selector_Name (P)))
and then Is_Overloadable (Entity (Selector_Name (P)))
then
Process_Function_Call;
-- In ASIS mode within a generic, a prefixed call is analyzed and
-- partially rewritten but the original indexed component has not
-- yet been rewritten as a call. Perform the replacement now.
elsif Nkind (P) = N_Selected_Component
and then Nkind (Parent (P)) = N_Function_Call
and then ASIS_Mode
then
Rewrite (N, Parent (P));
Analyze (N);
else
-- Indexed component, slice, or a call to a member of a family
-- entry, which will be converted to an entry call later.
Process_Indexed_Component_Or_Slice;
end if;
end if;
Analyze_Dimension (N);
end Analyze_Indexed_Component_Form;
------------------------
-- Analyze_Logical_Op --
------------------------
procedure Analyze_Logical_Op (N : Node_Id) is
L : constant Node_Id := Left_Opnd (N);
R : constant Node_Id := Right_Opnd (N);
Op_Id : Entity_Id := Entity (N);
begin
Set_Etype (N, Any_Type);
Candidate_Type := Empty;
Analyze_Expression (L);
Analyze_Expression (R);
if Present (Op_Id) then
if Ekind (Op_Id) = E_Operator then
Find_Boolean_Types (L, R, Op_Id, N);
else
Add_One_Interp (N, Op_Id, Etype (Op_Id));
end if;
else
Op_Id := Get_Name_Entity_Id (Chars (N));
while Present (Op_Id) loop
if Ekind (Op_Id) = E_Operator then
Find_Boolean_Types (L, R, Op_Id, N);
else
Analyze_User_Defined_Binary_Op (N, Op_Id);
end if;
Op_Id := Homonym (Op_Id);
end loop;
end if;
Operator_Check (N);
Check_Function_Writable_Actuals (N);
end Analyze_Logical_Op;
---------------------------
-- Analyze_Membership_Op --
---------------------------
procedure Analyze_Membership_Op (N : Node_Id) is
Loc : constant Source_Ptr := Sloc (N);
L : constant Node_Id := Left_Opnd (N);
R : constant Node_Id := Right_Opnd (N);
Index : Interp_Index;
It : Interp;
Found : Boolean := False;
I_F : Interp_Index;
T_F : Entity_Id;
procedure Try_One_Interp (T1 : Entity_Id);
-- Routine to try one proposed interpretation. Note that the context
-- of the operation plays no role in resolving the arguments, so that
-- if there is more than one interpretation of the operands that is
-- compatible with a membership test, the operation is ambiguous.
--------------------
-- Try_One_Interp --
--------------------
procedure Try_One_Interp (T1 : Entity_Id) is
begin
if Has_Compatible_Type (R, T1) then
if Found
and then Base_Type (T1) /= Base_Type (T_F)
then
It := Disambiguate (L, I_F, Index, Any_Type);
if It = No_Interp then
Ambiguous_Operands (N);
Set_Etype (L, Any_Type);
return;
else
T_F := It.Typ;
end if;
else
Found := True;
T_F := T1;
I_F := Index;
end if;
Set_Etype (L, T_F);
end if;
end Try_One_Interp;
procedure Analyze_Set_Membership;
-- If a set of alternatives is present, analyze each and find the
-- common type to which they must all resolve.
----------------------------
-- Analyze_Set_Membership --
----------------------------
procedure Analyze_Set_Membership is
Alt : Node_Id;
Index : Interp_Index;
It : Interp;
Candidate_Interps : Node_Id;
Common_Type : Entity_Id := Empty;
begin
if Comes_From_Source (N) then
Check_Compiler_Unit ("set membership", N);
end if;
Analyze (L);
Candidate_Interps := L;
if not Is_Overloaded (L) then
Common_Type := Etype (L);
Alt := First (Alternatives (N));
while Present (Alt) loop
Analyze (Alt);
if not Has_Compatible_Type (Alt, Common_Type) then
Wrong_Type (Alt, Common_Type);
end if;
Next (Alt);
end loop;
else
Alt := First (Alternatives (N));
while Present (Alt) loop
Analyze (Alt);
if not Is_Overloaded (Alt) then
Common_Type := Etype (Alt);
else
Get_First_Interp (Alt, Index, It);
while Present (It.Typ) loop
if not
Has_Compatible_Type (Candidate_Interps, It.Typ)
then
Remove_Interp (Index);
end if;
Get_Next_Interp (Index, It);
end loop;
Get_First_Interp (Alt, Index, It);
if No (It.Typ) then
Error_Msg_N ("alternative has no legal type", Alt);
return;
end if;
-- If alternative is not overloaded, we have a unique type
-- for all of them.
Set_Etype (Alt, It.Typ);
Get_Next_Interp (Index, It);
if No (It.Typ) then
Set_Is_Overloaded (Alt, False);
Common_Type := Etype (Alt);
end if;
Candidate_Interps := Alt;
end if;
Next (Alt);
end loop;
end if;
Set_Etype (N, Standard_Boolean);
if Present (Common_Type) then
Set_Etype (L, Common_Type);
-- The left operand may still be overloaded, to be resolved using
-- the Common_Type.
else
Error_Msg_N ("cannot resolve membership operation", N);
end if;
end Analyze_Set_Membership;
-- Start of processing for Analyze_Membership_Op
begin
Analyze_Expression (L);
if No (R) and then Ada_Version >= Ada_2012 then
Analyze_Set_Membership;
Check_Function_Writable_Actuals (N);
return;
end if;
if Nkind (R) = N_Range
or else (Nkind (R) = N_Attribute_Reference
and then Attribute_Name (R) = Name_Range)
then
Analyze (R);
if not Is_Overloaded (L) then
Try_One_Interp (Etype (L));
else
Get_First_Interp (L, Index, It);
while Present (It.Typ) loop
Try_One_Interp (It.Typ);
Get_Next_Interp (Index, It);
end loop;
end if;
-- If not a range, it can be a subtype mark, or else it is a degenerate
-- membership test with a singleton value, i.e. a test for equality,
-- if the types are compatible.
else
Analyze (R);
if Is_Entity_Name (R)
and then Is_Type (Entity (R))
then
Find_Type (R);
Check_Fully_Declared (Entity (R), R);
elsif Ada_Version >= Ada_2012
and then Has_Compatible_Type (R, Etype (L))
then
if Nkind (N) = N_In then
Rewrite (N,
Make_Op_Eq (Loc,
Left_Opnd => L,
Right_Opnd => R));
else
Rewrite (N,
Make_Op_Ne (Loc,
Left_Opnd => L,
Right_Opnd => R));
end if;
Analyze (N);
return;
else
-- In all versions of the language, if we reach this point there
-- is a previous error that will be diagnosed below.
Find_Type (R);
end if;
end if;
-- Compatibility between expression and subtype mark or range is
-- checked during resolution. The result of the operation is Boolean
-- in any case.
Set_Etype (N, Standard_Boolean);
if Comes_From_Source (N)
and then Present (Right_Opnd (N))
and then Is_CPP_Class (Etype (Etype (Right_Opnd (N))))
then
Error_Msg_N ("membership test not applicable to cpp-class types", N);
end if;
Check_Function_Writable_Actuals (N);
end Analyze_Membership_Op;
-----------------
-- Analyze_Mod --
-----------------
procedure Analyze_Mod (N : Node_Id) is
begin
-- A special warning check, if we have an expression of the form:
-- expr mod 2 * literal
-- where literal is 64 or less, then probably what was meant was
-- expr mod 2 ** literal
-- so issue an appropriate warning.
if Warn_On_Suspicious_Modulus_Value
and then Nkind (Right_Opnd (N)) = N_Integer_Literal
and then Intval (Right_Opnd (N)) = Uint_2
and then Nkind (Parent (N)) = N_Op_Multiply
and then Nkind (Right_Opnd (Parent (N))) = N_Integer_Literal
and then Intval (Right_Opnd (Parent (N))) <= Uint_64
then
Error_Msg_N
("suspicious MOD value, was '*'* intended'??M?", Parent (N));
end if;
-- Remaining processing is same as for other arithmetic operators
Analyze_Arithmetic_Op (N);
end Analyze_Mod;
----------------------
-- Analyze_Negation --
----------------------
procedure Analyze_Negation (N : Node_Id) is
R : constant Node_Id := Right_Opnd (N);
Op_Id : Entity_Id := Entity (N);
begin
Set_Etype (N, Any_Type);
Candidate_Type := Empty;
Analyze_Expression (R);
if Present (Op_Id) then
if Ekind (Op_Id) = E_Operator then
Find_Negation_Types (R, Op_Id, N);
else
Add_One_Interp (N, Op_Id, Etype (Op_Id));
end if;
else
Op_Id := Get_Name_Entity_Id (Chars (N));
while Present (Op_Id) loop
if Ekind (Op_Id) = E_Operator then
Find_Negation_Types (R, Op_Id, N);
else
Analyze_User_Defined_Unary_Op (N, Op_Id);
end if;
Op_Id := Homonym (Op_Id);
end loop;
end if;
Operator_Check (N);
end Analyze_Negation;
------------------
-- Analyze_Null --
------------------
procedure Analyze_Null (N : Node_Id) is
begin
Check_SPARK_05_Restriction ("null is not allowed", N);
Set_Etype (N, Any_Access);
end Analyze_Null;
----------------------
-- Analyze_One_Call --
----------------------
procedure Analyze_One_Call
(N : Node_Id;
Nam : Entity_Id;
Report : Boolean;
Success : out Boolean;
Skip_First : Boolean := False)
is
Actuals : constant List_Id := Parameter_Associations (N);
Prev_T : constant Entity_Id := Etype (N);
Must_Skip : constant Boolean := Skip_First
or else Nkind (Original_Node (N)) = N_Selected_Component
or else
(Nkind (Original_Node (N)) = N_Indexed_Component
and then Nkind (Prefix (Original_Node (N)))
= N_Selected_Component);
-- The first formal must be omitted from the match when trying to find
-- a primitive operation that is a possible interpretation, and also
-- after the call has been rewritten, because the corresponding actual
-- is already known to be compatible, and because this may be an
-- indexing of a call with default parameters.
Formal : Entity_Id;
Actual : Node_Id;
Is_Indexed : Boolean := False;
Is_Indirect : Boolean := False;
Subp_Type : constant Entity_Id := Etype (Nam);
Norm_OK : Boolean;
function Compatible_Types_In_Predicate
(T1 : Entity_Id;
T2 : Entity_Id) return Boolean;
-- For an Ada 2012 predicate or invariant, a call may mention an
-- incomplete type, while resolution of the corresponding predicate
-- function may see the full view, as a consequence of the delayed
-- resolution of the corresponding expressions. This may occur in
-- the body of a predicate function, or in a call to such. Anomalies
-- involving private and full views can also happen. In each case,
-- rewrite node or add conversions to remove spurious type errors.
procedure Indicate_Name_And_Type;
-- If candidate interpretation matches, indicate name and type of result
-- on call node.
function Operator_Hidden_By (Fun : Entity_Id) return Boolean;
-- There may be a user-defined operator that hides the current
-- interpretation. We must check for this independently of the
-- analysis of the call with the user-defined operation, because
-- the parameter names may be wrong and yet the hiding takes place.
-- This fixes a problem with ACATS test B34014O.
--
-- When the type Address is a visible integer type, and the DEC
-- system extension is visible, the predefined operator may be
-- hidden as well, by one of the address operations in auxdec.
-- Finally, The abstract operations on address do not hide the
-- predefined operator (this is the purpose of making them abstract).
-----------------------------------
-- Compatible_Types_In_Predicate --
-----------------------------------
function Compatible_Types_In_Predicate
(T1 : Entity_Id;
T2 : Entity_Id) return Boolean
is
function Common_Type (T : Entity_Id) return Entity_Id;
-- Find non-private full view if any, without going to ancestor type
-- (as opposed to Underlying_Type).
-----------------
-- Common_Type --
-----------------
function Common_Type (T : Entity_Id) return Entity_Id is
begin
if Is_Private_Type (T) and then Present (Full_View (T)) then
return Base_Type (Full_View (T));
else
return Base_Type (T);
end if;
end Common_Type;
-- Start of processing for Compatible_Types_In_Predicate
begin
if (Ekind (Current_Scope) = E_Function
and then Is_Predicate_Function (Current_Scope))
or else
(Ekind (Nam) = E_Function
and then Is_Predicate_Function (Nam))
then
if Is_Incomplete_Type (T1)
and then Present (Full_View (T1))
and then Full_View (T1) = T2
then
Set_Etype (Formal, Etype (Actual));
return True;
elsif Common_Type (T1) = Common_Type (T2) then
Rewrite (Actual, Unchecked_Convert_To (Etype (Formal), Actual));
return True;
else
return False;
end if;
else
return False;
end if;
end Compatible_Types_In_Predicate;
----------------------------
-- Indicate_Name_And_Type --
----------------------------
procedure Indicate_Name_And_Type is
begin
Add_One_Interp (N, Nam, Etype (Nam));
Check_Implicit_Dereference (N, Etype (Nam));
Success := True;
-- If the prefix of the call is a name, indicate the entity
-- being called. If it is not a name, it is an expression that
-- denotes an access to subprogram or else an entry or family. In
-- the latter case, the name is a selected component, and the entity
-- being called is noted on the selector.
if not Is_Type (Nam) then
if Is_Entity_Name (Name (N)) then
Set_Entity (Name (N), Nam);
Set_Etype (Name (N), Etype (Nam));
elsif Nkind (Name (N)) = N_Selected_Component then
Set_Entity (Selector_Name (Name (N)), Nam);
end if;
end if;
if Debug_Flag_E and not Report then
Write_Str (" Overloaded call ");
Write_Int (Int (N));
Write_Str (" compatible with ");
Write_Int (Int (Nam));
Write_Eol;
end if;
end Indicate_Name_And_Type;
------------------------
-- Operator_Hidden_By --
------------------------
function Operator_Hidden_By (Fun : Entity_Id) return Boolean is
Act1 : constant Node_Id := First_Actual (N);
Act2 : constant Node_Id := Next_Actual (Act1);
Form1 : constant Entity_Id := First_Formal (Fun);
Form2 : constant Entity_Id := Next_Formal (Form1);
begin
if Ekind (Fun) /= E_Function or else Is_Abstract_Subprogram (Fun) then
return False;
elsif not Has_Compatible_Type (Act1, Etype (Form1)) then
return False;
elsif Present (Form2) then
if No (Act2)
or else not Has_Compatible_Type (Act2, Etype (Form2))
then
return False;
end if;
elsif Present (Act2) then
return False;
end if;
-- Now we know that the arity of the operator matches the function,
-- and the function call is a valid interpretation. The function
-- hides the operator if it has the right signature, or if one of
-- its operands is a non-abstract operation on Address when this is
-- a visible integer type.
return Hides_Op (Fun, Nam)
or else Is_Descendant_Of_Address (Etype (Form1))
or else
(Present (Form2)
and then Is_Descendant_Of_Address (Etype (Form2)));
end Operator_Hidden_By;
-- Start of processing for Analyze_One_Call
begin
Success := False;
-- If the subprogram has no formals or if all the formals have defaults,
-- and the return type is an array type, the node may denote an indexing
-- of the result of a parameterless call. In Ada 2005, the subprogram
-- may have one non-defaulted formal, and the call may have been written
-- in prefix notation, so that the rebuilt parameter list has more than
-- one actual.
if not Is_Overloadable (Nam)
and then Ekind (Nam) /= E_Subprogram_Type
and then Ekind (Nam) /= E_Entry_Family
then
return;
end if;
-- An indexing requires at least one actual. The name of the call cannot
-- be an implicit indirect call, so it cannot be a generated explicit
-- dereference.
if not Is_Empty_List (Actuals)
and then
(Needs_No_Actuals (Nam)
or else
(Needs_One_Actual (Nam)
and then Present (Next_Actual (First (Actuals)))))
then
if Is_Array_Type (Subp_Type)
and then
(Nkind (Name (N)) /= N_Explicit_Dereference
or else Comes_From_Source (Name (N)))
then
Is_Indexed := Try_Indexed_Call (N, Nam, Subp_Type, Must_Skip);
elsif Is_Access_Type (Subp_Type)
and then Is_Array_Type (Designated_Type (Subp_Type))
then
Is_Indexed :=
Try_Indexed_Call
(N, Nam, Designated_Type (Subp_Type), Must_Skip);
-- The prefix can also be a parameterless function that returns an
-- access to subprogram, in which case this is an indirect call.
-- If this succeeds, an explicit dereference is added later on,
-- in Analyze_Call or Resolve_Call.
elsif Is_Access_Type (Subp_Type)
and then Ekind (Designated_Type (Subp_Type)) = E_Subprogram_Type
then
Is_Indirect := Try_Indirect_Call (N, Nam, Subp_Type);
end if;
end if;
-- If the call has been transformed into a slice, it is of the form
-- F (Subtype) where F is parameterless. The node has been rewritten in
-- Try_Indexed_Call and there is nothing else to do.
if Is_Indexed
and then Nkind (N) = N_Slice
then
return;
end if;
Normalize_Actuals
(N, Nam, (Report and not Is_Indexed and not Is_Indirect), Norm_OK);
if not Norm_OK then
-- If an indirect call is a possible interpretation, indicate
-- success to the caller. This may be an indexing of an explicit
-- dereference of a call that returns an access type (see above).
if Is_Indirect
or else (Is_Indexed
and then Nkind (Name (N)) = N_Explicit_Dereference
and then Comes_From_Source (Name (N)))
then
Success := True;
return;
-- Mismatch in number or names of parameters
elsif Debug_Flag_E then
Write_Str (" normalization fails in call ");
Write_Int (Int (N));
Write_Str (" with subprogram ");
Write_Int (Int (Nam));
Write_Eol;
end if;
-- If the context expects a function call, discard any interpretation
-- that is a procedure. If the node is not overloaded, leave as is for
-- better error reporting when type mismatch is found.
elsif Nkind (N) = N_Function_Call
and then Is_Overloaded (Name (N))
and then Ekind (Nam) = E_Procedure
then
return;
-- Ditto for function calls in a procedure context
elsif Nkind (N) = N_Procedure_Call_Statement
and then Is_Overloaded (Name (N))
and then Etype (Nam) /= Standard_Void_Type
then
return;
elsif No (Actuals) then
-- If Normalize succeeds, then there are default parameters for
-- all formals.
Indicate_Name_And_Type;
elsif Ekind (Nam) = E_Operator then
if Nkind (N) = N_Procedure_Call_Statement then
return;
end if;
-- This can occur when the prefix of the call is an operator
-- name or an expanded name whose selector is an operator name.
Analyze_Operator_Call (N, Nam);
if Etype (N) /= Prev_T then
-- Check that operator is not hidden by a function interpretation
if Is_Overloaded (Name (N)) then
declare
I : Interp_Index;
It : Interp;
begin
Get_First_Interp (Name (N), I, It);
while Present (It.Nam) loop
if Operator_Hidden_By (It.Nam) then
Set_Etype (N, Prev_T);
return;
end if;
Get_Next_Interp (I, It);
end loop;
end;
end if;
-- If operator matches formals, record its name on the call.
-- If the operator is overloaded, Resolve will select the
-- correct one from the list of interpretations. The call
-- node itself carries the first candidate.
Set_Entity (Name (N), Nam);
Success := True;
elsif Report and then Etype (N) = Any_Type then
Error_Msg_N ("incompatible arguments for operator", N);
end if;
else
-- Normalize_Actuals has chained the named associations in the
-- correct order of the formals.
Actual := First_Actual (N);
Formal := First_Formal (Nam);
-- If we are analyzing a call rewritten from object notation, skip
-- first actual, which may be rewritten later as an explicit
-- dereference.
if Must_Skip then
Next_Actual (Actual);
Next_Formal (Formal);
end if;
while Present (Actual) and then Present (Formal) loop
if Nkind (Parent (Actual)) /= N_Parameter_Association
or else Chars (Selector_Name (Parent (Actual))) = Chars (Formal)
then
-- The actual can be compatible with the formal, but we must
-- also check that the context is not an address type that is
-- visibly an integer type. In this case the use of literals is
-- illegal, except in the body of descendants of system, where
-- arithmetic operations on address are of course used.
if Has_Compatible_Type (Actual, Etype (Formal))
and then
(Etype (Actual) /= Universal_Integer
or else not Is_Descendant_Of_Address (Etype (Formal))
or else
Is_Predefined_File_Name
(Unit_File_Name (Get_Source_Unit (N))))
then
Next_Actual (Actual);
Next_Formal (Formal);
-- In Allow_Integer_Address mode, we allow an actual integer to
-- match a formal address type and vice versa. We only do this
-- if we are certain that an error will otherwise be issued
elsif Address_Integer_Convert_OK
(Etype (Actual), Etype (Formal))
and then (Report and not Is_Indexed and not Is_Indirect)
then
-- Handle this case by introducing an unchecked conversion
Rewrite (Actual,
Unchecked_Convert_To (Etype (Formal),
Relocate_Node (Actual)));
Analyze_And_Resolve (Actual, Etype (Formal));
Next_Actual (Actual);
Next_Formal (Formal);
-- Under relaxed RM semantics silently replace occurrences of
-- null by System.Address_Null. We only do this if we know that
-- an error will otherwise be issued.
elsif Null_To_Null_Address_Convert_OK (Actual, Etype (Formal))
and then (Report and not Is_Indexed and not Is_Indirect)
then
Replace_Null_By_Null_Address (Actual);
Analyze_And_Resolve (Actual, Etype (Formal));
Next_Actual (Actual);
Next_Formal (Formal);
elsif Compatible_Types_In_Predicate
(Etype (Formal), Etype (Actual))
then
Next_Actual (Actual);
Next_Formal (Formal);
-- In a complex case where an enclosing generic and a nested
-- generic package, both declared with partially parameterized
-- formal subprograms with the same names, are instantiated
-- with the same type, the types of the actual parameter and
-- that of the formal may appear incompatible at first sight.
-- generic
-- type Outer_T is private;
-- with function Func (Formal : Outer_T)
-- return ... is <>;
-- package Outer_Gen is
-- generic
-- type Inner_T is private;
-- with function Func (Formal : Inner_T) -- (1)
-- return ... is <>;
-- package Inner_Gen is
-- function Inner_Func (Formal : Inner_T) -- (2)
-- return ... is (Func (Formal));
-- end Inner_Gen;
-- end Outer_Generic;
-- package Outer_Inst is new Outer_Gen (Actual_T);
-- package Inner_Inst is new Outer_Inst.Inner_Gen (Actual_T);
-- In the example above, the type of parameter
-- Inner_Func.Formal at (2) is incompatible with the type of
-- Func.Formal at (1) in the context of instantiations
-- Outer_Inst and Inner_Inst. In reality both types are generic
-- actual subtypes renaming base type Actual_T as part of the
-- generic prologues for the instantiations.
-- Recognize this case and add a type conversion to allow this
-- kind of generic actual subtype conformance. Note that this
-- is done only when the call is non-overloaded because the
-- resolution mechanism already has the means to disambiguate
-- similar cases.
elsif not Is_Overloaded (Name (N))
and then Is_Type (Etype (Actual))
and then Is_Type (Etype (Formal))
and then Is_Generic_Actual_Type (Etype (Actual))
and then Is_Generic_Actual_Type (Etype (Formal))
and then Base_Type (Etype (Actual)) =
Base_Type (Etype (Formal))
then
Rewrite (Actual,
Convert_To (Etype (Formal), Relocate_Node (Actual)));
Analyze_And_Resolve (Actual, Etype (Formal));
Next_Actual (Actual);
Next_Formal (Formal);
-- Handle failed type check
else
if Debug_Flag_E then
Write_Str (" type checking fails in call ");
Write_Int (Int (N));
Write_Str (" with formal ");
Write_Int (Int (Formal));
Write_Str (" in subprogram ");
Write_Int (Int (Nam));
Write_Eol;
end if;
-- Comment needed on the following test???
if Report and not Is_Indexed and not Is_Indirect then
-- Ada 2005 (AI-251): Complete the error notification
-- to help new Ada 2005 users.
if Is_Class_Wide_Type (Etype (Formal))
and then Is_Interface (Etype (Etype (Formal)))
and then not Interface_Present_In_Ancestor
(Typ => Etype (Actual),
Iface => Etype (Etype (Formal)))
then
Error_Msg_NE
("(Ada 2005) does not implement interface }",
Actual, Etype (Etype (Formal)));
end if;
Wrong_Type (Actual, Etype (Formal));
if Nkind (Actual) = N_Op_Eq
and then Nkind (Left_Opnd (Actual)) = N_Identifier
then
Formal := First_Formal (Nam);
while Present (Formal) loop
if Chars (Left_Opnd (Actual)) = Chars (Formal) then
Error_Msg_N -- CODEFIX
("possible misspelling of `='>`!", Actual);
exit;
end if;
Next_Formal (Formal);
end loop;
end if;
if All_Errors_Mode then
Error_Msg_Sloc := Sloc (Nam);
if Etype (Formal) = Any_Type then
Error_Msg_N
("there is no legal actual parameter", Actual);
end if;
if Is_Overloadable (Nam)
and then Present (Alias (Nam))
and then not Comes_From_Source (Nam)
then
Error_Msg_NE
("\\ =='> in call to inherited operation & #!",
Actual, Nam);
elsif Ekind (Nam) = E_Subprogram_Type then
declare
Access_To_Subprogram_Typ :
constant Entity_Id :=
Defining_Identifier
(Associated_Node_For_Itype (Nam));
begin
Error_Msg_NE
("\\ =='> in call to dereference of &#!",
Actual, Access_To_Subprogram_Typ);
end;
else
Error_Msg_NE
("\\ =='> in call to &#!", Actual, Nam);
end if;
end if;
end if;
return;
end if;
else
-- Normalize_Actuals has verified that a default value exists
-- for this formal. Current actual names a subsequent formal.
Next_Formal (Formal);
end if;
end loop;
-- On exit, all actuals match
Indicate_Name_And_Type;
end if;
end Analyze_One_Call;
---------------------------
-- Analyze_Operator_Call --
---------------------------
procedure Analyze_Operator_Call (N : Node_Id; Op_Id : Entity_Id) is
Op_Name : constant Name_Id := Chars (Op_Id);
Act1 : constant Node_Id := First_Actual (N);
Act2 : constant Node_Id := Next_Actual (Act1);
begin
-- Binary operator case
if Present (Act2) then
-- If more than two operands, then not binary operator after all
if Present (Next_Actual (Act2)) then
return;
end if;
-- Otherwise action depends on operator
case Op_Name is
when Name_Op_Add
| Name_Op_Divide
| Name_Op_Expon
| Name_Op_Mod
| Name_Op_Multiply
| Name_Op_Rem
| Name_Op_Subtract
=>
Find_Arithmetic_Types (Act1, Act2, Op_Id, N);
when Name_Op_And
| Name_Op_Or
| Name_Op_Xor
=>
Find_Boolean_Types (Act1, Act2, Op_Id, N);
when Name_Op_Ge
| Name_Op_Gt
| Name_Op_Le
| Name_Op_Lt
=>
Find_Comparison_Types (Act1, Act2, Op_Id, N);
when Name_Op_Eq
| Name_Op_Ne
=>
Find_Equality_Types (Act1, Act2, Op_Id, N);
when Name_Op_Concat =>
Find_Concatenation_Types (Act1, Act2, Op_Id, N);
-- Is this when others, or should it be an abort???
when others =>
null;
end case;
-- Unary operator case
else
case Op_Name is
when Name_Op_Abs
| Name_Op_Add
| Name_Op_Subtract
=>
Find_Unary_Types (Act1, Op_Id, N);
when Name_Op_Not =>
Find_Negation_Types (Act1, Op_Id, N);
-- Is this when others correct, or should it be an abort???
when others =>
null;
end case;
end if;
end Analyze_Operator_Call;
-------------------------------------------
-- Analyze_Overloaded_Selected_Component --
-------------------------------------------
procedure Analyze_Overloaded_Selected_Component (N : Node_Id) is
Nam : constant Node_Id := Prefix (N);
Sel : constant Node_Id := Selector_Name (N);
Comp : Entity_Id;
I : Interp_Index;
It : Interp;
T : Entity_Id;
begin
Set_Etype (Sel, Any_Type);
Get_First_Interp (Nam, I, It);
while Present (It.Typ) loop
if Is_Access_Type (It.Typ) then
T := Designated_Type (It.Typ);
Error_Msg_NW (Warn_On_Dereference, "?d?implicit dereference", N);
else
T := It.Typ;
end if;
-- Locate the component. For a private prefix the selector can denote
-- a discriminant.
if Is_Record_Type (T) or else Is_Private_Type (T) then
-- If the prefix is a class-wide type, the visible components are
-- those of the base type.
if Is_Class_Wide_Type (T) then
T := Etype (T);
end if;
Comp := First_Entity (T);
while Present (Comp) loop
if Chars (Comp) = Chars (Sel)
and then Is_Visible_Component (Comp)
then
-- AI05-105: if the context is an object renaming with
-- an anonymous access type, the expected type of the
-- object must be anonymous. This is a name resolution rule.
if Nkind (Parent (N)) /= N_Object_Renaming_Declaration
or else No (Access_Definition (Parent (N)))
or else Ekind (Etype (Comp)) = E_Anonymous_Access_Type
or else
Ekind (Etype (Comp)) = E_Anonymous_Access_Subprogram_Type
then
Set_Entity (Sel, Comp);
Set_Etype (Sel, Etype (Comp));
Add_One_Interp (N, Etype (Comp), Etype (Comp));
Check_Implicit_Dereference (N, Etype (Comp));
-- This also specifies a candidate to resolve the name.
-- Further overloading will be resolved from context.
-- The selector name itself does not carry overloading
-- information.
Set_Etype (Nam, It.Typ);
else
-- Named access type in the context of a renaming
-- declaration with an access definition. Remove
-- inapplicable candidate.
Remove_Interp (I);
end if;
end if;
Next_Entity (Comp);
end loop;
elsif Is_Concurrent_Type (T) then
Comp := First_Entity (T);
while Present (Comp)
and then Comp /= First_Private_Entity (T)
loop
if Chars (Comp) = Chars (Sel) then
if Is_Overloadable (Comp) then
Add_One_Interp (Sel, Comp, Etype (Comp));
else
Set_Entity_With_Checks (Sel, Comp);
Generate_Reference (Comp, Sel);
end if;
Set_Etype (Sel, Etype (Comp));
Set_Etype (N, Etype (Comp));
Set_Etype (Nam, It.Typ);
-- For access type case, introduce explicit dereference for
-- more uniform treatment of entry calls. Do this only once
-- if several interpretations yield an access type.
if Is_Access_Type (Etype (Nam))
and then Nkind (Nam) /= N_Explicit_Dereference
then
Insert_Explicit_Dereference (Nam);
Error_Msg_NW
(Warn_On_Dereference, "?d?implicit dereference", N);
end if;
end if;
Next_Entity (Comp);
end loop;
Set_Is_Overloaded (N, Is_Overloaded (Sel));
end if;
Get_Next_Interp (I, It);
end loop;
if Etype (N) = Any_Type
and then not Try_Object_Operation (N)
then
Error_Msg_NE ("undefined selector& for overloaded prefix", N, Sel);
Set_Entity (Sel, Any_Id);
Set_Etype (Sel, Any_Type);
end if;
end Analyze_Overloaded_Selected_Component;
----------------------------------
-- Analyze_Qualified_Expression --
----------------------------------
procedure Analyze_Qualified_Expression (N : Node_Id) is
Mark : constant Entity_Id := Subtype_Mark (N);
Expr : constant Node_Id := Expression (N);
I : Interp_Index;
It : Interp;
T : Entity_Id;
begin
Analyze_Expression (Expr);
Set_Etype (N, Any_Type);
Find_Type (Mark);
T := Entity (Mark);
Set_Etype (N, T);
if T = Any_Type then
return;
end if;
Check_Fully_Declared (T, N);
-- If expected type is class-wide, check for exact match before
-- expansion, because if the expression is a dispatching call it
-- may be rewritten as explicit dereference with class-wide result.
-- If expression is overloaded, retain only interpretations that
-- will yield exact matches.
if Is_Class_Wide_Type (T) then
if not Is_Overloaded (Expr) then
if Base_Type (Etype (Expr)) /= Base_Type (T) then
if Nkind (Expr) = N_Aggregate then
Error_Msg_N ("type of aggregate cannot be class-wide", Expr);
else
Wrong_Type (Expr, T);
end if;
end if;
else
Get_First_Interp (Expr, I, It);
while Present (It.Nam) loop
if Base_Type (It.Typ) /= Base_Type (T) then
Remove_Interp (I);
end if;
Get_Next_Interp (I, It);
end loop;
end if;
end if;
Set_Etype (N, T);
end Analyze_Qualified_Expression;
-----------------------------------
-- Analyze_Quantified_Expression --
-----------------------------------
procedure Analyze_Quantified_Expression (N : Node_Id) is
function Is_Empty_Range (Typ : Entity_Id) return Boolean;
-- If the iterator is part of a quantified expression, and the range is
-- known to be statically empty, emit a warning and replace expression
-- with its static value. Returns True if the replacement occurs.
function No_Else_Or_Trivial_True (If_Expr : Node_Id) return Boolean;
-- Determine whether if expression If_Expr lacks an else part or if it
-- has one, it evaluates to True.
--------------------
-- Is_Empty_Range --
--------------------
function Is_Empty_Range (Typ : Entity_Id) return Boolean is
Loc : constant Source_Ptr := Sloc (N);
begin
if Is_Array_Type (Typ)
and then Compile_Time_Known_Bounds (Typ)
and then
(Expr_Value (Type_Low_Bound (Etype (First_Index (Typ)))) >
Expr_Value (Type_High_Bound (Etype (First_Index (Typ)))))
then
Preanalyze_And_Resolve (Condition (N), Standard_Boolean);
if All_Present (N) then
Error_Msg_N
("??quantified expression with ALL "
& "over a null range has value True", N);
Rewrite (N, New_Occurrence_Of (Standard_True, Loc));
else
Error_Msg_N
("??quantified expression with SOME "
& "over a null range has value False", N);
Rewrite (N, New_Occurrence_Of (Standard_False, Loc));
end if;
Analyze (N);
return True;
else
return False;
end if;
end Is_Empty_Range;
-----------------------------
-- No_Else_Or_Trivial_True --
-----------------------------
function No_Else_Or_Trivial_True (If_Expr : Node_Id) return Boolean is
Else_Expr : constant Node_Id :=
Next (Next (First (Expressions (If_Expr))));
begin
return
No (Else_Expr)
or else (Compile_Time_Known_Value (Else_Expr)
and then Is_True (Expr_Value (Else_Expr)));
end No_Else_Or_Trivial_True;
-- Local variables
Cond : constant Node_Id := Condition (N);
Loop_Id : Entity_Id;
QE_Scop : Entity_Id;
-- Start of processing for Analyze_Quantified_Expression
begin
Check_SPARK_05_Restriction ("quantified expression is not allowed", N);
-- Create a scope to emulate the loop-like behavior of the quantified
-- expression. The scope is needed to provide proper visibility of the
-- loop variable.
QE_Scop := New_Internal_Entity (E_Loop, Current_Scope, Sloc (N), 'L');
Set_Etype (QE_Scop, Standard_Void_Type);
Set_Scope (QE_Scop, Current_Scope);
Set_Parent (QE_Scop, N);
Push_Scope (QE_Scop);
-- All constituents are preanalyzed and resolved to avoid untimely
-- generation of various temporaries and types. Full analysis and
-- expansion is carried out when the quantified expression is
-- transformed into an expression with actions.
if Present (Iterator_Specification (N)) then
Preanalyze (Iterator_Specification (N));
-- Do not proceed with the analysis when the range of iteration is
-- empty. The appropriate error is issued by Is_Empty_Range.
if Is_Entity_Name (Name (Iterator_Specification (N)))
and then Is_Empty_Range (Etype (Name (Iterator_Specification (N))))
then
return;
end if;
else pragma Assert (Present (Loop_Parameter_Specification (N)));
declare
Loop_Par : constant Node_Id := Loop_Parameter_Specification (N);
begin
Preanalyze (Loop_Par);
if Nkind (Discrete_Subtype_Definition (Loop_Par)) = N_Function_Call
and then Parent (Loop_Par) /= N
then
-- The parser cannot distinguish between a loop specification
-- and an iterator specification. If after pre-analysis the
-- proper form has been recognized, rewrite the expression to
-- reflect the right kind. This is needed for proper ASIS
-- navigation. If expansion is enabled, the transformation is
-- performed when the expression is rewritten as a loop.
Set_Iterator_Specification (N,
New_Copy_Tree (Iterator_Specification (Parent (Loop_Par))));
Set_Defining_Identifier (Iterator_Specification (N),
Relocate_Node (Defining_Identifier (Loop_Par)));
Set_Name (Iterator_Specification (N),
Relocate_Node (Discrete_Subtype_Definition (Loop_Par)));
Set_Comes_From_Source (Iterator_Specification (N),
Comes_From_Source (Loop_Parameter_Specification (N)));
Set_Loop_Parameter_Specification (N, Empty);
end if;
end;
end if;
Preanalyze_And_Resolve (Cond, Standard_Boolean);
End_Scope;
Set_Etype (N, Standard_Boolean);
-- Verify that the loop variable is used within the condition of the
-- quantified expression.
if Present (Iterator_Specification (N)) then
Loop_Id := Defining_Identifier (Iterator_Specification (N));
else
Loop_Id := Defining_Identifier (Loop_Parameter_Specification (N));
end if;
if Warn_On_Suspicious_Contract
and then not Referenced (Loop_Id, Cond)
then
-- Generating C, this check causes spurious warnings on inlined
-- postconditions; we can safely disable it because this check
-- was previously performed when analyzing the internally built
-- postconditions procedure.
if Modify_Tree_For_C and then In_Inlined_Body then
null;
else
Error_Msg_N ("?T?unused variable &", Loop_Id);
end if;
end if;
-- Diagnose a possible misuse of the SOME existential quantifier. When
-- we have a quantified expression of the form:
-- for some X => (if P then Q [else True])
-- any value for X that makes P False results in the if expression being
-- trivially True, and so also results in the quantified expression
-- being trivially True.
if Warn_On_Suspicious_Contract
and then not All_Present (N)
and then Nkind (Cond) = N_If_Expression
and then No_Else_Or_Trivial_True (Cond)
then
Error_Msg_N ("?T?suspicious expression", N);
Error_Msg_N ("\\did you mean (for all X ='> (if P then Q))", N);
Error_Msg_N ("\\or (for some X ='> P and then Q) instead'?", N);
end if;
end Analyze_Quantified_Expression;
-------------------
-- Analyze_Range --
-------------------
procedure Analyze_Range (N : Node_Id) is
L : constant Node_Id := Low_Bound (N);
H : constant Node_Id := High_Bound (N);
I1, I2 : Interp_Index;
It1, It2 : Interp;
procedure Check_Common_Type (T1, T2 : Entity_Id);
-- Verify the compatibility of two types, and choose the
-- non universal one if the other is universal.
procedure Check_High_Bound (T : Entity_Id);
-- Test one interpretation of the low bound against all those
-- of the high bound.
procedure Check_Universal_Expression (N : Node_Id);
-- In Ada 83, reject bounds of a universal range that are not literals
-- or entity names.
-----------------------
-- Check_Common_Type --
-----------------------
procedure Check_Common_Type (T1, T2 : Entity_Id) is
begin
if Covers (T1 => T1, T2 => T2)
or else
Covers (T1 => T2, T2 => T1)
then
if T1 = Universal_Integer
or else T1 = Universal_Real
or else T1 = Any_Character
then
Add_One_Interp (N, Base_Type (T2), Base_Type (T2));
elsif T1 = T2 then
Add_One_Interp (N, T1, T1);
else
Add_One_Interp (N, Base_Type (T1), Base_Type (T1));
end if;
end if;
end Check_Common_Type;
----------------------
-- Check_High_Bound --
----------------------
procedure Check_High_Bound (T : Entity_Id) is
begin
if not Is_Overloaded (H) then
Check_Common_Type (T, Etype (H));
else
Get_First_Interp (H, I2, It2);
while Present (It2.Typ) loop
Check_Common_Type (T, It2.Typ);
Get_Next_Interp (I2, It2);
end loop;
end if;
end Check_High_Bound;
-----------------------------
-- Is_Universal_Expression --
-----------------------------
procedure Check_Universal_Expression (N : Node_Id) is
begin
if Etype (N) = Universal_Integer
and then Nkind (N) /= N_Integer_Literal
and then not Is_Entity_Name (N)
and then Nkind (N) /= N_Attribute_Reference
then
Error_Msg_N ("illegal bound in discrete range", N);
end if;
end Check_Universal_Expression;
-- Start of processing for Analyze_Range
begin
Set_Etype (N, Any_Type);
Analyze_Expression (L);
Analyze_Expression (H);
if Etype (L) = Any_Type or else Etype (H) = Any_Type then
return;
else
if not Is_Overloaded (L) then
Check_High_Bound (Etype (L));
else
Get_First_Interp (L, I1, It1);
while Present (It1.Typ) loop
Check_High_Bound (It1.Typ);
Get_Next_Interp (I1, It1);
end loop;
end if;
-- If result is Any_Type, then we did not find a compatible pair
if Etype (N) = Any_Type then
Error_Msg_N ("incompatible types in range ", N);
end if;
end if;
if Ada_Version = Ada_83
and then
(Nkind (Parent (N)) = N_Loop_Parameter_Specification
or else Nkind (Parent (N)) = N_Constrained_Array_Definition)
then
Check_Universal_Expression (L);
Check_Universal_Expression (H);
end if;
Check_Function_Writable_Actuals (N);
end Analyze_Range;
-----------------------
-- Analyze_Reference --
-----------------------
procedure Analyze_Reference (N : Node_Id) is
P : constant Node_Id := Prefix (N);
E : Entity_Id;
T : Entity_Id;
Acc_Type : Entity_Id;
begin
Analyze (P);
-- An interesting error check, if we take the 'Ref of an object for
-- which a pragma Atomic or Volatile has been given, and the type of the
-- object is not Atomic or Volatile, then we are in trouble. The problem
-- is that no trace of the atomic/volatile status will remain for the
-- backend to respect when it deals with the resulting pointer, since
-- the pointer type will not be marked atomic (it is a pointer to the
-- base type of the object).
-- It is not clear if that can ever occur, but in case it does, we will
-- generate an error message. Not clear if this message can ever be
-- generated, and pretty clear that it represents a bug if it is, still
-- seems worth checking, except in CodePeer mode where we do not really
-- care and don't want to bother the user.
T := Etype (P);
if Is_Entity_Name (P)
and then Is_Object_Reference (P)
and then not CodePeer_Mode
then
E := Entity (P);
T := Etype (P);
if (Has_Atomic_Components (E)
and then not Has_Atomic_Components (T))
or else
(Has_Volatile_Components (E)
and then not Has_Volatile_Components (T))
or else (Is_Atomic (E) and then not Is_Atomic (T))
or else (Is_Volatile (E) and then not Is_Volatile (T))
then
Error_Msg_N ("cannot take reference to Atomic/Volatile object", N);
end if;
end if;
-- Carry on with normal processing
Acc_Type := Create_Itype (E_Allocator_Type, N);
Set_Etype (Acc_Type, Acc_Type);
Set_Directly_Designated_Type (Acc_Type, Etype (P));
Set_Etype (N, Acc_Type);
end Analyze_Reference;
--------------------------------
-- Analyze_Selected_Component --
--------------------------------
-- Prefix is a record type or a task or protected type. In the latter case,
-- the selector must denote a visible entry.
procedure Analyze_Selected_Component (N : Node_Id) is
Name : constant Node_Id := Prefix (N);
Sel : constant Node_Id := Selector_Name (N);
Act_Decl : Node_Id;
Comp : Entity_Id;
Has_Candidate : Boolean := False;
In_Scope : Boolean;
Parent_N : Node_Id;
Pent : Entity_Id := Empty;
Prefix_Type : Entity_Id;
Type_To_Use : Entity_Id;
-- In most cases this is the Prefix_Type, but if the Prefix_Type is
-- a class-wide type, we use its root type, whose components are
-- present in the class-wide type.
Is_Single_Concurrent_Object : Boolean;
-- Set True if the prefix is a single task or a single protected object
procedure Find_Component_In_Instance (Rec : Entity_Id);
-- In an instance, a component of a private extension may not be visible
-- while it was visible in the generic. Search candidate scope for a
-- component with the proper identifier. This is only done if all other
-- searches have failed. If a match is found, the Etype of both N and
-- Sel are set from this component, and the entity of Sel is set to
-- reference this component. If no match is found, Entity (Sel) remains
-- unset. For a derived type that is an actual of the instance, the
-- desired component may be found in any ancestor.
function Has_Mode_Conformant_Spec (Comp : Entity_Id) return Boolean;
-- It is known that the parent of N denotes a subprogram call. Comp
-- is an overloadable component of the concurrent type of the prefix.
-- Determine whether all formals of the parent of N and Comp are mode
-- conformant. If the parent node is not analyzed yet it may be an
-- indexed component rather than a function call.
function Has_Dereference (Nod : Node_Id) return Boolean;
-- Check whether prefix includes a dereference at any level.
--------------------------------
-- Find_Component_In_Instance --
--------------------------------
procedure Find_Component_In_Instance (Rec : Entity_Id) is
Comp : Entity_Id;
Typ : Entity_Id;
begin
Typ := Rec;
while Present (Typ) loop
Comp := First_Component (Typ);
while Present (Comp) loop
if Chars (Comp) = Chars (Sel) then
Set_Entity_With_Checks (Sel, Comp);
Set_Etype (Sel, Etype (Comp));
Set_Etype (N, Etype (Comp));
return;
end if;
Next_Component (Comp);
end loop;
-- If not found, the component may be declared in the parent
-- type or its full view, if any.
if Is_Derived_Type (Typ) then
Typ := Etype (Typ);
if Is_Private_Type (Typ) then
Typ := Full_View (Typ);
end if;
else
return;
end if;
end loop;
-- If we fall through, no match, so no changes made
return;
end Find_Component_In_Instance;
------------------------------
-- Has_Mode_Conformant_Spec --
------------------------------
function Has_Mode_Conformant_Spec (Comp : Entity_Id) return Boolean is
Comp_Param : Entity_Id;
Param : Node_Id;
Param_Typ : Entity_Id;
begin
Comp_Param := First_Formal (Comp);
if Nkind (Parent (N)) = N_Indexed_Component then
Param := First (Expressions (Parent (N)));
else
Param := First (Parameter_Associations (Parent (N)));
end if;
while Present (Comp_Param)
and then Present (Param)
loop
Param_Typ := Find_Parameter_Type (Param);
if Present (Param_Typ)
and then
not Conforming_Types
(Etype (Comp_Param), Param_Typ, Mode_Conformant)
then
return False;
end if;
Next_Formal (Comp_Param);
Next (Param);
end loop;
-- One of the specs has additional formals; there is no match, unless
-- this may be an indexing of a parameterless call.
-- Note that when expansion is disabled, the corresponding record
-- type of synchronized types is not constructed, so that there is
-- no point is attempting an interpretation as a prefixed call, as
-- this is bound to fail because the primitive operations will not
-- be properly located.
if Present (Comp_Param) or else Present (Param) then
if Needs_No_Actuals (Comp)
and then Is_Array_Type (Etype (Comp))
and then not Expander_Active
then
return True;
else
return False;
end if;
end if;
return True;
end Has_Mode_Conformant_Spec;
---------------------
-- Has_Dereference --
---------------------
function Has_Dereference (Nod : Node_Id) return Boolean is
begin
if Nkind (Nod) = N_Explicit_Dereference then
return True;
-- When expansion is disabled an explicit dereference may not have
-- been inserted, but if this is an access type the indirection makes
-- the call safe.
elsif Is_Access_Type (Etype (Nod)) then
return True;
elsif Nkind_In (Nod, N_Indexed_Component, N_Selected_Component) then
return Has_Dereference (Prefix (Nod));
else
return False;
end if;
end Has_Dereference;
-- Start of processing for Analyze_Selected_Component
begin
Set_Etype (N, Any_Type);
if Is_Overloaded (Name) then
Analyze_Overloaded_Selected_Component (N);
return;
elsif Etype (Name) = Any_Type then
Set_Entity (Sel, Any_Id);
Set_Etype (Sel, Any_Type);
return;
else
Prefix_Type := Etype (Name);
end if;
if Is_Access_Type (Prefix_Type) then
-- A RACW object can never be used as prefix of a selected component
-- since that means it is dereferenced without being a controlling
-- operand of a dispatching operation (RM E.2.2(16/1)). Before
-- reporting an error, we must check whether this is actually a
-- dispatching call in prefix form.
if Is_Remote_Access_To_Class_Wide_Type (Prefix_Type)
and then Comes_From_Source (N)
then
if Try_Object_Operation (N) then
return;
else
Error_Msg_N
("invalid dereference of a remote access-to-class-wide value",
N);
end if;
-- Normal case of selected component applied to access type
else
Error_Msg_NW (Warn_On_Dereference, "?d?implicit dereference", N);
if Is_Entity_Name (Name) then
Pent := Entity (Name);
elsif Nkind (Name) = N_Selected_Component
and then Is_Entity_Name (Selector_Name (Name))
then
Pent := Entity (Selector_Name (Name));
end if;
Prefix_Type := Process_Implicit_Dereference_Prefix (Pent, Name);
end if;
-- If we have an explicit dereference of a remote access-to-class-wide
-- value, then issue an error (see RM-E.2.2(16/1)). However we first
-- have to check for the case of a prefix that is a controlling operand
-- of a prefixed dispatching call, as the dereference is legal in that
-- case. Normally this condition is checked in Validate_Remote_Access_
-- To_Class_Wide_Type, but we have to defer the checking for selected
-- component prefixes because of the prefixed dispatching call case.
-- Note that implicit dereferences are checked for this just above.
elsif Nkind (Name) = N_Explicit_Dereference
and then Is_Remote_Access_To_Class_Wide_Type (Etype (Prefix (Name)))
and then Comes_From_Source (N)
then
if Try_Object_Operation (N) then
return;
else
Error_Msg_N
("invalid dereference of a remote access-to-class-wide value",
N);
end if;
end if;
-- (Ada 2005): if the prefix is the limited view of a type, and
-- the context already includes the full view, use the full view
-- in what follows, either to retrieve a component of to find
-- a primitive operation. If the prefix is an explicit dereference,
-- set the type of the prefix to reflect this transformation.
-- If the non-limited view is itself an incomplete type, get the
-- full view if available.
if From_Limited_With (Prefix_Type)
and then Has_Non_Limited_View (Prefix_Type)
then
Prefix_Type := Get_Full_View (Non_Limited_View (Prefix_Type));
if Nkind (N) = N_Explicit_Dereference then
Set_Etype (Prefix (N), Prefix_Type);
end if;
end if;
if Ekind (Prefix_Type) = E_Private_Subtype then
Prefix_Type := Base_Type (Prefix_Type);
end if;
Type_To_Use := Prefix_Type;
-- For class-wide types, use the entity list of the root type. This
-- indirection is specially important for private extensions because
-- only the root type get switched (not the class-wide type).
if Is_Class_Wide_Type (Prefix_Type) then
Type_To_Use := Root_Type (Prefix_Type);
end if;
-- If the prefix is a single concurrent object, use its name in error
-- messages, rather than that of its anonymous type.
Is_Single_Concurrent_Object :=
Is_Concurrent_Type (Prefix_Type)
and then Is_Internal_Name (Chars (Prefix_Type))
and then not Is_Derived_Type (Prefix_Type)
and then Is_Entity_Name (Name);
Comp := First_Entity (Type_To_Use);
-- If the selector has an original discriminant, the node appears in
-- an instance. Replace the discriminant with the corresponding one
-- in the current discriminated type. For nested generics, this must
-- be done transitively, so note the new original discriminant.
if Nkind (Sel) = N_Identifier
and then In_Instance
and then Present (Original_Discriminant (Sel))
then
Comp := Find_Corresponding_Discriminant (Sel, Prefix_Type);
-- Mark entity before rewriting, for completeness and because
-- subsequent semantic checks might examine the original node.
Set_Entity (Sel, Comp);
Rewrite (Selector_Name (N), New_Occurrence_Of (Comp, Sloc (N)));
Set_Original_Discriminant (Selector_Name (N), Comp);
Set_Etype (N, Etype (Comp));
Check_Implicit_Dereference (N, Etype (Comp));
if Is_Access_Type (Etype (Name)) then
Insert_Explicit_Dereference (Name);
Error_Msg_NW (Warn_On_Dereference, "?d?implicit dereference", N);
end if;
elsif Is_Record_Type (Prefix_Type) then
-- Find component with given name. In an instance, if the node is
-- known as a prefixed call, do not examine components whose
-- visibility may be accidental.
while Present (Comp) and then not Is_Prefixed_Call (N) loop
if Chars (Comp) = Chars (Sel)
and then Is_Visible_Component (Comp, N)
then
Set_Entity_With_Checks (Sel, Comp);
Set_Etype (Sel, Etype (Comp));
if Ekind (Comp) = E_Discriminant then
if Is_Unchecked_Union (Base_Type (Prefix_Type)) then
Error_Msg_N
("cannot reference discriminant of unchecked union",
Sel);
end if;
if Is_Generic_Type (Prefix_Type)
or else
Is_Generic_Type (Root_Type (Prefix_Type))
then
Set_Original_Discriminant (Sel, Comp);
end if;
end if;
-- Resolve the prefix early otherwise it is not possible to
-- build the actual subtype of the component: it may need
-- to duplicate this prefix and duplication is only allowed
-- on fully resolved expressions.
Resolve (Name);
-- Ada 2005 (AI-50217): Check wrong use of incomplete types or
-- subtypes in a package specification.
-- Example:
-- limited with Pkg;
-- package Pkg is
-- type Acc_Inc is access Pkg.T;
-- X : Acc_Inc;
-- N : Natural := X.all.Comp; -- ERROR, limited view
-- end Pkg; -- Comp is not visible
if Nkind (Name) = N_Explicit_Dereference
and then From_Limited_With (Etype (Prefix (Name)))
and then not Is_Potentially_Use_Visible (Etype (Name))
and then Nkind (Parent (Cunit_Entity (Current_Sem_Unit))) =
N_Package_Specification
then
Error_Msg_NE
("premature usage of incomplete}", Prefix (Name),
Etype (Prefix (Name)));
end if;
-- We never need an actual subtype for the case of a selection
-- for a indexed component of a non-packed array, since in
-- this case gigi generates all the checks and can find the
-- necessary bounds information.
-- We also do not need an actual subtype for the case of a
-- first, last, length, or range attribute applied to a
-- non-packed array, since gigi can again get the bounds in
-- these cases (gigi cannot handle the packed case, since it
-- has the bounds of the packed array type, not the original
-- bounds of the type). However, if the prefix is itself a
-- selected component, as in a.b.c (i), gigi may regard a.b.c
-- as a dynamic-sized temporary, so we do generate an actual
-- subtype for this case.
Parent_N := Parent (N);
if not Is_Packed (Etype (Comp))
and then
((Nkind (Parent_N) = N_Indexed_Component
and then Nkind (Name) /= N_Selected_Component)
or else
(Nkind (Parent_N) = N_Attribute_Reference
and then
Nam_In (Attribute_Name (Parent_N), Name_First,
Name_Last,
Name_Length,
Name_Range)))
then
Set_Etype (N, Etype (Comp));
-- If full analysis is not enabled, we do not generate an
-- actual subtype, because in the absence of expansion
-- reference to a formal of a protected type, for example,
-- will not be properly transformed, and will lead to
-- out-of-scope references in gigi.
-- In all other cases, we currently build an actual subtype.
-- It seems likely that many of these cases can be avoided,
-- but right now, the front end makes direct references to the
-- bounds (e.g. in generating a length check), and if we do
-- not make an actual subtype, we end up getting a direct
-- reference to a discriminant, which will not do.
elsif Full_Analysis then
Act_Decl :=
Build_Actual_Subtype_Of_Component (Etype (Comp), N);
Insert_Action (N, Act_Decl);
if No (Act_Decl) then
Set_Etype (N, Etype (Comp));
else
-- Component type depends on discriminants. Enter the
-- main attributes of the subtype.
declare
Subt : constant Entity_Id :=
Defining_Identifier (Act_Decl);
begin
Set_Etype (Subt, Base_Type (Etype (Comp)));
Set_Ekind (Subt, Ekind (Etype (Comp)));
Set_Etype (N, Subt);
end;
end if;
-- If Full_Analysis not enabled, just set the Etype
else
Set_Etype (N, Etype (Comp));
end if;
Check_Implicit_Dereference (N, Etype (N));
return;
end if;
-- If the prefix is a private extension, check only the visible
-- components of the partial view. This must include the tag,
-- which can appear in expanded code in a tag check.
if Ekind (Type_To_Use) = E_Record_Type_With_Private
and then Chars (Selector_Name (N)) /= Name_uTag
then
exit when Comp = Last_Entity (Type_To_Use);
end if;
Next_Entity (Comp);
end loop;
-- Ada 2005 (AI-252): The selected component can be interpreted as
-- a prefixed view of a subprogram. Depending on the context, this is
-- either a name that can appear in a renaming declaration, or part
-- of an enclosing call given in prefix form.
-- Ada 2005 (AI05-0030): In the case of dispatching requeue, the
-- selected component should resolve to a name.
if Ada_Version >= Ada_2005
and then Is_Tagged_Type (Prefix_Type)
and then not Is_Concurrent_Type (Prefix_Type)
then
if Nkind (Parent (N)) = N_Generic_Association
or else Nkind (Parent (N)) = N_Requeue_Statement
or else Nkind (Parent (N)) = N_Subprogram_Renaming_Declaration
then
if Find_Primitive_Operation (N) then
return;
end if;
elsif Try_Object_Operation (N) then
return;
end if;
-- If the transformation fails, it will be necessary to redo the
-- analysis with all errors enabled, to indicate candidate
-- interpretations and reasons for each failure ???
end if;
elsif Is_Private_Type (Prefix_Type) then
-- Allow access only to discriminants of the type. If the type has
-- no full view, gigi uses the parent type for the components, so we
-- do the same here.
if No (Full_View (Prefix_Type)) then
Type_To_Use := Root_Type (Base_Type (Prefix_Type));
Comp := First_Entity (Type_To_Use);
end if;
while Present (Comp) loop
if Chars (Comp) = Chars (Sel) then
if Ekind (Comp) = E_Discriminant then
Set_Entity_With_Checks (Sel, Comp);
Generate_Reference (Comp, Sel);
Set_Etype (Sel, Etype (Comp));
Set_Etype (N, Etype (Comp));
Check_Implicit_Dereference (N, Etype (N));
if Is_Generic_Type (Prefix_Type)
or else Is_Generic_Type (Root_Type (Prefix_Type))
then
Set_Original_Discriminant (Sel, Comp);
end if;
-- Before declaring an error, check whether this is tagged
-- private type and a call to a primitive operation.
elsif Ada_Version >= Ada_2005
and then Is_Tagged_Type (Prefix_Type)
and then Try_Object_Operation (N)
then
return;
else
Error_Msg_Node_2 := First_Subtype (Prefix_Type);
Error_Msg_NE ("invisible selector& for }", N, Sel);
Set_Entity (Sel, Any_Id);
Set_Etype (N, Any_Type);
end if;
return;
end if;
Next_Entity (Comp);
end loop;
elsif Is_Concurrent_Type (Prefix_Type) then
-- Find visible operation with given name. For a protected type,
-- the possible candidates are discriminants, entries or protected
-- procedures. For a task type, the set can only include entries or
-- discriminants if the task type is not an enclosing scope. If it
-- is an enclosing scope (e.g. in an inner task) then all entities
-- are visible, but the prefix must denote the enclosing scope, i.e.
-- can only be a direct name or an expanded name.
Set_Etype (Sel, Any_Type);
In_Scope := In_Open_Scopes (Prefix_Type);
while Present (Comp) loop
-- Do not examine private operations of the type if not within
-- its scope.
if Chars (Comp) = Chars (Sel) then
if Is_Overloadable (Comp)
and then (In_Scope
or else Comp /= First_Private_Entity (Type_To_Use))
then
Add_One_Interp (Sel, Comp, Etype (Comp));
-- If the prefix is tagged, the correct interpretation may
-- lie in the primitive or class-wide operations of the
-- type. Perform a simple conformance check to determine
-- whether Try_Object_Operation should be invoked even if
-- a visible entity is found.
if Is_Tagged_Type (Prefix_Type)
and then Nkind_In (Parent (N), N_Function_Call,
N_Indexed_Component,
N_Procedure_Call_Statement)
and then Has_Mode_Conformant_Spec (Comp)
then
Has_Candidate := True;
end if;
-- Note: a selected component may not denote a component of a
-- protected type (4.1.3(7)).
elsif Ekind_In (Comp, E_Discriminant, E_Entry_Family)
or else (In_Scope
and then not Is_Protected_Type (Prefix_Type)
and then Is_Entity_Name (Name))
then
Set_Entity_With_Checks (Sel, Comp);
Generate_Reference (Comp, Sel);
-- The selector is not overloadable, so we have a candidate
-- interpretation.
Has_Candidate := True;
else
goto Next_Comp;
end if;
Set_Etype (Sel, Etype (Comp));
Set_Etype (N, Etype (Comp));
if Ekind (Comp) = E_Discriminant then
Set_Original_Discriminant (Sel, Comp);
end if;
-- For access type case, introduce explicit dereference for
-- more uniform treatment of entry calls.
if Is_Access_Type (Etype (Name)) then
Insert_Explicit_Dereference (Name);
Error_Msg_NW
(Warn_On_Dereference, "?d?implicit dereference", N);
end if;
end if;
<<Next_Comp>>
Next_Entity (Comp);
exit when not In_Scope
and then
Comp = First_Private_Entity (Base_Type (Prefix_Type));
end loop;
-- If the scope is a current instance, the prefix cannot be an
-- expression of the same type, unless the selector designates a
-- public operation (otherwise that would represent an attempt to
-- reach an internal entity of another synchronized object).
-- This is legal if prefix is an access to such type and there is
-- a dereference, or is a component with a dereferenced prefix.
-- It is also legal if the prefix is a component of a task type,
-- and the selector is one of the task operations.
if In_Scope
and then not Is_Entity_Name (Name)
and then not Has_Dereference (Name)
then
if Is_Task_Type (Prefix_Type)
and then Present (Entity (Sel))
and then Ekind_In (Entity (Sel), E_Entry, E_Entry_Family)
then
null;
else
Error_Msg_NE
("invalid reference to internal operation of some object of "
& "type &", N, Type_To_Use);
Set_Entity (Sel, Any_Id);
Set_Etype (Sel, Any_Type);
return;
end if;
end if;
-- If there is no visible entity with the given name or none of the
-- visible entities are plausible interpretations, check whether
-- there is some other primitive operation with that name.
if Ada_Version >= Ada_2005 and then Is_Tagged_Type (Prefix_Type) then
if (Etype (N) = Any_Type
or else not Has_Candidate)
and then Try_Object_Operation (N)
then
return;
-- If the context is not syntactically a procedure call, it
-- may be a call to a primitive function declared outside of
-- the synchronized type.
-- If the context is a procedure call, there might still be
-- an overloading between an entry and a primitive procedure
-- declared outside of the synchronized type, called in prefix
-- notation. This is harder to disambiguate because in one case
-- the controlling formal is implicit ???
elsif Nkind (Parent (N)) /= N_Procedure_Call_Statement
and then Nkind (Parent (N)) /= N_Indexed_Component
and then Try_Object_Operation (N)
then
return;
end if;
-- Ada 2012 (AI05-0090-1): If we found a candidate of a call to an
-- entry or procedure of a tagged concurrent type we must check
-- if there are class-wide subprograms covering the primitive. If
-- true then Try_Object_Operation reports the error.
if Has_Candidate
and then Is_Concurrent_Type (Prefix_Type)
and then Nkind (Parent (N)) = N_Procedure_Call_Statement
then
-- Duplicate the call. This is required to avoid problems with
-- the tree transformations performed by Try_Object_Operation.
-- Set properly the parent of the copied call, because it is
-- about to be reanalyzed.
declare
Par : constant Node_Id := New_Copy_Tree (Parent (N));
begin
Set_Parent (Par, Parent (Parent (N)));
if Try_Object_Operation
(Sinfo.Name (Par), CW_Test_Only => True)
then
return;
end if;
end;
end if;
end if;
if Etype (N) = Any_Type and then Is_Protected_Type (Prefix_Type) then
-- Case of a prefix of a protected type: selector might denote
-- an invisible private component.
Comp := First_Private_Entity (Base_Type (Prefix_Type));
while Present (Comp) and then Chars (Comp) /= Chars (Sel) loop
Next_Entity (Comp);
end loop;
if Present (Comp) then
if Is_Single_Concurrent_Object then
Error_Msg_Node_2 := Entity (Name);
Error_Msg_NE ("invisible selector& for &", N, Sel);
else
Error_Msg_Node_2 := First_Subtype (Prefix_Type);
Error_Msg_NE ("invisible selector& for }", N, Sel);
end if;
return;
end if;
end if;
Set_Is_Overloaded (N, Is_Overloaded (Sel));
else
-- Invalid prefix
Error_Msg_NE ("invalid prefix in selected component&", N, Sel);
end if;
-- If N still has no type, the component is not defined in the prefix
if Etype (N) = Any_Type then
if Is_Single_Concurrent_Object then
Error_Msg_Node_2 := Entity (Name);
Error_Msg_NE ("no selector& for&", N, Sel);
Check_Misspelled_Selector (Type_To_Use, Sel);
-- If this is a derived formal type, the parent may have different
-- visibility at this point. Try for an inherited component before
-- reporting an error.
elsif Is_Generic_Type (Prefix_Type)
and then Ekind (Prefix_Type) = E_Record_Type_With_Private
and then Prefix_Type /= Etype (Prefix_Type)
and then Is_Record_Type (Etype (Prefix_Type))
then
Set_Etype (Prefix (N), Etype (Prefix_Type));
Analyze_Selected_Component (N);
return;
-- Similarly, if this is the actual for a formal derived type, or
-- a derived type thereof, the component inherited from the generic
-- parent may not be visible in the actual, but the selected
-- component is legal. Climb up the derivation chain of the generic
-- parent type until we find the proper ancestor type.
elsif In_Instance and then Is_Tagged_Type (Prefix_Type) then
declare
Par : Entity_Id := Prefix_Type;
begin
-- Climb up derivation chain to generic actual subtype
while not Is_Generic_Actual_Type (Par) loop
if Ekind (Par) = E_Record_Type then
Par := Parent_Subtype (Par);
exit when No (Par);
else
exit when Par = Etype (Par);
Par := Etype (Par);
end if;
end loop;
if Present (Par) and then Is_Generic_Actual_Type (Par) then
-- Now look for component in ancestor types
Par := Generic_Parent_Type (Declaration_Node (Par));
loop
Find_Component_In_Instance (Par);
exit when Present (Entity (Sel))
or else Par = Etype (Par);
Par := Etype (Par);
end loop;
-- Another special case: the type is an extension of a private
-- type T, is an actual in an instance, and we are in the body
-- of the instance, so the generic body had a full view of the
-- type declaration for T or of some ancestor that defines the
-- component in question.
elsif Is_Derived_Type (Type_To_Use)
and then Used_As_Generic_Actual (Type_To_Use)
and then In_Instance_Body
then
Find_Component_In_Instance (Parent_Subtype (Type_To_Use));
-- In ASIS mode the generic parent type may be absent. Examine
-- the parent type directly for a component that may have been
-- visible in a parent generic unit.
elsif Is_Derived_Type (Prefix_Type) then
Par := Etype (Prefix_Type);
Find_Component_In_Instance (Par);
end if;
end;
-- The search above must have eventually succeeded, since the
-- selected component was legal in the generic.
if No (Entity (Sel)) then
raise Program_Error;
end if;
return;
-- Component not found, specialize error message when appropriate
else
if Ekind (Prefix_Type) = E_Record_Subtype then
-- Check whether this is a component of the base type which
-- is absent from a statically constrained subtype. This will
-- raise constraint error at run time, but is not a compile-
-- time error. When the selector is illegal for base type as
-- well fall through and generate a compilation error anyway.
Comp := First_Component (Base_Type (Prefix_Type));
while Present (Comp) loop
if Chars (Comp) = Chars (Sel)
and then Is_Visible_Component (Comp)
then
Set_Entity_With_Checks (Sel, Comp);
Generate_Reference (Comp, Sel);
Set_Etype (Sel, Etype (Comp));
Set_Etype (N, Etype (Comp));
-- Emit appropriate message. The node will be replaced
-- by an appropriate raise statement.
-- Note that in SPARK mode, as with all calls to apply a
-- compile time constraint error, this will be made into
-- an error to simplify the processing of the formal
-- verification backend.
Apply_Compile_Time_Constraint_Error
(N, "component not present in }??",
CE_Discriminant_Check_Failed,
Ent => Prefix_Type, Rep => False);
Set_Raises_Constraint_Error (N);
return;
end if;
Next_Component (Comp);
end loop;
end if;
Error_Msg_Node_2 := First_Subtype (Prefix_Type);
Error_Msg_NE ("no selector& for}", N, Sel);
-- Add information in the case of an incomplete prefix
if Is_Incomplete_Type (Type_To_Use) then
declare
Inc : constant Entity_Id := First_Subtype (Type_To_Use);
begin
if From_Limited_With (Scope (Type_To_Use)) then
Error_Msg_NE
("\limited view of& has no components", N, Inc);
else
Error_Msg_NE
("\premature usage of incomplete type&", N, Inc);
if Nkind (Parent (Inc)) =
N_Incomplete_Type_Declaration
then
-- Record location of premature use in entity so that
-- a continuation message is generated when the
-- completion is seen.
Set_Premature_Use (Parent (Inc), N);
end if;
end if;
end;
end if;
Check_Misspelled_Selector (Type_To_Use, Sel);
end if;
Set_Entity (Sel, Any_Id);
Set_Etype (Sel, Any_Type);
end if;
end Analyze_Selected_Component;
---------------------------
-- Analyze_Short_Circuit --
---------------------------
procedure Analyze_Short_Circuit (N : Node_Id) is
L : constant Node_Id := Left_Opnd (N);
R : constant Node_Id := Right_Opnd (N);
Ind : Interp_Index;
It : Interp;
begin
Analyze_Expression (L);
Analyze_Expression (R);
Set_Etype (N, Any_Type);
if not Is_Overloaded (L) then
if Root_Type (Etype (L)) = Standard_Boolean
and then Has_Compatible_Type (R, Etype (L))
then
Add_One_Interp (N, Etype (L), Etype (L));
end if;
else
Get_First_Interp (L, Ind, It);
while Present (It.Typ) loop
if Root_Type (It.Typ) = Standard_Boolean
and then Has_Compatible_Type (R, It.Typ)
then
Add_One_Interp (N, It.Typ, It.Typ);
end if;
Get_Next_Interp (Ind, It);
end loop;
end if;
-- Here we have failed to find an interpretation. Clearly we know that
-- it is not the case that both operands can have an interpretation of
-- Boolean, but this is by far the most likely intended interpretation.
-- So we simply resolve both operands as Booleans, and at least one of
-- these resolutions will generate an error message, and we do not need
-- to give another error message on the short circuit operation itself.
if Etype (N) = Any_Type then
Resolve (L, Standard_Boolean);
Resolve (R, Standard_Boolean);
Set_Etype (N, Standard_Boolean);
end if;
end Analyze_Short_Circuit;
-------------------
-- Analyze_Slice --
-------------------
procedure Analyze_Slice (N : Node_Id) is
D : constant Node_Id := Discrete_Range (N);
P : constant Node_Id := Prefix (N);
Array_Type : Entity_Id;
Index_Type : Entity_Id;
procedure Analyze_Overloaded_Slice;
-- If the prefix is overloaded, select those interpretations that
-- yield a one-dimensional array type.
------------------------------
-- Analyze_Overloaded_Slice --
------------------------------
procedure Analyze_Overloaded_Slice is
I : Interp_Index;
It : Interp;
Typ : Entity_Id;
begin
Set_Etype (N, Any_Type);
Get_First_Interp (P, I, It);
while Present (It.Nam) loop
Typ := It.Typ;
if Is_Access_Type (Typ) then
Typ := Designated_Type (Typ);
Error_Msg_NW
(Warn_On_Dereference, "?d?implicit dereference", N);
end if;
if Is_Array_Type (Typ)
and then Number_Dimensions (Typ) = 1
and then Has_Compatible_Type (D, Etype (First_Index (Typ)))
then
Add_One_Interp (N, Typ, Typ);
end if;
Get_Next_Interp (I, It);
end loop;
if Etype (N) = Any_Type then
Error_Msg_N ("expect array type in prefix of slice", N);
end if;
end Analyze_Overloaded_Slice;
-- Start of processing for Analyze_Slice
begin
if Comes_From_Source (N) then
Check_SPARK_05_Restriction ("slice is not allowed", N);
end if;
Analyze (P);
Analyze (D);
if Is_Overloaded (P) then
Analyze_Overloaded_Slice;
else
Array_Type := Etype (P);
Set_Etype (N, Any_Type);
if Is_Access_Type (Array_Type) then
Array_Type := Designated_Type (Array_Type);
Error_Msg_NW (Warn_On_Dereference, "?d?implicit dereference", N);
end if;
if not Is_Array_Type (Array_Type) then
Wrong_Type (P, Any_Array);
elsif Number_Dimensions (Array_Type) > 1 then
Error_Msg_N
("type is not one-dimensional array in slice prefix", N);
else
if Ekind (Array_Type) = E_String_Literal_Subtype then
Index_Type := Etype (String_Literal_Low_Bound (Array_Type));
else
Index_Type := Etype (First_Index (Array_Type));
end if;
if not Has_Compatible_Type (D, Index_Type) then
Wrong_Type (D, Index_Type);
else
Set_Etype (N, Array_Type);
end if;
end if;
end if;
end Analyze_Slice;
-----------------------------
-- Analyze_Type_Conversion --
-----------------------------
procedure Analyze_Type_Conversion (N : Node_Id) is
Expr : constant Node_Id := Expression (N);
Typ : Entity_Id;
begin
-- If Conversion_OK is set, then the Etype is already set, and the only
-- processing required is to analyze the expression. This is used to
-- construct certain "illegal" conversions which are not allowed by Ada
-- semantics, but can be handled by Gigi, see Sinfo for further details.
if Conversion_OK (N) then
Analyze (Expr);
return;
end if;
-- Otherwise full type analysis is required, as well as some semantic
-- checks to make sure the argument of the conversion is appropriate.
Find_Type (Subtype_Mark (N));
Typ := Entity (Subtype_Mark (N));
Set_Etype (N, Typ);
Check_Fully_Declared (Typ, N);
Analyze_Expression (Expr);
Validate_Remote_Type_Type_Conversion (N);
-- Only remaining step is validity checks on the argument. These
-- are skipped if the conversion does not come from the source.
if not Comes_From_Source (N) then
return;
-- If there was an error in a generic unit, no need to replicate the
-- error message. Conversely, constant-folding in the generic may
-- transform the argument of a conversion into a string literal, which
-- is legal. Therefore the following tests are not performed in an
-- instance. The same applies to an inlined body.
elsif In_Instance or In_Inlined_Body then
return;
elsif Nkind (Expr) = N_Null then
Error_Msg_N ("argument of conversion cannot be null", N);
Error_Msg_N ("\use qualified expression instead", N);
Set_Etype (N, Any_Type);
elsif Nkind (Expr) = N_Aggregate then
Error_Msg_N ("argument of conversion cannot be aggregate", N);
Error_Msg_N ("\use qualified expression instead", N);
elsif Nkind (Expr) = N_Allocator then
Error_Msg_N ("argument of conversion cannot be an allocator", N);
Error_Msg_N ("\use qualified expression instead", N);
elsif Nkind (Expr) = N_String_Literal then
Error_Msg_N ("argument of conversion cannot be string literal", N);
Error_Msg_N ("\use qualified expression instead", N);
elsif Nkind (Expr) = N_Character_Literal then
if Ada_Version = Ada_83 then
Resolve (Expr, Typ);
else
Error_Msg_N ("argument of conversion cannot be character literal",
N);
Error_Msg_N ("\use qualified expression instead", N);
end if;
elsif Nkind (Expr) = N_Attribute_Reference
and then Nam_In (Attribute_Name (Expr), Name_Access,
Name_Unchecked_Access,
Name_Unrestricted_Access)
then
Error_Msg_N ("argument of conversion cannot be access", N);
Error_Msg_N ("\use qualified expression instead", N);
end if;
-- A formal parameter of a specific tagged type whose related subprogram
-- is subject to pragma Extensions_Visible with value "False" cannot
-- appear in a class-wide conversion (SPARK RM 6.1.7(3)). Do not check
-- internally generated expressions.
if Is_Class_Wide_Type (Typ)
and then Comes_From_Source (Expr)
and then Is_EVF_Expression (Expr)
then
Error_Msg_N
("formal parameter cannot be converted to class-wide type when "
& "Extensions_Visible is False", Expr);
end if;
end Analyze_Type_Conversion;
----------------------
-- Analyze_Unary_Op --
----------------------
procedure Analyze_Unary_Op (N : Node_Id) is
R : constant Node_Id := Right_Opnd (N);
Op_Id : Entity_Id := Entity (N);
begin
Set_Etype (N, Any_Type);
Candidate_Type := Empty;
Analyze_Expression (R);
if Present (Op_Id) then
if Ekind (Op_Id) = E_Operator then
Find_Unary_Types (R, Op_Id, N);
else
Add_One_Interp (N, Op_Id, Etype (Op_Id));
end if;
else
Op_Id := Get_Name_Entity_Id (Chars (N));
while Present (Op_Id) loop
if Ekind (Op_Id) = E_Operator then
if No (Next_Entity (First_Entity (Op_Id))) then
Find_Unary_Types (R, Op_Id, N);
end if;
elsif Is_Overloadable (Op_Id) then
Analyze_User_Defined_Unary_Op (N, Op_Id);
end if;
Op_Id := Homonym (Op_Id);
end loop;
end if;
Operator_Check (N);
end Analyze_Unary_Op;
----------------------------------
-- Analyze_Unchecked_Expression --
----------------------------------
procedure Analyze_Unchecked_Expression (N : Node_Id) is
begin
Analyze (Expression (N), Suppress => All_Checks);
Set_Etype (N, Etype (Expression (N)));
Save_Interps (Expression (N), N);
end Analyze_Unchecked_Expression;
---------------------------------------
-- Analyze_Unchecked_Type_Conversion --
---------------------------------------
procedure Analyze_Unchecked_Type_Conversion (N : Node_Id) is
begin
Find_Type (Subtype_Mark (N));
Analyze_Expression (Expression (N));
Set_Etype (N, Entity (Subtype_Mark (N)));
end Analyze_Unchecked_Type_Conversion;
------------------------------------
-- Analyze_User_Defined_Binary_Op --
------------------------------------
procedure Analyze_User_Defined_Binary_Op
(N : Node_Id;
Op_Id : Entity_Id)
is
begin
-- Only do analysis if the operator Comes_From_Source, since otherwise
-- the operator was generated by the expander, and all such operators
-- always refer to the operators in package Standard.
if Comes_From_Source (N) then
declare
F1 : constant Entity_Id := First_Formal (Op_Id);
F2 : constant Entity_Id := Next_Formal (F1);
begin
-- Verify that Op_Id is a visible binary function. Note that since
-- we know Op_Id is overloaded, potentially use visible means use
-- visible for sure (RM 9.4(11)).
if Ekind (Op_Id) = E_Function
and then Present (F2)
and then (Is_Immediately_Visible (Op_Id)
or else Is_Potentially_Use_Visible (Op_Id))
and then Has_Compatible_Type (Left_Opnd (N), Etype (F1))
and then Has_Compatible_Type (Right_Opnd (N), Etype (F2))
then
Add_One_Interp (N, Op_Id, Etype (Op_Id));
-- If the left operand is overloaded, indicate that the current
-- type is a viable candidate. This is redundant in most cases,
-- but for equality and comparison operators where the context
-- does not impose a type on the operands, setting the proper
-- type is necessary to avoid subsequent ambiguities during
-- resolution, when both user-defined and predefined operators
-- may be candidates.
if Is_Overloaded (Left_Opnd (N)) then
Set_Etype (Left_Opnd (N), Etype (F1));
end if;
if Debug_Flag_E then
Write_Str ("user defined operator ");
Write_Name (Chars (Op_Id));
Write_Str (" on node ");
Write_Int (Int (N));
Write_Eol;
end if;
end if;
end;
end if;
end Analyze_User_Defined_Binary_Op;
-----------------------------------
-- Analyze_User_Defined_Unary_Op --
-----------------------------------
procedure Analyze_User_Defined_Unary_Op
(N : Node_Id;
Op_Id : Entity_Id)
is
begin
-- Only do analysis if the operator Comes_From_Source, since otherwise
-- the operator was generated by the expander, and all such operators
-- always refer to the operators in package Standard.
if Comes_From_Source (N) then
declare
F : constant Entity_Id := First_Formal (Op_Id);
begin
-- Verify that Op_Id is a visible unary function. Note that since
-- we know Op_Id is overloaded, potentially use visible means use
-- visible for sure (RM 9.4(11)).
if Ekind (Op_Id) = E_Function
and then No (Next_Formal (F))
and then (Is_Immediately_Visible (Op_Id)
or else Is_Potentially_Use_Visible (Op_Id))
and then Has_Compatible_Type (Right_Opnd (N), Etype (F))
then
Add_One_Interp (N, Op_Id, Etype (Op_Id));
end if;
end;
end if;
end Analyze_User_Defined_Unary_Op;
---------------------------
-- Check_Arithmetic_Pair --
---------------------------
procedure Check_Arithmetic_Pair
(T1, T2 : Entity_Id;
Op_Id : Entity_Id;
N : Node_Id)
is
Op_Name : constant Name_Id := Chars (Op_Id);
function Has_Fixed_Op (Typ : Entity_Id; Op : Entity_Id) return Boolean;
-- Check whether the fixed-point type Typ has a user-defined operator
-- (multiplication or division) that should hide the corresponding
-- predefined operator. Used to implement Ada 2005 AI-264, to make
-- such operators more visible and therefore useful.
--
-- If the name of the operation is an expanded name with prefix
-- Standard, the predefined universal fixed operator is available,
-- as specified by AI-420 (RM 4.5.5 (19.1/2)).
function Specific_Type (T1, T2 : Entity_Id) return Entity_Id;
-- Get specific type (i.e. non-universal type if there is one)
------------------
-- Has_Fixed_Op --
------------------
function Has_Fixed_Op (Typ : Entity_Id; Op : Entity_Id) return Boolean is
Bas : constant Entity_Id := Base_Type (Typ);
Ent : Entity_Id;
F1 : Entity_Id;
F2 : Entity_Id;
begin
-- If the universal_fixed operation is given explicitly the rule
-- concerning primitive operations of the type do not apply.
if Nkind (N) = N_Function_Call
and then Nkind (Name (N)) = N_Expanded_Name
and then Entity (Prefix (Name (N))) = Standard_Standard
then
return False;
end if;
-- The operation is treated as primitive if it is declared in the
-- same scope as the type, and therefore on the same entity chain.
Ent := Next_Entity (Typ);
while Present (Ent) loop
if Chars (Ent) = Chars (Op) then
F1 := First_Formal (Ent);
F2 := Next_Formal (F1);
-- The operation counts as primitive if either operand or
-- result are of the given base type, and both operands are
-- fixed point types.
if (Base_Type (Etype (F1)) = Bas
and then Is_Fixed_Point_Type (Etype (F2)))
or else
(Base_Type (Etype (F2)) = Bas
and then Is_Fixed_Point_Type (Etype (F1)))
or else
(Base_Type (Etype (Ent)) = Bas
and then Is_Fixed_Point_Type (Etype (F1))
and then Is_Fixed_Point_Type (Etype (F2)))
then
return True;
end if;
end if;
Next_Entity (Ent);
end loop;
return False;
end Has_Fixed_Op;
-------------------
-- Specific_Type --
-------------------
function Specific_Type (T1, T2 : Entity_Id) return Entity_Id is
begin
if T1 = Universal_Integer or else T1 = Universal_Real then
return Base_Type (T2);
else
return Base_Type (T1);
end if;
end Specific_Type;
-- Start of processing for Check_Arithmetic_Pair
begin
if Nam_In (Op_Name, Name_Op_Add, Name_Op_Subtract) then
if Is_Numeric_Type (T1)
and then Is_Numeric_Type (T2)
and then (Covers (T1 => T1, T2 => T2)
or else
Covers (T1 => T2, T2 => T1))
then
Add_One_Interp (N, Op_Id, Specific_Type (T1, T2));
end if;
elsif Nam_In (Op_Name, Name_Op_Multiply, Name_Op_Divide) then
if Is_Fixed_Point_Type (T1)
and then (Is_Fixed_Point_Type (T2) or else T2 = Universal_Real)
then
-- If Treat_Fixed_As_Integer is set then the Etype is already set
-- and no further processing is required (this is the case of an
-- operator constructed by Exp_Fixd for a fixed point operation)
-- Otherwise add one interpretation with universal fixed result
-- If the operator is given in functional notation, it comes
-- from source and Fixed_As_Integer cannot apply.
if (Nkind (N) not in N_Op
or else not Treat_Fixed_As_Integer (N))
and then
(not Has_Fixed_Op (T1, Op_Id)
or else Nkind (Parent (N)) = N_Type_Conversion)
then
Add_One_Interp (N, Op_Id, Universal_Fixed);
end if;
elsif Is_Fixed_Point_Type (T2)
and then (Nkind (N) not in N_Op
or else not Treat_Fixed_As_Integer (N))
and then T1 = Universal_Real
and then
(not Has_Fixed_Op (T1, Op_Id)
or else Nkind (Parent (N)) = N_Type_Conversion)
then
Add_One_Interp (N, Op_Id, Universal_Fixed);
elsif Is_Numeric_Type (T1)
and then Is_Numeric_Type (T2)
and then (Covers (T1 => T1, T2 => T2)
or else
Covers (T1 => T2, T2 => T1))
then
Add_One_Interp (N, Op_Id, Specific_Type (T1, T2));
elsif Is_Fixed_Point_Type (T1)
and then (Base_Type (T2) = Base_Type (Standard_Integer)
or else T2 = Universal_Integer)
then
Add_One_Interp (N, Op_Id, T1);
elsif T2 = Universal_Real
and then Base_Type (T1) = Base_Type (Standard_Integer)
and then Op_Name = Name_Op_Multiply
then
Add_One_Interp (N, Op_Id, Any_Fixed);
elsif T1 = Universal_Real
and then Base_Type (T2) = Base_Type (Standard_Integer)
then
Add_One_Interp (N, Op_Id, Any_Fixed);
elsif Is_Fixed_Point_Type (T2)
and then (Base_Type (T1) = Base_Type (Standard_Integer)
or else T1 = Universal_Integer)
and then Op_Name = Name_Op_Multiply
then
Add_One_Interp (N, Op_Id, T2);
elsif T1 = Universal_Real and then T2 = Universal_Integer then
Add_One_Interp (N, Op_Id, T1);
elsif T2 = Universal_Real
and then T1 = Universal_Integer
and then Op_Name = Name_Op_Multiply
then
Add_One_Interp (N, Op_Id, T2);
end if;
elsif Op_Name = Name_Op_Mod or else Op_Name = Name_Op_Rem then
-- Note: The fixed-point operands case with Treat_Fixed_As_Integer
-- set does not require any special processing, since the Etype is
-- already set (case of operation constructed by Exp_Fixed).
if Is_Integer_Type (T1)
and then (Covers (T1 => T1, T2 => T2)
or else
Covers (T1 => T2, T2 => T1))
then
Add_One_Interp (N, Op_Id, Specific_Type (T1, T2));
end if;
elsif Op_Name = Name_Op_Expon then
if Is_Numeric_Type (T1)
and then not Is_Fixed_Point_Type (T1)
and then (Base_Type (T2) = Base_Type (Standard_Integer)
or else T2 = Universal_Integer)
then
Add_One_Interp (N, Op_Id, Base_Type (T1));
end if;
else pragma Assert (Nkind (N) in N_Op_Shift);
-- If not one of the predefined operators, the node may be one
-- of the intrinsic functions. Its kind is always specific, and
-- we can use it directly, rather than the name of the operation.
if Is_Integer_Type (T1)
and then (Base_Type (T2) = Base_Type (Standard_Integer)
or else T2 = Universal_Integer)
then
Add_One_Interp (N, Op_Id, Base_Type (T1));
end if;
end if;
end Check_Arithmetic_Pair;
-------------------------------
-- Check_Misspelled_Selector --
-------------------------------
procedure Check_Misspelled_Selector
(Prefix : Entity_Id;
Sel : Node_Id)
is
Max_Suggestions : constant := 2;
Nr_Of_Suggestions : Natural := 0;
Suggestion_1 : Entity_Id := Empty;
Suggestion_2 : Entity_Id := Empty;
Comp : Entity_Id;
begin
-- All the components of the prefix of selector Sel are matched against
-- Sel and a count is maintained of possible misspellings. When at
-- the end of the analysis there are one or two (not more) possible
-- misspellings, these misspellings will be suggested as possible
-- correction.
if not (Is_Private_Type (Prefix) or else Is_Record_Type (Prefix)) then
-- Concurrent types should be handled as well ???
return;
end if;
Comp := First_Entity (Prefix);
while Nr_Of_Suggestions <= Max_Suggestions and then Present (Comp) loop
if Is_Visible_Component (Comp) then
if Is_Bad_Spelling_Of (Chars (Comp), Chars (Sel)) then
Nr_Of_Suggestions := Nr_Of_Suggestions + 1;
case Nr_Of_Suggestions is
when 1 => Suggestion_1 := Comp;
when 2 => Suggestion_2 := Comp;
when others => null;
end case;
end if;
end if;
Comp := Next_Entity (Comp);
end loop;
-- Report at most two suggestions
if Nr_Of_Suggestions = 1 then
Error_Msg_NE -- CODEFIX
("\possible misspelling of&", Sel, Suggestion_1);
elsif Nr_Of_Suggestions = 2 then
Error_Msg_Node_2 := Suggestion_2;
Error_Msg_NE -- CODEFIX
("\possible misspelling of& or&", Sel, Suggestion_1);
end if;
end Check_Misspelled_Selector;
----------------------
-- Defined_In_Scope --
----------------------
function Defined_In_Scope (T : Entity_Id; S : Entity_Id) return Boolean
is
S1 : constant Entity_Id := Scope (Base_Type (T));
begin
return S1 = S
or else (S1 = System_Aux_Id and then S = Scope (S1));
end Defined_In_Scope;
-------------------
-- Diagnose_Call --
-------------------
procedure Diagnose_Call (N : Node_Id; Nam : Node_Id) is
Actual : Node_Id;
X : Interp_Index;
It : Interp;
Err_Mode : Boolean;
New_Nam : Node_Id;
Void_Interp_Seen : Boolean := False;
Success : Boolean;
pragma Warnings (Off, Boolean);
begin
if Ada_Version >= Ada_2005 then
Actual := First_Actual (N);
while Present (Actual) loop
-- Ada 2005 (AI-50217): Post an error in case of premature
-- usage of an entity from the limited view.
if not Analyzed (Etype (Actual))
and then From_Limited_With (Etype (Actual))
then
Error_Msg_Qual_Level := 1;
Error_Msg_NE
("missing with_clause for scope of imported type&",
Actual, Etype (Actual));
Error_Msg_Qual_Level := 0;
end if;
Next_Actual (Actual);
end loop;
end if;
-- Before listing the possible candidates, check whether this is
-- a prefix of a selected component that has been rewritten as a
-- parameterless function call because there is a callable candidate
-- interpretation. If there is a hidden package in the list of homonyms
-- of the function name (bad programming style in any case) suggest that
-- this is the intended entity.
if No (Parameter_Associations (N))
and then Nkind (Parent (N)) = N_Selected_Component
and then Nkind (Parent (Parent (N))) in N_Declaration
and then Is_Overloaded (Nam)
then
declare
Ent : Entity_Id;
begin
Ent := Current_Entity (Nam);
while Present (Ent) loop
if Ekind (Ent) = E_Package then
Error_Msg_N
("no legal interpretations as function call,!", Nam);
Error_Msg_NE ("\package& is not visible", N, Ent);
Rewrite (Parent (N),
New_Occurrence_Of (Any_Type, Sloc (N)));
return;
end if;
Ent := Homonym (Ent);
end loop;
end;
end if;
-- Analyze each candidate call again, with full error reporting for
-- each.
Error_Msg_N
("no candidate interpretations match the actuals:!", Nam);
Err_Mode := All_Errors_Mode;
All_Errors_Mode := True;
-- If this is a call to an operation of a concurrent type,
-- the failed interpretations have been removed from the
-- name. Recover them to provide full diagnostics.
if Nkind (Parent (Nam)) = N_Selected_Component then
Set_Entity (Nam, Empty);
New_Nam := New_Copy_Tree (Parent (Nam));
Set_Is_Overloaded (New_Nam, False);
Set_Is_Overloaded (Selector_Name (New_Nam), False);
Set_Parent (New_Nam, Parent (Parent (Nam)));
Analyze_Selected_Component (New_Nam);
Get_First_Interp (Selector_Name (New_Nam), X, It);
else
Get_First_Interp (Nam, X, It);
end if;
while Present (It.Nam) loop
if Etype (It.Nam) = Standard_Void_Type then
Void_Interp_Seen := True;
end if;
Analyze_One_Call (N, It.Nam, True, Success);
Get_Next_Interp (X, It);
end loop;
if Nkind (N) = N_Function_Call then
Get_First_Interp (Nam, X, It);
while Present (It.Nam) loop
if Ekind_In (It.Nam, E_Function, E_Operator) then
return;
else
Get_Next_Interp (X, It);
end if;
end loop;
-- If all interpretations are procedures, this deserves a
-- more precise message. Ditto if this appears as the prefix
-- of a selected component, which may be a lexical error.
Error_Msg_N
("\context requires function call, found procedure name", Nam);
if Nkind (Parent (N)) = N_Selected_Component
and then N = Prefix (Parent (N))
then
Error_Msg_N -- CODEFIX
("\period should probably be semicolon", Parent (N));
end if;
elsif Nkind (N) = N_Procedure_Call_Statement
and then not Void_Interp_Seen
then
Error_Msg_N (
"\function name found in procedure call", Nam);
end if;
All_Errors_Mode := Err_Mode;
end Diagnose_Call;
---------------------------
-- Find_Arithmetic_Types --
---------------------------
procedure Find_Arithmetic_Types
(L, R : Node_Id;
Op_Id : Entity_Id;
N : Node_Id)
is
Index1 : Interp_Index;
Index2 : Interp_Index;
It1 : Interp;
It2 : Interp;
procedure Check_Right_Argument (T : Entity_Id);
-- Check right operand of operator
--------------------------
-- Check_Right_Argument --
--------------------------
procedure Check_Right_Argument (T : Entity_Id) is
begin
if not Is_Overloaded (R) then
Check_Arithmetic_Pair (T, Etype (R), Op_Id, N);
else
Get_First_Interp (R, Index2, It2);
while Present (It2.Typ) loop
Check_Arithmetic_Pair (T, It2.Typ, Op_Id, N);
Get_Next_Interp (Index2, It2);
end loop;
end if;
end Check_Right_Argument;
-- Start of processing for Find_Arithmetic_Types
begin
if not Is_Overloaded (L) then
Check_Right_Argument (Etype (L));
else
Get_First_Interp (L, Index1, It1);
while Present (It1.Typ) loop
Check_Right_Argument (It1.Typ);
Get_Next_Interp (Index1, It1);
end loop;
end if;
end Find_Arithmetic_Types;
------------------------
-- Find_Boolean_Types --
------------------------
procedure Find_Boolean_Types
(L, R : Node_Id;
Op_Id : Entity_Id;
N : Node_Id)
is
Index : Interp_Index;
It : Interp;
procedure Check_Numeric_Argument (T : Entity_Id);
-- Special case for logical operations one of whose operands is an
-- integer literal. If both are literal the result is any modular type.
----------------------------
-- Check_Numeric_Argument --
----------------------------
procedure Check_Numeric_Argument (T : Entity_Id) is
begin
if T = Universal_Integer then
Add_One_Interp (N, Op_Id, Any_Modular);
elsif Is_Modular_Integer_Type (T) then
Add_One_Interp (N, Op_Id, T);
end if;
end Check_Numeric_Argument;
-- Start of processing for Find_Boolean_Types
begin
if not Is_Overloaded (L) then
if Etype (L) = Universal_Integer
or else Etype (L) = Any_Modular
then
if not Is_Overloaded (R) then
Check_Numeric_Argument (Etype (R));
else
Get_First_Interp (R, Index, It);
while Present (It.Typ) loop
Check_Numeric_Argument (It.Typ);
Get_Next_Interp (Index, It);
end loop;
end if;
-- If operands are aggregates, we must assume that they may be
-- boolean arrays, and leave disambiguation for the second pass.
-- If only one is an aggregate, verify that the other one has an
-- interpretation as a boolean array
elsif Nkind (L) = N_Aggregate then
if Nkind (R) = N_Aggregate then
Add_One_Interp (N, Op_Id, Etype (L));
elsif not Is_Overloaded (R) then
if Valid_Boolean_Arg (Etype (R)) then
Add_One_Interp (N, Op_Id, Etype (R));
end if;
else
Get_First_Interp (R, Index, It);
while Present (It.Typ) loop
if Valid_Boolean_Arg (It.Typ) then
Add_One_Interp (N, Op_Id, It.Typ);
end if;
Get_Next_Interp (Index, It);
end loop;
end if;
elsif Valid_Boolean_Arg (Etype (L))
and then Has_Compatible_Type (R, Etype (L))
then
Add_One_Interp (N, Op_Id, Etype (L));
end if;
else
Get_First_Interp (L, Index, It);
while Present (It.Typ) loop
if Valid_Boolean_Arg (It.Typ)
and then Has_Compatible_Type (R, It.Typ)
then
Add_One_Interp (N, Op_Id, It.Typ);
end if;
Get_Next_Interp (Index, It);
end loop;
end if;
end Find_Boolean_Types;
---------------------------
-- Find_Comparison_Types --
---------------------------
procedure Find_Comparison_Types
(L, R : Node_Id;
Op_Id : Entity_Id;
N : Node_Id)
is
Index : Interp_Index;
It : Interp;
Found : Boolean := False;
I_F : Interp_Index;
T_F : Entity_Id;
Scop : Entity_Id := Empty;
procedure Try_One_Interp (T1 : Entity_Id);
-- Routine to try one proposed interpretation. Note that the context
-- of the operator plays no role in resolving the arguments, so that
-- if there is more than one interpretation of the operands that is
-- compatible with comparison, the operation is ambiguous.
--------------------
-- Try_One_Interp --
--------------------
procedure Try_One_Interp (T1 : Entity_Id) is
begin
-- If the operator is an expanded name, then the type of the operand
-- must be defined in the corresponding scope. If the type is
-- universal, the context will impose the correct type.
if Present (Scop)
and then not Defined_In_Scope (T1, Scop)
and then T1 /= Universal_Integer
and then T1 /= Universal_Real
and then T1 /= Any_String
and then T1 /= Any_Composite
then
return;
end if;
if Valid_Comparison_Arg (T1) and then Has_Compatible_Type (R, T1) then
if Found and then Base_Type (T1) /= Base_Type (T_F) then
It := Disambiguate (L, I_F, Index, Any_Type);
if It = No_Interp then
Ambiguous_Operands (N);
Set_Etype (L, Any_Type);
return;
else
T_F := It.Typ;
end if;
else
Found := True;
T_F := T1;
I_F := Index;
end if;
Set_Etype (L, T_F);
Find_Non_Universal_Interpretations (N, R, Op_Id, T1);
end if;
end Try_One_Interp;
-- Start of processing for Find_Comparison_Types
begin
-- If left operand is aggregate, the right operand has to
-- provide a usable type for it.
if Nkind (L) = N_Aggregate and then Nkind (R) /= N_Aggregate then
Find_Comparison_Types (L => R, R => L, Op_Id => Op_Id, N => N);
return;
end if;
if Nkind (N) = N_Function_Call
and then Nkind (Name (N)) = N_Expanded_Name
then
Scop := Entity (Prefix (Name (N)));
-- The prefix may be a package renaming, and the subsequent test
-- requires the original package.
if Ekind (Scop) = E_Package
and then Present (Renamed_Entity (Scop))
then
Scop := Renamed_Entity (Scop);
Set_Entity (Prefix (Name (N)), Scop);
end if;
end if;
if not Is_Overloaded (L) then
Try_One_Interp (Etype (L));
else
Get_First_Interp (L, Index, It);
while Present (It.Typ) loop
Try_One_Interp (It.Typ);
Get_Next_Interp (Index, It);
end loop;
end if;
end Find_Comparison_Types;
----------------------------------------
-- Find_Non_Universal_Interpretations --
----------------------------------------
procedure Find_Non_Universal_Interpretations
(N : Node_Id;
R : Node_Id;
Op_Id : Entity_Id;
T1 : Entity_Id)
is
Index : Interp_Index;
It : Interp;
begin
if T1 = Universal_Integer or else T1 = Universal_Real
-- If the left operand of an equality operator is null, the visibility
-- of the operator must be determined from the interpretation of the
-- right operand. This processing must be done for Any_Access, which
-- is the internal representation of the type of the literal null.
or else T1 = Any_Access
then
if not Is_Overloaded (R) then
Add_One_Interp (N, Op_Id, Standard_Boolean, Base_Type (Etype (R)));
else
Get_First_Interp (R, Index, It);
while Present (It.Typ) loop
if Covers (It.Typ, T1) then
Add_One_Interp
(N, Op_Id, Standard_Boolean, Base_Type (It.Typ));
end if;
Get_Next_Interp (Index, It);
end loop;
end if;
else
Add_One_Interp (N, Op_Id, Standard_Boolean, Base_Type (T1));
end if;
end Find_Non_Universal_Interpretations;
------------------------------
-- Find_Concatenation_Types --
------------------------------
procedure Find_Concatenation_Types
(L, R : Node_Id;
Op_Id : Entity_Id;
N : Node_Id)
is
Op_Type : constant Entity_Id := Etype (Op_Id);
begin
if Is_Array_Type (Op_Type)
and then not Is_Limited_Type (Op_Type)
and then (Has_Compatible_Type (L, Op_Type)
or else
Has_Compatible_Type (L, Component_Type (Op_Type)))
and then (Has_Compatible_Type (R, Op_Type)
or else
Has_Compatible_Type (R, Component_Type (Op_Type)))
then
Add_One_Interp (N, Op_Id, Op_Type);
end if;
end Find_Concatenation_Types;
-------------------------
-- Find_Equality_Types --
-------------------------
procedure Find_Equality_Types
(L, R : Node_Id;
Op_Id : Entity_Id;
N : Node_Id)
is
Index : Interp_Index;
It : Interp;
Found : Boolean := False;
I_F : Interp_Index;
T_F : Entity_Id;
Scop : Entity_Id := Empty;
procedure Try_One_Interp (T1 : Entity_Id);
-- The context of the equality operator plays no role in resolving the
-- arguments, so that if there is more than one interpretation of the
-- operands that is compatible with equality, the construct is ambiguous
-- and an error can be emitted now, after trying to disambiguate, i.e.
-- applying preference rules.
--------------------
-- Try_One_Interp --
--------------------
procedure Try_One_Interp (T1 : Entity_Id) is
Bas : constant Entity_Id := Base_Type (T1);
begin
-- If the operator is an expanded name, then the type of the operand
-- must be defined in the corresponding scope. If the type is
-- universal, the context will impose the correct type. An anonymous
-- type for a 'Access reference is also universal in this sense, as
-- the actual type is obtained from context.
-- In Ada 2005, the equality operator for anonymous access types
-- is declared in Standard, and preference rules apply to it.
if Present (Scop) then
if Defined_In_Scope (T1, Scop)
or else T1 = Universal_Integer
or else T1 = Universal_Real
or else T1 = Any_Access
or else T1 = Any_String
or else T1 = Any_Composite
or else (Ekind (T1) = E_Access_Subprogram_Type
and then not Comes_From_Source (T1))
then
null;
elsif Ekind (T1) = E_Anonymous_Access_Type
and then Scop = Standard_Standard
then
null;
else
-- The scope does not contain an operator for the type
return;
end if;
-- If we have infix notation, the operator must be usable. Within
-- an instance, if the type is already established we know it is
-- correct. If an operand is universal it is compatible with any
-- numeric type.
elsif In_Open_Scopes (Scope (Bas))
or else Is_Potentially_Use_Visible (Bas)
or else In_Use (Bas)
or else (In_Use (Scope (Bas)) and then not Is_Hidden (Bas))
-- In an instance, the type may have been immediately visible.
-- Either the types are compatible, or one operand is universal
-- (numeric or null).
or else (In_Instance
and then
(First_Subtype (T1) = First_Subtype (Etype (R))
or else Nkind (R) = N_Null
or else
(Is_Numeric_Type (T1)
and then Is_Universal_Numeric_Type (Etype (R)))))
-- In Ada 2005, the equality on anonymous access types is declared
-- in Standard, and is always visible.
or else Ekind (T1) = E_Anonymous_Access_Type
then
null;
else
-- Save candidate type for subsequent error message, if any
if not Is_Limited_Type (T1) then
Candidate_Type := T1;
end if;
return;
end if;
-- Ada 2005 (AI-230): Keep restriction imposed by Ada 83 and 95:
-- Do not allow anonymous access types in equality operators.
if Ada_Version < Ada_2005
and then Ekind (T1) = E_Anonymous_Access_Type
then
return;
end if;
-- If the right operand has a type compatible with T1, check for an
-- acceptable interpretation, unless T1 is limited (no predefined
-- equality available), or this is use of a "/=" for a tagged type.
-- In the latter case, possible interpretations of equality need
-- to be considered, we don't want the default inequality declared
-- in Standard to be chosen, and the "/=" will be rewritten as a
-- negation of "=" (see the end of Analyze_Equality_Op). This ensures
-- that rewriting happens during analysis rather than being
-- delayed until expansion (this is needed for ASIS, which only sees
-- the unexpanded tree). Note that if the node is N_Op_Ne, but Op_Id
-- is Name_Op_Eq then we still proceed with the interpretation,
-- because that indicates the potential rewriting case where the
-- interpretation to consider is actually "=" and the node may be
-- about to be rewritten by Analyze_Equality_Op.
if T1 /= Standard_Void_Type
and then Has_Compatible_Type (R, T1)
and then
((not Is_Limited_Type (T1)
and then not Is_Limited_Composite (T1))
or else
(Is_Array_Type (T1)
and then not Is_Limited_Type (Component_Type (T1))
and then Available_Full_View_Of_Component (T1)))
and then
(Nkind (N) /= N_Op_Ne
or else not Is_Tagged_Type (T1)
or else Chars (Op_Id) = Name_Op_Eq)
then
if Found
and then Base_Type (T1) /= Base_Type (T_F)
then
It := Disambiguate (L, I_F, Index, Any_Type);
if It = No_Interp then
Ambiguous_Operands (N);
Set_Etype (L, Any_Type);
return;
else
T_F := It.Typ;
end if;
else
Found := True;
T_F := T1;
I_F := Index;
end if;
if not Analyzed (L) then
Set_Etype (L, T_F);
end if;
Find_Non_Universal_Interpretations (N, R, Op_Id, T1);
-- Case of operator was not visible, Etype still set to Any_Type
if Etype (N) = Any_Type then
Found := False;
end if;
elsif Scop = Standard_Standard
and then Ekind (T1) = E_Anonymous_Access_Type
then
Found := True;
end if;
end Try_One_Interp;
-- Start of processing for Find_Equality_Types
begin
-- If left operand is aggregate, the right operand has to
-- provide a usable type for it.
if Nkind (L) = N_Aggregate
and then Nkind (R) /= N_Aggregate
then
Find_Equality_Types (L => R, R => L, Op_Id => Op_Id, N => N);
return;
end if;
if Nkind (N) = N_Function_Call
and then Nkind (Name (N)) = N_Expanded_Name
then
Scop := Entity (Prefix (Name (N)));
-- The prefix may be a package renaming, and the subsequent test
-- requires the original package.
if Ekind (Scop) = E_Package
and then Present (Renamed_Entity (Scop))
then
Scop := Renamed_Entity (Scop);
Set_Entity (Prefix (Name (N)), Scop);
end if;
end if;
if not Is_Overloaded (L) then
Try_One_Interp (Etype (L));
else
Get_First_Interp (L, Index, It);
while Present (It.Typ) loop
Try_One_Interp (It.Typ);
Get_Next_Interp (Index, It);
end loop;
end if;
end Find_Equality_Types;
-------------------------
-- Find_Negation_Types --
-------------------------
procedure Find_Negation_Types
(R : Node_Id;
Op_Id : Entity_Id;
N : Node_Id)
is
Index : Interp_Index;
It : Interp;
begin
if not Is_Overloaded (R) then
if Etype (R) = Universal_Integer then
Add_One_Interp (N, Op_Id, Any_Modular);
elsif Valid_Boolean_Arg (Etype (R)) then
Add_One_Interp (N, Op_Id, Etype (R));
end if;
else
Get_First_Interp (R, Index, It);
while Present (It.Typ) loop
if Valid_Boolean_Arg (It.Typ) then
Add_One_Interp (N, Op_Id, It.Typ);
end if;
Get_Next_Interp (Index, It);
end loop;
end if;
end Find_Negation_Types;
------------------------------
-- Find_Primitive_Operation --
------------------------------
function Find_Primitive_Operation (N : Node_Id) return Boolean is
Obj : constant Node_Id := Prefix (N);
Op : constant Node_Id := Selector_Name (N);
Prim : Elmt_Id;
Prims : Elist_Id;
Typ : Entity_Id;
begin
Set_Etype (Op, Any_Type);
if Is_Access_Type (Etype (Obj)) then
Typ := Designated_Type (Etype (Obj));
else
Typ := Etype (Obj);
end if;
if Is_Class_Wide_Type (Typ) then
Typ := Root_Type (Typ);
end if;
Prims := Primitive_Operations (Typ);
Prim := First_Elmt (Prims);
while Present (Prim) loop
if Chars (Node (Prim)) = Chars (Op) then
Add_One_Interp (Op, Node (Prim), Etype (Node (Prim)));
Set_Etype (N, Etype (Node (Prim)));
end if;
Next_Elmt (Prim);
end loop;
-- Now look for class-wide operations of the type or any of its
-- ancestors by iterating over the homonyms of the selector.
declare
Cls_Type : constant Entity_Id := Class_Wide_Type (Typ);
Hom : Entity_Id;
begin
Hom := Current_Entity (Op);
while Present (Hom) loop
if (Ekind (Hom) = E_Procedure
or else
Ekind (Hom) = E_Function)
and then Scope (Hom) = Scope (Typ)
and then Present (First_Formal (Hom))
and then
(Base_Type (Etype (First_Formal (Hom))) = Cls_Type
or else
(Is_Access_Type (Etype (First_Formal (Hom)))
and then
Ekind (Etype (First_Formal (Hom))) =
E_Anonymous_Access_Type
and then
Base_Type
(Designated_Type (Etype (First_Formal (Hom)))) =
Cls_Type))
then
Add_One_Interp (Op, Hom, Etype (Hom));
Set_Etype (N, Etype (Hom));
end if;
Hom := Homonym (Hom);
end loop;
end;
return Etype (Op) /= Any_Type;
end Find_Primitive_Operation;
----------------------
-- Find_Unary_Types --
----------------------
procedure Find_Unary_Types
(R : Node_Id;
Op_Id : Entity_Id;
N : Node_Id)
is
Index : Interp_Index;
It : Interp;
begin
if not Is_Overloaded (R) then
if Is_Numeric_Type (Etype (R)) then
-- In an instance a generic actual may be a numeric type even if
-- the formal in the generic unit was not. In that case, the
-- predefined operator was not a possible interpretation in the
-- generic, and cannot be one in the instance, unless the operator
-- is an actual of an instance.
if In_Instance
and then
not Is_Numeric_Type (Corresponding_Generic_Type (Etype (R)))
then
null;
else
Add_One_Interp (N, Op_Id, Base_Type (Etype (R)));
end if;
end if;
else
Get_First_Interp (R, Index, It);
while Present (It.Typ) loop
if Is_Numeric_Type (It.Typ) then
if In_Instance
and then
not Is_Numeric_Type
(Corresponding_Generic_Type (Etype (It.Typ)))
then
null;
else
Add_One_Interp (N, Op_Id, Base_Type (It.Typ));
end if;
end if;
Get_Next_Interp (Index, It);
end loop;
end if;
end Find_Unary_Types;
------------------
-- Junk_Operand --
------------------
function Junk_Operand (N : Node_Id) return Boolean is
Enode : Node_Id;
begin
if Error_Posted (N) then
return False;
end if;
-- Get entity to be tested
if Is_Entity_Name (N)
and then Present (Entity (N))
then
Enode := N;
-- An odd case, a procedure name gets converted to a very peculiar
-- function call, and here is where we detect this happening.
elsif Nkind (N) = N_Function_Call
and then Is_Entity_Name (Name (N))
and then Present (Entity (Name (N)))
then
Enode := Name (N);
-- Another odd case, there are at least some cases of selected
-- components where the selected component is not marked as having
-- an entity, even though the selector does have an entity
elsif Nkind (N) = N_Selected_Component
and then Present (Entity (Selector_Name (N)))
then
Enode := Selector_Name (N);
else
return False;
end if;
-- Now test the entity we got to see if it is a bad case
case Ekind (Entity (Enode)) is
when E_Package =>
Error_Msg_N
("package name cannot be used as operand", Enode);
when Generic_Unit_Kind =>
Error_Msg_N
("generic unit name cannot be used as operand", Enode);
when Type_Kind =>
Error_Msg_N
("subtype name cannot be used as operand", Enode);
when Entry_Kind =>
Error_Msg_N
("entry name cannot be used as operand", Enode);
when E_Procedure =>
Error_Msg_N
("procedure name cannot be used as operand", Enode);
when E_Exception =>
Error_Msg_N
("exception name cannot be used as operand", Enode);
when E_Block
| E_Label
| E_Loop
=>
Error_Msg_N
("label name cannot be used as operand", Enode);
when others =>
return False;
end case;
return True;
end Junk_Operand;
--------------------
-- Operator_Check --
--------------------
procedure Operator_Check (N : Node_Id) is
begin
Remove_Abstract_Operations (N);
-- Test for case of no interpretation found for operator
if Etype (N) = Any_Type then
declare
L : Node_Id;
R : Node_Id;
Op_Id : Entity_Id := Empty;
begin
R := Right_Opnd (N);
if Nkind (N) in N_Binary_Op then
L := Left_Opnd (N);
else
L := Empty;
end if;
-- If either operand has no type, then don't complain further,
-- since this simply means that we have a propagated error.
if R = Error
or else Etype (R) = Any_Type
or else (Nkind (N) in N_Binary_Op and then Etype (L) = Any_Type)
then
-- For the rather unusual case where one of the operands is
-- a Raise_Expression, whose initial type is Any_Type, use
-- the type of the other operand.
if Nkind (L) = N_Raise_Expression then
Set_Etype (L, Etype (R));
Set_Etype (N, Etype (R));
elsif Nkind (R) = N_Raise_Expression then
Set_Etype (R, Etype (L));
Set_Etype (N, Etype (L));
end if;
return;
-- We explicitly check for the case of concatenation of component
-- with component to avoid reporting spurious matching array types
-- that might happen to be lurking in distant packages (such as
-- run-time packages). This also prevents inconsistencies in the
-- messages for certain ACVC B tests, which can vary depending on
-- types declared in run-time interfaces. Another improvement when
-- aggregates are present is to look for a well-typed operand.
elsif Present (Candidate_Type)
and then (Nkind (N) /= N_Op_Concat
or else Is_Array_Type (Etype (L))
or else Is_Array_Type (Etype (R)))
then
if Nkind (N) = N_Op_Concat then
if Etype (L) /= Any_Composite
and then Is_Array_Type (Etype (L))
then
Candidate_Type := Etype (L);
elsif Etype (R) /= Any_Composite
and then Is_Array_Type (Etype (R))
then
Candidate_Type := Etype (R);
end if;
end if;
Error_Msg_NE -- CODEFIX
("operator for} is not directly visible!",
N, First_Subtype (Candidate_Type));
declare
U : constant Node_Id :=
Cunit (Get_Source_Unit (Candidate_Type));
begin
if Unit_Is_Visible (U) then
Error_Msg_N -- CODEFIX
("use clause would make operation legal!", N);
else
Error_Msg_NE -- CODEFIX
("add with_clause and use_clause for&!",
N, Defining_Entity (Unit (U)));
end if;
end;
return;
-- If either operand is a junk operand (e.g. package name), then
-- post appropriate error messages, but do not complain further.
-- Note that the use of OR in this test instead of OR ELSE is
-- quite deliberate, we may as well check both operands in the
-- binary operator case.
elsif Junk_Operand (R)
or -- really mean OR here and not OR ELSE, see above
(Nkind (N) in N_Binary_Op and then Junk_Operand (L))
then
return;
-- If we have a logical operator, one of whose operands is
-- Boolean, then we know that the other operand cannot resolve to
-- Boolean (since we got no interpretations), but in that case we
-- pretty much know that the other operand should be Boolean, so
-- resolve it that way (generating an error).
elsif Nkind_In (N, N_Op_And, N_Op_Or, N_Op_Xor) then
if Etype (L) = Standard_Boolean then
Resolve (R, Standard_Boolean);
return;
elsif Etype (R) = Standard_Boolean then
Resolve (L, Standard_Boolean);
return;
end if;
-- For an arithmetic operator or comparison operator, if one
-- of the operands is numeric, then we know the other operand
-- is not the same numeric type. If it is a non-numeric type,
-- then probably it is intended to match the other operand.
elsif Nkind_In (N, N_Op_Add,
N_Op_Divide,
N_Op_Ge,
N_Op_Gt,
N_Op_Le)
or else
Nkind_In (N, N_Op_Lt,
N_Op_Mod,
N_Op_Multiply,
N_Op_Rem,
N_Op_Subtract)
then
-- If Allow_Integer_Address is active, check whether the
-- operation becomes legal after converting an operand.
if Is_Numeric_Type (Etype (L))
and then not Is_Numeric_Type (Etype (R))
then
if Address_Integer_Convert_OK (Etype (R), Etype (L)) then
Rewrite (R,
Unchecked_Convert_To (Etype (L), Relocate_Node (R)));
if Nkind_In (N, N_Op_Ge, N_Op_Gt, N_Op_Le, N_Op_Lt) then
Analyze_Comparison_Op (N);
else
Analyze_Arithmetic_Op (N);
end if;
else
Resolve (R, Etype (L));
end if;
return;
elsif Is_Numeric_Type (Etype (R))
and then not Is_Numeric_Type (Etype (L))
then
if Address_Integer_Convert_OK (Etype (L), Etype (R)) then
Rewrite (L,
Unchecked_Convert_To (Etype (R), Relocate_Node (L)));
if Nkind_In (N, N_Op_Ge, N_Op_Gt, N_Op_Le, N_Op_Lt) then
Analyze_Comparison_Op (N);
else
Analyze_Arithmetic_Op (N);
end if;
return;
else
Resolve (L, Etype (R));
end if;
return;
elsif Allow_Integer_Address
and then Is_Descendant_Of_Address (Etype (L))
and then Is_Descendant_Of_Address (Etype (R))
and then not Error_Posted (N)
then
declare
Addr_Type : constant Entity_Id := Etype (L);
begin
Rewrite (L,
Unchecked_Convert_To (
Standard_Integer, Relocate_Node (L)));
Rewrite (R,
Unchecked_Convert_To (
Standard_Integer, Relocate_Node (R)));
if Nkind_In (N, N_Op_Ge, N_Op_Gt, N_Op_Le, N_Op_Lt) then
Analyze_Comparison_Op (N);
else
Analyze_Arithmetic_Op (N);
end if;
-- If this is an operand in an enclosing arithmetic
-- operation, Convert the result as an address so that
-- arithmetic folding of address can continue.
if Nkind (Parent (N)) in N_Op then
Rewrite (N,
Unchecked_Convert_To (Addr_Type, Relocate_Node (N)));
end if;
return;
end;
-- Under relaxed RM semantics silently replace occurrences of
-- null by System.Address_Null.
elsif Null_To_Null_Address_Convert_OK (N) then
Replace_Null_By_Null_Address (N);
if Nkind_In (N, N_Op_Ge, N_Op_Gt, N_Op_Le, N_Op_Lt) then
Analyze_Comparison_Op (N);
else
Analyze_Arithmetic_Op (N);
end if;
return;
end if;
-- Comparisons on A'Access are common enough to deserve a
-- special message.
elsif Nkind_In (N, N_Op_Eq, N_Op_Ne)
and then Ekind (Etype (L)) = E_Access_Attribute_Type
and then Ekind (Etype (R)) = E_Access_Attribute_Type
then
Error_Msg_N
("two access attributes cannot be compared directly", N);
Error_Msg_N
("\use qualified expression for one of the operands",
N);
return;
-- Another one for C programmers
elsif Nkind (N) = N_Op_Concat
and then Valid_Boolean_Arg (Etype (L))
and then Valid_Boolean_Arg (Etype (R))
then
Error_Msg_N ("invalid operands for concatenation", N);
Error_Msg_N -- CODEFIX
("\maybe AND was meant", N);
return;
-- A special case for comparison of access parameter with null
elsif Nkind (N) = N_Op_Eq
and then Is_Entity_Name (L)
and then Nkind (Parent (Entity (L))) = N_Parameter_Specification
and then Nkind (Parameter_Type (Parent (Entity (L)))) =
N_Access_Definition
and then Nkind (R) = N_Null
then
Error_Msg_N ("access parameter is not allowed to be null", L);
Error_Msg_N ("\(call would raise Constraint_Error)", L);
return;
-- Another special case for exponentiation, where the right
-- operand must be Natural, independently of the base.
elsif Nkind (N) = N_Op_Expon
and then Is_Numeric_Type (Etype (L))
and then not Is_Overloaded (R)
and then
First_Subtype (Base_Type (Etype (R))) /= Standard_Integer
and then Base_Type (Etype (R)) /= Universal_Integer
then
if Ada_Version >= Ada_2012
and then Has_Dimension_System (Etype (L))
then
Error_Msg_NE
("exponent for dimensioned type must be a rational" &
", found}", R, Etype (R));
else
Error_Msg_NE
("exponent must be of type Natural, found}", R, Etype (R));
end if;
return;
elsif Nkind_In (N, N_Op_Eq, N_Op_Ne) then
if Address_Integer_Convert_OK (Etype (R), Etype (L)) then
Rewrite (R,
Unchecked_Convert_To (Etype (L), Relocate_Node (R)));
Analyze_Equality_Op (N);
return;
-- Under relaxed RM semantics silently replace occurrences of
-- null by System.Address_Null.
elsif Null_To_Null_Address_Convert_OK (N) then
Replace_Null_By_Null_Address (N);
Analyze_Equality_Op (N);
return;
end if;
end if;
-- If we fall through then just give general message. Note that in
-- the following messages, if the operand is overloaded we choose
-- an arbitrary type to complain about, but that is probably more
-- useful than not giving a type at all.
if Nkind (N) in N_Unary_Op then
Error_Msg_Node_2 := Etype (R);
Error_Msg_N ("operator& not defined for}", N);
return;
else
if Nkind (N) in N_Binary_Op then
if not Is_Overloaded (L)
and then not Is_Overloaded (R)
and then Base_Type (Etype (L)) = Base_Type (Etype (R))
then
Error_Msg_Node_2 := First_Subtype (Etype (R));
Error_Msg_N ("there is no applicable operator& for}", N);
else
-- Another attempt to find a fix: one of the candidate
-- interpretations may not be use-visible. This has
-- already been checked for predefined operators, so
-- we examine only user-defined functions.
Op_Id := Get_Name_Entity_Id (Chars (N));
while Present (Op_Id) loop
if Ekind (Op_Id) /= E_Operator
and then Is_Overloadable (Op_Id)
then
if not Is_Immediately_Visible (Op_Id)
and then not In_Use (Scope (Op_Id))
and then not Is_Abstract_Subprogram (Op_Id)
and then not Is_Hidden (Op_Id)
and then Ekind (Scope (Op_Id)) = E_Package
and then
Has_Compatible_Type
(L, Etype (First_Formal (Op_Id)))
and then Present
(Next_Formal (First_Formal (Op_Id)))
and then
Has_Compatible_Type
(R,
Etype (Next_Formal (First_Formal (Op_Id))))
then
Error_Msg_N
("No legal interpretation for operator&", N);
Error_Msg_NE
("\use clause on& would make operation legal",
N, Scope (Op_Id));
exit;
end if;
end if;
Op_Id := Homonym (Op_Id);
end loop;
if No (Op_Id) then
Error_Msg_N ("invalid operand types for operator&", N);
if Nkind (N) /= N_Op_Concat then
Error_Msg_NE ("\left operand has}!", N, Etype (L));
Error_Msg_NE ("\right operand has}!", N, Etype (R));
-- For concatenation operators it is more difficult to
-- determine which is the wrong operand. It is worth
-- flagging explicitly an access type, for those who
-- might think that a dereference happens here.
elsif Is_Access_Type (Etype (L)) then
Error_Msg_N ("\left operand is access type", N);
elsif Is_Access_Type (Etype (R)) then
Error_Msg_N ("\right operand is access type", N);
end if;
end if;
end if;
end if;
end if;
end;
end if;
end Operator_Check;
-----------------------------------------
-- Process_Implicit_Dereference_Prefix --
-----------------------------------------
function Process_Implicit_Dereference_Prefix
(E : Entity_Id;
P : Entity_Id) return Entity_Id
is
Ref : Node_Id;
Typ : constant Entity_Id := Designated_Type (Etype (P));
begin
if Present (E)
and then (Operating_Mode = Check_Semantics or else not Expander_Active)
then
-- We create a dummy reference to E to ensure that the reference is
-- not considered as part of an assignment (an implicit dereference
-- can never assign to its prefix). The Comes_From_Source attribute
-- needs to be propagated for accurate warnings.
Ref := New_Occurrence_Of (E, Sloc (P));
Set_Comes_From_Source (Ref, Comes_From_Source (P));
Generate_Reference (E, Ref);
end if;
-- An implicit dereference is a legal occurrence of an incomplete type
-- imported through a limited_with clause, if the full view is visible.
if From_Limited_With (Typ)
and then not From_Limited_With (Scope (Typ))
and then
(Is_Immediately_Visible (Scope (Typ))
or else
(Is_Child_Unit (Scope (Typ))
and then Is_Visible_Lib_Unit (Scope (Typ))))
then
return Available_View (Typ);
else
return Typ;
end if;
end Process_Implicit_Dereference_Prefix;
--------------------------------
-- Remove_Abstract_Operations --
--------------------------------
procedure Remove_Abstract_Operations (N : Node_Id) is
Abstract_Op : Entity_Id := Empty;
Address_Descendant : Boolean := False;
I : Interp_Index;
It : Interp;
-- AI-310: If overloaded, remove abstract non-dispatching operations. We
-- activate this if either extensions are enabled, or if the abstract
-- operation in question comes from a predefined file. This latter test
-- allows us to use abstract to make operations invisible to users. In
-- particular, if type Address is non-private and abstract subprograms
-- are used to hide its operators, they will be truly hidden.
type Operand_Position is (First_Op, Second_Op);
Univ_Type : constant Entity_Id := Universal_Interpretation (N);
procedure Remove_Address_Interpretations (Op : Operand_Position);
-- Ambiguities may arise when the operands are literal and the address
-- operations in s-auxdec are visible. In that case, remove the
-- interpretation of a literal as Address, to retain the semantics
-- of Address as a private type.
------------------------------------
-- Remove_Address_Interpretations --
------------------------------------
procedure Remove_Address_Interpretations (Op : Operand_Position) is
Formal : Entity_Id;
begin
if Is_Overloaded (N) then
Get_First_Interp (N, I, It);
while Present (It.Nam) loop
Formal := First_Entity (It.Nam);
if Op = Second_Op then
Formal := Next_Entity (Formal);
end if;
if Is_Descendant_Of_Address (Etype (Formal)) then
Address_Descendant := True;
Remove_Interp (I);
end if;
Get_Next_Interp (I, It);
end loop;
end if;
end Remove_Address_Interpretations;
-- Start of processing for Remove_Abstract_Operations
begin
if Is_Overloaded (N) then
if Debug_Flag_V then
Write_Str ("Remove_Abstract_Operations: ");
Write_Overloads (N);
end if;
Get_First_Interp (N, I, It);
while Present (It.Nam) loop
if Is_Overloadable (It.Nam)
and then Is_Abstract_Subprogram (It.Nam)
and then not Is_Dispatching_Operation (It.Nam)
then
Abstract_Op := It.Nam;
if Is_Descendant_Of_Address (It.Typ) then
Address_Descendant := True;
Remove_Interp (I);
exit;
-- In Ada 2005, this operation does not participate in overload
-- resolution. If the operation is defined in a predefined
-- unit, it is one of the operations declared abstract in some
-- variants of System, and it must be removed as well.
elsif Ada_Version >= Ada_2005
or else Is_Predefined_File_Name
(Unit_File_Name (Get_Source_Unit (It.Nam)))
then
Remove_Interp (I);
exit;
end if;
end if;
Get_Next_Interp (I, It);
end loop;
if No (Abstract_Op) then
-- If some interpretation yields an integer type, it is still
-- possible that there are address interpretations. Remove them
-- if one operand is a literal, to avoid spurious ambiguities
-- on systems where Address is a visible integer type.
if Is_Overloaded (N)
and then Nkind (N) in N_Op
and then Is_Integer_Type (Etype (N))
then
if Nkind (N) in N_Binary_Op then
if Nkind (Right_Opnd (N)) = N_Integer_Literal then
Remove_Address_Interpretations (Second_Op);
elsif Nkind (Right_Opnd (N)) = N_Integer_Literal then
Remove_Address_Interpretations (First_Op);
end if;
end if;
end if;
elsif Nkind (N) in N_Op then
-- Remove interpretations that treat literals as addresses. This
-- is never appropriate, even when Address is defined as a visible
-- Integer type. The reason is that we would really prefer Address
-- to behave as a private type, even in this case. If Address is a
-- visible integer type, we get lots of overload ambiguities.
if Nkind (N) in N_Binary_Op then
declare
U1 : constant Boolean :=
Present (Universal_Interpretation (Right_Opnd (N)));
U2 : constant Boolean :=
Present (Universal_Interpretation (Left_Opnd (N)));
begin
if U1 then
Remove_Address_Interpretations (Second_Op);
end if;
if U2 then
Remove_Address_Interpretations (First_Op);
end if;
if not (U1 and U2) then
-- Remove corresponding predefined operator, which is
-- always added to the overload set.
Get_First_Interp (N, I, It);
while Present (It.Nam) loop
if Scope (It.Nam) = Standard_Standard
and then Base_Type (It.Typ) =
Base_Type (Etype (Abstract_Op))
then
Remove_Interp (I);
end if;
Get_Next_Interp (I, It);
end loop;
elsif Is_Overloaded (N)
and then Present (Univ_Type)
then
-- If both operands have a universal interpretation,
-- it is still necessary to remove interpretations that
-- yield Address. Any remaining ambiguities will be
-- removed in Disambiguate.
Get_First_Interp (N, I, It);
while Present (It.Nam) loop
if Is_Descendant_Of_Address (It.Typ) then
Remove_Interp (I);
elsif not Is_Type (It.Nam) then
Set_Entity (N, It.Nam);
end if;
Get_Next_Interp (I, It);
end loop;
end if;
end;
end if;
elsif Nkind (N) = N_Function_Call
and then
(Nkind (Name (N)) = N_Operator_Symbol
or else
(Nkind (Name (N)) = N_Expanded_Name
and then
Nkind (Selector_Name (Name (N))) = N_Operator_Symbol))
then
declare
Arg1 : constant Node_Id := First (Parameter_Associations (N));
U1 : constant Boolean :=
Present (Universal_Interpretation (Arg1));
U2 : constant Boolean :=
Present (Next (Arg1)) and then
Present (Universal_Interpretation (Next (Arg1)));
begin
if U1 then
Remove_Address_Interpretations (First_Op);
end if;
if U2 then
Remove_Address_Interpretations (Second_Op);
end if;
if not (U1 and U2) then
Get_First_Interp (N, I, It);
while Present (It.Nam) loop
if Scope (It.Nam) = Standard_Standard
and then It.Typ = Base_Type (Etype (Abstract_Op))
then
Remove_Interp (I);
end if;
Get_Next_Interp (I, It);
end loop;
end if;
end;
end if;
-- If the removal has left no valid interpretations, emit an error
-- message now and label node as illegal.
if Present (Abstract_Op) then
Get_First_Interp (N, I, It);
if No (It.Nam) then
-- Removal of abstract operation left no viable candidate
Set_Etype (N, Any_Type);
Error_Msg_Sloc := Sloc (Abstract_Op);
Error_Msg_NE
("cannot call abstract operation& declared#", N, Abstract_Op);
-- In Ada 2005, an abstract operation may disable predefined
-- operators. Since the context is not yet known, we mark the
-- predefined operators as potentially hidden. Do not include
-- predefined operators when addresses are involved since this
-- case is handled separately.
elsif Ada_Version >= Ada_2005 and then not Address_Descendant then
while Present (It.Nam) loop
if Is_Numeric_Type (It.Typ)
and then Scope (It.Typ) = Standard_Standard
then
Set_Abstract_Op (I, Abstract_Op);
end if;
Get_Next_Interp (I, It);
end loop;
end if;
end if;
if Debug_Flag_V then
Write_Str ("Remove_Abstract_Operations done: ");
Write_Overloads (N);
end if;
end if;
end Remove_Abstract_Operations;
----------------------------
-- Try_Container_Indexing --
----------------------------
function Try_Container_Indexing
(N : Node_Id;
Prefix : Node_Id;
Exprs : List_Id) return Boolean
is
Pref_Typ : constant Entity_Id := Etype (Prefix);
function Constant_Indexing_OK return Boolean;
-- Constant_Indexing is legal if there is no Variable_Indexing defined
-- for the type, or else node not a target of assignment, or an actual
-- for an IN OUT or OUT formal (RM 4.1.6 (11)).
function Find_Indexing_Operations
(T : Entity_Id;
Nam : Name_Id;
Is_Constant : Boolean) return Node_Id;
-- Return a reference to the primitive operation of type T denoted by
-- name Nam. If the operation is overloaded, the reference carries all
-- interpretations. Flag Is_Constant should be set when the context is
-- constant indexing.
--------------------------
-- Constant_Indexing_OK --
--------------------------
function Constant_Indexing_OK return Boolean is
Par : Node_Id;
begin
if No (Find_Value_Of_Aspect (Pref_Typ, Aspect_Variable_Indexing)) then
return True;
elsif not Is_Variable (Prefix) then
return True;
end if;
Par := N;
while Present (Par) loop
if Nkind (Parent (Par)) = N_Assignment_Statement
and then Par = Name (Parent (Par))
then
return False;
-- The call may be overloaded, in which case we assume that its
-- resolution does not depend on the type of the parameter that
-- includes the indexing operation.
elsif Nkind_In (Parent (Par), N_Function_Call,
N_Procedure_Call_Statement)
and then Is_Entity_Name (Name (Parent (Par)))
then
declare
Actual : Node_Id;
Formal : Entity_Id;
Proc : Entity_Id;
begin
-- We should look for an interpretation with the proper
-- number of formals, and determine whether it is an
-- In_Parameter, but for now we examine the formal that
-- corresponds to the indexing, and assume that variable
-- indexing is required if some interpretation has an
-- assignable formal at that position. Still does not
-- cover the most complex cases ???
if Is_Overloaded (Name (Parent (Par))) then
declare
Proc : constant Node_Id := Name (Parent (Par));
A : Node_Id;
F : Entity_Id;
I : Interp_Index;
It : Interp;
begin
Get_First_Interp (Proc, I, It);
while Present (It.Nam) loop
F := First_Formal (It.Nam);
A := First (Parameter_Associations (Parent (Par)));
while Present (F) and then Present (A) loop
if A = Par then
if Ekind (F) /= E_In_Parameter then
return False;
else
exit; -- interpretation is safe
end if;
end if;
Next_Formal (F);
Next_Actual (A);
end loop;
Get_Next_Interp (I, It);
end loop;
end;
return True;
else
Proc := Entity (Name (Parent (Par)));
-- If this is an indirect call, get formals from
-- designated type.
if Is_Access_Subprogram_Type (Etype (Proc)) then
Proc := Designated_Type (Etype (Proc));
end if;
end if;
Formal := First_Formal (Proc);
Actual := First_Actual (Parent (Par));
-- Find corresponding actual
while Present (Actual) loop
exit when Actual = Par;
Next_Actual (Actual);
if Present (Formal) then
Next_Formal (Formal);
-- Otherwise this is a parameter mismatch, the error is
-- reported elsewhere.
else
return False;
end if;
end loop;
return Ekind (Formal) = E_In_Parameter;
end;
elsif Nkind (Parent (Par)) = N_Object_Renaming_Declaration then
return False;
-- If the indexed component is a prefix it may be the first actual
-- of a prefixed call. Retrieve the called entity, if any, and
-- check its first formal. Determine if the context is a procedure
-- or function call.
elsif Nkind (Parent (Par)) = N_Selected_Component then
declare
Sel : constant Node_Id := Selector_Name (Parent (Par));
Nam : constant Entity_Id := Current_Entity (Sel);
begin
if Present (Nam) and then Is_Overloadable (Nam) then
if Nkind (Parent (Parent (Par))) =
N_Procedure_Call_Statement
then
return False;
elsif Ekind (Nam) = E_Function
and then Present (First_Formal (Nam))
then
return Ekind (First_Formal (Nam)) = E_In_Parameter;
end if;
end if;
end;
elsif Nkind (Par) in N_Op then
return True;
end if;
Par := Parent (Par);
end loop;
-- In all other cases, constant indexing is legal
return True;
end Constant_Indexing_OK;
------------------------------
-- Find_Indexing_Operations --
------------------------------
function Find_Indexing_Operations
(T : Entity_Id;
Nam : Name_Id;
Is_Constant : Boolean) return Node_Id
is
procedure Inspect_Declarations
(Typ : Entity_Id;
Ref : in out Node_Id);
-- Traverse the declarative list where type Typ resides and collect
-- all suitable interpretations in node Ref.
procedure Inspect_Primitives
(Typ : Entity_Id;
Ref : in out Node_Id);
-- Traverse the list of primitive operations of type Typ and collect
-- all suitable interpretations in node Ref.
function Is_OK_Candidate
(Subp_Id : Entity_Id;
Typ : Entity_Id) return Boolean;
-- Determine whether subprogram Subp_Id is a suitable indexing
-- operation for type Typ. To qualify as such, the subprogram must
-- be a function, have at least two parameters, and the type of the
-- first parameter must be either Typ, or Typ'Class, or access [to
-- constant] with designated type Typ or Typ'Class.
procedure Record_Interp (Subp_Id : Entity_Id; Ref : in out Node_Id);
-- Store subprogram Subp_Id as an interpretation in node Ref
--------------------------
-- Inspect_Declarations --
--------------------------
procedure Inspect_Declarations
(Typ : Entity_Id;
Ref : in out Node_Id)
is
Typ_Decl : constant Node_Id := Declaration_Node (Typ);
Decl : Node_Id;
Subp_Id : Entity_Id;
begin
-- Ensure that the routine is not called with itypes, which lack a
-- declarative node.
pragma Assert (Present (Typ_Decl));
pragma Assert (Is_List_Member (Typ_Decl));
Decl := First (List_Containing (Typ_Decl));
while Present (Decl) loop
if Nkind (Decl) = N_Subprogram_Declaration then
Subp_Id := Defining_Entity (Decl);
if Is_OK_Candidate (Subp_Id, Typ) then
Record_Interp (Subp_Id, Ref);
end if;
end if;
Next (Decl);
end loop;
end Inspect_Declarations;
------------------------
-- Inspect_Primitives --
------------------------
procedure Inspect_Primitives
(Typ : Entity_Id;
Ref : in out Node_Id)
is
Prim_Elmt : Elmt_Id;
Prim_Id : Entity_Id;
begin
Prim_Elmt := First_Elmt (Primitive_Operations (Typ));
while Present (Prim_Elmt) loop
Prim_Id := Node (Prim_Elmt);
if Is_OK_Candidate (Prim_Id, Typ) then
Record_Interp (Prim_Id, Ref);
end if;
Next_Elmt (Prim_Elmt);
end loop;
end Inspect_Primitives;
---------------------
-- Is_OK_Candidate --
---------------------
function Is_OK_Candidate
(Subp_Id : Entity_Id;
Typ : Entity_Id) return Boolean
is
Formal : Entity_Id;
Formal_Typ : Entity_Id;
Param_Typ : Node_Id;
begin
-- To classify as a suitable candidate, the subprogram must be a
-- function whose name matches the argument of aspect Constant or
-- Variable_Indexing.
if Ekind (Subp_Id) = E_Function and then Chars (Subp_Id) = Nam then
Formal := First_Formal (Subp_Id);
-- The candidate requires at least two parameters
if Present (Formal) and then Present (Next_Formal (Formal)) then
Formal_Typ := Empty;
Param_Typ := Parameter_Type (Parent (Formal));
-- Use the designated type when the first parameter is of an
-- access type.
if Nkind (Param_Typ) = N_Access_Definition
and then Present (Subtype_Mark (Param_Typ))
then
-- When the context is a constant indexing, the access
-- definition must be access-to-constant. This does not
-- apply to variable indexing.
if not Is_Constant
or else Constant_Present (Param_Typ)
then
Formal_Typ := Etype (Subtype_Mark (Param_Typ));
end if;
-- Otherwise use the parameter type
else
Formal_Typ := Etype (Param_Typ);
end if;
if Present (Formal_Typ) then
-- Use the specific type when the parameter type is
-- class-wide.
if Is_Class_Wide_Type (Formal_Typ) then
Formal_Typ := Etype (Base_Type (Formal_Typ));
end if;
-- Use the full view when the parameter type is private
-- or incomplete.
if Is_Incomplete_Or_Private_Type (Formal_Typ)
and then Present (Full_View (Formal_Typ))
then
Formal_Typ := Full_View (Formal_Typ);
end if;
-- The type of the first parameter must denote the type
-- of the container or acts as its ancestor type.
return
Formal_Typ = Typ
or else Is_Ancestor (Formal_Typ, Typ);
end if;
end if;
end if;
return False;
end Is_OK_Candidate;
-------------------
-- Record_Interp --
-------------------
procedure Record_Interp (Subp_Id : Entity_Id; Ref : in out Node_Id) is
begin
if Present (Ref) then
Add_One_Interp (Ref, Subp_Id, Etype (Subp_Id));
-- Otherwise this is the first interpretation. Create a reference
-- where all remaining interpretations will be collected.
else
Ref := New_Occurrence_Of (Subp_Id, Sloc (T));
end if;
end Record_Interp;
-- Local variables
Ref : Node_Id;
Typ : Entity_Id;
-- Start of processing for Find_Indexing_Operations
begin
Typ := T;
-- Use the specific type when the parameter type is class-wide
if Is_Class_Wide_Type (Typ) then
Typ := Root_Type (Typ);
end if;
Ref := Empty;
Typ := Underlying_Type (Base_Type (Typ));
Inspect_Primitives (Typ, Ref);
-- Now look for explicit declarations of an indexing operation.
-- If the type is private the operation may be declared in the
-- visible part that contains the partial view.
if Is_Private_Type (T) then
Inspect_Declarations (T, Ref);
end if;
Inspect_Declarations (Typ, Ref);
return Ref;
end Find_Indexing_Operations;
-- Local variables
Loc : constant Source_Ptr := Sloc (N);
Assoc : List_Id;
C_Type : Entity_Id;
Func : Entity_Id;
Func_Name : Node_Id;
Indexing : Node_Id;
Is_Constant_Indexing : Boolean := False;
-- This flag reflects the nature of the container indexing. Note that
-- the context may be suited for constant indexing, but the type may
-- lack a Constant_Indexing annotation.
-- Start of processing for Try_Container_Indexing
begin
-- Node may have been analyzed already when testing for a prefixed
-- call, in which case do not redo analysis.
if Present (Generalized_Indexing (N)) then
return True;
end if;
C_Type := Pref_Typ;
-- If indexing a class-wide container, obtain indexing primitive from
-- specific type.
if Is_Class_Wide_Type (C_Type) then
C_Type := Etype (Base_Type (C_Type));
end if;
-- Check whether the type has a specified indexing aspect
Func_Name := Empty;
-- The context is suitable for constant indexing, so obtain the name of
-- the indexing function from aspect Constant_Indexing.
if Constant_Indexing_OK then
Func_Name :=
Find_Value_Of_Aspect (Pref_Typ, Aspect_Constant_Indexing);
end if;
if Present (Func_Name) then
Is_Constant_Indexing := True;
-- Otherwise attempt variable indexing
else
Func_Name :=
Find_Value_Of_Aspect (Pref_Typ, Aspect_Variable_Indexing);
end if;
-- The type is not subject to either form of indexing, therefore the
-- indexed component does not denote container indexing. If this is a
-- true error, it is diagnosed by the caller.
if No (Func_Name) then
-- The prefix itself may be an indexing of a container. Rewrite it
-- as such and retry.
if Has_Implicit_Dereference (Pref_Typ) then
Build_Explicit_Dereference (Prefix, First_Discriminant (Pref_Typ));
return Try_Container_Indexing (N, Prefix, Exprs);
-- Otherwise this is definitely not container indexing
else
return False;
end if;
-- If the container type is derived from another container type, the
-- value of the inherited aspect is the Reference operation declared
-- for the parent type.
-- However, Reference is also a primitive operation of the type, and the
-- inherited operation has a different signature. We retrieve the right
-- ones (the function may be overloaded) from the list of primitive
-- operations of the derived type.
-- Note that predefined containers are typically all derived from one of
-- the Controlled types. The code below is motivated by containers that
-- are derived from other types with a Reference aspect.
elsif Is_Derived_Type (C_Type)
and then Etype (First_Formal (Entity (Func_Name))) /= Pref_Typ
then
Func_Name :=
Find_Indexing_Operations
(T => C_Type,
Nam => Chars (Func_Name),
Is_Constant => Is_Constant_Indexing);
end if;
Assoc := New_List (Relocate_Node (Prefix));
-- A generalized indexing may have nore than one index expression, so
-- transfer all of them to the argument list to be used in the call.
-- Note that there may be named associations, in which case the node
-- was rewritten earlier as a call, and has been transformed back into
-- an indexed expression to share the following processing.
-- The generalized indexing node is the one on which analysis and
-- resolution take place. Before expansion the original node is replaced
-- with the generalized indexing node, which is a call, possibly with a
-- dereference operation.
if Comes_From_Source (N) then
Check_Compiler_Unit ("generalized indexing", N);
end if;
-- Create argument list for function call that represents generalized
-- indexing. Note that indices (i.e. actuals) may themselves be
-- overloaded.
declare
Arg : Node_Id;
New_Arg : Node_Id;
begin
Arg := First (Exprs);
while Present (Arg) loop
New_Arg := Relocate_Node (Arg);
-- The arguments can be parameter associations, in which case the
-- explicit actual parameter carries the overloadings.
if Nkind (New_Arg) /= N_Parameter_Association then
Save_Interps (Arg, New_Arg);
end if;
Append (New_Arg, Assoc);
Next (Arg);
end loop;
end;
if not Is_Overloaded (Func_Name) then
Func := Entity (Func_Name);
Indexing :=
Make_Function_Call (Loc,
Name => New_Occurrence_Of (Func, Loc),
Parameter_Associations => Assoc);
Set_Parent (Indexing, Parent (N));
Set_Generalized_Indexing (N, Indexing);
Analyze (Indexing);
Set_Etype (N, Etype (Indexing));
-- If the return type of the indexing function is a reference type,
-- add the dereference as a possible interpretation. Note that the
-- indexing aspect may be a function that returns the element type
-- with no intervening implicit dereference, and that the reference
-- discriminant is not the first discriminant.
if Has_Discriminants (Etype (Func)) then
Check_Implicit_Dereference (N, Etype (Func));
end if;
else
-- If there are multiple indexing functions, build a function call
-- and analyze it for each of the possible interpretations.
Indexing :=
Make_Function_Call (Loc,
Name =>
Make_Identifier (Loc, Chars (Func_Name)),
Parameter_Associations => Assoc);
Set_Parent (Indexing, Parent (N));
Set_Generalized_Indexing (N, Indexing);
Set_Etype (N, Any_Type);
Set_Etype (Name (Indexing), Any_Type);
declare
I : Interp_Index;
It : Interp;
Success : Boolean;
begin
Get_First_Interp (Func_Name, I, It);
Set_Etype (Indexing, Any_Type);
-- Analyze each candidate function with the given actuals
while Present (It.Nam) loop
Analyze_One_Call (Indexing, It.Nam, False, Success);
Get_Next_Interp (I, It);
end loop;
-- If there are several successful candidates, resolution will
-- be by result. Mark the interpretations of the function name
-- itself.
if Is_Overloaded (Indexing) then
Get_First_Interp (Indexing, I, It);
while Present (It.Nam) loop
Add_One_Interp (Name (Indexing), It.Nam, It.Typ);
Get_Next_Interp (I, It);
end loop;
else
Set_Etype (Name (Indexing), Etype (Indexing));
end if;
-- Now add the candidate interpretations to the indexing node
-- itself, to be replaced later by the function call.
if Is_Overloaded (Name (Indexing)) then
Get_First_Interp (Name (Indexing), I, It);
while Present (It.Nam) loop
Add_One_Interp (N, It.Nam, It.Typ);
-- Add dereference interpretation if the result type has
-- implicit reference discriminants.
if Has_Discriminants (Etype (It.Nam)) then
Check_Implicit_Dereference (N, Etype (It.Nam));
end if;
Get_Next_Interp (I, It);
end loop;
else
Set_Etype (N, Etype (Name (Indexing)));
if Has_Discriminants (Etype (N)) then
Check_Implicit_Dereference (N, Etype (N));
end if;
end if;
end;
end if;
if Etype (Indexing) = Any_Type then
Error_Msg_NE
("container cannot be indexed with&", N, Etype (First (Exprs)));
Rewrite (N, New_Occurrence_Of (Any_Id, Loc));
end if;
return True;
end Try_Container_Indexing;
-----------------------
-- Try_Indirect_Call --
-----------------------
function Try_Indirect_Call
(N : Node_Id;
Nam : Entity_Id;
Typ : Entity_Id) return Boolean
is
Actual : Node_Id;
Formal : Entity_Id;
Call_OK : Boolean;
pragma Warnings (Off, Call_OK);
begin
Normalize_Actuals (N, Designated_Type (Typ), False, Call_OK);
Actual := First_Actual (N);
Formal := First_Formal (Designated_Type (Typ));
while Present (Actual) and then Present (Formal) loop
if not Has_Compatible_Type (Actual, Etype (Formal)) then
return False;
end if;
Next (Actual);
Next_Formal (Formal);
end loop;
if No (Actual) and then No (Formal) then
Add_One_Interp (N, Nam, Etype (Designated_Type (Typ)));
-- Nam is a candidate interpretation for the name in the call,
-- if it is not an indirect call.
if not Is_Type (Nam)
and then Is_Entity_Name (Name (N))
then
Set_Entity (Name (N), Nam);
end if;
return True;
else
return False;
end if;
end Try_Indirect_Call;
----------------------
-- Try_Indexed_Call --
----------------------
function Try_Indexed_Call
(N : Node_Id;
Nam : Entity_Id;
Typ : Entity_Id;
Skip_First : Boolean) return Boolean
is
Loc : constant Source_Ptr := Sloc (N);
Actuals : constant List_Id := Parameter_Associations (N);
Actual : Node_Id;
Index : Entity_Id;
begin
Actual := First (Actuals);
-- If the call was originally written in prefix form, skip the first
-- actual, which is obviously not defaulted.
if Skip_First then
Next (Actual);
end if;
Index := First_Index (Typ);
while Present (Actual) and then Present (Index) loop
-- If the parameter list has a named association, the expression
-- is definitely a call and not an indexed component.
if Nkind (Actual) = N_Parameter_Association then
return False;
end if;
if Is_Entity_Name (Actual)
and then Is_Type (Entity (Actual))
and then No (Next (Actual))
then
-- A single actual that is a type name indicates a slice if the
-- type is discrete, and an error otherwise.
if Is_Discrete_Type (Entity (Actual)) then
Rewrite (N,
Make_Slice (Loc,
Prefix =>
Make_Function_Call (Loc,
Name => Relocate_Node (Name (N))),
Discrete_Range =>
New_Occurrence_Of (Entity (Actual), Sloc (Actual))));
Analyze (N);
else
Error_Msg_N ("invalid use of type in expression", Actual);
Set_Etype (N, Any_Type);
end if;
return True;
elsif not Has_Compatible_Type (Actual, Etype (Index)) then
return False;
end if;
Next (Actual);
Next_Index (Index);
end loop;
if No (Actual) and then No (Index) then
Add_One_Interp (N, Nam, Component_Type (Typ));
-- Nam is a candidate interpretation for the name in the call,
-- if it is not an indirect call.
if not Is_Type (Nam)
and then Is_Entity_Name (Name (N))
then
Set_Entity (Name (N), Nam);
end if;
return True;
else
return False;
end if;
end Try_Indexed_Call;
--------------------------
-- Try_Object_Operation --
--------------------------
function Try_Object_Operation
(N : Node_Id; CW_Test_Only : Boolean := False) return Boolean
is
K : constant Node_Kind := Nkind (Parent (N));
Is_Subprg_Call : constant Boolean := K in N_Subprogram_Call;
Loc : constant Source_Ptr := Sloc (N);
Obj : constant Node_Id := Prefix (N);
Subprog : constant Node_Id :=
Make_Identifier (Sloc (Selector_Name (N)),
Chars => Chars (Selector_Name (N)));
-- Identifier on which possible interpretations will be collected
Report_Error : Boolean := False;
-- If no candidate interpretation matches the context, redo analysis
-- with Report_Error True to provide additional information.
Actual : Node_Id;
Candidate : Entity_Id := Empty;
New_Call_Node : Node_Id := Empty;
Node_To_Replace : Node_Id;
Obj_Type : Entity_Id := Etype (Obj);
Success : Boolean := False;
function Valid_Candidate
(Success : Boolean;
Call : Node_Id;
Subp : Entity_Id) return Entity_Id;
-- If the subprogram is a valid interpretation, record it, and add
-- to the list of interpretations of Subprog. Otherwise return Empty.
procedure Complete_Object_Operation
(Call_Node : Node_Id;
Node_To_Replace : Node_Id);
-- Make Subprog the name of Call_Node, replace Node_To_Replace with
-- Call_Node, insert the object (or its dereference) as the first actual
-- in the call, and complete the analysis of the call.
procedure Report_Ambiguity (Op : Entity_Id);
-- If a prefixed procedure call is ambiguous, indicate whether the
-- call includes an implicit dereference or an implicit 'Access.
procedure Transform_Object_Operation
(Call_Node : out Node_Id;
Node_To_Replace : out Node_Id);
-- Transform Obj.Operation (X, Y,,) into Operation (Obj, X, Y ..)
-- Call_Node is the resulting subprogram call, Node_To_Replace is
-- either N or the parent of N, and Subprog is a reference to the
-- subprogram we are trying to match.
function Try_Class_Wide_Operation
(Call_Node : Node_Id;
Node_To_Replace : Node_Id) return Boolean;
-- Traverse all ancestor types looking for a class-wide subprogram
-- for which the current operation is a valid non-dispatching call.
procedure Try_One_Prefix_Interpretation (T : Entity_Id);
-- If prefix is overloaded, its interpretation may include different
-- tagged types, and we must examine the primitive operations and
-- the class-wide operations of each in order to find candidate
-- interpretations for the call as a whole.
function Try_Primitive_Operation
(Call_Node : Node_Id;
Node_To_Replace : Node_Id) return Boolean;
-- Traverse the list of primitive subprograms looking for a dispatching
-- operation for which the current node is a valid call .
---------------------
-- Valid_Candidate --
---------------------
function Valid_Candidate
(Success : Boolean;
Call : Node_Id;
Subp : Entity_Id) return Entity_Id
is
Arr_Type : Entity_Id;
Comp_Type : Entity_Id;
begin
-- If the subprogram is a valid interpretation, record it in global
-- variable Subprog, to collect all possible overloadings.
if Success then
if Subp /= Entity (Subprog) then
Add_One_Interp (Subprog, Subp, Etype (Subp));
end if;
end if;
-- If the call may be an indexed call, retrieve component type of
-- resulting expression, and add possible interpretation.
Arr_Type := Empty;
Comp_Type := Empty;
if Nkind (Call) = N_Function_Call
and then Nkind (Parent (N)) = N_Indexed_Component
and then Needs_One_Actual (Subp)
then
if Is_Array_Type (Etype (Subp)) then
Arr_Type := Etype (Subp);
elsif Is_Access_Type (Etype (Subp))
and then Is_Array_Type (Designated_Type (Etype (Subp)))
then
Arr_Type := Designated_Type (Etype (Subp));
end if;
end if;
if Present (Arr_Type) then
-- Verify that the actuals (excluding the object) match the types
-- of the indexes.
declare
Actual : Node_Id;
Index : Node_Id;
begin
Actual := Next (First_Actual (Call));
Index := First_Index (Arr_Type);
while Present (Actual) and then Present (Index) loop
if not Has_Compatible_Type (Actual, Etype (Index)) then
Arr_Type := Empty;
exit;
end if;
Next_Actual (Actual);
Next_Index (Index);
end loop;
if No (Actual)
and then No (Index)
and then Present (Arr_Type)
then
Comp_Type := Component_Type (Arr_Type);
end if;
end;
if Present (Comp_Type)
and then Etype (Subprog) /= Comp_Type
then
Add_One_Interp (Subprog, Subp, Comp_Type);
end if;
end if;
if Etype (Call) /= Any_Type then
return Subp;
else
return Empty;
end if;
end Valid_Candidate;
-------------------------------
-- Complete_Object_Operation --
-------------------------------
procedure Complete_Object_Operation
(Call_Node : Node_Id;
Node_To_Replace : Node_Id)
is
Control : constant Entity_Id := First_Formal (Entity (Subprog));
Formal_Type : constant Entity_Id := Etype (Control);
First_Actual : Node_Id;
begin
-- Place the name of the operation, with its interpretations,
-- on the rewritten call.
Set_Name (Call_Node, Subprog);
First_Actual := First (Parameter_Associations (Call_Node));
-- For cross-reference purposes, treat the new node as being in the
-- source if the original one is. Set entity and type, even though
-- they may be overwritten during resolution if overloaded.
Set_Comes_From_Source (Subprog, Comes_From_Source (N));
Set_Comes_From_Source (Call_Node, Comes_From_Source (N));
if Nkind (N) = N_Selected_Component
and then not Inside_A_Generic
then
Set_Entity (Selector_Name (N), Entity (Subprog));
Set_Etype (Selector_Name (N), Etype (Entity (Subprog)));
end if;
-- If need be, rewrite first actual as an explicit dereference. If
-- the call is overloaded, the rewriting can only be done once the
-- primitive operation is identified.
if Is_Overloaded (Subprog) then
-- The prefix itself may be overloaded, and its interpretations
-- must be propagated to the new actual in the call.
if Is_Overloaded (Obj) then
Save_Interps (Obj, First_Actual);
end if;
Rewrite (First_Actual, Obj);
elsif not Is_Access_Type (Formal_Type)
and then Is_Access_Type (Etype (Obj))
then
Rewrite (First_Actual,
Make_Explicit_Dereference (Sloc (Obj), Obj));
Analyze (First_Actual);
-- If we need to introduce an explicit dereference, verify that
-- the resulting actual is compatible with the mode of the formal.
if Ekind (First_Formal (Entity (Subprog))) /= E_In_Parameter
and then Is_Access_Constant (Etype (Obj))
then
Error_Msg_NE
("expect variable in call to&", Prefix (N), Entity (Subprog));
end if;
-- Conversely, if the formal is an access parameter and the object
-- is not, replace the actual with a 'Access reference. Its analysis
-- will check that the object is aliased.
elsif Is_Access_Type (Formal_Type)
and then not Is_Access_Type (Etype (Obj))
then
-- A special case: A.all'access is illegal if A is an access to a
-- constant and the context requires an access to a variable.
if not Is_Access_Constant (Formal_Type) then
if (Nkind (Obj) = N_Explicit_Dereference
and then Is_Access_Constant (Etype (Prefix (Obj))))
or else not Is_Variable (Obj)
then
Error_Msg_NE
("actual for & must be a variable", Obj, Control);
end if;
end if;
Rewrite (First_Actual,
Make_Attribute_Reference (Loc,
Attribute_Name => Name_Access,
Prefix => Relocate_Node (Obj)));
if not Is_Aliased_View (Obj) then
Error_Msg_NE
("object in prefixed call to & must be aliased "
& "(RM 4.1.3 (13 1/2))", Prefix (First_Actual), Subprog);
end if;
Analyze (First_Actual);
else
if Is_Overloaded (Obj) then
Save_Interps (Obj, First_Actual);
end if;
Rewrite (First_Actual, Obj);
end if;
-- The operation is obtained from the dispatch table and not by
-- visibility, and may be declared in a unit that is not explicitly
-- referenced in the source, but is nevertheless required in the
-- context of the current unit. Indicate that operation and its scope
-- are referenced, to prevent spurious and misleading warnings. If
-- the operation is overloaded, all primitives are in the same scope
-- and we can use any of them.
Set_Referenced (Entity (Subprog), True);
Set_Referenced (Scope (Entity (Subprog)), True);
Rewrite (Node_To_Replace, Call_Node);
-- Propagate the interpretations collected in subprog to the new
-- function call node, to be resolved from context.
if Is_Overloaded (Subprog) then
Save_Interps (Subprog, Node_To_Replace);
else
-- The type of the subprogram may be a limited view obtained
-- transitively from another unit. If full view is available,
-- use it to analyze call.
declare
T : constant Entity_Id := Etype (Subprog);
begin
if From_Limited_With (T) then
Set_Etype (Entity (Subprog), Available_View (T));
end if;
end;
Analyze (Node_To_Replace);
-- If the operation has been rewritten into a call, which may get
-- subsequently an explicit dereference, preserve the type on the
-- original node (selected component or indexed component) for
-- subsequent legality tests, e.g. Is_Variable. which examines
-- the original node.
if Nkind (Node_To_Replace) = N_Function_Call then
Set_Etype
(Original_Node (Node_To_Replace), Etype (Node_To_Replace));
end if;
end if;
end Complete_Object_Operation;
----------------------
-- Report_Ambiguity --
----------------------
procedure Report_Ambiguity (Op : Entity_Id) is
Access_Actual : constant Boolean :=
Is_Access_Type (Etype (Prefix (N)));
Access_Formal : Boolean := False;
begin
Error_Msg_Sloc := Sloc (Op);
if Present (First_Formal (Op)) then
Access_Formal := Is_Access_Type (Etype (First_Formal (Op)));
end if;
if Access_Formal and then not Access_Actual then
if Nkind (Parent (Op)) = N_Full_Type_Declaration then
Error_Msg_N
("\possible interpretation "
& "(inherited, with implicit 'Access) #", N);
else
Error_Msg_N
("\possible interpretation (with implicit 'Access) #", N);
end if;
elsif not Access_Formal and then Access_Actual then
if Nkind (Parent (Op)) = N_Full_Type_Declaration then
Error_Msg_N
("\possible interpretation "
& "(inherited, with implicit dereference) #", N);
else
Error_Msg_N
("\possible interpretation (with implicit dereference) #", N);
end if;
else
if Nkind (Parent (Op)) = N_Full_Type_Declaration then
Error_Msg_N ("\possible interpretation (inherited)#", N);
else
Error_Msg_N -- CODEFIX
("\possible interpretation#", N);
end if;
end if;
end Report_Ambiguity;
--------------------------------
-- Transform_Object_Operation --
--------------------------------
procedure Transform_Object_Operation
(Call_Node : out Node_Id;
Node_To_Replace : out Node_Id)
is
Dummy : constant Node_Id := New_Copy (Obj);
-- Placeholder used as a first parameter in the call, replaced
-- eventually by the proper object.
Parent_Node : constant Node_Id := Parent (N);
Actual : Node_Id;
Actuals : List_Id;
begin
-- Common case covering 1) Call to a procedure and 2) Call to a
-- function that has some additional actuals.
if Nkind (Parent_Node) in N_Subprogram_Call
-- N is a selected component node containing the name of the
-- subprogram. If N is not the name of the parent node we must
-- not replace the parent node by the new construct. This case
-- occurs when N is a parameterless call to a subprogram that
-- is an actual parameter of a call to another subprogram. For
-- example:
-- Some_Subprogram (..., Obj.Operation, ...)
and then Name (Parent_Node) = N
then
Node_To_Replace := Parent_Node;
Actuals := Parameter_Associations (Parent_Node);
if Present (Actuals) then
Prepend (Dummy, Actuals);
else
Actuals := New_List (Dummy);
end if;
if Nkind (Parent_Node) = N_Procedure_Call_Statement then
Call_Node :=
Make_Procedure_Call_Statement (Loc,
Name => New_Copy (Subprog),
Parameter_Associations => Actuals);
else
Call_Node :=
Make_Function_Call (Loc,
Name => New_Copy (Subprog),
Parameter_Associations => Actuals);
end if;
-- Before analysis, a function call appears as an indexed component
-- if there are no named associations.
elsif Nkind (Parent_Node) = N_Indexed_Component
and then N = Prefix (Parent_Node)
then
Node_To_Replace := Parent_Node;
Actuals := Expressions (Parent_Node);
Actual := First (Actuals);
while Present (Actual) loop
Analyze (Actual);
Next (Actual);
end loop;
Prepend (Dummy, Actuals);
Call_Node :=
Make_Function_Call (Loc,
Name => New_Copy (Subprog),
Parameter_Associations => Actuals);
-- Parameterless call: Obj.F is rewritten as F (Obj)
else
Node_To_Replace := N;
Call_Node :=
Make_Function_Call (Loc,
Name => New_Copy (Subprog),
Parameter_Associations => New_List (Dummy));
end if;
end Transform_Object_Operation;
------------------------------
-- Try_Class_Wide_Operation --
------------------------------
function Try_Class_Wide_Operation
(Call_Node : Node_Id;
Node_To_Replace : Node_Id) return Boolean
is
Anc_Type : Entity_Id;
Matching_Op : Entity_Id := Empty;
Error : Boolean;
procedure Traverse_Homonyms
(Anc_Type : Entity_Id;
Error : out Boolean);
-- Traverse the homonym chain of the subprogram searching for those
-- homonyms whose first formal has the Anc_Type's class-wide type,
-- or an anonymous access type designating the class-wide type. If
-- an ambiguity is detected, then Error is set to True.
procedure Traverse_Interfaces
(Anc_Type : Entity_Id;
Error : out Boolean);
-- Traverse the list of interfaces, if any, associated with Anc_Type
-- and search for acceptable class-wide homonyms associated with each
-- interface. If an ambiguity is detected, then Error is set to True.
-----------------------
-- Traverse_Homonyms --
-----------------------
procedure Traverse_Homonyms
(Anc_Type : Entity_Id;
Error : out Boolean)
is
Cls_Type : Entity_Id;
Hom : Entity_Id;
Hom_Ref : Node_Id;
Success : Boolean;
begin
Error := False;
Cls_Type := Class_Wide_Type (Anc_Type);
Hom := Current_Entity (Subprog);
-- Find a non-hidden operation whose first parameter is of the
-- class-wide type, a subtype thereof, or an anonymous access
-- to same. If in an instance, the operation can be considered
-- even if hidden (it may be hidden because the instantiation
-- is expanded after the containing package has been analyzed).
while Present (Hom) loop
if Ekind_In (Hom, E_Procedure, E_Function)
and then (not Is_Hidden (Hom) or else In_Instance)
and then Scope (Hom) = Scope (Anc_Type)
and then Present (First_Formal (Hom))
and then
(Base_Type (Etype (First_Formal (Hom))) = Cls_Type
or else
(Is_Access_Type (Etype (First_Formal (Hom)))
and then
Ekind (Etype (First_Formal (Hom))) =
E_Anonymous_Access_Type
and then
Base_Type
(Designated_Type (Etype (First_Formal (Hom)))) =
Cls_Type))
then
-- If the context is a procedure call, ignore functions
-- in the name of the call.
if Ekind (Hom) = E_Function
and then Nkind (Parent (N)) = N_Procedure_Call_Statement
and then N = Name (Parent (N))
then
goto Next_Hom;
-- If the context is a function call, ignore procedures
-- in the name of the call.
elsif Ekind (Hom) = E_Procedure
and then Nkind (Parent (N)) /= N_Procedure_Call_Statement
then
goto Next_Hom;
end if;
Set_Etype (Call_Node, Any_Type);
Set_Is_Overloaded (Call_Node, False);
Success := False;
if No (Matching_Op) then
Hom_Ref := New_Occurrence_Of (Hom, Sloc (Subprog));
Set_Etype (Call_Node, Any_Type);
Set_Parent (Call_Node, Parent (Node_To_Replace));
Set_Name (Call_Node, Hom_Ref);
Analyze_One_Call
(N => Call_Node,
Nam => Hom,
Report => Report_Error,
Success => Success,
Skip_First => True);
Matching_Op :=
Valid_Candidate (Success, Call_Node, Hom);
else
Analyze_One_Call
(N => Call_Node,
Nam => Hom,
Report => Report_Error,
Success => Success,
Skip_First => True);
if Present (Valid_Candidate (Success, Call_Node, Hom))
and then Nkind (Call_Node) /= N_Function_Call
then
Error_Msg_NE ("ambiguous call to&", N, Hom);
Report_Ambiguity (Matching_Op);
Report_Ambiguity (Hom);
Error := True;
return;
end if;
end if;
end if;
<<Next_Hom>>
Hom := Homonym (Hom);
end loop;
end Traverse_Homonyms;
-------------------------
-- Traverse_Interfaces --
-------------------------
procedure Traverse_Interfaces
(Anc_Type : Entity_Id;
Error : out Boolean)
is
Intface_List : constant List_Id :=
Abstract_Interface_List (Anc_Type);
Intface : Node_Id;
begin
Error := False;
if Is_Non_Empty_List (Intface_List) then
Intface := First (Intface_List);
while Present (Intface) loop
-- Look for acceptable class-wide homonyms associated with
-- the interface.
Traverse_Homonyms (Etype (Intface), Error);
if Error then
return;
end if;
-- Continue the search by looking at each of the interface's
-- associated interface ancestors.
Traverse_Interfaces (Etype (Intface), Error);
if Error then
return;
end if;
Next (Intface);
end loop;
end if;
end Traverse_Interfaces;
-- Start of processing for Try_Class_Wide_Operation
begin
-- If we are searching only for conflicting class-wide subprograms
-- then initialize directly Matching_Op with the target entity.
if CW_Test_Only then
Matching_Op := Entity (Selector_Name (N));
end if;
-- Loop through ancestor types (including interfaces), traversing
-- the homonym chain of the subprogram, trying out those homonyms
-- whose first formal has the class-wide type of the ancestor, or
-- an anonymous access type designating the class-wide type.
Anc_Type := Obj_Type;
loop
-- Look for a match among homonyms associated with the ancestor
Traverse_Homonyms (Anc_Type, Error);
if Error then
return True;
end if;
-- Continue the search for matches among homonyms associated with
-- any interfaces implemented by the ancestor.
Traverse_Interfaces (Anc_Type, Error);
if Error then
return True;
end if;
exit when Etype (Anc_Type) = Anc_Type;
Anc_Type := Etype (Anc_Type);
end loop;
if Present (Matching_Op) then
Set_Etype (Call_Node, Etype (Matching_Op));
end if;
return Present (Matching_Op);
end Try_Class_Wide_Operation;
-----------------------------------
-- Try_One_Prefix_Interpretation --
-----------------------------------
procedure Try_One_Prefix_Interpretation (T : Entity_Id) is
-- If the interpretation does not have a valid candidate type,
-- preserve current value of Obj_Type for subsequent errors.
Prev_Obj_Type : constant Entity_Id := Obj_Type;
begin
Obj_Type := T;
if Is_Access_Type (Obj_Type) then
Obj_Type := Designated_Type (Obj_Type);
end if;
if Ekind (Obj_Type) = E_Private_Subtype then
Obj_Type := Base_Type (Obj_Type);
end if;
if Is_Class_Wide_Type (Obj_Type) then
Obj_Type := Etype (Class_Wide_Type (Obj_Type));
end if;
-- The type may have be obtained through a limited_with clause,
-- in which case the primitive operations are available on its
-- non-limited view. If still incomplete, retrieve full view.
if Ekind (Obj_Type) = E_Incomplete_Type
and then From_Limited_With (Obj_Type)
and then Has_Non_Limited_View (Obj_Type)
then
Obj_Type := Get_Full_View (Non_Limited_View (Obj_Type));
end if;
-- If the object is not tagged, or the type is still an incomplete
-- type, this is not a prefixed call.
if not Is_Tagged_Type (Obj_Type)
or else Is_Incomplete_Type (Obj_Type)
then
-- Restore previous type if current one is not legal candidate
Obj_Type := Prev_Obj_Type;
return;
end if;
declare
Dup_Call_Node : constant Node_Id := New_Copy (New_Call_Node);
CW_Result : Boolean;
Prim_Result : Boolean;
pragma Unreferenced (CW_Result);
begin
if not CW_Test_Only then
Prim_Result :=
Try_Primitive_Operation
(Call_Node => New_Call_Node,
Node_To_Replace => Node_To_Replace);
end if;
-- Check if there is a class-wide subprogram covering the
-- primitive. This check must be done even if a candidate
-- was found in order to report ambiguous calls.
if not (Prim_Result) then
CW_Result :=
Try_Class_Wide_Operation
(Call_Node => New_Call_Node,
Node_To_Replace => Node_To_Replace);
-- If we found a primitive we search for class-wide subprograms
-- using a duplicate of the call node (done to avoid missing its
-- decoration if there is no ambiguity).
else
CW_Result :=
Try_Class_Wide_Operation
(Call_Node => Dup_Call_Node,
Node_To_Replace => Node_To_Replace);
end if;
end;
end Try_One_Prefix_Interpretation;
-----------------------------
-- Try_Primitive_Operation --
-----------------------------
function Try_Primitive_Operation
(Call_Node : Node_Id;
Node_To_Replace : Node_Id) return Boolean
is
Elmt : Elmt_Id;
Prim_Op : Entity_Id;
Matching_Op : Entity_Id := Empty;
Prim_Op_Ref : Node_Id := Empty;
Corr_Type : Entity_Id := Empty;
-- If the prefix is a synchronized type, the controlling type of
-- the primitive operation is the corresponding record type, else
-- this is the object type itself.
Success : Boolean := False;
function Collect_Generic_Type_Ops (T : Entity_Id) return Elist_Id;
-- For tagged types the candidate interpretations are found in
-- the list of primitive operations of the type and its ancestors.
-- For formal tagged types we have to find the operations declared
-- in the same scope as the type (including in the generic formal
-- part) because the type itself carries no primitive operations,
-- except for formal derived types that inherit the operations of
-- the parent and progenitors.
--
-- If the context is a generic subprogram body, the generic formals
-- are visible by name, but are not in the entity list of the
-- subprogram because that list starts with the subprogram formals.
-- We retrieve the candidate operations from the generic declaration.
function Extended_Primitive_Ops (T : Entity_Id) return Elist_Id;
-- Prefix notation can also be used on operations that are not
-- primitives of the type, but are declared in the same immediate
-- declarative part, which can only mean the corresponding package
-- body (See RM 4.1.3 (9.2/3)). If we are in that body we extend the
-- list of primitives with body operations with the same name that
-- may be candidates, so that Try_Primitive_Operations can examine
-- them if no real primitive is found.
function Is_Private_Overriding (Op : Entity_Id) return Boolean;
-- An operation that overrides an inherited operation in the private
-- part of its package may be hidden, but if the inherited operation
-- is visible a direct call to it will dispatch to the private one,
-- which is therefore a valid candidate.
function Names_Match
(Obj_Type : Entity_Id;
Prim_Op : Entity_Id;
Subprog : Entity_Id) return Boolean;
-- Return True if the names of Prim_Op and Subprog match. If Obj_Type
-- is a protected type then compare also the original name of Prim_Op
-- with the name of Subprog (since the expander may have added a
-- prefix to its original name --see Exp_Ch9.Build_Selected_Name).
function Valid_First_Argument_Of (Op : Entity_Id) return Boolean;
-- Verify that the prefix, dereferenced if need be, is a valid
-- controlling argument in a call to Op. The remaining actuals
-- are checked in the subsequent call to Analyze_One_Call.
------------------------------
-- Collect_Generic_Type_Ops --
------------------------------
function Collect_Generic_Type_Ops (T : Entity_Id) return Elist_Id is
Bas : constant Entity_Id := Base_Type (T);
Candidates : constant Elist_Id := New_Elmt_List;
Subp : Entity_Id;
Formal : Entity_Id;
procedure Check_Candidate;
-- The operation is a candidate if its first parameter is a
-- controlling operand of the desired type.
-----------------------
-- Check_Candidate; --
-----------------------
procedure Check_Candidate is
begin
Formal := First_Formal (Subp);
if Present (Formal)
and then Is_Controlling_Formal (Formal)
and then
(Base_Type (Etype (Formal)) = Bas
or else
(Is_Access_Type (Etype (Formal))
and then Designated_Type (Etype (Formal)) = Bas))
then
Append_Elmt (Subp, Candidates);
end if;
end Check_Candidate;
-- Start of processing for Collect_Generic_Type_Ops
begin
if Is_Derived_Type (T) then
return Primitive_Operations (T);
elsif Ekind_In (Scope (T), E_Procedure, E_Function) then
-- Scan the list of generic formals to find subprograms
-- that may have a first controlling formal of the type.
if Nkind (Unit_Declaration_Node (Scope (T))) =
N_Generic_Subprogram_Declaration
then
declare
Decl : Node_Id;
begin
Decl :=
First (Generic_Formal_Declarations
(Unit_Declaration_Node (Scope (T))));
while Present (Decl) loop
if Nkind (Decl) in N_Formal_Subprogram_Declaration then
Subp := Defining_Entity (Decl);
Check_Candidate;
end if;
Next (Decl);
end loop;
end;
end if;
return Candidates;
else
-- Scan the list of entities declared in the same scope as
-- the type. In general this will be an open scope, given that
-- the call we are analyzing can only appear within a generic
-- declaration or body (either the one that declares T, or a
-- child unit).
-- For a subtype representing a generic actual type, go to the
-- base type.
if Is_Generic_Actual_Type (T) then
Subp := First_Entity (Scope (Base_Type (T)));
else
Subp := First_Entity (Scope (T));
end if;
while Present (Subp) loop
if Is_Overloadable (Subp) then
Check_Candidate;
end if;
Next_Entity (Subp);
end loop;
return Candidates;
end if;
end Collect_Generic_Type_Ops;
----------------------------
-- Extended_Primitive_Ops --
----------------------------
function Extended_Primitive_Ops (T : Entity_Id) return Elist_Id is
Type_Scope : constant Entity_Id := Scope (T);
Body_Decls : List_Id;
Op_Found : Boolean;
Op : Entity_Id;
Op_List : Elist_Id;
begin
Op_List := Primitive_Operations (T);
if Ekind (Type_Scope) = E_Package
and then In_Package_Body (Type_Scope)
and then In_Open_Scopes (Type_Scope)
then
-- Retrieve list of declarations of package body.
Body_Decls :=
Declarations
(Unit_Declaration_Node
(Corresponding_Body
(Unit_Declaration_Node (Type_Scope))));
Op := Current_Entity (Subprog);
Op_Found := False;
while Present (Op) loop
if Comes_From_Source (Op)
and then Is_Overloadable (Op)
-- Exclude overriding primitive operations of a type
-- extension declared in the package body, to prevent
-- duplicates in extended list.
and then not Is_Primitive (Op)
and then Is_List_Member (Unit_Declaration_Node (Op))
and then List_Containing (Unit_Declaration_Node (Op)) =
Body_Decls
then
if not Op_Found then
-- Copy list of primitives so it is not affected for
-- other uses.
Op_List := New_Copy_Elist (Op_List);
Op_Found := True;
end if;
Append_Elmt (Op, Op_List);
end if;
Op := Homonym (Op);
end loop;
end if;
return Op_List;
end Extended_Primitive_Ops;
---------------------------
-- Is_Private_Overriding --
---------------------------
function Is_Private_Overriding (Op : Entity_Id) return Boolean is
Visible_Op : constant Entity_Id := Homonym (Op);
begin
return Present (Visible_Op)
and then Scope (Op) = Scope (Visible_Op)
and then not Comes_From_Source (Visible_Op)
and then Alias (Visible_Op) = Op
and then not Is_Hidden (Visible_Op);
end Is_Private_Overriding;
-----------------
-- Names_Match --
-----------------
function Names_Match
(Obj_Type : Entity_Id;
Prim_Op : Entity_Id;
Subprog : Entity_Id) return Boolean is
begin
-- Common case: exact match
if Chars (Prim_Op) = Chars (Subprog) then
return True;
-- For protected type primitives the expander may have built the
-- name of the dispatching primitive prepending the type name to
-- avoid conflicts with the name of the protected subprogram (see
-- Exp_Ch9.Build_Selected_Name).
elsif Is_Protected_Type (Obj_Type) then
return
Present (Original_Protected_Subprogram (Prim_Op))
and then Chars (Original_Protected_Subprogram (Prim_Op)) =
Chars (Subprog);
end if;
return False;
end Names_Match;
-----------------------------
-- Valid_First_Argument_Of --
-----------------------------
function Valid_First_Argument_Of (Op : Entity_Id) return Boolean is
Typ : Entity_Id := Etype (First_Formal (Op));
begin
if Is_Concurrent_Type (Typ)
and then Present (Corresponding_Record_Type (Typ))
then
Typ := Corresponding_Record_Type (Typ);
end if;
-- Simple case. Object may be a subtype of the tagged type or may
-- be the corresponding record of a synchronized type.
return Obj_Type = Typ
or else Base_Type (Obj_Type) = Typ
or else Corr_Type = Typ
-- Object may be of a derived type whose parent has unknown
-- discriminants, in which case the type matches the underlying
-- record view of its base.
or else
(Has_Unknown_Discriminants (Typ)
and then Typ = Underlying_Record_View (Base_Type (Obj_Type)))
-- Prefix can be dereferenced
or else
(Is_Access_Type (Corr_Type)
and then Designated_Type (Corr_Type) = Typ)
-- Formal is an access parameter, for which the object can
-- provide an access.
or else
(Ekind (Typ) = E_Anonymous_Access_Type
and then
Base_Type (Designated_Type (Typ)) = Base_Type (Corr_Type));
end Valid_First_Argument_Of;
-- Start of processing for Try_Primitive_Operation
begin
-- Look for subprograms in the list of primitive operations. The name
-- must be identical, and the kind of call indicates the expected
-- kind of operation (function or procedure). If the type is a
-- (tagged) synchronized type, the primitive ops are attached to the
-- corresponding record (base) type.
if Is_Concurrent_Type (Obj_Type) then
if Present (Corresponding_Record_Type (Obj_Type)) then
Corr_Type := Base_Type (Corresponding_Record_Type (Obj_Type));
Elmt := First_Elmt (Primitive_Operations (Corr_Type));
else
Corr_Type := Obj_Type;
Elmt := First_Elmt (Collect_Generic_Type_Ops (Obj_Type));
end if;
elsif not Is_Generic_Type (Obj_Type) then
Corr_Type := Obj_Type;
Elmt := First_Elmt (Extended_Primitive_Ops (Obj_Type));
else
Corr_Type := Obj_Type;
Elmt := First_Elmt (Collect_Generic_Type_Ops (Obj_Type));
end if;
while Present (Elmt) loop
Prim_Op := Node (Elmt);
if Names_Match (Obj_Type, Prim_Op, Subprog)
and then Present (First_Formal (Prim_Op))
and then Valid_First_Argument_Of (Prim_Op)
and then
(Nkind (Call_Node) = N_Function_Call)
=
(Ekind (Prim_Op) = E_Function)
then
-- Ada 2005 (AI-251): If this primitive operation corresponds
-- to an immediate ancestor interface there is no need to add
-- it to the list of interpretations; the corresponding aliased
-- primitive is also in this list of primitive operations and
-- will be used instead.
if (Present (Interface_Alias (Prim_Op))
and then Is_Ancestor (Find_Dispatching_Type
(Alias (Prim_Op)), Corr_Type))
-- Do not consider hidden primitives unless the type is in an
-- open scope or we are within an instance, where visibility
-- is known to be correct, or else if this is an overriding
-- operation in the private part for an inherited operation.
or else (Is_Hidden (Prim_Op)
and then not Is_Immediately_Visible (Obj_Type)
and then not In_Instance
and then not Is_Private_Overriding (Prim_Op))
then
goto Continue;
end if;
Set_Etype (Call_Node, Any_Type);
Set_Is_Overloaded (Call_Node, False);
if No (Matching_Op) then
Prim_Op_Ref := New_Occurrence_Of (Prim_Op, Sloc (Subprog));
Candidate := Prim_Op;
Set_Parent (Call_Node, Parent (Node_To_Replace));
Set_Name (Call_Node, Prim_Op_Ref);
Success := False;
Analyze_One_Call
(N => Call_Node,
Nam => Prim_Op,
Report => Report_Error,
Success => Success,
Skip_First => True);
Matching_Op := Valid_Candidate (Success, Call_Node, Prim_Op);
-- More than one interpretation, collect for subsequent
-- disambiguation. If this is a procedure call and there
-- is another match, report ambiguity now.
else
Analyze_One_Call
(N => Call_Node,
Nam => Prim_Op,
Report => Report_Error,
Success => Success,
Skip_First => True);
if Present (Valid_Candidate (Success, Call_Node, Prim_Op))
and then Nkind (Call_Node) /= N_Function_Call
then
Error_Msg_NE ("ambiguous call to&", N, Prim_Op);
Report_Ambiguity (Matching_Op);
Report_Ambiguity (Prim_Op);
return True;
end if;
end if;
end if;
<<Continue>>
Next_Elmt (Elmt);
end loop;
if Present (Matching_Op) then
Set_Etype (Call_Node, Etype (Matching_Op));
end if;
return Present (Matching_Op);
end Try_Primitive_Operation;
-- Start of processing for Try_Object_Operation
begin
Analyze_Expression (Obj);
-- Analyze the actuals if node is known to be a subprogram call
if Is_Subprg_Call and then N = Name (Parent (N)) then
Actual := First (Parameter_Associations (Parent (N)));
while Present (Actual) loop
Analyze_Expression (Actual);
Next (Actual);
end loop;
end if;
-- Build a subprogram call node, using a copy of Obj as its first
-- actual. This is a placeholder, to be replaced by an explicit
-- dereference when needed.
Transform_Object_Operation
(Call_Node => New_Call_Node,
Node_To_Replace => Node_To_Replace);
Set_Etype (New_Call_Node, Any_Type);
Set_Etype (Subprog, Any_Type);
Set_Parent (New_Call_Node, Parent (Node_To_Replace));
if not Is_Overloaded (Obj) then
Try_One_Prefix_Interpretation (Obj_Type);
else
declare
I : Interp_Index;
It : Interp;
begin
Get_First_Interp (Obj, I, It);
while Present (It.Nam) loop
Try_One_Prefix_Interpretation (It.Typ);
Get_Next_Interp (I, It);
end loop;
end;
end if;
if Etype (New_Call_Node) /= Any_Type then
-- No need to complete the tree transformations if we are only
-- searching for conflicting class-wide subprograms
if CW_Test_Only then
return False;
else
Complete_Object_Operation
(Call_Node => New_Call_Node,
Node_To_Replace => Node_To_Replace);
return True;
end if;
elsif Present (Candidate) then
-- The argument list is not type correct. Re-analyze with error
-- reporting enabled, and use one of the possible candidates.
-- In All_Errors_Mode, re-analyze all failed interpretations.
if All_Errors_Mode then
Report_Error := True;
if Try_Primitive_Operation
(Call_Node => New_Call_Node,
Node_To_Replace => Node_To_Replace)
or else
Try_Class_Wide_Operation
(Call_Node => New_Call_Node,
Node_To_Replace => Node_To_Replace)
then
null;
end if;
else
Analyze_One_Call
(N => New_Call_Node,
Nam => Candidate,
Report => True,
Success => Success,
Skip_First => True);
end if;
-- No need for further errors
return True;
else
-- There was no candidate operation, so report it as an error
-- in the caller: Analyze_Selected_Component.
return False;
end if;
end Try_Object_Operation;
---------
-- wpo --
---------
procedure wpo (T : Entity_Id) is
Op : Entity_Id;
E : Elmt_Id;
begin
if not Is_Tagged_Type (T) then
return;
end if;
E := First_Elmt (Primitive_Operations (Base_Type (T)));
while Present (E) loop
Op := Node (E);
Write_Int (Int (Op));
Write_Str (" === ");
Write_Name (Chars (Op));
Write_Str (" in ");
Write_Name (Chars (Scope (Op)));
Next_Elmt (E);
Write_Eol;
end loop;
end wpo;
end Sem_Ch4;
| 35.79425 | 79 | 0.540094 |
29e984afd2bdcd7633c0e7bf65dbf48231e6059e | 2,650 | adb | Ada | gcc-gcc-7_3_0-release/gcc/ada/s-flocon-none.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 7 | 2020-05-02T17:34:05.000Z | 2021-10-17T10:15:18.000Z | gcc-gcc-7_3_0-release/gcc/ada/s-flocon-none.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/ada/s-flocon-none.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . F L O A T _ C O N T R O L --
-- --
-- B o d y --
-- --
-- Copyright (C) 2011, 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 implementation does nothing and can be used when the floating point
-- unit is fully under control.
package body System.Float_Control is
-----------
-- Reset --
-----------
procedure Reset is
begin
null;
end Reset;
end System.Float_Control;
| 56.382979 | 78 | 0.386415 |
592a856caef84775ab5d59689a5cbb2745b776f6 | 398 | adb | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/atomic3.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 7 | 2020-05-02T17:34:05.000Z | 2021-10-17T10:15:18.000Z | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/atomic3.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/atomic3.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | -- { dg-do compile }
procedure Atomic3 is
type Unsigned_32_T is mod 2 ** 32;
for Unsigned_32_T'Size use 32;
type Id_T is (One, Two, Three);
type Array_T is array (Id_T) of Unsigned_32_T;
pragma Atomic_Components (Array_T);
A : Array_T := (others => 0);
function Get_Array return Array_T is
begin
return A;
end;
X : Array_T;
begin
X := Get_Array;
end;
| 15.92 | 49 | 0.640704 |
41d1eae9101d56b26d167e08e527d3329f8665e2 | 3,880 | ada | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/ce/ce3605a.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 7 | 2020-05-02T17:34:05.000Z | 2021-10-17T10:15:18.000Z | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/ce/ce3605a.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/ce/ce3605a.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | -- CE3605A.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 PUT FOR CHARACTER AND STRING PARAMETERS DOES NOT
-- UPDATE THE LINE NUMBER WHEN THE LINE LENGTH IS UNBOUNDED,
-- ONLY THE COLUMN NUMBER.
-- APPLICABILITY CRITERIA:
-- THIS TEST IS APPLICABLE ONLY TO IMPLEMENTATIONS WHICH SUPPORT
-- CREATION OF TEMPORARY TEXT FILES WITH OUT_FILE MODE.
-- HISTORY:
-- SPS 09/02/82
-- JBG 02/22/84 CHANGED TO .ADA TEST
-- RJW 11/04/86 REVISED TEST TO OUTPUT A NOT_APPLICABLE
-- RESULT WHEN FILES ARE NOT SUPPORTED.
-- JLH 09/08/87 CORRECTED EXCEPTION HANDLING AND ADDED CHECKS
-- FOR COLUMN NUMBER.
-- RJW 03/28/90 REVISED NUMERIC LITERALS USED IN LOOPS.
WITH REPORT;
USE REPORT;
WITH TEXT_IO;
USE TEXT_IO;
PROCEDURE CE3605A IS
INCOMPLETE : EXCEPTION;
BEGIN
TEST ("CE3605A", "CHECK THAT PUT FOR CHARACTER AND STRING " &
"PARAMETERS DOES NOT UPDATE THE LINE NUMBER " &
"WHEN THE LINE LENGTH IS UNBOUNDED, ONLY THE " &
"COLUMN NUMBER");
DECLARE
FILE1 : FILE_TYPE;
LN : POSITIVE_COUNT := 1;
BEGIN
BEGIN
CREATE (FILE1);
EXCEPTION
WHEN USE_ERROR =>
NOT_APPLICABLE ("USE_ERROR RAISED ON TEXT CREATE " &
"FOR TEMPORARY FILES WITH " &
"OUT_FILE MODE");
RAISE INCOMPLETE;
END;
LN := LINE (FILE1);
IF LN /= 1 THEN
FAILED ("CURRENT LINE NUMBER NOT INITIALLY ONE");
END IF;
IF COL (FILE1) /= 1 THEN
FAILED ("CURRENT COLUMN NUMBER NOT INITIALLY ONE");
END IF;
FOR I IN 1 .. IDENT_INT(240) LOOP
PUT(FILE1, 'A');
END LOOP;
IF LINE (FILE1) /= LN THEN
FAILED ("PUT ALTERED LINE NUMBER - CHARACTER");
END IF;
IF COL(FILE1) /= 241 THEN
FAILED ("COLUMN NUMBER NOT UPDATED CORRECTLY - 1");
END IF;
NEW_LINE(FILE1);
LN := LINE (FILE1);
FOR I IN 1 .. IDENT_INT(40) LOOP
PUT (FILE1, "STRING");
END LOOP;
IF LN /= LINE (FILE1) THEN
FAILED ("PUT ALTERED LINE NUMBER - STRING");
END IF;
IF COL(FILE1) /= 241 THEN
FAILED ("COLUMN NUMBER NOT UPDATED CORRECTLY - 2");
END IF;
CLOSE (FILE1);
EXCEPTION
WHEN INCOMPLETE =>
NULL;
END;
RESULT;
END CE3605A;
| 32.605042 | 79 | 0.570619 |
1259ff9300fbb29f9a3026c4ecaa19fce17e8679 | 792 | adb | Ada | contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/type_coercion/ident.adb | TheSledgeHammer/2.11BSD | fe61f0b9aaa273783cd027c7b5ec77e95ead2153 | [
"BSD-3-Clause"
] | 3 | 2021-05-04T17:09:06.000Z | 2021-10-04T07:19:26.000Z | contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/type_coercion/ident.adb | TheSledgeHammer/2.11BSD | fe61f0b9aaa273783cd027c7b5ec77e95ead2153 | [
"BSD-3-Clause"
] | null | null | null | contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/type_coercion/ident.adb | TheSledgeHammer/2.11BSD | fe61f0b9aaa273783cd027c7b5ec77e95ead2153 | [
"BSD-3-Clause"
] | null | null | null | -- Copyright 2008-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/>.
function Ident (X : Integer) return Integer is
begin
return X;
end Ident;
| 39.6 | 73 | 0.737374 |
1dca37df24d63ccfe2f82ba790ac31a29a635dd4 | 35,557 | ads | Ada | src/condor_tests/cmd_status-af_orig_second_test.ads | olifre/htcondor | e1299614fbdcad113a206270f3940e2e8777c2bd | [
"Apache-2.0"
] | 217 | 2015-01-08T04:49:42.000Z | 2022-03-27T10:11:58.000Z | src/condor_tests/cmd_status-af_orig_second_test.ads | olifre/htcondor | e1299614fbdcad113a206270f3940e2e8777c2bd | [
"Apache-2.0"
] | 185 | 2015-05-03T13:26:31.000Z | 2022-03-28T03:08:59.000Z | src/condor_tests/cmd_status-af_orig_second_test.ads | olifre/htcondor | e1299614fbdcad113a206270f3940e2e8777c2bd | [
"Apache-2.0"
] | 133 | 2015-02-11T09:17:45.000Z | 2022-03-31T07:28:54.000Z | AcceptedWhileDraining = false
Activity = "Idle"
AddressV1 = "{[ p=\"primary\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ], [ p=\"IPv4\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ]}"
Arch = "X86_64"
AuthenticatedIdentity = "condor@family"
AuthenticationMethod = "FAMILY"
CanHibernate = true
ClockDay = 0
ClockMin = 980
COLLECTOR_HOST_STRING = "gthain.localdomain:0"
CondorLoadAvg = 0.0
CondorPlatform = "$CondorPlatform: X86_64-Fedora_33 $"
CondorVersion = "$CondorVersion: 8.9.12 Mar 14 2021 BuildID: UW_development RC $"
ConsoleIdle = 0
CpuBusy = ((LoadAvg - CondorLoadAvg) >= 0.5)
CpuBusyTime = 4
CpuCacheSize = 8192
CpuFamily = 6
CpuIsBusy = true
CpuModelNumber = 142
Cpus = 1
CurrentRank = 0.0
DaemonCoreDutyCycle = 0.01588477356833562
DaemonLastReconfigTime = 1615756825
DaemonShutdown = time() - DaemonStartTime > 1500
DaemonStartTime = 1615756825
DetectedCpus = 8
DetectedMemory = 15661
Disk = 16190387
EnteredCurrentActivity = 1615756829
EnteredCurrentState = 1615756829
ExpectedMachineGracefulDrainingBadput = 0
ExpectedMachineGracefulDrainingCompletion = 1615756825
ExpectedMachineQuickDrainingBadput = 0
ExpectedMachineQuickDrainingCompletion = 1615756825
FileSystemDomain = "gthain.localdomain"
has_avx = true
has_avx2 = true
has_sse4_1 = true
has_sse4_2 = true
has_ssse3 = true
HasFileTransfer = true
HasIOProxy = true
HasJICLocalConfig = true
HasJICLocalStdin = true
HasJobDeferral = true
HasJobTransferPlugins = true
HasMPI = true
HasPerFileEncryption = true
HasReconnect = true
HasSelfCheckpointTransfers = true
HasSingularity = true
HasTDP = true
HasTransferInputRemaps = true
HasUserNamespaces = true
HasVM = false
HibernationLevel = 0
HibernationState = "NONE"
HibernationSupportedStates = "S3,S4,S5"
IsLocalStartd = false
IsWakeAble = false
IsWakeOnLanEnabled = false
IsWakeOnLanSupported = false
JobPreemptions = 0
JobRankPreemptions = 0
JobStarts = 1
JobUserPrioPreemptions = 0
KeyboardIdle = 0
LastBenchmark = 0
LastFetchWorkCompleted = 0
LastFetchWorkSpawned = 0
LastHeardFrom = 1615756829
LoadAvg = 0.59
Machine = "gthain.localdomain"
MachineMaxVacateTime = 10 * 60
MachineResources = "Cpus Memory Disk Swap"
MaxJobRetirementTime = 0
Memory = 1957
MonitorSelfAge = 1
MonitorSelfCPUUsage = 1.0
MonitorSelfImageSize = 26716
MonitorSelfRegisteredSocketCount = 0
MonitorSelfResidentSetSize = 12836
MonitorSelfSecuritySessions = 10
MonitorSelfTime = 1615756825
MyAddress = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>"
MyCurrentTime = 1615756829
MyType = "Machine"
Name = "[email protected]"
NextFetchWorkDelay = -1
NumPids = 0
OpSys = "LINUX"
OpSysAndVer = "Fedora33"
OpSysLegacy = "LINUX"
OpSysLongName = "Fedora release 33 (Thirty Three)"
OpSysMajorVer = 33
OpSysName = "Fedora"
OpSysShortName = "Fedora"
OpSysVer = 3300
Rank = 0.0
RecentDaemonCoreDutyCycle = 0.01588477356833562
RecentJobPreemptions = 0
RecentJobRankPreemptions = 0
RecentJobStarts = 1
RecentJobUserPrioPreemptions = 0
Requirements = START
RetirementTimeRemaining = 0
SingularityVersion = "singularity version 3.7.1-1.fc33"
SlotID = 1
SlotType = "Static"
SlotTypeID = 0
SlotWeight = Cpus
Start = true
StartdIpAddr = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>"
StarterAbilityList = "HasVM,HasMPI,HasFileTransfer,HasJobDeferral,HasSingularity,HasJobTransferPlugins,HasPerFileEncryption,HasReconnect,HasTDP,HasJICLocalStdin,HasTransferInputRemaps,HasSelfCheckpointTransfers,HasJICLocalConfig"
State = "Unclaimed"
SubnetMask = "255.255.255.0"
TargetType = "Job"
TimeToLive = 2147483647
TotalCondorLoadAvg = 0.0
TotalCpus = 8.0
TotalDisk = 129523096
TotalLoadAvg = 0.54
TotalMemory = 15661
TotalSlotCpus = 1
TotalSlotDisk = 16190387.0
TotalSlotMemory = 1957
TotalSlots = 8
TotalTimeUnclaimedIdle = 4
TotalVirtualMemory = 28313600
UidDomain = "gthain.localdomain"
Unhibernate = MY.MachineLastMatchTime =!= undefined
UpdateSequenceNumber = 5
UpdatesHistory = "00000000000000000000000000000000"
UpdatesLost = 0
UpdatesSequenced = 4
UpdatesTotal = 5
UtsnameMachine = "x86_64"
UtsnameNodename = "gthain.localdomain"
UtsnameRelease = "5.10.21-200.fc33.x86_64"
UtsnameSysname = "Linux"
UtsnameVersion = "#1 SMP Mon Mar 8 00:24:40 UTC 2021"
VirtualMemory = 3539200
WakeOnLanEnabledFlags = "NONE"
WakeOnLanSupportedFlags = "NONE"
AcceptedWhileDraining = false
Activity = "Idle"
AddressV1 = "{[ p=\"primary\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ], [ p=\"IPv4\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ]}"
Arch = "X86_64"
AuthenticatedIdentity = "condor@family"
AuthenticationMethod = "FAMILY"
CanHibernate = true
ClockDay = 0
ClockMin = 980
COLLECTOR_HOST_STRING = "gthain.localdomain:0"
CondorLoadAvg = 0.0
CondorPlatform = "$CondorPlatform: X86_64-Fedora_33 $"
CondorVersion = "$CondorVersion: 8.9.12 Mar 14 2021 BuildID: UW_development RC $"
ConsoleIdle = 0
CpuBusy = ((LoadAvg - CondorLoadAvg) >= 0.5)
CpuBusyTime = 0
CpuCacheSize = 8192
CpuFamily = 6
CpuIsBusy = false
CpuModelNumber = 142
Cpus = 1
CurrentRank = 0.0
DaemonCoreDutyCycle = 0.0
DaemonLastReconfigTime = 1615756825
DaemonShutdown = time() - DaemonStartTime > 1500
DaemonStartTime = 1615756825
DetectedCpus = 8
DetectedMemory = 15661
Disk = 16190387
EnteredCurrentActivity = 1615756825
EnteredCurrentState = 1615756825
ExpectedMachineGracefulDrainingBadput = 0
ExpectedMachineGracefulDrainingCompletion = 1615756825
ExpectedMachineQuickDrainingBadput = 0
ExpectedMachineQuickDrainingCompletion = 1615756825
FileSystemDomain = "gthain.localdomain"
HardwareAddress = "40:ec:99:82:52:b2"
has_avx = true
has_avx2 = true
has_sse4_1 = true
has_sse4_2 = true
has_ssse3 = true
HasFileTransfer = true
HasIOProxy = true
HasJICLocalConfig = true
HasJICLocalStdin = true
HasJobDeferral = true
HasJobTransferPlugins = true
HasMPI = true
HasPerFileEncryption = true
HasReconnect = true
HasSelfCheckpointTransfers = true
HasSingularity = true
HasTDP = true
HasTransferInputRemaps = true
HasUserNamespaces = true
HasVM = false
HibernationLevel = 0
HibernationState = "NONE"
HibernationSupportedStates = "S3,S4,S5"
IsLocalStartd = false
IsWakeAble = false
IsWakeOnLanEnabled = false
IsWakeOnLanSupported = false
JobPreemptions = 0
JobRankPreemptions = 0
JobStarts = 0
JobUserPrioPreemptions = 0
KeyboardIdle = 0
LastBenchmark = 0
LastFetchWorkCompleted = 0
LastFetchWorkSpawned = 0
LastHeardFrom = 1615756825
LoadAvg = 0.0
Machine = "gthain.localdomain"
MachineMaxVacateTime = 10 * 60
MachineResources = "Cpus Memory Disk Swap"
MaxJobRetirementTime = 0
Memory = 1957
MonitorSelfAge = 1
MonitorSelfCPUUsage = 1.0
MonitorSelfImageSize = 26716
MonitorSelfRegisteredSocketCount = 0
MonitorSelfResidentSetSize = 12836
MonitorSelfSecuritySessions = 10
MonitorSelfTime = 1615756825
MyAddress = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>"
MyCurrentTime = 1615756825
MyType = "Machine"
Name = "[email protected]"
NextFetchWorkDelay = -1
NumPids = 0
OpSys = "LINUX"
OpSysAndVer = "Fedora33"
OpSysLegacy = "LINUX"
OpSysLongName = "Fedora release 33 (Thirty Three)"
OpSysMajorVer = 33
OpSysName = "Fedora"
OpSysShortName = "Fedora"
OpSysVer = 3300
Rank = 0.0
RecentDaemonCoreDutyCycle = 0.0
RecentJobPreemptions = 0
RecentJobRankPreemptions = 0
RecentJobStarts = 0
RecentJobUserPrioPreemptions = 0
Requirements = START
RetirementTimeRemaining = 0
SingularityVersion = "singularity version 3.7.1-1.fc33"
SlotID = 2
SlotType = "Static"
SlotTypeID = 0
SlotWeight = Cpus
Start = true
StartdIpAddr = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>"
StarterAbilityList = "HasVM,HasMPI,HasFileTransfer,HasJobDeferral,HasSingularity,HasJobTransferPlugins,HasPerFileEncryption,HasReconnect,HasTDP,HasJICLocalStdin,HasTransferInputRemaps,HasSelfCheckpointTransfers,HasJICLocalConfig"
State = "Unclaimed"
SubnetMask = "255.255.255.0"
TargetType = "Job"
TimeToLive = 2147483647
TotalCondorLoadAvg = 0.0
TotalCpus = 8.0
TotalDisk = 129523096
TotalLoadAvg = 0.59
TotalMemory = 15661
TotalSlotCpus = 1
TotalSlotDisk = 16190387.0
TotalSlotMemory = 1957
TotalSlots = 8
TotalVirtualMemory = 28313600
UidDomain = "gthain.localdomain"
Unhibernate = MY.MachineLastMatchTime =!= undefined
UpdateSequenceNumber = 1
UpdatesHistory = "00000000000000000000000000000000"
UpdatesLost = 0
UpdatesSequenced = 0
UpdatesTotal = 1
UtsnameMachine = "x86_64"
UtsnameNodename = "gthain.localdomain"
UtsnameRelease = "5.10.21-200.fc33.x86_64"
UtsnameSysname = "Linux"
UtsnameVersion = "#1 SMP Mon Mar 8 00:24:40 UTC 2021"
VirtualMemory = 3539200
WakeOnLanEnabledFlags = "NONE"
WakeOnLanSupportedFlags = "NONE"
AcceptedWhileDraining = false
Activity = "Idle"
AddressV1 = "{[ p=\"primary\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ], [ p=\"IPv4\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ]}"
Arch = "X86_64"
AuthenticatedIdentity = "condor@family"
AuthenticationMethod = "FAMILY"
CanHibernate = true
ClockDay = 0
ClockMin = 980
COLLECTOR_HOST_STRING = "gthain.localdomain:0"
CondorLoadAvg = 0.0
CondorPlatform = "$CondorPlatform: X86_64-Fedora_33 $"
CondorVersion = "$CondorVersion: 8.9.12 Mar 14 2021 BuildID: UW_development RC $"
ConsoleIdle = 0
CpuBusy = ((LoadAvg - CondorLoadAvg) >= 0.5)
CpuBusyTime = 0
CpuCacheSize = 8192
CpuFamily = 6
CpuIsBusy = false
CpuModelNumber = 142
Cpus = 1
CurrentRank = 0.0
DaemonCoreDutyCycle = 0.0
DaemonLastReconfigTime = 1615756825
DaemonShutdown = time() - DaemonStartTime > 1500
DaemonStartTime = 1615756825
DetectedCpus = 8
DetectedMemory = 15661
Disk = 16190387
EnteredCurrentActivity = 1615756825
EnteredCurrentState = 1615756825
ExpectedMachineGracefulDrainingBadput = 0
ExpectedMachineGracefulDrainingCompletion = 1615756825
ExpectedMachineQuickDrainingBadput = 0
ExpectedMachineQuickDrainingCompletion = 1615756825
FileSystemDomain = "gthain.localdomain"
HardwareAddress = "40:ec:99:82:52:b2"
has_avx = true
has_avx2 = true
has_sse4_1 = true
has_sse4_2 = true
has_ssse3 = true
HasFileTransfer = true
HasIOProxy = true
HasJICLocalConfig = true
HasJICLocalStdin = true
HasJobDeferral = true
HasJobTransferPlugins = true
HasMPI = true
HasPerFileEncryption = true
HasReconnect = true
HasSelfCheckpointTransfers = true
HasSingularity = true
HasTDP = true
HasTransferInputRemaps = true
HasUserNamespaces = true
HasVM = false
HibernationLevel = 0
HibernationState = "NONE"
HibernationSupportedStates = "S3,S4,S5"
IsLocalStartd = false
IsWakeAble = false
IsWakeOnLanEnabled = false
IsWakeOnLanSupported = false
JobPreemptions = 0
JobRankPreemptions = 0
JobStarts = 0
JobUserPrioPreemptions = 0
KeyboardIdle = 0
LastBenchmark = 0
LastFetchWorkCompleted = 0
LastFetchWorkSpawned = 0
LastHeardFrom = 1615756825
LoadAvg = 0.0
Machine = "gthain.localdomain"
MachineMaxVacateTime = 10 * 60
MachineResources = "Cpus Memory Disk Swap"
MaxJobRetirementTime = 0
Memory = 1957
MonitorSelfAge = 1
MonitorSelfCPUUsage = 1.0
MonitorSelfImageSize = 26716
MonitorSelfRegisteredSocketCount = 0
MonitorSelfResidentSetSize = 12836
MonitorSelfSecuritySessions = 10
MonitorSelfTime = 1615756825
MyAddress = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>"
MyCurrentTime = 1615756825
MyType = "Machine"
Name = "[email protected]"
NextFetchWorkDelay = -1
NumPids = 0
OpSys = "LINUX"
OpSysAndVer = "Fedora33"
OpSysLegacy = "LINUX"
OpSysLongName = "Fedora release 33 (Thirty Three)"
OpSysMajorVer = 33
OpSysName = "Fedora"
OpSysShortName = "Fedora"
OpSysVer = 3300
Rank = 0.0
RecentDaemonCoreDutyCycle = 0.0
RecentJobPreemptions = 0
RecentJobRankPreemptions = 0
RecentJobStarts = 0
RecentJobUserPrioPreemptions = 0
Requirements = START
RetirementTimeRemaining = 0
SingularityVersion = "singularity version 3.7.1-1.fc33"
SlotID = 3
SlotType = "Static"
SlotTypeID = 0
SlotWeight = Cpus
Start = true
StartdIpAddr = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>"
StarterAbilityList = "HasVM,HasMPI,HasFileTransfer,HasJobDeferral,HasSingularity,HasJobTransferPlugins,HasPerFileEncryption,HasReconnect,HasTDP,HasJICLocalStdin,HasTransferInputRemaps,HasSelfCheckpointTransfers,HasJICLocalConfig"
State = "Unclaimed"
SubnetMask = "255.255.255.0"
TargetType = "Job"
TimeToLive = 2147483647
TotalCondorLoadAvg = 0.0
TotalCpus = 8.0
TotalDisk = 129523096
TotalLoadAvg = 0.59
TotalMemory = 15661
TotalSlotCpus = 1
TotalSlotDisk = 16190387.0
TotalSlotMemory = 1957
TotalSlots = 8
TotalVirtualMemory = 28313600
UidDomain = "gthain.localdomain"
Unhibernate = MY.MachineLastMatchTime =!= undefined
UpdateSequenceNumber = 1
UpdatesHistory = "00000000000000000000000000000000"
UpdatesLost = 0
UpdatesSequenced = 0
UpdatesTotal = 1
UtsnameMachine = "x86_64"
UtsnameNodename = "gthain.localdomain"
UtsnameRelease = "5.10.21-200.fc33.x86_64"
UtsnameSysname = "Linux"
UtsnameVersion = "#1 SMP Mon Mar 8 00:24:40 UTC 2021"
VirtualMemory = 3539200
WakeOnLanEnabledFlags = "NONE"
WakeOnLanSupportedFlags = "NONE"
AcceptedWhileDraining = false
Activity = "Idle"
AddressV1 = "{[ p=\"primary\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ], [ p=\"IPv4\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ]}"
Arch = "X86_64"
AuthenticatedIdentity = "condor@family"
AuthenticationMethod = "FAMILY"
CanHibernate = true
ClockDay = 0
ClockMin = 980
COLLECTOR_HOST_STRING = "gthain.localdomain:0"
CondorLoadAvg = 0.0
CondorPlatform = "$CondorPlatform: X86_64-Fedora_33 $"
CondorVersion = "$CondorVersion: 8.9.12 Mar 14 2021 BuildID: UW_development RC $"
ConsoleIdle = 0
CpuBusy = ((LoadAvg - CondorLoadAvg) >= 0.5)
CpuBusyTime = 0
CpuCacheSize = 8192
CpuFamily = 6
CpuIsBusy = false
CpuModelNumber = 142
Cpus = 1
CurrentRank = 0.0
DaemonCoreDutyCycle = 0.0
DaemonLastReconfigTime = 1615756825
DaemonShutdown = time() - DaemonStartTime > 1500
DaemonStartTime = 1615756825
DetectedCpus = 8
DetectedMemory = 15661
Disk = 16190387
EnteredCurrentActivity = 1615756825
EnteredCurrentState = 1615756825
ExpectedMachineGracefulDrainingBadput = 0
ExpectedMachineGracefulDrainingCompletion = 1615756825
ExpectedMachineQuickDrainingBadput = 0
ExpectedMachineQuickDrainingCompletion = 1615756825
FileSystemDomain = "gthain.localdomain"
HardwareAddress = "40:ec:99:82:52:b2"
has_avx = true
has_avx2 = true
has_sse4_1 = true
has_sse4_2 = true
has_ssse3 = true
HasFileTransfer = true
HasIOProxy = true
HasJICLocalConfig = true
HasJICLocalStdin = true
HasJobDeferral = true
HasJobTransferPlugins = true
HasMPI = true
HasPerFileEncryption = true
HasReconnect = true
HasSelfCheckpointTransfers = true
HasSingularity = true
HasTDP = true
HasTransferInputRemaps = true
HasUserNamespaces = true
HasVM = false
HibernationLevel = 0
HibernationState = "NONE"
HibernationSupportedStates = "S3,S4,S5"
IsLocalStartd = false
IsWakeAble = false
IsWakeOnLanEnabled = false
IsWakeOnLanSupported = false
JobPreemptions = 0
JobRankPreemptions = 0
JobStarts = 0
JobUserPrioPreemptions = 0
KeyboardIdle = 0
LastBenchmark = 0
LastFetchWorkCompleted = 0
LastFetchWorkSpawned = 0
LastHeardFrom = 1615756825
LoadAvg = 0.0
Machine = "gthain.localdomain"
MachineMaxVacateTime = 10 * 60
MachineResources = "Cpus Memory Disk Swap"
MaxJobRetirementTime = 0
Memory = 1957
MonitorSelfAge = 1
MonitorSelfCPUUsage = 1.0
MonitorSelfImageSize = 26716
MonitorSelfRegisteredSocketCount = 0
MonitorSelfResidentSetSize = 12836
MonitorSelfSecuritySessions = 10
MonitorSelfTime = 1615756825
MyAddress = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>"
MyCurrentTime = 1615756825
MyType = "Machine"
Name = "[email protected]"
NextFetchWorkDelay = -1
NumPids = 0
OpSys = "LINUX"
OpSysAndVer = "Fedora33"
OpSysLegacy = "LINUX"
OpSysLongName = "Fedora release 33 (Thirty Three)"
OpSysMajorVer = 33
OpSysName = "Fedora"
OpSysShortName = "Fedora"
OpSysVer = 3300
Rank = 0.0
RecentDaemonCoreDutyCycle = 0.0
RecentJobPreemptions = 0
RecentJobRankPreemptions = 0
RecentJobStarts = 0
RecentJobUserPrioPreemptions = 0
Requirements = START
RetirementTimeRemaining = 0
SingularityVersion = "singularity version 3.7.1-1.fc33"
SlotID = 4
SlotType = "Static"
SlotTypeID = 0
SlotWeight = Cpus
Start = true
StartdIpAddr = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>"
StarterAbilityList = "HasVM,HasMPI,HasFileTransfer,HasJobDeferral,HasSingularity,HasJobTransferPlugins,HasPerFileEncryption,HasReconnect,HasTDP,HasJICLocalStdin,HasTransferInputRemaps,HasSelfCheckpointTransfers,HasJICLocalConfig"
State = "Unclaimed"
SubnetMask = "255.255.255.0"
TargetType = "Job"
TimeToLive = 2147483647
TotalCondorLoadAvg = 0.0
TotalCpus = 8.0
TotalDisk = 129523096
TotalLoadAvg = 0.59
TotalMemory = 15661
TotalSlotCpus = 1
TotalSlotDisk = 16190387.0
TotalSlotMemory = 1957
TotalSlots = 8
TotalVirtualMemory = 28313600
UidDomain = "gthain.localdomain"
Unhibernate = MY.MachineLastMatchTime =!= undefined
UpdateSequenceNumber = 1
UpdatesHistory = "00000000000000000000000000000000"
UpdatesLost = 0
UpdatesSequenced = 0
UpdatesTotal = 1
UtsnameMachine = "x86_64"
UtsnameNodename = "gthain.localdomain"
UtsnameRelease = "5.10.21-200.fc33.x86_64"
UtsnameSysname = "Linux"
UtsnameVersion = "#1 SMP Mon Mar 8 00:24:40 UTC 2021"
VirtualMemory = 3539200
WakeOnLanEnabledFlags = "NONE"
WakeOnLanSupportedFlags = "NONE"
AcceptedWhileDraining = false
Activity = "Idle"
AddressV1 = "{[ p=\"primary\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ], [ p=\"IPv4\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ]}"
Arch = "X86_64"
AuthenticatedIdentity = "condor@family"
AuthenticationMethod = "FAMILY"
CanHibernate = true
ClockDay = 0
ClockMin = 980
COLLECTOR_HOST_STRING = "gthain.localdomain:0"
CondorLoadAvg = 0.0
CondorPlatform = "$CondorPlatform: X86_64-Fedora_33 $"
CondorVersion = "$CondorVersion: 8.9.12 Mar 14 2021 BuildID: UW_development RC $"
ConsoleIdle = 0
CpuBusy = ((LoadAvg - CondorLoadAvg) >= 0.5)
CpuBusyTime = 0
CpuCacheSize = 8192
CpuFamily = 6
CpuIsBusy = false
CpuModelNumber = 142
Cpus = 1
CurrentRank = 0.0
DaemonCoreDutyCycle = 0.0
DaemonLastReconfigTime = 1615756825
DaemonShutdown = time() - DaemonStartTime > 1500
DaemonStartTime = 1615756825
DetectedCpus = 8
DetectedMemory = 15661
Disk = 16190387
EnteredCurrentActivity = 1615756825
EnteredCurrentState = 1615756825
ExpectedMachineGracefulDrainingBadput = 0
ExpectedMachineGracefulDrainingCompletion = 1615756825
ExpectedMachineQuickDrainingBadput = 0
ExpectedMachineQuickDrainingCompletion = 1615756825
FileSystemDomain = "gthain.localdomain"
HardwareAddress = "40:ec:99:82:52:b2"
has_avx = true
has_avx2 = true
has_sse4_1 = true
has_sse4_2 = true
has_ssse3 = true
HasFileTransfer = true
HasIOProxy = true
HasJICLocalConfig = true
HasJICLocalStdin = true
HasJobDeferral = true
HasJobTransferPlugins = true
HasMPI = true
HasPerFileEncryption = true
HasReconnect = true
HasSelfCheckpointTransfers = true
HasSingularity = true
HasTDP = true
HasTransferInputRemaps = true
HasUserNamespaces = true
HasVM = false
HibernationLevel = 0
HibernationState = "NONE"
HibernationSupportedStates = "S3,S4,S5"
IsLocalStartd = false
IsWakeAble = false
IsWakeOnLanEnabled = false
IsWakeOnLanSupported = false
JobPreemptions = 0
JobRankPreemptions = 0
JobStarts = 0
JobUserPrioPreemptions = 0
KeyboardIdle = 0
LastBenchmark = 0
LastFetchWorkCompleted = 0
LastFetchWorkSpawned = 0
LastHeardFrom = 1615756825
LoadAvg = 0.0
Machine = "gthain.localdomain"
MachineMaxVacateTime = 10 * 60
MachineResources = "Cpus Memory Disk Swap"
MaxJobRetirementTime = 0
Memory = 1957
MonitorSelfAge = 1
MonitorSelfCPUUsage = 1.0
MonitorSelfImageSize = 26716
MonitorSelfRegisteredSocketCount = 0
MonitorSelfResidentSetSize = 12836
MonitorSelfSecuritySessions = 10
MonitorSelfTime = 1615756825
MyAddress = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>"
MyCurrentTime = 1615756825
MyType = "Machine"
Name = "[email protected]"
NextFetchWorkDelay = -1
NumPids = 0
OpSys = "LINUX"
OpSysAndVer = "Fedora33"
OpSysLegacy = "LINUX"
OpSysLongName = "Fedora release 33 (Thirty Three)"
OpSysMajorVer = 33
OpSysName = "Fedora"
OpSysShortName = "Fedora"
OpSysVer = 3300
Rank = 0.0
RecentDaemonCoreDutyCycle = 0.0
RecentJobPreemptions = 0
RecentJobRankPreemptions = 0
RecentJobStarts = 0
RecentJobUserPrioPreemptions = 0
Requirements = START
RetirementTimeRemaining = 0
SingularityVersion = "singularity version 3.7.1-1.fc33"
SlotID = 5
SlotType = "Static"
SlotTypeID = 0
SlotWeight = Cpus
Start = true
StartdIpAddr = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>"
StarterAbilityList = "HasVM,HasMPI,HasFileTransfer,HasJobDeferral,HasSingularity,HasJobTransferPlugins,HasPerFileEncryption,HasReconnect,HasTDP,HasJICLocalStdin,HasTransferInputRemaps,HasSelfCheckpointTransfers,HasJICLocalConfig"
State = "Unclaimed"
SubnetMask = "255.255.255.0"
TargetType = "Job"
TimeToLive = 2147483647
TotalCondorLoadAvg = 0.0
TotalCpus = 8.0
TotalDisk = 129523096
TotalLoadAvg = 0.59
TotalMemory = 15661
TotalSlotCpus = 1
TotalSlotDisk = 16190387.0
TotalSlotMemory = 1957
TotalSlots = 8
TotalVirtualMemory = 28313600
UidDomain = "gthain.localdomain"
Unhibernate = MY.MachineLastMatchTime =!= undefined
UpdateSequenceNumber = 1
UpdatesHistory = "00000000000000000000000000000000"
UpdatesLost = 0
UpdatesSequenced = 0
UpdatesTotal = 1
UtsnameMachine = "x86_64"
UtsnameNodename = "gthain.localdomain"
UtsnameRelease = "5.10.21-200.fc33.x86_64"
UtsnameSysname = "Linux"
UtsnameVersion = "#1 SMP Mon Mar 8 00:24:40 UTC 2021"
VirtualMemory = 3539200
WakeOnLanEnabledFlags = "NONE"
WakeOnLanSupportedFlags = "NONE"
AcceptedWhileDraining = false
Activity = "Idle"
AddressV1 = "{[ p=\"primary\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ], [ p=\"IPv4\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ]}"
Arch = "X86_64"
AuthenticatedIdentity = "condor@family"
AuthenticationMethod = "FAMILY"
CanHibernate = true
ClockDay = 0
ClockMin = 980
COLLECTOR_HOST_STRING = "gthain.localdomain:0"
CondorLoadAvg = 0.0
CondorPlatform = "$CondorPlatform: X86_64-Fedora_33 $"
CondorVersion = "$CondorVersion: 8.9.12 Mar 14 2021 BuildID: UW_development RC $"
ConsoleIdle = 0
CpuBusy = ((LoadAvg - CondorLoadAvg) >= 0.5)
CpuBusyTime = 0
CpuCacheSize = 8192
CpuFamily = 6
CpuIsBusy = false
CpuModelNumber = 142
Cpus = 1
CurrentRank = 0.0
DaemonCoreDutyCycle = 0.0
DaemonLastReconfigTime = 1615756825
DaemonShutdown = time() - DaemonStartTime > 1500
DaemonStartTime = 1615756825
DetectedCpus = 8
DetectedMemory = 15661
Disk = 16190387
EnteredCurrentActivity = 1615756825
EnteredCurrentState = 1615756825
ExpectedMachineGracefulDrainingBadput = 0
ExpectedMachineGracefulDrainingCompletion = 1615756825
ExpectedMachineQuickDrainingBadput = 0
ExpectedMachineQuickDrainingCompletion = 1615756825
FileSystemDomain = "gthain.localdomain"
HardwareAddress = "40:ec:99:82:52:b2"
has_avx = true
has_avx2 = true
has_sse4_1 = true
has_sse4_2 = true
has_ssse3 = true
HasFileTransfer = true
HasIOProxy = true
HasJICLocalConfig = true
HasJICLocalStdin = true
HasJobDeferral = true
HasJobTransferPlugins = true
HasMPI = true
HasPerFileEncryption = true
HasReconnect = true
HasSelfCheckpointTransfers = true
HasSingularity = true
HasTDP = true
HasTransferInputRemaps = true
HasUserNamespaces = true
HasVM = false
HibernationLevel = 0
HibernationState = "NONE"
HibernationSupportedStates = "S3,S4,S5"
IsLocalStartd = false
IsWakeAble = false
IsWakeOnLanEnabled = false
IsWakeOnLanSupported = false
JobPreemptions = 0
JobRankPreemptions = 0
JobStarts = 0
JobUserPrioPreemptions = 0
KeyboardIdle = 0
LastBenchmark = 0
LastFetchWorkCompleted = 0
LastFetchWorkSpawned = 0
LastHeardFrom = 1615756825
LoadAvg = 0.0
Machine = "gthain.localdomain"
MachineMaxVacateTime = 10 * 60
MachineResources = "Cpus Memory Disk Swap"
MaxJobRetirementTime = 0
Memory = 1957
MonitorSelfAge = 1
MonitorSelfCPUUsage = 1.0
MonitorSelfImageSize = 26716
MonitorSelfRegisteredSocketCount = 0
MonitorSelfResidentSetSize = 12836
MonitorSelfSecuritySessions = 10
MonitorSelfTime = 1615756825
MyAddress = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>"
MyCurrentTime = 1615756825
MyType = "Machine"
Name = "[email protected]"
NextFetchWorkDelay = -1
NumPids = 0
OpSys = "LINUX"
OpSysAndVer = "Fedora33"
OpSysLegacy = "LINUX"
OpSysLongName = "Fedora release 33 (Thirty Three)"
OpSysMajorVer = 33
OpSysName = "Fedora"
OpSysShortName = "Fedora"
OpSysVer = 3300
Rank = 0.0
RecentDaemonCoreDutyCycle = 0.0
RecentJobPreemptions = 0
RecentJobRankPreemptions = 0
RecentJobStarts = 0
RecentJobUserPrioPreemptions = 0
Requirements = START
RetirementTimeRemaining = 0
SingularityVersion = "singularity version 3.7.1-1.fc33"
SlotID = 6
SlotType = "Static"
SlotTypeID = 0
SlotWeight = Cpus
Start = true
StartdIpAddr = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>"
StarterAbilityList = "HasVM,HasMPI,HasFileTransfer,HasJobDeferral,HasSingularity,HasJobTransferPlugins,HasPerFileEncryption,HasReconnect,HasTDP,HasJICLocalStdin,HasTransferInputRemaps,HasSelfCheckpointTransfers,HasJICLocalConfig"
State = "Unclaimed"
SubnetMask = "255.255.255.0"
TargetType = "Job"
TimeToLive = 2147483647
TotalCondorLoadAvg = 0.0
TotalCpus = 8.0
TotalDisk = 129523096
TotalLoadAvg = 0.59
TotalMemory = 15661
TotalSlotCpus = 1
TotalSlotDisk = 16190387.0
TotalSlotMemory = 1957
TotalSlots = 8
TotalVirtualMemory = 28313600
UidDomain = "gthain.localdomain"
Unhibernate = MY.MachineLastMatchTime =!= undefined
UpdateSequenceNumber = 1
UpdatesHistory = "00000000000000000000000000000000"
UpdatesLost = 0
UpdatesSequenced = 0
UpdatesTotal = 1
UtsnameMachine = "x86_64"
UtsnameNodename = "gthain.localdomain"
UtsnameRelease = "5.10.21-200.fc33.x86_64"
UtsnameSysname = "Linux"
UtsnameVersion = "#1 SMP Mon Mar 8 00:24:40 UTC 2021"
VirtualMemory = 3539200
WakeOnLanEnabledFlags = "NONE"
WakeOnLanSupportedFlags = "NONE"
AcceptedWhileDraining = false
Activity = "Idle"
AddressV1 = "{[ p=\"primary\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ], [ p=\"IPv4\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ]}"
Arch = "X86_64"
AuthenticatedIdentity = "condor@family"
AuthenticationMethod = "FAMILY"
CanHibernate = true
ClockDay = 0
ClockMin = 980
COLLECTOR_HOST_STRING = "gthain.localdomain:0"
CondorLoadAvg = 0.0
CondorPlatform = "$CondorPlatform: X86_64-Fedora_33 $"
CondorVersion = "$CondorVersion: 8.9.12 Mar 14 2021 BuildID: UW_development RC $"
ConsoleIdle = 0
CpuBusy = ((LoadAvg - CondorLoadAvg) >= 0.5)
CpuBusyTime = 0
CpuCacheSize = 8192
CpuFamily = 6
CpuIsBusy = false
CpuModelNumber = 142
Cpus = 1
CurrentRank = 0.0
DaemonCoreDutyCycle = 0.0
DaemonLastReconfigTime = 1615756825
DaemonShutdown = time() - DaemonStartTime > 1500
DaemonStartTime = 1615756825
DetectedCpus = 8
DetectedMemory = 15661
Disk = 16190387
EnteredCurrentActivity = 1615756825
EnteredCurrentState = 1615756825
ExpectedMachineGracefulDrainingBadput = 0
ExpectedMachineGracefulDrainingCompletion = 1615756825
ExpectedMachineQuickDrainingBadput = 0
ExpectedMachineQuickDrainingCompletion = 1615756825
FileSystemDomain = "gthain.localdomain"
HardwareAddress = "40:ec:99:82:52:b2"
has_avx = true
has_avx2 = true
has_sse4_1 = true
has_sse4_2 = true
has_ssse3 = true
HasFileTransfer = true
HasIOProxy = true
HasJICLocalConfig = true
HasJICLocalStdin = true
HasJobDeferral = true
HasJobTransferPlugins = true
HasMPI = true
HasPerFileEncryption = true
HasReconnect = true
HasSelfCheckpointTransfers = true
HasSingularity = true
HasTDP = true
HasTransferInputRemaps = true
HasUserNamespaces = true
HasVM = false
HibernationLevel = 0
HibernationState = "NONE"
HibernationSupportedStates = "S3,S4,S5"
IsLocalStartd = false
IsWakeAble = false
IsWakeOnLanEnabled = false
IsWakeOnLanSupported = false
JobPreemptions = 0
JobRankPreemptions = 0
JobStarts = 0
JobUserPrioPreemptions = 0
KeyboardIdle = 0
LastBenchmark = 0
LastFetchWorkCompleted = 0
LastFetchWorkSpawned = 0
LastHeardFrom = 1615756825
LoadAvg = 0.0
Machine = "gthain.localdomain"
MachineMaxVacateTime = 10 * 60
MachineResources = "Cpus Memory Disk Swap"
MaxJobRetirementTime = 0
Memory = 1957
MonitorSelfAge = 1
MonitorSelfCPUUsage = 1.0
MonitorSelfImageSize = 26716
MonitorSelfRegisteredSocketCount = 0
MonitorSelfResidentSetSize = 12836
MonitorSelfSecuritySessions = 10
MonitorSelfTime = 1615756825
MyAddress = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>"
MyCurrentTime = 1615756825
MyType = "Machine"
Name = "[email protected]"
NextFetchWorkDelay = -1
NumPids = 0
OpSys = "LINUX"
OpSysAndVer = "Fedora33"
OpSysLegacy = "LINUX"
OpSysLongName = "Fedora release 33 (Thirty Three)"
OpSysMajorVer = 33
OpSysName = "Fedora"
OpSysShortName = "Fedora"
OpSysVer = 3300
Rank = 0.0
RecentDaemonCoreDutyCycle = 0.0
RecentJobPreemptions = 0
RecentJobRankPreemptions = 0
RecentJobStarts = 0
RecentJobUserPrioPreemptions = 0
Requirements = START
RetirementTimeRemaining = 0
SingularityVersion = "singularity version 3.7.1-1.fc33"
SlotID = 7
SlotType = "Static"
SlotTypeID = 0
SlotWeight = Cpus
Start = true
StartdIpAddr = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>"
StarterAbilityList = "HasVM,HasMPI,HasFileTransfer,HasJobDeferral,HasSingularity,HasJobTransferPlugins,HasPerFileEncryption,HasReconnect,HasTDP,HasJICLocalStdin,HasTransferInputRemaps,HasSelfCheckpointTransfers,HasJICLocalConfig"
State = "Unclaimed"
SubnetMask = "255.255.255.0"
TargetType = "Job"
TimeToLive = 2147483647
TotalCondorLoadAvg = 0.0
TotalCpus = 8.0
TotalDisk = 129523096
TotalLoadAvg = 0.59
TotalMemory = 15661
TotalSlotCpus = 1
TotalSlotDisk = 16190387.0
TotalSlotMemory = 1957
TotalSlots = 8
TotalVirtualMemory = 28313600
UidDomain = "gthain.localdomain"
Unhibernate = MY.MachineLastMatchTime =!= undefined
UpdateSequenceNumber = 1
UpdatesHistory = "00000000000000000000000000000000"
UpdatesLost = 0
UpdatesSequenced = 0
UpdatesTotal = 1
UtsnameMachine = "x86_64"
UtsnameNodename = "gthain.localdomain"
UtsnameRelease = "5.10.21-200.fc33.x86_64"
UtsnameSysname = "Linux"
UtsnameVersion = "#1 SMP Mon Mar 8 00:24:40 UTC 2021"
VirtualMemory = 3539200
WakeOnLanEnabledFlags = "NONE"
WakeOnLanSupportedFlags = "NONE"
AcceptedWhileDraining = false
Activity = "Idle"
AddressV1 = "{[ p=\"primary\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ], [ p=\"IPv4\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ]}"
Arch = "X86_64"
AuthenticatedIdentity = "condor@family"
AuthenticationMethod = "FAMILY"
CanHibernate = true
ClockDay = 0
ClockMin = 980
COLLECTOR_HOST_STRING = "gthain.localdomain:0"
CondorLoadAvg = 0.0
CondorPlatform = "$CondorPlatform: X86_64-Fedora_33 $"
CondorVersion = "$CondorVersion: 8.9.12 Mar 14 2021 BuildID: UW_development RC $"
ConsoleIdle = 0
CpuBusy = ((LoadAvg - CondorLoadAvg) >= 0.5)
CpuBusyTime = 0
CpuCacheSize = 8192
CpuFamily = 6
CpuIsBusy = false
CpuModelNumber = 142
Cpus = 1
CurrentRank = 0.0
DaemonCoreDutyCycle = 0.0
DaemonLastReconfigTime = 1615756825
DaemonShutdown = time() - DaemonStartTime > 1500
DaemonStartTime = 1615756825
DetectedCpus = 8
DetectedMemory = 15661
Disk = 16190387
EnteredCurrentActivity = 1615756825
EnteredCurrentState = 1615756825
ExpectedMachineGracefulDrainingBadput = 0
ExpectedMachineGracefulDrainingCompletion = 1615756825
ExpectedMachineQuickDrainingBadput = 0
ExpectedMachineQuickDrainingCompletion = 1615756825
FileSystemDomain = "gthain.localdomain"
HardwareAddress = "40:ec:99:82:52:b2"
has_avx = true
has_avx2 = true
has_sse4_1 = true
has_sse4_2 = true
has_ssse3 = true
HasFileTransfer = true
HasIOProxy = true
HasJICLocalConfig = true
HasJICLocalStdin = true
HasJobDeferral = true
HasJobTransferPlugins = true
HasMPI = true
HasPerFileEncryption = true
HasReconnect = true
HasSelfCheckpointTransfers = true
HasSingularity = true
HasTDP = true
HasTransferInputRemaps = true
HasUserNamespaces = true
HasVM = false
HibernationLevel = 0
HibernationState = "NONE"
HibernationSupportedStates = "S3,S4,S5"
IsLocalStartd = false
IsWakeAble = false
IsWakeOnLanEnabled = false
IsWakeOnLanSupported = false
JobPreemptions = 0
JobRankPreemptions = 0
JobStarts = 0
JobUserPrioPreemptions = 0
KeyboardIdle = 0
LastBenchmark = 0
LastFetchWorkCompleted = 0
LastFetchWorkSpawned = 0
LastHeardFrom = 1615756825
LoadAvg = 0.0
Machine = "gthain.localdomain"
MachineMaxVacateTime = 10 * 60
MachineResources = "Cpus Memory Disk Swap"
MaxJobRetirementTime = 0
Memory = 1957
MonitorSelfAge = 1
MonitorSelfCPUUsage = 1.0
MonitorSelfImageSize = 26716
MonitorSelfRegisteredSocketCount = 0
MonitorSelfResidentSetSize = 12836
MonitorSelfSecuritySessions = 10
MonitorSelfTime = 1615756825
MyAddress = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>"
MyCurrentTime = 1615756825
MyType = "Machine"
Name = "[email protected]"
NextFetchWorkDelay = -1
NumPids = 0
OpSys = "LINUX"
OpSysAndVer = "Fedora33"
OpSysLegacy = "LINUX"
OpSysLongName = "Fedora release 33 (Thirty Three)"
OpSysMajorVer = 33
OpSysName = "Fedora"
OpSysShortName = "Fedora"
OpSysVer = 3300
Rank = 0.0
RecentDaemonCoreDutyCycle = 0.0
RecentJobPreemptions = 0
RecentJobRankPreemptions = 0
RecentJobStarts = 0
RecentJobUserPrioPreemptions = 0
Requirements = START
RetirementTimeRemaining = 0
SingularityVersion = "singularity version 3.7.1-1.fc33"
SlotID = 8
SlotType = "Static"
SlotTypeID = 0
SlotWeight = Cpus
Start = true
StartdIpAddr = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>"
StarterAbilityList = "HasVM,HasMPI,HasFileTransfer,HasJobDeferral,HasSingularity,HasJobTransferPlugins,HasPerFileEncryption,HasReconnect,HasTDP,HasJICLocalStdin,HasTransferInputRemaps,HasSelfCheckpointTransfers,HasJICLocalConfig"
State = "Unclaimed"
SubnetMask = "255.255.255.0"
TargetType = "Job"
TimeToLive = 2147483647
TotalCondorLoadAvg = 0.0
TotalCpus = 8.0
TotalDisk = 129523096
TotalLoadAvg = 0.59
TotalMemory = 15661
TotalSlotCpus = 1
TotalSlotDisk = 16190387.0
TotalSlotMemory = 1957
TotalSlots = 8
TotalVirtualMemory = 28313600
UidDomain = "gthain.localdomain"
Unhibernate = MY.MachineLastMatchTime =!= undefined
UpdateSequenceNumber = 1
UpdatesHistory = "00000000000000000000000000000000"
UpdatesLost = 0
UpdatesSequenced = 0
UpdatesTotal = 1
UtsnameMachine = "x86_64"
UtsnameNodename = "gthain.localdomain"
UtsnameRelease = "5.10.21-200.fc33.x86_64"
UtsnameSysname = "Linux"
UtsnameVersion = "#1 SMP Mon Mar 8 00:24:40 UTC 2021"
VirtualMemory = 3539200
WakeOnLanEnabledFlags = "NONE"
WakeOnLanSupportedFlags = "NONE"
| 30.416595 | 281 | 0.79388 |
06b950686444752cce6159a1a7ea70bd1c507b12 | 2,661 | adb | Ada | src/core/strings/util-strings-formats.adb | yrashk/ada-util | 2aaa1d87e92a7137e1c63dce90f0722c549dfafd | [
"Apache-2.0"
] | 60 | 2015-01-18T23:05:34.000Z | 2022-03-20T18:56:30.000Z | src/core/strings/util-strings-formats.adb | yrashk/ada-util | 2aaa1d87e92a7137e1c63dce90f0722c549dfafd | [
"Apache-2.0"
] | 20 | 2016-09-15T16:41:30.000Z | 2022-03-29T22:02:32.000Z | src/core/strings/util-strings-formats.adb | yrashk/ada-util | 2aaa1d87e92a7137e1c63dce90f0722c549dfafd | [
"Apache-2.0"
] | 10 | 2015-02-13T04:00:45.000Z | 2022-03-20T18:57:54.000Z | -----------------------------------------------------------------------
-- util-strings-formats -- String formatting helper
-- Copyright (C) 2021 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
package body Util.Strings.Formats is
procedure Append (Result : in out Util.Strings.Builders.Builder;
Item : in String_Access) is
begin
Util.Strings.Builders.Append (Result, Item.all);
end Append;
procedure Format (Into : in out Util.Strings.Builders.Builder;
Message : in String;
Arg1 : in String) is
V : constant String_Array_Access (1 .. 1) := (1 => Arg1'Unrestricted_Access);
begin
Format (Into, Message, V);
end Format;
procedure Format (Into : in out Util.Strings.Builders.Builder;
Message : in String;
Arg1 : in String;
Arg2 : in String;
Arg3 : in String;
Arg4 : in String) is
V : constant String_Array_Access (1 .. 4)
:= (1 => Arg1'Unrestricted_Access,
2 => Arg2'Unrestricted_Access,
3 => Arg3'Unrestricted_Access,
4 => Arg4'Unrestricted_Access);
begin
Format (Into, Message, V);
end Format;
function Format (Message : in String;
Arg1 : in String) return String is
Buffer : Util.Strings.Builders.Builder (256);
begin
Format (Buffer, Message, Arg1);
return Util.Strings.Builders.To_Array (Buffer);
end Format;
function Format (Message : in String;
Arg1 : in String;
Arg2 : in String;
Arg3 : in String;
Arg4 : in String) return String is
Buffer : Util.Strings.Builders.Builder (256);
begin
Format (Buffer, Message, Arg1, Arg2, Arg3, Arg4);
return Util.Strings.Builders.To_Array (Buffer);
end Format;
end Util.Strings.Formats;
| 38.014286 | 83 | 0.572717 |
571e25eadfa65d7957285f490c700cd15e4f1a54 | 2,293 | adb | Ada | src/sys/processes/os-none/util-processes-os.adb | yrashk/ada-util | 2aaa1d87e92a7137e1c63dce90f0722c549dfafd | [
"Apache-2.0"
] | 60 | 2015-01-18T23:05:34.000Z | 2022-03-20T18:56:30.000Z | src/sys/processes/os-none/util-processes-os.adb | yrashk/ada-util | 2aaa1d87e92a7137e1c63dce90f0722c549dfafd | [
"Apache-2.0"
] | 20 | 2016-09-15T16:41:30.000Z | 2022-03-29T22:02:32.000Z | src/sys/processes/os-none/util-processes-os.adb | yrashk/ada-util | 2aaa1d87e92a7137e1c63dce90f0722c549dfafd | [
"Apache-2.0"
] | 10 | 2015-02-13T04:00:45.000Z | 2022-03-20T18:57:54.000Z | -----------------------------------------------------------------------
-- util-processes-os -- Dummy system specific and low level operations
-- Copyright (C) 2011 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
package body Util.Processes.Os is
-- ------------------------------
-- Wait for the process to exit.
-- ------------------------------
overriding
procedure Wait (Sys : in out System_Process;
Proc : in out Process'Class;
Timeout : in Duration) is
pragma Unreferenced (Sys, Timeout);
begin
Proc.Exit_Value := -1;
end Wait;
-- ------------------------------
-- Spawn a new process.
-- ------------------------------
overriding
procedure Spawn (Sys : in out System_Process;
Proc : in out Process'Class;
Mode : in Pipe_Mode := NONE) is
pragma Unreferenced (Sys, Proc, Mode);
begin
raise Program_Error with "Spawn is not supported";
end Spawn;
-- ------------------------------
-- Append the argument to the process argument list.
-- ------------------------------
overriding
procedure Append_Argument (Sys : in out System_Process;
Arg : in String) is
begin
raise Program_Error with "Spawn is not supported";
end Append_Argument;
-- ------------------------------
-- Deletes the storage held by the system process.
-- ------------------------------
overriding
procedure Finalize (Sys : in out System_Process) is
begin
null;
end Finalize;
end Util.Processes.Os;
| 33.720588 | 76 | 0.533799 |
41cda306c2c2e8a709117ffe25a4387c283ae2aa | 143 | ads | Ada | src/bb_pico_bsp-touch.ads | Fabien-Chouteau/bb_pico_bsp | 76f9999eba98bf8b1088fc18b6e23325fd8adc75 | [
"MIT"
] | null | null | null | src/bb_pico_bsp-touch.ads | Fabien-Chouteau/bb_pico_bsp | 76f9999eba98bf8b1088fc18b6e23325fd8adc75 | [
"MIT"
] | null | null | null | src/bb_pico_bsp-touch.ads | Fabien-Chouteau/bb_pico_bsp | 76f9999eba98bf8b1088fc18b6e23325fd8adc75 | [
"MIT"
] | null | null | null | with HAL.Touch_Panel;
package BB_Pico_Bsp.Touch is
function Get_All_Touch_Points return HAL.Touch_Panel.TP_State;
end BB_Pico_Bsp.Touch;
| 17.875 | 65 | 0.825175 |
290473427872f901c28006c7a20ef988558b3eab | 4,079 | ads | Ada | llvm-gcc-4.2-2.9/gcc/ada/sem_ch4.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | 1 | 2016-04-09T02:58:13.000Z | 2016-04-09T02:58:13.000Z | llvm-gcc-4.2-2.9/gcc/ada/sem_ch4.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | llvm-gcc-4.2-2.9/gcc/ada/sem_ch4.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S E M _ C H 4 --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992,1993,1994,1995,1996 Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 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 Types; use Types;
package Sem_Ch4 is
procedure Analyze_Aggregate (N : Node_Id);
procedure Analyze_Allocator (N : Node_Id);
procedure Analyze_Arithmetic_Op (N : Node_Id);
procedure Analyze_Call (N : Node_Id);
procedure Analyze_Comparison_Op (N : Node_Id);
procedure Analyze_Concatenation (N : Node_Id);
procedure Analyze_Conditional_Expression (N : Node_Id);
procedure Analyze_Equality_Op (N : Node_Id);
procedure Analyze_Explicit_Dereference (N : Node_Id);
procedure Analyze_Logical_Op (N : Node_Id);
procedure Analyze_Membership_Op (N : Node_Id);
procedure Analyze_Negation (N : Node_Id);
procedure Analyze_Null (N : Node_Id);
procedure Analyze_Qualified_Expression (N : Node_Id);
procedure Analyze_Range (N : Node_Id);
procedure Analyze_Reference (N : Node_Id);
procedure Analyze_Selected_Component (N : Node_Id);
procedure Analyze_Short_Circuit (N : Node_Id);
procedure Analyze_Slice (N : Node_Id);
procedure Analyze_Type_Conversion (N : Node_Id);
procedure Analyze_Unary_Op (N : Node_Id);
procedure Analyze_Unchecked_Expression (N : Node_Id);
procedure Analyze_Unchecked_Type_Conversion (N : Node_Id);
procedure Analyze_Indexed_Component_Form (N : Node_Id);
-- Prior to semantic analysis, an indexed component node can denote any
-- of the following syntactic constructs:
-- a) An indexed component of an array
-- b) A function call
-- c) A conversion
-- d) A slice
-- The resolution of the construct requires some semantic information
-- on the prefix and the indices.
end Sem_Ch4;
| 62.753846 | 78 | 0.468987 |
59655a2b63e9192505cea5445da87ee0e958d166 | 4,017 | ads | Ada | llvm-gcc-4.2-2.9/gcc/ada/a-timoau.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | 1 | 2016-04-09T02:58:13.000Z | 2016-04-09T02:58:13.000Z | llvm-gcc-4.2-2.9/gcc/ada/a-timoau.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | llvm-gcc-4.2-2.9/gcc/ada/a-timoau.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . T E X T _ I O . M O D U L A R _ A U X --
-- --
-- S p e c --
-- --
-- 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, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package contains the routines for Ada.Text_IO.Modular_IO that are
-- shared among separate instantiations of this package. The routines in
-- this package are identical semantically to those in Modular_IO itself,
-- except that the generic parameter Num has been replaced by Unsigned or
-- Long_Long_Unsigned, and the default parameters have been removed because
-- they are supplied explicitly by the calls from within the generic template.
with System.Unsigned_Types;
private package Ada.Text_IO.Modular_Aux is
package U renames System.Unsigned_Types;
procedure Get_Uns
(File : File_Type;
Item : out U.Unsigned;
Width : Field);
procedure Get_LLU
(File : File_Type;
Item : out U.Long_Long_Unsigned;
Width : Field);
procedure Put_Uns
(File : File_Type;
Item : U.Unsigned;
Width : Field;
Base : Number_Base);
procedure Put_LLU
(File : File_Type;
Item : U.Long_Long_Unsigned;
Width : Field;
Base : Number_Base);
procedure Gets_Uns
(From : String;
Item : out U.Unsigned;
Last : out Positive);
procedure Gets_LLU
(From : String;
Item : out U.Long_Long_Unsigned;
Last : out Positive);
procedure Puts_Uns
(To : out String;
Item : U.Unsigned;
Base : Number_Base);
procedure Puts_LLU
(To : out String;
Item : U.Long_Long_Unsigned;
Base : Number_Base);
end Ada.Text_IO.Modular_Aux;
| 44.633333 | 79 | 0.506597 |
2949731de1d53bfe7ec5e80eed217e9cc97741a5 | 10,276 | ads | Ada | source/league/ucd/matreshka-internals-unicode-ucd-core_00fb.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | source/league/ucd/matreshka-internals-unicode-ucd-core_00fb.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | source/league/ucd/matreshka-internals-unicode-ucd-core_00fb.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 4 | 2017-07-18T07:11:05.000Z | 2020-06-21T03:02:25.000Z | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Localization, Internationalization, Globalization for Ada --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2012-2015, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
pragma Restrictions (No_Elaboration_Code);
-- GNAT: enforce generation of preinitialized data section instead of
-- generation of elaboration code.
package Matreshka.Internals.Unicode.Ucd.Core_00FB is
pragma Preelaborate;
Group_00FB : aliased constant Core_Second_Stage
:= (16#00# .. 16#06# => -- FB00 .. FB06
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casefolded
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#07# .. 16#12# => -- FB07 .. FB12
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#13# .. 16#17# => -- FB13 .. FB17
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casefolded
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#18# .. 16#1C# => -- FB18 .. FB1C
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#1D# => -- FB1D
(Other_Letter, Neutral,
Other, Hebrew_Letter, O_Letter, Hebrew_Letter,
(Alphabetic
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#1E# => -- FB1E
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Diacritic
| Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#1F# .. 16#28# => -- FB1F .. FB28
(Other_Letter, Neutral,
Other, Hebrew_Letter, O_Letter, Hebrew_Letter,
(Alphabetic
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#29# => -- FB29
(Math_Symbol, Neutral,
Other, Other, Other, Alphabetic,
(Grapheme_Base
| Math
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#2A# .. 16#36# => -- FB2A .. FB36
(Other_Letter, Neutral,
Other, Hebrew_Letter, O_Letter, Hebrew_Letter,
(Alphabetic
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#37# => -- FB37
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#38# .. 16#3C# => -- FB38 .. FB3C
(Other_Letter, Neutral,
Other, Hebrew_Letter, O_Letter, Hebrew_Letter,
(Alphabetic
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#3D# => -- FB3D
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#3E# => -- FB3E
(Other_Letter, Neutral,
Other, Hebrew_Letter, O_Letter, Hebrew_Letter,
(Alphabetic
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#3F# => -- FB3F
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#40# .. 16#41# => -- FB40 .. FB41
(Other_Letter, Neutral,
Other, Hebrew_Letter, O_Letter, Hebrew_Letter,
(Alphabetic
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#42# => -- FB42
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#43# .. 16#44# => -- FB43 .. FB44
(Other_Letter, Neutral,
Other, Hebrew_Letter, O_Letter, Hebrew_Letter,
(Alphabetic
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#45# => -- FB45
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#46# .. 16#4F# => -- FB46 .. FB4F
(Other_Letter, Neutral,
Other, Hebrew_Letter, O_Letter, Hebrew_Letter,
(Alphabetic
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start
| Changes_When_NFKC_Casefolded => True,
others => False)),
16#B2# .. 16#C1# => -- FBB2 .. FBC1
(Modifier_Symbol, Neutral,
Other, Other, Other, Alphabetic,
(Case_Ignorable
| Grapheme_Base => True,
others => False)),
16#C2# .. 16#D2# => -- FBC2 .. FBD2
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
others =>
(Other_Letter, Neutral,
Other, A_Letter, O_Letter, Alphabetic,
(Alphabetic
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start
| Changes_When_NFKC_Casefolded => True,
others => False)));
end Matreshka.Internals.Unicode.Ucd.Core_00FB;
| 41.942857 | 78 | 0.448521 |
293e8589910daf5a827338d394f1daa40910d9d5 | 7,905 | ads | Ada | bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/a-chahan.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/a-chahan.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/a-chahan.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . C H A R A C T E R S . H A N D L I N G --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2021, Free Software Foundation, Inc. --
-- --
-- This specification is derived from the Ada Reference Manual for use with --
-- GNAT. The copyright notice above, and the license provisions that follow --
-- apply solely to the contents of the part following the private keyword. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
package Ada.Characters.Handling is
pragma Pure;
-- In accordance with Ada 2005 AI-362
----------------------------------------
-- Character Classification Functions --
----------------------------------------
function Is_Control (Item : Character) return Boolean;
function Is_Graphic (Item : Character) return Boolean;
function Is_Letter (Item : Character) return Boolean;
function Is_Lower (Item : Character) return Boolean;
function Is_Upper (Item : Character) return Boolean;
function Is_Basic (Item : Character) return Boolean;
function Is_Digit (Item : Character) return Boolean;
function Is_Decimal_Digit (Item : Character) return Boolean
renames Is_Digit;
function Is_Hexadecimal_Digit (Item : Character) return Boolean;
function Is_Alphanumeric (Item : Character) return Boolean;
function Is_Special (Item : Character) return Boolean;
function Is_Line_Terminator (Item : Character) return Boolean;
function Is_Mark (Item : Character) return Boolean;
function Is_Other_Format (Item : Character) return Boolean;
function Is_Punctuation_Connector (Item : Character) return Boolean;
function Is_Space (Item : Character) return Boolean;
function Is_NFKC (Item : Character) return Boolean;
---------------------------------------------------
-- Conversion Functions for Character and String --
---------------------------------------------------
function To_Lower (Item : Character) return Character;
function To_Upper (Item : Character) return Character;
function To_Basic (Item : Character) return Character;
function To_Lower (Item : String) return String;
function To_Upper (Item : String) return String;
function To_Basic (Item : String) return String;
----------------------------------------------------------------------
-- Classifications of and Conversions Between Character and ISO 646 --
----------------------------------------------------------------------
subtype ISO_646 is
Character range Character'Val (0) .. Character'Val (127);
function Is_ISO_646 (Item : Character) return Boolean;
function Is_ISO_646 (Item : String) return Boolean;
function To_ISO_646
(Item : Character;
Substitute : ISO_646 := ' ') return ISO_646;
function To_ISO_646
(Item : String;
Substitute : ISO_646 := ' ') return String;
------------------------------------------------------
-- Classifications of Wide_Character and Characters --
------------------------------------------------------
-- Ada 2005 AI 395: these functions are moved to Ada.Characters.Conversions
-- and are considered obsolete in Ada.Characters.Handling. However we do
-- not complain about this obsolescence, since in practice it is necessary
-- to use these routines when creating code that is intended to run in
-- either Ada 95 or Ada 2005 mode.
-- We do however have to flag these if the pragma No_Obsolescent_Features
-- restriction is active (see Restrict.Check_Obsolescent_2005_Entity).
function Is_Character (Item : Wide_Character) return Boolean;
function Is_String (Item : Wide_String) return Boolean;
------------------------------------------------------
-- Conversions between Wide_Character and Character --
------------------------------------------------------
-- Ada 2005 AI 395: these functions are moved to Ada.Characters.Conversions
-- and are considered obsolete in Ada.Characters.Handling. However we do
-- not complain about this obsolescence, since in practice it is necessary
-- to use these routines when creating code that is intended to run in
-- either Ada 95 or Ada 2005 mode.
-- We do however have to flag these if the pragma No_Obsolescent_Features
-- restriction is active (see Restrict.Check_Obsolescent_2005_Entity).
function To_Character
(Item : Wide_Character;
Substitute : Character := ' ') return Character;
function To_String
(Item : Wide_String;
Substitute : Character := ' ') return String;
function To_Wide_Character
(Item : Character) return Wide_Character;
function To_Wide_String
(Item : String) return Wide_String;
private
pragma Inline (Is_Alphanumeric);
pragma Inline (Is_Basic);
pragma Inline (Is_Character);
pragma Inline (Is_Control);
pragma Inline (Is_Digit);
pragma Inline (Is_Graphic);
pragma Inline (Is_Hexadecimal_Digit);
pragma Inline (Is_ISO_646);
pragma Inline (Is_Letter);
pragma Inline (Is_Line_Terminator);
pragma Inline (Is_Lower);
pragma Inline (Is_Mark);
pragma Inline (Is_Other_Format);
pragma Inline (Is_Punctuation_Connector);
pragma Inline (Is_Space);
pragma Inline (Is_Special);
pragma Inline (Is_Upper);
pragma Inline (To_Basic);
pragma Inline (To_Character);
pragma Inline (To_Lower);
pragma Inline (To_Upper);
pragma Inline (To_Wide_Character);
end Ada.Characters.Handling;
| 49.099379 | 79 | 0.519798 |
06143253c36fa97f3a58e87bb709b75c578fa2a5 | 1,368 | ads | Ada | src/fastpbkdf2_h_generic.ads | AntonMeep/fastpbkdf2_ada | ef1c2f3ad47ef550709434f65ff49395f486fd19 | [
"0BSD"
] | null | null | null | src/fastpbkdf2_h_generic.ads | AntonMeep/fastpbkdf2_ada | ef1c2f3ad47ef550709434f65ff49395f486fd19 | [
"0BSD"
] | null | null | null | src/fastpbkdf2_h_generic.ads | AntonMeep/fastpbkdf2_ada | ef1c2f3ad47ef550709434f65ff49395f486fd19 | [
"0BSD"
] | null | null | null | pragma Ada_2012;
with System.Parameters;
generic
type U8 is mod <>;
type U32 is mod <>;
type SZT is mod <>;
package fastpbkdf2_h_generic with
Pure,
Preelaborate
is
pragma Compile_Time_Error
(U8'Modulus /= 2**8, "'U8' type must be mod 2**8");
pragma Compile_Time_Error
(U32'Modulus /= 2**32, "'U32' type must be mod 2**32");
pragma Compile_Time_Error
(SZT'Modulus /= 2**System.Parameters.ptr_bits,
"'SZT' type must be 2**(system ptr bits)");
procedure fastpbkdf2_hmac_sha1
(pw : access constant U8; npw : SZT; salt : access constant U8;
nsalt : SZT; iterations : U32; c_out : access U8; nout : SZT) with
Import => True,
Convention => C,
External_Name => "fastpbkdf2_hmac_sha1";
procedure fastpbkdf2_hmac_sha256
(pw : access constant U8; npw : SZT; salt : access constant U8;
nsalt : SZT; iterations : U32; c_out : access U8; nout : SZT) with
Import => True,
Convention => C,
External_Name => "fastpbkdf2_hmac_sha256";
procedure fastpbkdf2_hmac_sha512
(pw : access constant U8; npw : SZT; salt : access constant U8;
nsalt : SZT; iterations : U32; c_out : access U8; nout : SZT) with
Import => True,
Convention => C,
External_Name => "fastpbkdf2_hmac_sha512";
end fastpbkdf2_h_generic;
| 32.571429 | 72 | 0.633041 |
5970d0585cca917ce66341353759bfa272e8bb41 | 226 | ads | Ada | electives/pw/lab/lista-3/ada/logger.ads | jerry-sky/academic-notebook | be2d350289441b99168ea40412891bc65b9cb431 | [
"Unlicense"
] | 4 | 2020-12-28T21:53:00.000Z | 2022-03-22T19:24:47.000Z | electives/pw/lab/lista-3/ada/logger.ads | jerry-sky/academic-notebook | be2d350289441b99168ea40412891bc65b9cb431 | [
"Unlicense"
] | 3 | 2022-02-13T18:07:10.000Z | 2022-02-13T18:16:07.000Z | electives/pw/lab/lista-3/ada/logger.ads | jerry-sky/academic-notebook | be2d350289441b99168ea40412891bc65b9cb431 | [
"Unlicense"
] | 4 | 2020-12-28T16:05:35.000Z | 2022-03-08T16:20:00.000Z | with External; use External;
package Logger is
task type LoggerReceiver is
entry Log(message: String);
entry Stop;
end LoggerReceiver;
type pLoggerReceiver is access LoggerReceiver;
end Logger;
| 17.384615 | 50 | 0.70354 |
39c1475874d5f5f7c46961f1c5ee0c8cb864aa3c | 3,829 | ads | Ada | source/asis/asis-gela-overloads-walk-down.ads | faelys/gela-asis | 48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253 | [
"BSD-3-Clause"
] | 4 | 2016-02-05T15:51:56.000Z | 2022-03-25T20:38:32.000Z | source/asis/asis-gela-overloads-walk-down.ads | faelys/gela-asis | 48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253 | [
"BSD-3-Clause"
] | null | null | null | source/asis/asis-gela-overloads-walk-down.ads | faelys/gela-asis | 48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253 | [
"BSD-3-Clause"
] | null | null | null | ------------------------------------------------------------------------------
-- 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:
-- Helper procedures to implement up-to-down pass
with Asis.Gela.Classes;
package Asis.Gela.Overloads.Walk.Down is
procedure Function_Call
(Resolver : in out Down_Resolver;
Element : in out Asis.Element);
procedure Explicit_Dereference
(Resolver : in out Down_Resolver;
Element : in Asis.Element);
procedure Selected_Component
(Resolver : in out Down_Resolver;
Element : in Asis.Element);
procedure Attribute_Reference
(Resolver : in out Down_Resolver;
Element : in Asis.Element);
procedure Aggregate
(Resolver : in out Down_Resolver;
Element : in out Asis.Element;
Extension : in Boolean := False);
procedure Membership
(Resolver : in out Down_Resolver;
Element : in out Asis.Element);
procedure Qualified_Expression
(Resolver : in out Down_Resolver;
Element : in out Asis.Element);
procedure Check_Implicit
(Resolver : in out Down_Resolver;
Element : in out Asis.Element;
Control : in out Traverse_Control);
procedure Assignment
(Resolver : in out Down_Resolver;
Element : in out Asis.Element);
procedure Set_Expression_Type
(Element : Asis.Expression;
Tipe : Classes.Type_Info);
procedure Set_Expression_Type
(Element : Asis.Expression;
Tipe : Asis.Element);
end Asis.Gela.Overloads.Walk.Down;
------------------------------------------------------------------------------
-- 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.
------------------------------------------------------------------------------
| 41.172043 | 79 | 0.608253 |
2f559da25f9bf4fd1dd0e0a60797581a17eb0291 | 431 | adb | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/aggr16.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 7 | 2020-05-02T17:34:05.000Z | 2021-10-17T10:15:18.000Z | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/aggr16.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/aggr16.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | -- { dg-do compile }
with Aggr16_Pkg; use Aggr16_Pkg;
package body Aggr16 is
type Arr is array (1 .. 4) of Time;
type Change_Type is (One, Two, Three);
type Change (D : Change_Type) is record
case D is
when Three =>
A : Arr;
when Others =>
B : Boolean;
end case;
end record;
procedure Proc is
C : Change (Three);
begin
C.A := (others => Null_Time);
end;
end Aggr16;
| 15.962963 | 41 | 0.584687 |
0b6b828929727383882d31d9f1bf3bcc4173c08f | 3,796 | adb | Ada | 3-mid/opengl/source/platform/osmesa/opengl-surface_profile.adb | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 20 | 2015-11-04T09:23:59.000Z | 2022-01-14T10:21:42.000Z | 3-mid/opengl/source/platform/osmesa/opengl-surface_profile.adb | charlie5/lace-alire | 9ace9682cf4daac7adb9f980c2868d6225b8111c | [
"0BSD"
] | 2 | 2015-11-04T17:05:56.000Z | 2015-12-08T03:16:13.000Z | 3-mid/opengl/source/platform/osmesa/opengl-surface_profile.adb | charlie5/lace-alire | 9ace9682cf4daac7adb9f980c2868d6225b8111c | [
"0BSD"
] | 1 | 2015-12-07T12:53:52.000Z | 2015-12-07T12:53:52.000Z | with
interfaces.C,
ada.unchecked_Conversion;
package body openGL.surface_Profile
is
use Interfaces,
OSMesa_c;
-- visual_attribs : array (Positive range <>) of aliased C.int := (GLX_X_RENDERABLE, 1,
-- GLX_DRAWABLE_TYPE, GLX_WINDOW_BIT,
-- GLX_RENDER_TYPE, GLX_RGBA_BIT,
-- GLX_X_VISUAL_TYPE, GLX_TRUE_COLOR,
-- GLX_RED_SIZE, 8,
-- GLX_GREEN_SIZE, 8,
-- GLX_BLUE_SIZE, 8,
-- GLX_ALPHA_SIZE, 8,
-- GLX_DEPTH_SIZE, 24,
-- GLX_STENCIL_SIZE, 8,
-- GLX_DOUBLEBUFFER, 1,
-- -- GLX_SAMPLE_BUFFERS , 1,
-- -- GLX_SAMPLES , 4,
-- 0
-- );
procedure define (Self : in out Item; the_Display : access openGL.Display.item'Class;
Screen : access openGL.Screen .item'Class;
Desired : in Qualities := default_Qualities)
is
pragma Unreferenced (Desired);
use openGL.Screen;
default_screen : constant C.int := the_Display.screen_Id;
num_fb_configs : aliased C.int := 0;
visual_Id : aliased C.int;
unused : C.int; pragma Unreferenced (unused);
begin
Self.Display := the_Display;
end define;
-- function get_Visual (Self : in Item) return access GLX.XVisualInfo
-- is
-- begin
-- return Self.Visual;
-- end get_Visual;
function fetch_All (the_Display : access openGL.Display.item'class) return surface_Profile.items
is
begin
raise Program_Error with "TBD";
return (1 .. 0 => <>);
end fetch_All;
function Quality (Self : in Item) return Qualities
is
pragma Unreferenced (Self);
begin
raise Program_Error with "TBD";
return (others => <>);
end Quality;
function value_Image (Value : in Natural) return String
is
begin
if Value = Irrelevant then
return "Irrelevant";
else
return Natural'Image (Value);
end if;
end value_Image;
function Image (Self : in color_Buffer) return String
is
begin
return
"Bits_red =>" & value_Image (Self.Bits_red)
& " Bits_green =>" & value_Image (Self.Bits_green)
& " Bits_blue =>" & value_Image (Self.Bits_blue)
& " Bits_luminence =>" & value_Image (Self.Bits_luminence)
& " Bits_alpha =>" & value_Image (Self.Bits_alpha)
& " Bits_alpha_mask =>" & value_Image (Self.Bits_alpha_mask);
end Image;
function Image (Self : in Qualities) return String
is
begin
return
Image (Self.color_Buffer)
& " depth_buffer_Bits =>" & value_Image (Self.depth_buffer_Bits)
& " stencil_buffer_Bits => " & value_Image (Self.stencil_buffer_Bits);
end Image;
end openGL.surface_Profile;
| 33.59292 | 110 | 0.445469 |
2f291306a3cf5238b0ec8d35bfc355438975a2fd | 74,677 | adb | Ada | src/gen-artifacts-xmi.adb | jquorning/dynamo | 10d68571476c270b8e45a9c5ef585fa9139b0d05 | [
"Apache-2.0"
] | 15 | 2015-01-18T23:04:19.000Z | 2022-03-01T20:27:08.000Z | src/gen-artifacts-xmi.adb | jquorning/dynamo | 10d68571476c270b8e45a9c5ef585fa9139b0d05 | [
"Apache-2.0"
] | 16 | 2018-06-10T07:09:30.000Z | 2022-03-26T18:28:40.000Z | src/gen-artifacts-xmi.adb | jquorning/dynamo | 10d68571476c270b8e45a9c5ef585fa9139b0d05 | [
"Apache-2.0"
] | 3 | 2015-11-11T18:00:14.000Z | 2022-01-30T23:08:45.000Z | -----------------------------------------------------------------------
-- gen-artifacts-xmi -- UML-XMI artifact for Code Generator
-- Copyright (C) 2012, 2013, 2014, 2015, 2016, 2018, 2021 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- 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.Directories;
with Ada.Strings.Fixed;
with Gen.Configs;
with Gen.Utils;
with Gen.Model.Tables;
with Gen.Model.Enums;
with Gen.Model.Mappings;
with Gen.Model.Beans;
with Gen.Model.Operations;
with Gen.Model.Stypes;
with Util.Log.Loggers;
with Util.Strings;
with Util.Files;
with Util.Beans;
with Util.Beans.Objects;
with Util.Serialize.Mappers.Record_Mapper;
with Util.Serialize.IO.XML;
with Util.Processes;
with Util.Streams.Pipes;
with Util.Streams.Buffered;
package body Gen.Artifacts.XMI is
use Ada.Strings.Unbounded;
use Gen.Model;
use Gen.Configs;
package UBO renames Util.Beans.Objects;
Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("Gen.Artifacts.XMI");
-- Get the visibility from the XMI visibility value.
function Get_Visibility (Value : in UBO.Object) return Model.XMI.Visibility_Type;
-- Get the changeability from the XMI visibility value.
function Get_Changeability (Value : in UBO.Object)
return Model.XMI.Changeability_Type;
-- Get the parameter kind from the XMI parameter kind value.
function Get_Parameter_Type (Value : in UBO.Object)
return Model.XMI.Parameter_Type;
procedure Iterate_For_Table is
new Gen.Model.XMI.Iterate_Elements (T => Gen.Model.Tables.Table_Definition'Class);
procedure Iterate_For_Bean is
new Gen.Model.XMI.Iterate_Elements (T => Gen.Model.Beans.Bean_Definition'Class);
procedure Iterate_For_Package is
new Gen.Model.XMI.Iterate_Elements (T => Gen.Model.Packages.Package_Definition'Class);
procedure Iterate_For_Enum is
new Gen.Model.XMI.Iterate_Elements (T => Gen.Model.Enums.Enum_Definition'Class);
procedure Iterate_For_Operation is
new Gen.Model.XMI.Iterate_Elements (T => Gen.Model.Operations.Operation_Definition'Class);
function Find_Stereotype is
new Gen.Model.XMI.Find_Element (Element_Type => Model.XMI.Stereotype_Element,
Element_Type_Access => Model.XMI.Stereotype_Element_Access);
function Find_Tag_Definition is
new Gen.Model.XMI.Find_Element
(Element_Type => Model.XMI.Tag_Definition_Element,
Element_Type_Access => Model.XMI.Tag_Definition_Element_Access);
type XMI_Fields is (FIELD_NAME,
FIELD_ID,
FIELD_ID_REF,
FIELD_VALUE,
FIELD_HREF,
FIELD_CLASS_NAME, FIELD_CLASS_ID,
FIELD_STEREOTYPE,
FIELD_STEREOTYPE_NAME,
FIELD_STEREOTYPE_ID,
FIELD_STEREOTYPE_HREF,
FIELD_ATTRIBUTE_NAME,
FIELD_ATTRIBUTE_ID,
FIELD_ATTRIBUTE_VISIBILITY,
FIELD_ATTRIBUTE_CHANGEABILITY,
FIELD_ATTRIBUTE_INITIAL_VALUE,
FIELD_ATTRIBUTE,
FIELD_MULTIPLICITY_UPPER,
FIELD_MULTIPLICITY_LOWER,
FIELD_PACKAGE_ID,
FIELD_PACKAGE_NAME,
FIELD_PACKAGE_END,
FIELD_CLASS_VISIBILITY,
FIELD_DATA_TYPE,
FIELD_DATA_TYPE_NAME,
FIELD_DATA_TYPE_HREF,
FIELD_CLASS_END,
FIELD_ASSOCIATION_NAME,
FIELD_ASSOCIATION_ID,
FIELD_ASSOCIATION,
FIELD_ASSOCIATION_CLASS_ID,
FIELD_CLASSIFIER_HREF,
FIELD_GENERALIZATION_ID,
FIELD_GENERALIZATION_CHILD_ID,
FIELD_GENERALIZATION_PARENT_ID,
FIELD_GENERALIZATION_END,
FIELD_ASSOCIATION_END_ID,
FIELD_ASSOCIATION_END_NAME,
FIELD_ASSOCIATION_END_VISIBILITY,
FIELD_ASSOCIATION_END_NAVIGABLE,
FIELD_ASSOCIATION_END,
FIELD_OPERATION_ID,
FIELD_OPERATION_NAME,
FIELD_OPERATION_END,
FIELD_PARAMETER_ID,
FIELD_PARAMETER_NAME,
FIELD_PARAMETER_KIND,
FIELD_PARAMETER_END,
FIELD_COMMENT,
FIELD_COMMENT_ID,
FIELD_TAG_DEFINITION,
FIELD_TAG_DEFINITION_ID,
FIELD_TAG_DEFINITION_NAME,
FIELD_TAGGED_ID,
FIELD_TAGGED_VALUE,
FIELD_ENUMERATION,
FIELD_ENUMERATION_LITERAL,
FIELD_ENUMERATION_LITERAL_END,
FIELD_ENUMERATION_HREF);
type XMI_Info is record
Model : Gen.Model.XMI.Model_Map_Access;
Default_Type : UString;
File : UString;
Parser : access Util.Serialize.IO.XML.Parser'Class;
Profiles : access Util.Strings.Sets.Set;
Is_Profile : Boolean := False;
Class_Element : Gen.Model.XMI.Class_Element_Access;
Class_Name : UBO.Object;
Class_Visibility : Gen.Model.XMI.Visibility_Type := Gen.Model.XMI.VISIBILITY_PUBLIC;
Class_Id : UBO.Object;
-- UML Generalization.
Child_Id : UBO.Object;
Parent_Id : UBO.Object;
Generalization_Id : UBO.Object;
Generalization : Gen.Model.XMI.Generalization_Element_Access;
Package_Element : Gen.Model.XMI.Package_Element_Access;
Package_Id : UBO.Object;
Attr_Id : UBO.Object;
Attr_Element : Gen.Model.XMI.Attribute_Element_Access;
Attr_Visibility : Gen.Model.XMI.Visibility_Type := Gen.Model.XMI.VISIBILITY_PUBLIC;
Attr_Changeability : Gen.Model.XMI.Changeability_Type
:= Gen.Model.XMI.CHANGEABILITY_CHANGEABLE;
Attr_Value : UBO.Object;
Multiplicity_Lower : Integer := 0;
Multiplicity_Upper : Integer := 0;
Association : Gen.Model.XMI.Association_Element_Access;
Assos_End_Element : Gen.Model.XMI.Association_End_Element_Access;
Assos_End_Name : UBO.Object;
Assos_End_Visibility : Gen.Model.XMI.Visibility_Type := Gen.Model.XMI.VISIBILITY_PUBLIC;
Assos_End_Navigable : Boolean := False;
Operation_Id : UBO.Object;
Operation : Gen.Model.XMI.Operation_Element_Access;
Parameter : Gen.Model.XMI.Parameter_Element_Access;
Parameter_Type : Gen.Model.XMI.Parameter_Type;
Name : UBO.Object;
Id : UBO.Object;
Ref_Id : UBO.Object;
Value : UBO.Object;
Href : UBO.Object;
Tag_Name : UBO.Object;
Tagged_Id : UBO.Object;
Association_Id : UBO.Object;
Stereotype_Id : UBO.Object;
Data_Type : Gen.Model.XMI.Data_Type_Element_Access;
Enumeration : Gen.Model.XMI.Enum_Element_Access;
Enumeration_Literal : Gen.Model.XMI.Literal_Element_Access;
Tag_Definition : Gen.Model.XMI.Tag_Definition_Element_Access;
Stereotype : Gen.Model.XMI.Stereotype_Element_Access;
Tagged_Value : Gen.Model.XMI.Tagged_Value_Element_Access;
Comment : Gen.Model.XMI.Comment_Element_Access;
Has_Package_Id : Boolean := False;
Has_Package_Name : Boolean := False;
end record;
type XMI_Access is access all XMI_Info;
procedure Add_Tagged_Value (P : in out XMI_Info);
procedure Set_Member (P : in out XMI_Info;
Field : in XMI_Fields;
Value : in UBO.Object);
-- Set the package name and or XMI id.
procedure Set_Package (P : in out XMI_Info;
Name : in UBO.Object;
Id : in UBO.Object);
use type Gen.Model.XMI.Model_Element_Access;
use type Gen.Model.XMI.Attribute_Element_Access;
use type Gen.Model.XMI.Class_Element_Access;
use type Gen.Model.XMI.Package_Element_Access;
use type Gen.Model.XMI.Tag_Definition_Element_Access;
use type Gen.Model.XMI.Association_End_Element_Access;
use type Gen.Model.XMI.Stereotype_Element_Access;
use type Gen.Model.XMI.Enum_Element_Access;
use type Gen.Model.XMI.Literal_Element_Access;
use type Gen.Model.XMI.Comment_Element_Access;
use type Gen.Model.XMI.Operation_Element_Access;
use type Gen.Model.XMI.Association_Element_Access;
use type Gen.Model.XMI.Ref_Type_Element_Access;
use type Gen.Model.XMI.Data_Type_Element_Access;
-- ------------------------------
-- Get the visibility from the XMI visibility value.
-- ------------------------------
function Get_Visibility (Value : in UBO.Object)
return Model.XMI.Visibility_Type is
S : constant String := UBO.To_String (Value);
begin
if S = "public" then
return Model.XMI.VISIBILITY_PUBLIC;
elsif S = "package" then
return Model.XMI.VISIBILITY_PACKAGE;
elsif S = "protected" then
return Model.XMI.VISIBILITY_PROTECTED;
elsif S = "private" then
return Model.XMI.VISIBILITY_PRIVATE;
else
return Model.XMI.VISIBILITY_PUBLIC;
end if;
end Get_Visibility;
-- ------------------------------
-- Get the changeability from the XMI visibility value.
-- ------------------------------
function Get_Changeability (Value : in UBO.Object)
return Model.XMI.Changeability_Type is
S : constant String := UBO.To_String (Value);
begin
if S = "frozen" then
return Model.XMI.CHANGEABILITY_FROZEN;
elsif S = "changeable" then
return Model.XMI.CHANGEABILITY_CHANGEABLE;
elsif S = "addOnly" then
return Model.XMI.CHANGEABILITY_INSERT;
else
return Model.XMI.CHANGEABILITY_CHANGEABLE;
end if;
end Get_Changeability;
-- ------------------------------
-- Get the parameter kind from the XMI parameter kind value.
-- ------------------------------
function Get_Parameter_Type (Value : in UBO.Object)
return Model.XMI.Parameter_Type is
S : constant String := UBO.To_String (Value);
begin
if S = "return" then
return Model.XMI.PARAM_RETURN;
elsif S = "in" then
return Model.XMI.PARAM_IN;
elsif S = "out" then
return Model.XMI.PARAM_OUT;
elsif S = "inout" then
return Model.XMI.PARAM_INOUT;
else
return Model.XMI.PARAM_INOUT;
end if;
end Get_Parameter_Type;
procedure Add_Tagged_Value (P : in out XMI_Info) is
Id : constant UString := UBO.To_Unbounded_String (P.Tagged_Id);
Value : constant UString := UBO.To_Unbounded_String (P.Value);
Tagged_Value : constant Model.XMI.Tagged_Value_Element_Access
:= new Model.XMI.Tagged_Value_Element (P.Model);
begin
Log.Info ("Add tag {0} - {1}", Id, To_String (Value));
Tagged_Value.Value := Value;
if not UBO.Is_Null (P.Ref_Id) then
Tagged_Value.Set_Reference_Id (UBO.To_String (P.Ref_Id), P.Profiles.all);
P.Ref_Id := UBO.Null_Object;
else
Tagged_Value.Set_Reference_Id (UBO.To_String (P.Href), P.Profiles.all);
P.Href := UBO.Null_Object;
end if;
Tagged_Value.XMI_Id := Id;
P.Model.Insert (Tagged_Value.XMI_Id, Tagged_Value.all'Access);
-- Insert the tag value into the current element.
if P.Data_Type /= null then
P.Data_Type.Tagged_Values.Append (Tagged_Value.all'Access);
elsif P.Assos_End_Element /= null then
P.Assos_End_Element.Tagged_Values.Append (Tagged_Value.all'Access);
elsif P.Association /= null then
P.Association.Tagged_Values.Append (Tagged_Value.all'Access);
elsif P.Attr_Element /= null then
P.Attr_Element.Tagged_Values.Append (Tagged_Value.all'Access);
elsif P.Class_Element /= null then
Log.Info ("Adding in {0}", To_String (P.Class_Element.Name));
P.Class_Element.Tagged_Values.Append (Tagged_Value.all'Access);
elsif P.Enumeration_Literal /= null then
P.Enumeration_Literal.Tagged_Values.Append (Tagged_Value.all'Access);
elsif P.Enumeration /= null then
P.Enumeration.Tagged_Values.Append (Tagged_Value.all'Access);
elsif P.Package_Element /= null then
P.Package_Element.Tagged_Values.Append (Tagged_Value.all'Access);
elsif P.Tag_Definition /= null then
P.Tag_Definition.Tagged_Values.Append (Tagged_Value.all'Access);
else
Log.Info ("Tagged value {0} ignored", Id);
end if;
end Add_Tagged_Value;
-- ------------------------------
-- Set the package name and or XMI id.
-- ------------------------------
procedure Set_Package (P : in out XMI_Info;
Name : in UBO.Object;
Id : in UBO.Object) is
Parent : constant Gen.Model.XMI.Package_Element_Access := P.Package_Element;
begin
-- This is a new nested package, create it.
if Parent /= null and P.Has_Package_Name and P.Has_Package_Id then
P.Package_Element := null;
end if;
if P.Package_Element = null then
P.Package_Element := new Gen.Model.XMI.Package_Element (P.Model);
P.Package_Element.Set_Location (P.Parser.Get_Location);
P.Package_Element.Is_Profile := P.Is_Profile;
if Parent /= null then
P.Package_Element.Parent := Parent.all'Access;
else
P.Package_Element.Parent := null;
end if;
P.Has_Package_Name := False;
P.Has_Package_Id := False;
end if;
if not UBO.Is_Null (Id) then
P.Package_Element.Set_XMI_Id (Id);
P.Model.Include (P.Package_Element.XMI_Id, P.Package_Element.all'Access);
P.Has_Package_Id := True;
end if;
if not UBO.Is_Null (Name) then
P.Package_Element.Set_Name (Name);
P.Has_Package_Name := True;
end if;
end Set_Package;
procedure Set_Member (P : in out XMI_Info;
Field : in XMI_Fields;
Value : in UBO.Object) is
begin
case Field is
when FIELD_NAME =>
P.Name := Value;
when FIELD_ID =>
P.Id := Value;
P.Ref_Id := UBO.Null_Object;
P.Href := UBO.Null_Object;
when FIELD_ID_REF =>
P.Ref_Id := Value;
when FIELD_VALUE =>
P.Value := Value;
when FIELD_HREF =>
P.Href := Value;
when FIELD_MULTIPLICITY_LOWER =>
P.Multiplicity_Lower := UBO.To_Integer (Value);
when FIELD_MULTIPLICITY_UPPER =>
P.Multiplicity_Upper := UBO.To_Integer (Value);
when FIELD_CLASS_NAME =>
P.Class_Element := new Gen.Model.XMI.Class_Element (P.Model);
P.Class_Element.Set_Name (Value);
P.Class_Element.Set_Location (To_String (P.File) & P.Parser.Get_Location);
P.Ref_Id := UBO.Null_Object;
P.Href := UBO.Null_Object;
when FIELD_CLASS_VISIBILITY =>
P.Class_Visibility := Get_Visibility (Value);
when FIELD_CLASS_ID =>
P.Class_Id := Value;
when FIELD_CLASS_END =>
if P.Class_Element /= null then
P.Class_Element.XMI_Id := UBO.To_Unbounded_String (P.Class_Id);
P.Class_Element.Visibility := P.Class_Visibility;
Log.Info ("Adding class {0} - {1}",
P.Class_Element.XMI_Id, To_String (P.Class_Element.Name));
P.Model.Insert (P.Class_Element.XMI_Id, P.Class_Element.all'Access);
if P.Package_Element /= null then
P.Package_Element.Classes.Append (P.Class_Element.all'Access);
P.Package_Element.Elements.Append (P.Class_Element.all'Access);
P.Class_Element.Parent := P.Package_Element.all'Access;
end if;
P.Class_Element := null;
P.Class_Visibility := Gen.Model.XMI.VISIBILITY_PUBLIC;
end if;
when FIELD_GENERALIZATION_CHILD_ID =>
P.Child_Id := Value;
when FIELD_GENERALIZATION_PARENT_ID =>
P.Parent_Id := Value;
when FIELD_GENERALIZATION_ID =>
P.Generalization_Id := Value;
when FIELD_GENERALIZATION_END =>
if not UBO.Is_Null (P.Child_Id)
and not UBO.Is_Null (P.Parent_Id)
and not UBO.Is_Null (P.Generalization_Id)
then
P.Generalization := new Gen.Model.XMI.Generalization_Element (P.Model);
P.Generalization.Set_XMI_Id (P.Generalization_Id);
P.Model.Insert (P.Generalization.XMI_Id, P.Generalization.all'Access);
P.Generalization.Set_Reference_Id (UBO.To_String (P.Parent_Id),
P.Profiles.all);
P.Generalization.Child_Id := UBO.To_Unbounded_String (P.Child_Id);
end if;
P.Child_Id := UBO.Null_Object;
P.Generalization_Id := UBO.Null_Object;
P.Parent_Id := UBO.Null_Object;
when FIELD_OPERATION_ID =>
P.Operation_Id := Value;
when FIELD_ATTRIBUTE_ID | FIELD_PARAMETER_ID =>
P.Attr_Id := Value;
when FIELD_ATTRIBUTE_VISIBILITY =>
P.Attr_Visibility := Get_Visibility (Value);
when FIELD_ATTRIBUTE_CHANGEABILITY =>
P.Attr_Changeability := Get_Changeability (Value);
when FIELD_ATTRIBUTE_NAME =>
P.Attr_Element := new Gen.Model.XMI.Attribute_Element (P.Model);
P.Attr_Element.Set_Name (Value);
P.Attr_Element.Set_Location (To_String (P.File) & P.Parser.Get_Location);
when FIELD_ATTRIBUTE_INITIAL_VALUE =>
P.Attr_Value := Value;
when FIELD_ATTRIBUTE =>
P.Attr_Element.Set_XMI_Id (P.Attr_Id);
P.Attr_Element.Visibility := P.Attr_Visibility;
P.Attr_Element.Changeability := P.Attr_Changeability;
P.Attr_Element.Multiplicity_Lower := P.Multiplicity_Lower;
P.Attr_Element.Multiplicity_Upper := P.Multiplicity_Upper;
P.Attr_Element.Initial_Value := P.Attr_Value;
-- Prepare for next attribute.
P.Attr_Visibility := Gen.Model.XMI.VISIBILITY_PUBLIC;
P.Attr_Changeability := Gen.Model.XMI.CHANGEABILITY_CHANGEABLE;
P.Multiplicity_Lower := 0;
P.Multiplicity_Upper := 0;
-- Sanity check and add this attribute to the class.
if P.Class_Element /= null then
P.Model.Insert (P.Attr_Element.XMI_Id, P.Attr_Element.all'Access);
P.Attr_Element.Parent := P.Class_Element.all'Access;
P.Class_Element.Elements.Append (P.Attr_Element.all'Access);
P.Class_Element.Attributes.Append (P.Attr_Element.all'Access);
if Length (P.Attr_Element.Ref_Id) = 0 then
P.Attr_Element.Ref_Id := P.Default_Type;
declare
Msg : constant String := "attribute '" & To_String (P.Attr_Element.Name)
& "' in table '" & To_String (P.Class_Element.Name)
& "' has no type.";
begin
P.Attr_Element := null;
raise Util.Serialize.Mappers.Field_Error with Msg;
end;
end if;
end if;
P.Attr_Element := null;
when FIELD_OPERATION_NAME =>
P.Operation := new Gen.Model.XMI.Operation_Element (P.Model);
P.Operation.Set_Name (Value);
P.Operation.Set_Location (To_String (P.File) & P.Parser.Get_Location);
when FIELD_PARAMETER_NAME =>
P.Attr_Element := new Gen.Model.XMI.Attribute_Element (P.Model);
P.Attr_Element.Set_Name (Value);
P.Attr_Element.Set_Location (To_String (P.File) & P.Parser.Get_Location);
when FIELD_PARAMETER_KIND =>
P.Parameter_Type := Get_Parameter_Type (Value);
when FIELD_PARAMETER_END =>
if P.Attr_Element /= null and P.Operation /= null then
P.Attr_Element.Set_XMI_Id (P.Attr_Id);
P.Operation.Elements.Append (P.Attr_Element.all'Access);
P.Model.Insert (P.Attr_Element.XMI_Id, P.Attr_Element.all'Access);
end if;
P.Attr_Element := null;
when FIELD_OPERATION_END =>
if P.Operation /= null and P.Class_Element /= null then
P.Operation.Set_XMI_Id (P.Operation_Id);
P.Model.Insert (P.Operation.XMI_Id, P.Operation.all'Access);
P.Class_Element.Operations.Append (P.Operation.all'Access);
end if;
P.Operation := null;
-- Extract an association.
when FIELD_ASSOCIATION_ID =>
P.Association_Id := Value;
when FIELD_ASSOCIATION_NAME =>
P.Association := new Gen.Model.XMI.Association_Element (P.Model);
P.Association.Set_Name (Value);
P.Association.Set_Location (To_String (P.File) & P.Parser.Get_Location);
when FIELD_ASSOCIATION_END_NAME =>
P.Assos_End_Name := Value;
when FIELD_ASSOCIATION_END_VISIBILITY =>
P.Assos_End_Visibility := Get_Visibility (Value);
when FIELD_ASSOCIATION_END_NAVIGABLE =>
P.Assos_End_Navigable := UBO.To_Boolean (Value);
when FIELD_ASSOCIATION_END_ID =>
P.Assos_End_Element := new Gen.Model.XMI.Association_End_Element (P.Model);
P.Assos_End_Element.Set_XMI_Id (Value);
P.Assos_End_Element.Set_Location (To_String (P.File) & P.Parser.Get_Location);
P.Model.Include (P.Assos_End_Element.XMI_Id, P.Assos_End_Element.all'Access);
when FIELD_ASSOCIATION_CLASS_ID =>
if P.Assos_End_Element /= null then
P.Assos_End_Element.Set_Reference_Id (UBO.To_String (Value),
P.Profiles.all);
end if;
when FIELD_ASSOCIATION_END =>
if P.Assos_End_Element /= null and P.Association /= null then
P.Assos_End_Element.Set_Name (P.Assos_End_Name);
P.Assos_End_Element.Visibility := P.Assos_End_Visibility;
P.Assos_End_Element.Navigable := P.Assos_End_Navigable;
P.Assos_End_Element.Multiplicity_Lower := P.Multiplicity_Lower;
P.Assos_End_Element.Multiplicity_Upper := P.Multiplicity_Upper;
P.Assos_End_Element.Parent := P.Association.all'Access;
-- Keep the association if the target class is specified.
-- We ignore association to a UML Component for example.
if Length (P.Assos_End_Element.Ref_Id) > 0 then
P.Association.Connections.Append (P.Assos_End_Element.all'Access);
else
Log.Info ("Association end {0} ignored", P.Assos_End_Element.Name);
end if;
end if;
P.Multiplicity_Lower := 0;
P.Multiplicity_Upper := 0;
P.Assos_End_Name := UBO.Null_Object;
P.Assos_End_Navigable := False;
if P.Association = null then
raise Util.Serialize.Mappers.Field_Error with "invalid association";
end if;
P.Assos_End_Element := null;
when FIELD_ASSOCIATION =>
if P.Association /= null then
P.Association.Set_XMI_Id (P.Association_Id);
P.Model.Include (P.Association.XMI_Id, P.Association.all'Access);
if P.Package_Element /= null then
P.Package_Element.Associations.Append (P.Association.all'Access);
end if;
end if;
P.Association := null;
when FIELD_PACKAGE_ID =>
Set_Package (P, UBO.Null_Object, Value);
when FIELD_PACKAGE_NAME =>
Set_Package (P, Value, UBO.Null_Object);
when FIELD_PACKAGE_END =>
if P.Package_Element /= null then
if P.Package_Element.Parent /= null then
P.Package_Element
:= Gen.Model.XMI.Package_Element (P.Package_Element.Parent.all)'Access;
else
P.Package_Element := null;
end if;
end if;
when FIELD_TAGGED_ID =>
P.Tagged_Id := Value;
-- Tagged value associated with an attribute, operation, class, package.
when FIELD_TAGGED_VALUE =>
Add_Tagged_Value (P);
-- Data type mapping.
when FIELD_DATA_TYPE_NAME =>
P.Data_Type := new Gen.Model.XMI.Data_Type_Element (P.Model);
P.Data_Type.Set_Name (Value);
P.Data_Type.Set_Location (To_String (P.File) & P.Parser.Get_Location);
P.Data_Type.XMI_Id := UBO.To_Unbounded_String (P.Id);
P.Ref_Id := UBO.Null_Object;
P.Href := UBO.Null_Object;
when FIELD_DATA_TYPE =>
if P.Attr_Element = null
and P.Operation = null
and UBO.Is_Null (P.Generalization_Id)
and P.Data_Type /= null
then
if P.Package_Element /= null and not P.Is_Profile then
P.Data_Type.Parent := P.Package_Element.all'Access;
end if;
P.Model.Insert (P.Data_Type.XMI_Id, P.Data_Type.all'Access);
if P.Package_Element /= null and not P.Is_Profile then
P.Package_Element.Types.Append (P.Data_Type.all'Access);
end if;
end if;
P.Data_Type := null;
when FIELD_DATA_TYPE_HREF | FIELD_ENUMERATION_HREF | FIELD_CLASSIFIER_HREF =>
if P.Attr_Element /= null then
P.Attr_Element.Set_Reference_Id (UBO.To_String (Value),
P.Profiles.all);
Log.Debug ("Attribute {0} has type {1}",
P.Attr_Element.Name, P.Attr_Element.Ref_Id);
end if;
-- Enumeration mapping.
when FIELD_ENUMERATION =>
P.Enumeration := new Gen.Model.XMI.Enum_Element (P.Model);
P.Enumeration.Set_Name (Value);
P.Enumeration.Set_Location (To_String (P.File) & P.Parser.Get_Location);
P.Enumeration.XMI_Id := UBO.To_Unbounded_String (P.Id);
if P.Package_Element /= null then
P.Enumeration.Parent := P.Package_Element.all'Access;
end if;
P.Model.Insert (P.Enumeration.XMI_Id, P.Enumeration.all'Access);
Log.Info ("Adding enumeration {0}", P.Enumeration.Name);
if P.Package_Element /= null then
P.Package_Element.Enums.Append (P.Enumeration.all'Access);
end if;
when FIELD_ENUMERATION_LITERAL =>
P.Enumeration.Add_Literal (Value, P.Name, P.Enumeration_Literal);
when FIELD_ENUMERATION_LITERAL_END =>
P.Enumeration_Literal.Set_Name (P.Name);
P.Enumeration_Literal := null;
when FIELD_STEREOTYPE_NAME =>
P.Stereotype := new Gen.Model.XMI.Stereotype_Element (P.Model);
P.Stereotype.Set_Name (Value);
P.Stereotype.Set_Location (To_String (P.File) & P.Parser.Get_Location);
when FIELD_STEREOTYPE_ID =>
P.Stereotype_Id := Value;
-- Stereotype mapping.
when FIELD_STEREOTYPE =>
if not UBO.Is_Null (P.Stereotype_Id) and P.Stereotype /= null then
P.Stereotype.XMI_Id := UBO.To_Unbounded_String (P.Stereotype_Id);
P.Model.Insert (P.Stereotype.XMI_Id, P.Stereotype.all'Access);
if P.Class_Element /= null then
P.Class_Element.Elements.Append (P.Stereotype.all'Access);
elsif P.Package_Element /= null then
P.Package_Element.Elements.Append (P.Stereotype.all'Access);
end if;
P.Stereotype := null;
end if;
when FIELD_STEREOTYPE_HREF =>
declare
S : constant Gen.Model.XMI.Ref_Type_Element_Access
:= new Gen.Model.XMI.Ref_Type_Element (P.Model);
begin
S.Set_Location (To_String (P.File) & P.Parser.Get_Location);
S.Set_Reference_Id (UBO.To_String (Value), P.Profiles.all);
if P.Enumeration_Literal /= null then
P.Enumeration_Literal.Stereotypes.Append (S.all'Access);
elsif P.Assos_End_Element /= null then
Log.Info ("Stereotype {0} added", UBO.To_String (Value));
P.Assos_End_Element.Stereotypes.Append (S.all'Access);
elsif P.Association /= null then
P.Association.Stereotypes.Append (S.all'Access);
elsif P.Attr_Element /= null then
P.Attr_Element.Stereotypes.Append (S.all'Access);
elsif P.Class_Element /= null then
P.Class_Element.Stereotypes.Append (S.all'Access);
elsif P.Package_Element /= null then
P.Package_Element.Stereotypes.Append (S.all'Access);
else
Log.Info ("Stereotype {0} ignored", UBO.To_String (Value));
end if;
end;
-- Tag definition mapping.
when FIELD_TAG_DEFINITION_NAME =>
P.Tag_Name := Value;
when FIELD_TAG_DEFINITION_ID =>
P.Tag_Definition := new Gen.Model.XMI.Tag_Definition_Element (P.Model);
P.Tag_Definition.Set_XMI_Id (Value);
P.Tag_Definition.Set_Location (To_String (P.File) & P.Parser.Get_Location);
P.Model.Insert (P.Tag_Definition.XMI_Id, P.Tag_Definition.all'Access);
when FIELD_TAG_DEFINITION =>
P.Tag_Definition.Set_Name (P.Tag_Name);
Log.Info ("Adding tag definition {0}", P.Tag_Definition.Name);
if P.Stereotype /= null then
P.Stereotype.Elements.Append (P.Tag_Definition.all'Access);
elsif P.Package_Element /= null then
P.Package_Element.Elements.Append (P.Tag_Definition.all'Access);
end if;
P.Tag_Definition := null;
when FIELD_COMMENT_ID =>
P.Comment := new Gen.Model.XMI.Comment_Element (P.Model);
P.Comment.Set_Location (To_String (P.File) & P.Parser.Get_Location);
P.Comment.XMI_Id := UBO.To_Unbounded_String (Value);
P.Ref_Id := UBO.Null_Object;
-- Comment mapping.
when FIELD_COMMENT =>
if P.Comment /= null then
P.Comment.Text := UBO.To_Unbounded_String (P.Value);
P.Comment.Ref_Id := UBO.To_Unbounded_String (P.Ref_Id);
P.Model.Insert (P.Comment.XMI_Id, P.Comment.all'Access);
end if;
P.Ref_Id := UBO.Null_Object;
P.Comment := null;
end case;
exception
when Util.Serialize.Mappers.Field_Error =>
raise;
when E : others =>
Log.Error ("Extraction of field {0} with value '{1}' failed",
XMI_Fields'Image (Field), UBO.To_String (Value));
Log.Error ("Cause", E);
raise;
end Set_Member;
package XMI_Mapper is
new Util.Serialize.Mappers.Record_Mapper (Element_Type => XMI_Info,
Element_Type_Access => XMI_Access,
Fields => XMI_Fields,
Set_Member => Set_Member);
XMI_Mapping : aliased XMI_Mapper.Mapper;
-- ------------------------------
-- After the configuration file is read, processes the node whose root
-- is passed in <b>Node</b> and initializes the <b>Model</b> with the information.
-- ------------------------------
procedure Initialize (Handler : in out Artifact;
Path : in String;
Node : in DOM.Core.Node;
Model : in out Gen.Model.Packages.Model_Definition'Class;
Context : in out Generator'Class) is
begin
Log.Debug ("Initializing query artifact for the configuration");
Gen.Artifacts.Artifact (Handler).Initialize (Path, Node, Model, Context);
end Initialize;
-- ------------------------------
-- Prepare the generation of the package:
-- o identify the column types which are used
-- o build a list of package for the with clauses.
-- ------------------------------
overriding
procedure Prepare (Handler : in out Artifact;
Model : in out Gen.Model.Packages.Model_Definition'Class;
Project : in out Gen.Model.Projects.Project_Definition'Class;
Context : in out Generator'Class) is
pragma Unreferenced (Project);
-- Collect the enum literal for the enum definition.
procedure Prepare_Enum_Literal (Enum : in out Gen.Model.Enums.Enum_Definition'Class;
Item : in Gen.Model.XMI.Model_Element_Access);
-- Register the enum in the model for the generation.
procedure Prepare_Enum (Pkg : in out Gen.Model.Packages.Package_Definition'Class;
Item : in Gen.Model.XMI.Model_Element_Access);
use Gen.Model.XMI;
use Gen.Model.Tables;
use Gen.Model.Beans;
-- Register the attribute in the table
procedure Prepare_Attribute (Table : in out Gen.Model.Tables.Table_Definition'Class;
Column : in Model_Element_Access);
-- Register the attribute in the bean definition.
procedure Prepare_Attribute (Bean : in out Gen.Model.Beans.Bean_Definition'Class;
Column : in Model_Element_Access);
-- Identify the UML association and create an entry for it in the table.
procedure Prepare_Association (Table : in out Gen.Model.Tables.Table_Definition'Class;
Node : in Model_Element_Access);
procedure Prepare_Parameter (Operation : in out
Gen.Model.Operations.Operation_Definition'Class;
Node : in Model_Element_Access);
-- Identify the UML operation and create an entry for it in the table.
procedure Prepare_Operation (Table : in out Gen.Model.Tables.Table_Definition'Class;
Node : in Model_Element_Access);
-- Prepare a UML/XMI class:
-- o if the class has the <<Dynamo.ADO.table>> stereotype, create a table definition.
-- o if the class has the <<Dynamo.AWA.bean>> stereotype, create a bean
procedure Prepare_Class (Pkg : in out Gen.Model.Packages.Package_Definition'Class;
Item : in Gen.Model.XMI.Model_Element_Access);
procedure Prepare_Type (Pkg : in out Gen.Model.Packages.Package_Definition'Class;
Item : in Gen.Model.XMI.Model_Element_Access);
-- Scan the package for the model generation.
procedure Prepare_Package (Id : in UString;
Item : in Gen.Model.XMI.Model_Element_Access);
procedure Prepare_Model (Key : in UString;
Model : in out Gen.Model.XMI.Model_Map.Map);
procedure Prepare_Profile (Id : in UString;
Item : in Gen.Model.XMI.Model_Element_Access);
-- ------------------------------
-- Register the attribute in the table
-- ------------------------------
procedure Prepare_Attribute (Table : in out Gen.Model.Tables.Table_Definition'Class;
Column : in Model_Element_Access) is
use Util.Beans.Objects;
Msg : constant String := Column.Get_Error_Message;
Sql : constant String := Column.Find_Tag_Value (Handler.Sql_Type_Tag, "");
Len : constant String := Column.Find_Tag_Value (Handler.Sql_Length_Tag, "");
C : Column_Definition_Access;
begin
Log.Info ("Prepare class attribute {0}", Column.Name);
if Msg'Length /= 0 then
Context.Error (Column.Get_Location & ": " & Msg);
end if;
Table.Add_Column (Column.Name, C);
C.Set_Comment (Column.Get_Comment);
C.Set_Location (Column.Get_Location);
if Column.all in Attribute_Element'Class then
declare
Attr : constant Attribute_Element_Access
:= Attribute_Element'Class (Column.all)'Access;
begin
if Attr.Data_Type /= null then
C.Set_Type (Attr.Data_Type.Get_Qualified_Name);
end if;
C.Not_Null := Attr.Multiplicity_Lower > 0;
C.Is_Key := Column.Has_Stereotype (Handler.PK_Stereotype);
C.Is_Version := Column.Has_Stereotype (Handler.Version_Stereotype);
C.Is_Auditable := Column.Has_Stereotype (Handler.Auditable_Stereotype);
C.Is_Updated := Attr.Changeability /= CHANGEABILITY_FROZEN;
C.Is_Inserted := True; -- Attr.Changeability = CHANGEABILITY_INSERT;
C.Sql_Type := To_UString (Sql);
if Column.Has_Stereotype (Handler.Not_Null_Stereotype) then
C.Not_Null := True;
end if;
if Column.Has_Stereotype (Handler.Nullable_Stereotype) then
C.Not_Null := False;
end if;
if C.Is_Version then
C.Not_Null := True;
end if;
if C.Is_Key then
C.Generator := To_Object (Column.Find_Tag_Value (Handler.Generator_Tag, ""));
end if;
if Len'Length > 0 then
C.Set_Sql_Length (Len, Context);
end if;
end;
end if;
end Prepare_Attribute;
-- ------------------------------
-- Register the attribute in the bean definition.
-- ------------------------------
procedure Prepare_Attribute (Bean : in out Gen.Model.Beans.Bean_Definition'Class;
Column : in Model_Element_Access) is
Msg : constant String := Column.Get_Error_Message;
C : Column_Definition_Access;
begin
Log.Info ("Prepare class attribute {0}", Column.Name);
if Msg'Length /= 0 then
Context.Error (Column.Get_Location & ": " & Msg);
end if;
Bean.Add_Attribute (Column.Name, C);
C.Set_Comment (Column.Get_Comment);
C.Set_Location (Column.Get_Location);
if Column.all in Attribute_Element'Class then
declare
Attr : constant Attribute_Element_Access
:= Attribute_Element'Class (Column.all)'Access;
begin
if Attr.Data_Type /= null then
C.Set_Type (To_String (Attr.Data_Type.Name));
end if;
C.Not_Null := Attr.Multiplicity_Lower > 0;
end;
end if;
end Prepare_Attribute;
-- ------------------------------
-- Identify the UML association and create an entry for it in the table.
-- ------------------------------
procedure Prepare_Association (Table : in out Gen.Model.Tables.Table_Definition'Class;
Node : in Model_Element_Access) is
A : Association_Definition_Access;
Assoc : constant Association_End_Element_Access
:= Association_End_Element'Class (Node.all)'Access;
Msg : constant String := Node.Get_Error_Message;
begin
Log.Info ("Prepare class association {0}", Assoc.Name);
if Msg'Length /= 0 then
Context.Error (Assoc.Get_Location & ": " & Msg);
end if;
if Assoc.Multiplicity_Upper /= 1 then
Context.Error (Assoc.Get_Location &
": multiple association '{0}' for table '{1}' is not supported.",
To_String (Assoc.Name), Table.Get_Name);
else
Table.Add_Association (Assoc.Name, A);
A.Set_Comment (Assoc.Get_Comment);
A.Set_Location (Assoc.Get_Location);
A.Set_Type (Assoc.Source_Element.Get_Qualified_Name);
A.Not_Null := Assoc.Multiplicity_Lower > 0;
-- If the <<use foreign key>> stereotype is set on the association, to not use
-- the Ada tagged object but create an attribute using the foreign key type.
A.Use_Foreign_Key_Type := Node.Parent.Has_Stereotype (Handler.Use_FK_Stereotype);
A.Is_Key := Node.Has_Stereotype (Handler.PK_Stereotype);
if A.Use_Foreign_Key_Type then
Log.Info ("Association {0} type is using foreign key", Assoc.Name);
end if;
end if;
end Prepare_Association;
procedure Prepare_Parameter (Operation : in out
Gen.Model.Operations.Operation_Definition'Class;
Node : in Model_Element_Access) is
Param : constant Attribute_Element_Access := Attribute_Element'Class (Node.all)'Access;
P : Gen.Model.Operations.Parameter_Definition_Access;
begin
if Param.Data_Type /= null then
Log.Info ("Prepare operation parameter {0} : {1}",
Param.Name, Param.Data_Type.Get_Qualified_Name);
Operation.Add_Parameter (Param.Name,
To_UString (Param.Data_Type.Get_Qualified_Name), P);
end if;
end Prepare_Parameter;
-- ------------------------------
-- Identify the UML operation and create an entry for it in the table.
-- ------------------------------
procedure Prepare_Operation (Table : in out Gen.Model.Tables.Table_Definition'Class;
Node : in Model_Element_Access) is
Op : constant Operation_Element_Access := Operation_Element'Class (Node.all)'Access;
Msg : constant String := Node.Get_Error_Message;
Operation : Gen.Model.Operations.Operation_Definition_Access;
begin
Log.Info ("Prepare class operation {0}", Op.Name);
if Msg'Length /= 0 then
Context.Error (Op.Get_Location & ": " & Msg);
end if;
Table.Add_Operation (Op.Name, Operation);
Operation.Set_Location (Op.Get_Location);
Operation.Set_Comment (Op.Get_Comment);
Iterate_For_Operation (Operation.all, Op.Elements, Prepare_Parameter'Access);
end Prepare_Operation;
-- ------------------------------
-- Prepare a UML/XMI class:
-- o if the class has the <<Dynamo.ADO.table>> stereotype, create a table definition.
-- o if the class has the <<Dynamo.AWA.bean>> stereotype, create a bean
-- ------------------------------
procedure Prepare_Class (Pkg : in out Gen.Model.Packages.Package_Definition'Class;
Item : in Gen.Model.XMI.Model_Element_Access) is
Class : constant Class_Element_Access := Class_Element'Class (Item.all)'Access;
Name : constant UString := Gen.Utils.Qualify_Name (Pkg.Name, Class.Name);
begin
Log.Info ("Prepare class {0}", Name);
if Item.Has_Stereotype (Handler.Table_Stereotype) then
Log.Debug ("Class {0} recognized as a database table", Name);
declare
Table : constant Table_Definition_Access := Gen.Model.Tables.Create_Table (Name);
Has_List : constant String := Item.Find_Tag_Value (Handler.Has_List_Tag, "true");
T_Name : constant String := Item.Find_Tag_Value (Handler.Table_Name_Tag, "");
begin
Log.Info ("Has list: {0}", Has_List);
Table.Set_Comment (Item.Get_Comment);
Table.Set_Location (Item.Get_Location);
Model.Register_Table (Table);
Table.Has_List := Has_List = "true";
Table.Is_Serializable := Item.Has_Stereotype (Handler.Serialize_Stereotype);
if T_Name'Length /= 0 then
Log.Info ("Using table name {0}", Name);
Table.Table_Name := To_UString (T_Name);
end if;
Iterate_For_Table (Table.all, Class.Attributes, Prepare_Attribute'Access);
Iterate_For_Table (Table.all, Class.Associations, Prepare_Association'Access);
end;
elsif Item.Has_Stereotype (Handler.Bean_Stereotype)
or Item.Has_Stereotype (Handler.Limited_Bean_Stereotype)
then
Log.Debug ("Class {0} recognized as a bean", Name);
declare
Bean : constant Bean_Definition_Access := Gen.Model.Beans.Create_Bean (Name);
begin
Model.Register_Bean (Bean);
Bean.Set_Comment (Item.Get_Comment);
Bean.Set_Location (Item.Get_Location);
Bean.Target := Name;
Bean.Is_Limited := Item.Has_Stereotype (Handler.Limited_Bean_Stereotype);
Bean.Is_Serializable := Item.Has_Stereotype (Handler.Serialize_Stereotype);
if Class.Parent_Class /= null then
Log.Info ("Bean {0} inherit from {1}", Name,
To_String (Class.Parent_Class.Name));
Bean.Parent_Name := To_UString (Class.Parent_Class.Get_Qualified_Name);
end if;
Iterate_For_Bean (Bean.all, Class.Attributes, Prepare_Attribute'Access);
Iterate_For_Table (Bean.all, Class.Associations, Prepare_Association'Access);
Iterate_For_Table (Bean.all, Class.Operations, Prepare_Operation'Access);
end;
else
Log.Info ("UML class {0} not generated: no <<Bean>> and no <<Table>> stereotype",
To_String (Name));
end if;
exception
when E : others =>
Log.Error ("Exception", E);
end Prepare_Class;
-- ------------------------------
-- Collect the enum literal for the enum definition.
-- ------------------------------
procedure Prepare_Enum_Literal (Enum : in out Gen.Model.Enums.Enum_Definition'Class;
Item : in Gen.Model.XMI.Model_Element_Access) is
Literal : Gen.Model.Enums.Value_Definition_Access;
Value : constant String := Item.Find_Tag_Value (Handler.Literal_Tag, "");
begin
Log.Info ("Prepare enum literal {0}", Item.Name);
Enum.Add_Value (To_String (Item.Name), Literal);
if Value'Length > 0 then
begin
Literal.Number := Natural'Value (Value);
exception
when others =>
Context.Error (Item.Get_Location &
": value '{0}' for enum literal '{1}' must be a number",
Value, To_String (Item.Name));
end;
end if;
end Prepare_Enum_Literal;
-- ------------------------------
-- Register the enum in the model for the generation.
-- ------------------------------
procedure Prepare_Type (Pkg : in out Gen.Model.Packages.Package_Definition'Class;
Item : in Gen.Model.XMI.Model_Element_Access) is
Data_Type : constant Data_Type_Element_Access
:= Data_Type_Element'Class (Item.all)'Access;
Name : constant String := Data_Type.Get_Qualified_Name;
Msg : constant String := Data_Type.Get_Error_Message;
Sql : constant String := Data_Type.Find_Tag_Value (Handler.Sql_Type_Tag, "");
Stype : Gen.Model.Stypes.Stype_Definition_Access;
begin
Log.Info ("Prepare data type {0} - {1}", Name, Sql);
if Msg'Length > 0 then
Context.Error (Item.Get_Location & ": " & Msg);
end if;
if Data_Type.Parent_Type /= null then
Stype := Gen.Model.Stypes.Create_Stype
(To_UString (Name),
To_UString (Data_Type.Parent_Type.Get_Qualified_Name));
else
Stype := Gen.Model.Stypes.Create_Stype (To_UString (Name),
Null_Unbounded_String);
end if;
Stype.Set_Comment (Item.Get_Comment);
Stype.Set_Location (Item.Get_Location);
Stype.Sql_Type := To_UString (Sql);
Model.Register_Stype (Stype);
exception
when Gen.Model.Name_Exist =>
-- Ignore the Name_Exist exception for pre-defined package
-- because the type is already defined through a XML mapping definition.
if not Pkg.Is_Predefined then
raise;
end if;
end Prepare_Type;
-- ------------------------------
-- Register the enum in the model for the generation.
-- ------------------------------
procedure Prepare_Enum (Pkg : in out Gen.Model.Packages.Package_Definition'Class;
Item : in Gen.Model.XMI.Model_Element_Access) is
pragma Unreferenced (Pkg);
Name : constant String := Item.Get_Qualified_Name;
Msg : constant String := Item.Get_Error_Message;
Enum : Gen.Model.Enums.Enum_Definition_Access;
Sql : constant String := Item.Find_Tag_Value (Handler.Sql_Type_Tag, "");
begin
Log.Info ("Prepare enum {0}", Name);
if Msg'Length > 0 then
Context.Error (Item.Get_Location & ": " & Msg);
end if;
Enum := Gen.Model.Enums.Create_Enum (To_UString (Name));
Enum.Set_Comment (Item.Get_Comment);
Enum.Set_Location (Item.Get_Location);
Enum.Sql_Type := To_UString (Sql);
Model.Register_Enum (Enum);
Iterate_For_Enum (Enum.all, Item.Elements, Prepare_Enum_Literal'Access);
end Prepare_Enum;
-- ------------------------------
-- Scan the package for the model generation.
-- ------------------------------
procedure Prepare_Package (Id : in UString;
Item : in Gen.Model.XMI.Model_Element_Access) is
pragma Unreferenced (Id);
Pkg : constant Package_Element_Access := Package_Element'Class (Item.all)'Access;
Name : constant String := Pkg.Get_Qualified_Name;
P : Gen.Model.Packages.Package_Definition_Access;
begin
if Pkg.Is_Profile then
return;
end if;
Log.Info ("Prepare package {0}", Name);
Model.Register_Package (To_UString (Name), P);
if Item.Has_Stereotype (Handler.Data_Model_Stereotype) then
Log.Info ("Package {0} has the <<DataModel>> stereotype", Name);
else
Log.Info ("Package {0} does not have the <<DataModel>> stereotype.", Name);
-- Do not generate packages that don't have the <<DataModel>> stereotype.
-- But still get their UML definition so that we can use their classes.
P.Set_Predefined;
end if;
P.Set_Comment (Pkg.Get_Comment);
Iterate_For_Package (P.all, Pkg.Types, Prepare_Type'Access);
Iterate_For_Package (P.all, Pkg.Enums, Prepare_Enum'Access);
Iterate_For_Package (P.all, Pkg.Classes, Prepare_Class'Access);
end Prepare_Package;
-- ------------------------------
-- Scan the profile packages for the model generation.
-- ------------------------------
procedure Prepare_Profile (Id : in UString;
Item : in Gen.Model.XMI.Model_Element_Access) is
pragma Unreferenced (Id);
Pkg : constant Package_Element_Access := Package_Element'Class (Item.all)'Access;
Name : constant String := Pkg.Get_Qualified_Name;
P : Gen.Model.Packages.Package_Definition_Access;
begin
if not Pkg.Is_Profile then
return;
end if;
Log.Info ("Prepare profile package {0}", Name);
Model.Register_Package (To_UString (Name), P);
P.Set_Predefined;
P.Set_Comment (Pkg.Get_Comment);
-- Iterate_For_Package (P.all, Pkg.Types, Prepare_Type'Access);
Iterate_For_Package (P.all, Pkg.Enums, Prepare_Enum'Access);
Iterate_For_Package (P.all, Pkg.Classes, Prepare_Class'Access);
end Prepare_Profile;
procedure Prepare_Model (Key : in UString;
Model : in out Gen.Model.XMI.Model_Map.Map) is
begin
Log.Info ("Preparing model {0}", Key);
Gen.Model.XMI.Iterate (Model => Model,
On => Gen.Model.XMI.XMI_PACKAGE,
Process => Prepare_Package'Access);
end Prepare_Model;
Iter : Gen.Model.XMI.UML_Model_Map.Cursor := Handler.Nodes.First;
begin
Log.Debug ("Preparing the XMI model for generation");
Gen.Model.XMI.Reconcile (Handler.Nodes,
Context.Get_Parameter (Gen.Configs.GEN_DEBUG_ENABLE));
-- Get the Dynamo stereotype definitions.
Handler.Table_Stereotype := Find_Stereotype (Handler.Nodes,
"Dynamo.xmi",
"ADO.Table",
Gen.Model.XMI.BY_NAME);
Handler.PK_Stereotype := Find_Stereotype (Handler.Nodes,
"Dynamo.xmi",
"ADO.PK",
Gen.Model.XMI.BY_NAME);
Handler.FK_Stereotype := Find_Stereotype (Handler.Nodes,
"Dynamo.xmi",
"ADO.FK",
Gen.Model.XMI.BY_NAME);
Handler.Version_Stereotype := Find_Stereotype (Handler.Nodes,
"Dynamo.xmi",
"ADO.Version",
Gen.Model.XMI.BY_NAME);
Handler.Nullable_Stereotype := Find_Stereotype (Handler.Nodes,
"Dynamo.xmi",
"ADO.Nullable",
Gen.Model.XMI.BY_NAME);
Handler.Not_Null_Stereotype := Find_Stereotype (Handler.Nodes,
"Dynamo.xmi",
"ADO.Not Null",
Gen.Model.XMI.BY_NAME);
Handler.Data_Model_Stereotype := Find_Stereotype (Handler.Nodes,
"Dynamo.xmi",
"ADO.DataModel",
Gen.Model.XMI.BY_NAME);
Handler.Use_FK_Stereotype := Find_Stereotype (Handler.Nodes,
"Dynamo.xmi",
"ADO.use foreign key",
Gen.Model.XMI.BY_NAME);
Handler.Auditable_Stereotype := Find_Stereotype (Handler.Nodes,
"Dynamo.xmi",
"ADO.Auditable",
Gen.Model.XMI.BY_NAME);
Handler.Bean_Stereotype := Find_Stereotype (Handler.Nodes,
"Dynamo.xmi",
"AWA.Bean",
Gen.Model.XMI.BY_NAME);
Handler.Limited_Bean_Stereotype := Find_Stereotype (Handler.Nodes,
"Dynamo.xmi",
"AWA.Limited_Bean",
Gen.Model.XMI.BY_NAME);
Handler.Serialize_Stereotype := Find_Stereotype (Handler.Nodes,
"Dynamo.xmi",
"ASF.Serializable",
Gen.Model.XMI.BY_NAME);
Handler.Has_List_Tag := Find_Tag_Definition (Handler.Nodes,
"Dynamo.xmi",
"[email protected]",
Gen.Model.XMI.BY_NAME);
Handler.Table_Name_Tag := Find_Tag_Definition (Handler.Nodes,
"Dynamo.xmi",
"[email protected]",
Gen.Model.XMI.BY_NAME);
Handler.Sql_Type_Tag := Find_Tag_Definition (Handler.Nodes,
"Dynamo.xmi",
"[email protected]",
Gen.Model.XMI.BY_NAME);
Handler.Sql_Length_Tag := Find_Tag_Definition (Handler.Nodes,
"Dynamo.xmi",
"[email protected]",
Gen.Model.XMI.BY_NAME);
Handler.Generator_Tag := Find_Tag_Definition (Handler.Nodes,
"Dynamo.xmi",
"[email protected]",
Gen.Model.XMI.BY_NAME);
Handler.Literal_Tag := Find_Tag_Definition (Handler.Nodes,
"Dynamo.xmi",
"[email protected]",
Gen.Model.XMI.BY_NAME);
for Model of Handler.Nodes loop
Gen.Model.XMI.Iterate (Model => Model,
On => Gen.Model.XMI.XMI_PACKAGE,
Process => Prepare_Profile'Access);
end loop;
while Gen.Model.XMI.UML_Model_Map.Has_Element (Iter) loop
Handler.Nodes.Update_Element (Iter, Prepare_Model'Access);
Gen.Model.XMI.UML_Model_Map.Next (Iter);
end loop;
if Model.Has_Packages then
Context.Add_Generation (Name => GEN_PACKAGE_SPEC, Mode => ITERATION_PACKAGE,
Mapping => Gen.Model.Mappings.ADA_MAPPING);
Context.Add_Generation (Name => GEN_PACKAGE_BODY, Mode => ITERATION_PACKAGE,
Mapping => Gen.Model.Mappings.ADA_MAPPING);
end if;
end Prepare;
-- ------------------------------
-- Read the UML profiles that are referenced by the current models.
-- The UML profiles are installed in the UML config directory for dynamo's installation.
-- ------------------------------
procedure Read_Profiles (Handler : in out Artifact;
Context : in out Generator'Class) is
Path : constant String := Context.Get_Parameter (Gen.Configs.GEN_UML_DIR);
Iter : Util.Strings.Sets.Cursor := Handler.Profiles.First;
begin
while Util.Strings.Sets.Has_Element (Iter) loop
declare
Profile : constant String := Util.Strings.Sets.Element (Iter);
begin
if not Handler.Nodes.Contains (To_UString (Profile)) then
Log.Info ("Reading the UML profile {0}", Profile);
-- We have a profile, load the UML model.
Handler.Read_Model (Util.Files.Compose (Path, Profile), Context, True);
-- Verify that we have the model, report an error and remove it from the profiles.
if not Handler.Nodes.Contains (To_UString (Profile)) then
Context.Error ("UML profile {0} was not found", Profile);
Handler.Profiles.Delete (Profile);
end if;
-- And start again from the beginning since new profiles could be necessary.
Iter := Handler.Profiles.First;
else
Util.Strings.Sets.Next (Iter);
end if;
end;
end loop;
end Read_Profiles;
-- ------------------------------
-- Read the UML/XMI model file.
-- ------------------------------
procedure Read_Model (Handler : in out Artifact;
File : in String;
Context : in out Generator'Class;
Is_Predefined : in Boolean := False) is
procedure Read (Key : in UString;
Model : in out Gen.Model.XMI.Model_Map.Map);
procedure Read (Key : in UString;
Model : in out Gen.Model.XMI.Model_Map.Map) is
pragma Unreferenced (Key);
N : constant Natural := Util.Strings.Rindex (File, '.');
Name : constant String := Ada.Directories.Base_Name (File);
type Parser is new Util.Serialize.IO.XML.Parser with null record;
-- Report an error while parsing the input stream. The error message will be reported
-- on the logger associated with the parser. The parser will be set as in error so that
-- the <b>Has_Error</b> function will return True after parsing the whole file.
overriding
procedure Error (Handler : in out Parser;
Message : in String);
-- ------------------------------
-- Report an error while parsing the input stream. The error message will be reported
-- on the logger associated with the parser. The parser will be set as in error so that
-- the <b>Has_Error</b> function will return True after parsing the whole file.
-- ------------------------------
overriding
procedure Error (Handler : in out Parser;
Message : in String) is
begin
if Ada.Strings.Fixed.Index (Message, "Invalid absolute IRI") > 0
and then Ada.Strings.Fixed.Index (Message, "org.omg.xmi.namespace.UML") > 0
then
return;
end if;
Context.Error ("{0}: {1}",
Name & ".xmi" & Parser'Class (Handler).Get_Location,
Message);
end Error;
Reader : aliased Parser;
Mapper : Util.Serialize.Mappers.Processing;
Info : aliased XMI_Info;
Def_Type : constant String := Context.Get_Parameter (Gen.Configs.GEN_UML_DEFAULT_TYPE);
begin
Info.Model := Model'Unchecked_Access;
Info.Parser := Reader'Unchecked_Access;
Info.Profiles := Handler.Profiles'Unchecked_Access;
Info.File := To_UString (Name & ".xmi");
Info.Default_Type := To_UString (Def_Type);
Info.Is_Profile := Is_Predefined;
Mapper.Add_Mapping ("XMI", XMI_Mapping'Access);
if Context.Get_Parameter (Gen.Configs.GEN_DEBUG_ENABLE) then
Mapper.Dump (Log);
end if;
XMI_Mapper.Set_Context (Mapper, Info'Unchecked_Access);
if N > 0 and then File (N .. File'Last) = ".zargo" then
declare
Pipe : aliased Util.Streams.Pipes.Pipe_Stream;
Buffer : Util.Streams.Buffered.Input_Buffer_Stream;
begin
Pipe.Open ("unzip -cq " & File & " " & Name & ".xmi",
Util.Processes.READ);
Buffer.Initialize (Pipe'Unchecked_Access, 4096);
Reader.Parse (Buffer, Mapper);
Pipe.Close;
end;
else
Reader.Parse (File, Mapper);
end if;
end Read;
UML : Gen.Model.XMI.Model_Map.Map;
Name : constant UString := To_UString (Ada.Directories.Simple_Name (File));
begin
Log.Info ("Reading XMI {0}", File);
Handler.Initialized := True;
Handler.Nodes.Include (Name, UML);
Handler.Nodes.Update_Element (Handler.Nodes.Find (Name),
Read'Access);
Handler.Read_Profiles (Context);
end Read_Model;
begin
-- Define the XMI mapping.
XMI_Mapping.Add_Mapping ("**/Package/@name", FIELD_PACKAGE_NAME);
XMI_Mapping.Add_Mapping ("**/Package/@xmi.id", FIELD_PACKAGE_ID);
XMI_Mapping.Add_Mapping ("**/Package", FIELD_PACKAGE_END);
XMI_Mapping.Add_Mapping ("**/Class/@name", FIELD_CLASS_NAME);
XMI_Mapping.Add_Mapping ("**/Class/@xmi.id", FIELD_CLASS_ID);
XMI_Mapping.Add_Mapping ("**/Class/@visibility", FIELD_CLASS_VISIBILITY);
XMI_Mapping.Add_Mapping ("**/Class", FIELD_CLASS_END);
-- Generalization (limited to single inheritance).
XMI_Mapping.Add_Mapping ("**/Generalization/@xmi.idref", FIELD_GENERALIZATION_ID);
XMI_Mapping.Add_Mapping ("**/Generalization/@xmi.href", FIELD_GENERALIZATION_ID);
XMI_Mapping.Add_Mapping ("**/Generalization/@xmi.id", FIELD_GENERALIZATION_ID);
XMI_Mapping.Add_Mapping ("**/Generalization/Generalization.child/Class/@xmi.idref",
FIELD_GENERALIZATION_CHILD_ID);
XMI_Mapping.Add_Mapping ("**/Generalization/Generalization.parent/Class/@xmi.idref",
FIELD_GENERALIZATION_PARENT_ID);
XMI_Mapping.Add_Mapping ("**/Generalization/Generalization.child/DataType/@xmi.idref",
FIELD_GENERALIZATION_CHILD_ID);
XMI_Mapping.Add_Mapping ("**/Generalization/Generalization.parent/DataType/@xmi.idref",
FIELD_GENERALIZATION_PARENT_ID);
XMI_Mapping.Add_Mapping ("**/Generalization/Generalization.parent/DataType/@href",
FIELD_GENERALIZATION_PARENT_ID);
XMI_Mapping.Add_Mapping ("**/Generalization", FIELD_GENERALIZATION_END);
-- Class attribute mapping.
XMI_Mapping.Add_Mapping ("**/Attribute/@name", FIELD_ATTRIBUTE_NAME);
XMI_Mapping.Add_Mapping ("**/Attribute/@xmi.id", FIELD_ATTRIBUTE_ID);
XMI_Mapping.Add_Mapping ("**/Attribute/@visibility", FIELD_ATTRIBUTE_VISIBILITY);
XMI_Mapping.Add_Mapping ("**/Attribute/@changeability", FIELD_ATTRIBUTE_CHANGEABILITY);
XMI_Mapping.Add_Mapping ("**/Attribute.initialValue/Expression/@body",
FIELD_ATTRIBUTE_INITIAL_VALUE);
XMI_Mapping.Add_Mapping ("**/Attribute", FIELD_ATTRIBUTE);
-- Field multiplicity.
XMI_Mapping.Add_Mapping ("**/MultiplicityRange/@lower", FIELD_MULTIPLICITY_LOWER);
XMI_Mapping.Add_Mapping ("**/MultiplicityRange/@upper", FIELD_MULTIPLICITY_UPPER);
-- Operation mapping.
XMI_Mapping.Add_Mapping ("**/Operation/@name", FIELD_OPERATION_NAME);
XMI_Mapping.Add_Mapping ("**/Operation/@xmi.id", FIELD_OPERATION_ID);
XMI_Mapping.Add_Mapping ("**/Operation", FIELD_OPERATION_END);
XMI_Mapping.Add_Mapping ("**/Parameter/@xmi.id", FIELD_PARAMETER_ID);
XMI_Mapping.Add_Mapping ("**/Parameter/@name", FIELD_PARAMETER_NAME);
XMI_Mapping.Add_Mapping ("**/Parameter/@kind", FIELD_PARAMETER_KIND);
XMI_Mapping.Add_Mapping ("**/Parameter", FIELD_PARAMETER_END);
XMI_Mapping.Add_Mapping ("**/Parameter/Parameter.type/Class/@xmi.idref", FIELD_CLASSIFIER_HREF);
XMI_Mapping.Add_Mapping ("**/Parameter/Parameter.type/Class/@xmi.href", FIELD_CLASSIFIER_HREF);
XMI_Mapping.Add_Mapping ("**/Parameter/Parameter.type/Class/@href", FIELD_CLASSIFIER_HREF);
XMI_Mapping.Add_Mapping ("**/Parameter/Parameter.type/DataType/@xmi.href",
FIELD_CLASSIFIER_HREF);
XMI_Mapping.Add_Mapping ("**/Parameter/Parameter.type/DataType/@href", FIELD_CLASSIFIER_HREF);
-- Association mapping.
XMI_Mapping.Add_Mapping ("**/Association/@name", FIELD_ASSOCIATION_NAME);
XMI_Mapping.Add_Mapping ("**/Association/@xmi.id", FIELD_ASSOCIATION_ID);
XMI_Mapping.Add_Mapping ("**/Association", FIELD_ASSOCIATION);
-- Association end mapping.
XMI_Mapping.Add_Mapping ("**/AssociationEnd/@name", FIELD_ASSOCIATION_END_NAME);
XMI_Mapping.Add_Mapping ("**/AssociationEnd/@xmi.id", FIELD_ASSOCIATION_END_ID);
XMI_Mapping.Add_Mapping ("**/AssociationEnd/@visibility", FIELD_ASSOCIATION_END_VISIBILITY);
XMI_Mapping.Add_Mapping ("**/AssociationEnd/@isNavigable", FIELD_ASSOCIATION_END_NAVIGABLE);
XMI_Mapping.Add_Mapping ("**/AssociationEnd", FIELD_ASSOCIATION_END);
XMI_Mapping.Add_Mapping ("**/AssociationEnd.participant/Class/@xmi.idref",
FIELD_ASSOCIATION_CLASS_ID);
XMI_Mapping.Add_Mapping ("**/AssociationEnd.participant/Class/@href",
FIELD_ASSOCIATION_CLASS_ID);
-- Comment mapping.
XMI_Mapping.Add_Mapping ("**/Comment/@xmi.id", FIELD_COMMENT_ID);
XMI_Mapping.Add_Mapping ("**/Comment/@body", FIELD_VALUE);
XMI_Mapping.Add_Mapping ("**/Comment/Comment.annotatedElement/Class/@xmi.idref", FIELD_ID_REF);
XMI_Mapping.Add_Mapping ("**/Comment/Comment.annotatedElement/Attribute/@xmi.idref",
FIELD_ID_REF);
XMI_Mapping.Add_Mapping ("**/Comment/Comment.annotatedElement/Enumeration/@xmi.idref",
FIELD_ID_REF);
XMI_Mapping.Add_Mapping ("**/Comment/Comment.annotatedElement/AssociationEnd/@xmi.idref",
FIELD_ID_REF);
XMI_Mapping.Add_Mapping ("**/Comment", FIELD_COMMENT);
-- Tagged value mapping.
XMI_Mapping.Add_Mapping ("**/TaggedValue/@xmi.id", FIELD_TAGGED_ID);
XMI_Mapping.Add_Mapping ("**/TaggedValue/TaggedValue.dataValue", FIELD_VALUE);
XMI_Mapping.Add_Mapping ("**/TaggedValue/TaggedValue.type/@xmi.idref", FIELD_ID_REF);
XMI_Mapping.Add_Mapping ("**/TaggedValue/TaggedValue.type/TagDefinition/@xmi.idref",
FIELD_ID_REF);
XMI_Mapping.Add_Mapping ("**/TaggedValue/TaggedValue.type/TagDefinition/@href", FIELD_HREF);
XMI_Mapping.Add_Mapping ("**/TaggedValue", FIELD_TAGGED_VALUE);
-- Tag definition mapping.
XMI_Mapping.Add_Mapping ("**/TagDefinition/@xmi.id", FIELD_TAG_DEFINITION_ID);
XMI_Mapping.Add_Mapping ("**/TagDefinition/@name", FIELD_TAG_DEFINITION_NAME);
XMI_Mapping.Add_Mapping ("**/TagDefinition", FIELD_TAG_DEFINITION);
-- Stereotype mapping.
XMI_Mapping.Add_Mapping ("**/Stereotype/@href", FIELD_STEREOTYPE_HREF);
XMI_Mapping.Add_Mapping ("**/Stereotype/@xmi.id", FIELD_STEREOTYPE_ID);
XMI_Mapping.Add_Mapping ("**/Stereotype/@name", FIELD_STEREOTYPE_NAME);
XMI_Mapping.Add_Mapping ("**/Stereotype", FIELD_STEREOTYPE);
-- Enumeration mapping.
XMI_Mapping.Add_Mapping ("**/Enumeration/@xmi.id", FIELD_ID);
XMI_Mapping.Add_Mapping ("**/Enumeration/@name", FIELD_ENUMERATION);
XMI_Mapping.Add_Mapping ("**/Enumeration/Enumeration.literal/EnumerationLiteral/@xmi.id",
FIELD_ENUMERATION_LITERAL);
XMI_Mapping.Add_Mapping ("**/Enumeration/Enumeration.literal/EnumerationLiteral/@name",
FIELD_NAME);
XMI_Mapping.Add_Mapping ("**/Enumeration/Enumeration.literal/EnumerationLiteral",
FIELD_ENUMERATION_LITERAL_END);
XMI_Mapping.Add_Mapping ("**/Enumeration/@href", FIELD_ENUMERATION_HREF);
XMI_Mapping.Add_Mapping ("**/Enumeration/@xmi.idref", FIELD_ENUMERATION_HREF);
XMI_Mapping.Add_Mapping ("**/Classifier/@xmi.idref", FIELD_CLASSIFIER_HREF);
XMI_Mapping.Add_Mapping ("**/Classifier/@href", FIELD_CLASSIFIER_HREF);
XMI_Mapping.Add_Mapping ("**/Dependency.client/Class/@xmi.idref", FIELD_CLASSIFIER_HREF);
XMI_Mapping.Add_Mapping ("**/Dependency.supplier/Class/@xmi.idref", FIELD_CLASSIFIER_HREF);
-- Data type mapping.
XMI_Mapping.Add_Mapping ("**/DataType/@xmi.id", FIELD_ID);
XMI_Mapping.Add_Mapping ("**/DataType/@name", FIELD_DATA_TYPE_NAME);
XMI_Mapping.Add_Mapping ("**/DataType", FIELD_DATA_TYPE);
XMI_Mapping.Add_Mapping ("**/DataType/@href", FIELD_DATA_TYPE_HREF);
XMI_Mapping.Add_Mapping ("**/DataType/@xmi.idref", FIELD_DATA_TYPE_HREF);
XMI_Mapping.Add_Mapping ("**/StructuralFeature.type/Class/@xmi.idref",
FIELD_DATA_TYPE_HREF);
end Gen.Artifacts.XMI;
| 45.479294 | 99 | 0.573322 |
2fe66cfa4ce100097f88120b22327658e1740918 | 11,322 | adb | Ada | support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/s-scaval.adb | orb-zhuchen/Orb | 6da2404b949ac28bde786e08bf4debe4a27cd3a0 | [
"CNRI-Python-GPL-Compatible",
"MIT"
] | null | null | null | support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/s-scaval.adb | orb-zhuchen/Orb | 6da2404b949ac28bde786e08bf4debe4a27cd3a0 | [
"CNRI-Python-GPL-Compatible",
"MIT"
] | null | null | null | support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/s-scaval.adb | orb-zhuchen/Orb | 6da2404b949ac28bde786e08bf4debe4a27cd3a0 | [
"CNRI-Python-GPL-Compatible",
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . S C A L A R _ V A L U E S --
-- --
-- B o d y --
-- --
-- Copyright (C) 2003-2019, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Ada.Unchecked_Conversion;
package body System.Scalar_Values is
----------------
-- Initialize --
----------------
procedure Initialize (Mode1 : Character; Mode2 : Character) is
C1 : Character := Mode1;
C2 : Character := Mode2;
procedure Get_Env_Value_Ptr (Name, Length, Ptr : Address);
pragma Import (C, Get_Env_Value_Ptr, "__gnat_getenv");
subtype String2 is String (1 .. 2);
type String2_Ptr is access all String2;
Env_Value_Ptr : aliased String2_Ptr;
Env_Value_Length : aliased Integer;
EV_Val : aliased constant String :=
"GNAT_INIT_SCALARS" & ASCII.NUL;
B : Byte1;
EFloat : constant Boolean := Long_Long_Float'Size > Long_Float'Size;
-- Set True if we are on an x86 with 96-bit floats for extended
AFloat : constant Boolean :=
Long_Float'Size = 48 and then Long_Long_Float'Size = 48;
-- Set True if we are on an AAMP with 48-bit extended floating point
type ByteLF is array (0 .. 7 - 2 * Boolean'Pos (AFloat)) of Byte1;
for ByteLF'Component_Size use 8;
-- Type used to hold Long_Float values on all targets and to initialize
-- 48-bit Long_Float values used on AAMP. On AAMP, this type is 6 bytes.
-- On other targets the type is 8 bytes, and type Byte8 is used for
-- values that are then converted to ByteLF.
pragma Warnings (Off); -- why ???
function To_ByteLF is new Ada.Unchecked_Conversion (Byte8, ByteLF);
pragma Warnings (On);
type ByteLLF is
array (0 .. 7 + 4 * Boolean'Pos (EFloat) - 2 * Boolean'Pos (AFloat))
of Byte1;
for ByteLLF'Component_Size use 8;
-- Type used to initialize Long_Long_Float values used on x86 and
-- any other target with the same 80-bit floating-point values that
-- GCC always stores in 96-bits. Note that we are assuming Intel
-- format little-endian addressing for this type. On non-Intel
-- architectures, this is the same length as Byte8 and holds
-- a Long_Float value.
-- The following variables are used to initialize the float values
-- by overlay. We can't assign directly to the float values, since
-- we may be assigning signalling Nan's that will cause a trap if
-- loaded into a floating-point register.
IV_Isf : aliased Byte4; -- Initialize short float
IV_Ifl : aliased Byte4; -- Initialize float
IV_Ilf : aliased ByteLF; -- Initialize long float
IV_Ill : aliased ByteLLF; -- Initialize long long float
for IV_Isf'Address use IS_Isf'Address;
for IV_Ifl'Address use IS_Ifl'Address;
for IV_Ilf'Address use IS_Ilf'Address;
for IV_Ill'Address use IS_Ill'Address;
-- The following pragmas are used to suppress initialization
pragma Import (Ada, IV_Isf);
pragma Import (Ada, IV_Ifl);
pragma Import (Ada, IV_Ilf);
pragma Import (Ada, IV_Ill);
begin
-- Acquire environment variable value if necessary
if C1 = 'E' and then C2 = 'V' then
Get_Env_Value_Ptr
(EV_Val'Address, Env_Value_Length'Address, Env_Value_Ptr'Address);
-- Ignore if length is not 2
if Env_Value_Length /= 2 then
C1 := 'I';
C2 := 'N';
-- Length is 2, see if it is a valid value
else
-- Acquire two characters and fold to upper case
C1 := Env_Value_Ptr (1);
C2 := Env_Value_Ptr (2);
if C1 in 'a' .. 'z' then
C1 := Character'Val (Character'Pos (C1) - 32);
end if;
if C2 in 'a' .. 'z' then
C2 := Character'Val (Character'Pos (C2) - 32);
end if;
-- IN/LO/HI are ok values
if (C1 = 'I' and then C2 = 'N')
or else
(C1 = 'L' and then C2 = 'O')
or else
(C1 = 'H' and then C2 = 'I')
then
null;
-- Try for valid hex digits
elsif (C1 in '0' .. '9' or else C1 in 'A' .. 'Z')
or else
(C2 in '0' .. '9' or else C2 in 'A' .. 'Z')
then
null;
-- Otherwise environment value is bad, ignore and use IN (invalid)
else
C1 := 'I';
C2 := 'N';
end if;
end if;
end if;
-- IN (invalid value)
if C1 = 'I' and then C2 = 'N' then
IS_Is1 := 16#80#;
IS_Is2 := 16#8000#;
IS_Is4 := 16#8000_0000#;
IS_Is8 := 16#8000_0000_0000_0000#;
IS_Iu1 := 16#FF#;
IS_Iu2 := 16#FFFF#;
IS_Iu4 := 16#FFFF_FFFF#;
IS_Iu8 := 16#FFFF_FFFF_FFFF_FFFF#;
IS_Iz1 := 16#00#;
IS_Iz2 := 16#0000#;
IS_Iz4 := 16#0000_0000#;
IS_Iz8 := 16#0000_0000_0000_0000#;
if AFloat then
IV_Isf := 16#FFFF_FF00#;
IV_Ifl := 16#FFFF_FF00#;
IV_Ilf := (0, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#);
else
IV_Isf := IS_Iu4;
IV_Ifl := IS_Iu4;
IV_Ilf := To_ByteLF (IS_Iu8);
end if;
if EFloat then
IV_Ill := (0, 0, 0, 0, 0, 0, 0, 16#C0#, 16#FF#, 16#FF#, 0, 0);
end if;
-- LO (Low values)
elsif C1 = 'L' and then C2 = 'O' then
IS_Is1 := 16#80#;
IS_Is2 := 16#8000#;
IS_Is4 := 16#8000_0000#;
IS_Is8 := 16#8000_0000_0000_0000#;
IS_Iu1 := 16#00#;
IS_Iu2 := 16#0000#;
IS_Iu4 := 16#0000_0000#;
IS_Iu8 := 16#0000_0000_0000_0000#;
IS_Iz1 := 16#00#;
IS_Iz2 := 16#0000#;
IS_Iz4 := 16#0000_0000#;
IS_Iz8 := 16#0000_0000_0000_0000#;
if AFloat then
IV_Isf := 16#0000_0001#;
IV_Ifl := 16#0000_0001#;
IV_Ilf := (1, 0, 0, 0, 0, 0);
else
IV_Isf := 16#FF80_0000#;
IV_Ifl := 16#FF80_0000#;
IV_Ilf := To_ByteLF (16#FFF0_0000_0000_0000#);
end if;
if EFloat then
IV_Ill := (0, 0, 0, 0, 0, 0, 0, 16#80#, 16#FF#, 16#FF#, 0, 0);
end if;
-- HI (High values)
elsif C1 = 'H' and then C2 = 'I' then
IS_Is1 := 16#7F#;
IS_Is2 := 16#7FFF#;
IS_Is4 := 16#7FFF_FFFF#;
IS_Is8 := 16#7FFF_FFFF_FFFF_FFFF#;
IS_Iu1 := 16#FF#;
IS_Iu2 := 16#FFFF#;
IS_Iu4 := 16#FFFF_FFFF#;
IS_Iu8 := 16#FFFF_FFFF_FFFF_FFFF#;
IS_Iz1 := 16#FF#;
IS_Iz2 := 16#FFFF#;
IS_Iz4 := 16#FFFF_FFFF#;
IS_Iz8 := 16#FFFF_FFFF_FFFF_FFFF#;
if AFloat then
IV_Isf := 16#7FFF_FFFF#;
IV_Ifl := 16#7FFF_FFFF#;
IV_Ilf := (16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#7F#);
else
IV_Isf := 16#7F80_0000#;
IV_Ifl := 16#7F80_0000#;
IV_Ilf := To_ByteLF (16#7FF0_0000_0000_0000#);
end if;
if EFloat then
IV_Ill := (0, 0, 0, 0, 0, 0, 0, 16#80#, 16#FF#, 16#7F#, 0, 0);
end if;
-- -Shh (hex byte)
else
-- Convert the two hex digits (we know they are valid here)
B := 16 * (Character'Pos (C1)
- (if C1 in '0' .. '9'
then Character'Pos ('0')
else Character'Pos ('A') - 10))
+ (Character'Pos (C2)
- (if C2 in '0' .. '9'
then Character'Pos ('0')
else Character'Pos ('A') - 10));
-- Initialize data values from the hex value
IS_Is1 := B;
IS_Is2 := 2**8 * Byte2 (IS_Is1) + Byte2 (IS_Is1);
IS_Is4 := 2**16 * Byte4 (IS_Is2) + Byte4 (IS_Is2);
IS_Is8 := 2**32 * Byte8 (IS_Is4) + Byte8 (IS_Is4);
IS_Iu1 := IS_Is1;
IS_Iu2 := IS_Is2;
IS_Iu4 := IS_Is4;
IS_Iu8 := IS_Is8;
IS_Iz1 := IS_Is1;
IS_Iz2 := IS_Is2;
IS_Iz4 := IS_Is4;
IS_Iz8 := IS_Is8;
IV_Isf := IS_Is4;
IV_Ifl := IS_Is4;
if AFloat then
IV_Ill := (B, B, B, B, B, B);
else
IV_Ilf := To_ByteLF (IS_Is8);
end if;
if EFloat then
IV_Ill := (B, B, B, B, B, B, B, B, B, B, B, B);
end if;
end if;
-- If no separate Long_Long_Float, then use Long_Float value as
-- Long_Long_Float initial value.
if not EFloat then
declare
pragma Warnings (Off); -- why???
function To_ByteLLF is
new Ada.Unchecked_Conversion (ByteLF, ByteLLF);
pragma Warnings (On);
begin
IV_Ill := To_ByteLLF (IV_Ilf);
end;
end if;
end Initialize;
end System.Scalar_Values;
| 34.413374 | 79 | 0.4826 |
fbf00b5d2725391ff1e950ea2cb1e88ffb82e6e8 | 423 | ads | Ada | source/environment/machine-pc-freebsd/s-nacoli.ads | ytomino/drake | 4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2 | [
"MIT"
] | 33 | 2015-04-04T09:19:36.000Z | 2021-11-10T05:33:34.000Z | source/environment/machine-pc-linux-gnu/s-nacoli.ads | ytomino/drake | 4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2 | [
"MIT"
] | 8 | 2017-11-14T13:05:07.000Z | 2018-08-09T15:28:49.000Z | source/environment/machine-pc-linux-gnu/s-nacoli.ads | ytomino/drake | 4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2 | [
"MIT"
] | 9 | 2015-02-03T17:09:53.000Z | 2021-11-12T01:16:05.000Z | pragma License (Unrestricted);
-- implementation unit specialized for POSIX (Darwin, FreeBSD, or Linux)
package System.Native_Command_Line is
pragma Preelaborate;
function Argument_Count return Natural;
pragma Pure_Function (Argument_Count);
pragma Inline (Argument_Count);
function Argument (Number : Natural) return String;
-- Returns Command_Name if Number = 0.
end System.Native_Command_Line;
| 30.214286 | 73 | 0.768322 |
2975b4aa0edfd59cbb8cca68b377a3c5685c4363 | 8,451 | ads | Ada | source/amf/uml/amf-uml-behavioral_features.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | source/amf/uml/amf-uml-behavioral_features.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | source/amf/uml/amf-uml-behavioral_features.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 4 | 2017-07-18T07:11:05.000Z | 2020-06-21T03:02:25.000Z | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2011-2012, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- This file is generated, don't edit it.
------------------------------------------------------------------------------
-- A behavioral feature is a feature of a classifier that specifies an aspect
-- of the behavior of its instances.
--
-- A behavioral feature owns zero or more parameter sets.
--
-- A behavioral feature is implemented (realized) by a behavior. A behavioral
-- feature specifies that a classifier will respond to a designated request
-- by invoking its implementing method.
------------------------------------------------------------------------------
limited with AMF.UML.Behaviors.Collections;
with AMF.UML.Features;
limited with AMF.UML.Named_Elements;
with AMF.UML.Namespaces;
limited with AMF.UML.Parameter_Sets.Collections;
limited with AMF.UML.Parameters.Collections;
limited with AMF.UML.Types.Collections;
package AMF.UML.Behavioral_Features is
pragma Preelaborate;
type UML_Behavioral_Feature is limited interface
and AMF.UML.Features.UML_Feature
and AMF.UML.Namespaces.UML_Namespace;
type UML_Behavioral_Feature_Access is
access all UML_Behavioral_Feature'Class;
for UML_Behavioral_Feature_Access'Storage_Size use 0;
not overriding function Get_Concurrency
(Self : not null access constant UML_Behavioral_Feature)
return AMF.UML.UML_Call_Concurrency_Kind is abstract;
-- Getter of BehavioralFeature::concurrency.
--
-- Specifies the semantics of concurrent calls to the same passive
-- instance (i.e., an instance originating from a class with isActive
-- being false). Active instances control access to their own behavioral
-- features.
not overriding procedure Set_Concurrency
(Self : not null access UML_Behavioral_Feature;
To : AMF.UML.UML_Call_Concurrency_Kind) is abstract;
-- Setter of BehavioralFeature::concurrency.
--
-- Specifies the semantics of concurrent calls to the same passive
-- instance (i.e., an instance originating from a class with isActive
-- being false). Active instances control access to their own behavioral
-- features.
not overriding function Get_Is_Abstract
(Self : not null access constant UML_Behavioral_Feature)
return Boolean is abstract;
-- Getter of BehavioralFeature::isAbstract.
--
-- If true, then the behavioral feature does not have an implementation,
-- and one must be supplied by a more specific element. If false, the
-- behavioral feature must have an implementation in the classifier or one
-- must be inherited from a more general element.
not overriding procedure Set_Is_Abstract
(Self : not null access UML_Behavioral_Feature;
To : Boolean) is abstract;
-- Setter of BehavioralFeature::isAbstract.
--
-- If true, then the behavioral feature does not have an implementation,
-- and one must be supplied by a more specific element. If false, the
-- behavioral feature must have an implementation in the classifier or one
-- must be inherited from a more general element.
not overriding function Get_Method
(Self : not null access constant UML_Behavioral_Feature)
return AMF.UML.Behaviors.Collections.Set_Of_UML_Behavior is abstract;
-- Getter of BehavioralFeature::method.
--
-- A behavioral description that implements the behavioral feature. There
-- may be at most one behavior for a particular pairing of a classifier
-- (as owner of the behavior) and a behavioral feature (as specification
-- of the behavior).
not overriding function Get_Owned_Parameter
(Self : not null access constant UML_Behavioral_Feature)
return AMF.UML.Parameters.Collections.Ordered_Set_Of_UML_Parameter is abstract;
-- Getter of BehavioralFeature::ownedParameter.
--
-- Specifies the ordered set of formal parameters of this
-- BehavioralFeature.
not overriding function Get_Owned_Parameter_Set
(Self : not null access constant UML_Behavioral_Feature)
return AMF.UML.Parameter_Sets.Collections.Set_Of_UML_Parameter_Set is abstract;
-- Getter of BehavioralFeature::ownedParameterSet.
--
-- The ParameterSets owned by this BehavioralFeature.
not overriding function Get_Raised_Exception
(Self : not null access constant UML_Behavioral_Feature)
return AMF.UML.Types.Collections.Set_Of_UML_Type is abstract;
-- Getter of BehavioralFeature::raisedException.
--
-- References the Types representing exceptions that may be raised during
-- an invocation of this feature.
overriding function Is_Distinguishable_From
(Self : not null access constant UML_Behavioral_Feature;
N : AMF.UML.Named_Elements.UML_Named_Element_Access;
Ns : AMF.UML.Namespaces.UML_Namespace_Access)
return Boolean is abstract;
-- Operation BehavioralFeature::isDistinguishableFrom.
--
-- The query isDistinguishableFrom() determines whether two
-- BehavioralFeatures may coexist in the same Namespace. It specifies that
-- they have to have different signatures.
end AMF.UML.Behavioral_Features;
| 52.81875 | 86 | 0.592474 |
295bac0870728a6180f497411f49c8a24922c84f | 949,079 | adb | Ada | final-project/repositories/Deep_Learning_Inference_Accelerator_with_CNNIOT/MSOC_final-main/finalpool_hls/solution1/.autopilot/db/pool_hw.adb | bol-edu/2020-fall-ntu | 5e009875dec5a3bbcebd1b3fae327990371d1b6a | [
"MIT"
] | 7 | 2021-02-10T17:59:48.000Z | 2021-09-27T15:02:56.000Z | final-project/repositories/Deep_Learning_Inference_Accelerator_with_CNNIOT/MSOC_final-main/finalpool_hls/solution1/.autopilot/db/pool_hw.adb | bol-edu/2020-fall-ntu | 5e009875dec5a3bbcebd1b3fae327990371d1b6a | [
"MIT"
] | null | null | null | final-project/repositories/Deep_Learning_Inference_Accelerator_with_CNNIOT/MSOC_final-main/finalpool_hls/solution1/.autopilot/db/pool_hw.adb | bol-edu/2020-fall-ntu | 5e009875dec5a3bbcebd1b3fae327990371d1b6a | [
"MIT"
] | 1 | 2022-03-22T01:46:01.000Z | 2022-03-22T01:46:01.000Z | <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE boost_serialization>
<boost_serialization signature="serialization::archive" version="15">
<syndb class_id="0" tracking_level="0" version="0">
<userIPLatency>-1</userIPLatency>
<userIPName/>
<cdfg class_id="1" tracking_level="1" version="0" object_id="_0">
<name>pool_hw</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>cifm</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>cifm</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>512</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs class_id="7" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_2">
<Value>
<Obj>
<type>1</type>
<id>2</id>
<name>cofm</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>cofm</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>512</bitwidth>
</Value>
<direction>2</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>tran_wgt</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>tran_wgt</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>512</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>150</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_4">
<Value>
<Obj>
<type>0</type>
<id>4</id>
<name>cifm_counter_5</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>cifm_counter</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>177</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>1</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_5">
<Value>
<Obj>
<type>0</type>
<id>5</id>
<name>cofm_counter_5</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>cofm_counter</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>178</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>2</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_6">
<Value>
<Obj>
<type>0</type>
<id>10</id>
<name>ifm_buff0_0</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>256</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="11" tracking_level="0" version="0">
<first>D:\Course\mSOC\final</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>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>256</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff0[0]</originalName>
<rtlName>ifm_buff0_0_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>180</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>3</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_7">
<Value>
<Obj>
<type>0</type>
<id>11</id>
<name>ifm_buff0_1</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>256</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>256</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff0[1]</originalName>
<rtlName>ifm_buff0_1_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>181</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>4</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_8">
<Value>
<Obj>
<type>0</type>
<id>12</id>
<name>ifm_buff0_2</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>256</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>256</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff0[2]</originalName>
<rtlName>ifm_buff0_2_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>182</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>5</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_9">
<Value>
<Obj>
<type>0</type>
<id>13</id>
<name>ifm_buff0_3</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>256</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>256</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff0[3]</originalName>
<rtlName>ifm_buff0_3_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>183</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>6</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>14</id>
<name>ifm_buff0_4</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>256</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>256</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff0[4]</originalName>
<rtlName>ifm_buff0_4_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>184</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>7</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>15</id>
<name>ifm_buff0_5</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>256</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>256</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff0[5]</originalName>
<rtlName>ifm_buff0_5_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>185</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>8</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>16</id>
<name>ifm_buff0_6</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>256</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>256</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff0[6]</originalName>
<rtlName>ifm_buff0_6_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>186</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>9</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>17</id>
<name>ifm_buff0_7</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>256</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>256</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff0[7]</originalName>
<rtlName>ifm_buff0_7_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>187</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>10</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>18</id>
<name>ifm_buff0_8</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>256</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>256</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff0[8]</originalName>
<rtlName>ifm_buff0_8_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>188</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>11</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>19</id>
<name>ifm_buff0_9</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>256</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>256</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff0[9]</originalName>
<rtlName>ifm_buff0_9_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>189</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>12</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>20</id>
<name>ifm_buff0_10</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>256</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>256</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff0[10]</originalName>
<rtlName>ifm_buff0_10_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>190</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>13</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name>ifm_buff0_11</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>256</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>256</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff0[11]</originalName>
<rtlName>ifm_buff0_11_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>191</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>14</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>22</id>
<name>ifm_buff0_12</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>256</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>256</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff0[12]</originalName>
<rtlName>ifm_buff0_12_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>192</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>15</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>23</id>
<name>ifm_buff0_13</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>256</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>256</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff0[13]</originalName>
<rtlName>ifm_buff0_13_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>193</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>16</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>24</id>
<name>ifm_buff0_14</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>256</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>256</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff0[14]</originalName>
<rtlName>ifm_buff0_14_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>194</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>17</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>25</id>
<name>ifm_buff0_15</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>256</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>256</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff0[15]</originalName>
<rtlName>ifm_buff0_15_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>195</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>18</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>26</id>
<name>ifm_buff1_0</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>258</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>258</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff1[0]</originalName>
<rtlName>ifm_buff1_0_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>196</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>19</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>27</id>
<name>ifm_buff1_1</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>258</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>258</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff1[1]</originalName>
<rtlName>ifm_buff1_1_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>197</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>20</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>28</id>
<name>ifm_buff1_2</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>258</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>258</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff1[2]</originalName>
<rtlName>ifm_buff1_2_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>198</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>21</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>29</id>
<name>ifm_buff1_3</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>258</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>258</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff1[3]</originalName>
<rtlName>ifm_buff1_3_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>199</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>22</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>30</id>
<name>ifm_buff1_4</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>258</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>258</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff1[4]</originalName>
<rtlName>ifm_buff1_4_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>200</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>23</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>31</id>
<name>ifm_buff1_5</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>258</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>258</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff1[5]</originalName>
<rtlName>ifm_buff1_5_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>201</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>24</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>32</id>
<name>ifm_buff1_6</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>258</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>258</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff1[6]</originalName>
<rtlName>ifm_buff1_6_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>202</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>25</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>33</id>
<name>ifm_buff1_7</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>258</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>258</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff1[7]</originalName>
<rtlName>ifm_buff1_7_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>203</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>26</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>34</id>
<name>ifm_buff1_8</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>258</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>258</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff1[8]</originalName>
<rtlName>ifm_buff1_8_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>204</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>27</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>35</id>
<name>ifm_buff1_9</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>258</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>258</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff1[9]</originalName>
<rtlName>ifm_buff1_9_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>205</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>28</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>36</id>
<name>ifm_buff1_10</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>258</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>258</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff1[10]</originalName>
<rtlName>ifm_buff1_10_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>206</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>29</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name>ifm_buff1_11</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>258</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>258</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff1[11]</originalName>
<rtlName>ifm_buff1_11_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>207</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>30</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name>ifm_buff1_12</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>258</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>258</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff1[12]</originalName>
<rtlName>ifm_buff1_12_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>208</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>31</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>39</id>
<name>ifm_buff1_13</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>258</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>258</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff1[13]</originalName>
<rtlName>ifm_buff1_13_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>209</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>32</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>ifm_buff1_14</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>258</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>258</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff1[14]</originalName>
<rtlName>ifm_buff1_14_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>210</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>33</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name>ifm_buff1_15</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>258</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>258</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff1[15]</originalName>
<rtlName>ifm_buff1_15_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>211</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>34</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>42</id>
<name>ifm_buff2_0</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>260</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>260</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff2[0]</originalName>
<rtlName>ifm_buff2_0_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>212</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>35</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name>ifm_buff2_1</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>260</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>260</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff2[1]</originalName>
<rtlName>ifm_buff2_1_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>213</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>36</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_40">
<Value>
<Obj>
<type>0</type>
<id>44</id>
<name>ifm_buff2_2</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>260</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>260</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff2[2]</originalName>
<rtlName>ifm_buff2_2_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>214</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>37</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>45</id>
<name>ifm_buff2_3</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>260</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>260</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff2[3]</originalName>
<rtlName>ifm_buff2_3_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>215</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>38</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_42">
<Value>
<Obj>
<type>0</type>
<id>46</id>
<name>ifm_buff2_4</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>260</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>260</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff2[4]</originalName>
<rtlName>ifm_buff2_4_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>216</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>39</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_43">
<Value>
<Obj>
<type>0</type>
<id>47</id>
<name>ifm_buff2_5</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>260</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>260</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff2[5]</originalName>
<rtlName>ifm_buff2_5_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>217</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>40</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_44">
<Value>
<Obj>
<type>0</type>
<id>48</id>
<name>ifm_buff2_6</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>260</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>260</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff2[6]</originalName>
<rtlName>ifm_buff2_6_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>218</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>41</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_45">
<Value>
<Obj>
<type>0</type>
<id>49</id>
<name>ifm_buff2_7</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>260</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>260</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff2[7]</originalName>
<rtlName>ifm_buff2_7_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>219</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>42</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_46">
<Value>
<Obj>
<type>0</type>
<id>50</id>
<name>ifm_buff2_8</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>260</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>260</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff2[8]</originalName>
<rtlName>ifm_buff2_8_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>220</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>43</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_47">
<Value>
<Obj>
<type>0</type>
<id>51</id>
<name>ifm_buff2_9</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>260</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>260</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff2[9]</originalName>
<rtlName>ifm_buff2_9_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>221</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>44</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_48">
<Value>
<Obj>
<type>0</type>
<id>52</id>
<name>ifm_buff2_10</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>260</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>260</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff2[10]</originalName>
<rtlName>ifm_buff2_10_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>222</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>45</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_49">
<Value>
<Obj>
<type>0</type>
<id>53</id>
<name>ifm_buff2_11</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>260</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>260</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff2[11]</originalName>
<rtlName>ifm_buff2_11_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>223</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>46</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_50">
<Value>
<Obj>
<type>0</type>
<id>54</id>
<name>ifm_buff2_12</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>260</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>260</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff2[12]</originalName>
<rtlName>ifm_buff2_12_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>224</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>47</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_51">
<Value>
<Obj>
<type>0</type>
<id>55</id>
<name>ifm_buff2_13</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>260</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>260</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff2[13]</originalName>
<rtlName>ifm_buff2_13_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>225</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>48</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_52">
<Value>
<Obj>
<type>0</type>
<id>56</id>
<name>ifm_buff2_14</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>260</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>260</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff2[14]</originalName>
<rtlName>ifm_buff2_14_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>226</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>49</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_53">
<Value>
<Obj>
<type>0</type>
<id>57</id>
<name>ifm_buff2_15</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>260</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>260</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ifm_buff2[15]</originalName>
<rtlName>ifm_buff2_15_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>227</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>50</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_54">
<Value>
<Obj>
<type>0</type>
<id>58</id>
<name>ofm_buff0_0</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>271</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>271</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff0[0]</originalName>
<rtlName>ofm_buff0_0_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>228</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>51</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_55">
<Value>
<Obj>
<type>0</type>
<id>59</id>
<name>ofm_buff0_1</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>271</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>271</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff0[1]</originalName>
<rtlName>ofm_buff0_1_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>229</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>52</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_56">
<Value>
<Obj>
<type>0</type>
<id>60</id>
<name>ofm_buff0_2</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>271</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>271</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff0[2]</originalName>
<rtlName>ofm_buff0_2_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>230</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>53</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_57">
<Value>
<Obj>
<type>0</type>
<id>61</id>
<name>ofm_buff0_3</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>271</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>271</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff0[3]</originalName>
<rtlName>ofm_buff0_3_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>231</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>54</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_58">
<Value>
<Obj>
<type>0</type>
<id>62</id>
<name>ofm_buff0_4</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>271</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>271</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff0[4]</originalName>
<rtlName>ofm_buff0_4_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>232</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>55</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_59">
<Value>
<Obj>
<type>0</type>
<id>63</id>
<name>ofm_buff0_5</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>271</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>271</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff0[5]</originalName>
<rtlName>ofm_buff0_5_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>233</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>56</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_60">
<Value>
<Obj>
<type>0</type>
<id>64</id>
<name>ofm_buff0_6</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>271</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>271</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff0[6]</originalName>
<rtlName>ofm_buff0_6_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>234</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>57</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_61">
<Value>
<Obj>
<type>0</type>
<id>65</id>
<name>ofm_buff0_7</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>271</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>271</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff0[7]</originalName>
<rtlName>ofm_buff0_7_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>235</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>58</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_62">
<Value>
<Obj>
<type>0</type>
<id>66</id>
<name>ofm_buff0_8</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>271</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>271</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff0[8]</originalName>
<rtlName>ofm_buff0_8_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>236</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>59</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_63">
<Value>
<Obj>
<type>0</type>
<id>67</id>
<name>ofm_buff0_9</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>271</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>271</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff0[9]</originalName>
<rtlName>ofm_buff0_9_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>237</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>60</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_64">
<Value>
<Obj>
<type>0</type>
<id>68</id>
<name>ofm_buff0_10</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>271</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>271</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff0[10]</originalName>
<rtlName>ofm_buff0_10_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>238</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>61</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_65">
<Value>
<Obj>
<type>0</type>
<id>69</id>
<name>ofm_buff0_11</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>271</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>271</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff0[11]</originalName>
<rtlName>ofm_buff0_11_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>239</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>62</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_66">
<Value>
<Obj>
<type>0</type>
<id>70</id>
<name>ofm_buff0_12</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>271</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>271</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff0[12]</originalName>
<rtlName>ofm_buff0_12_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>240</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>63</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_67">
<Value>
<Obj>
<type>0</type>
<id>71</id>
<name>ofm_buff0_13</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>271</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>271</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff0[13]</originalName>
<rtlName>ofm_buff0_13_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>241</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>64</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_68">
<Value>
<Obj>
<type>0</type>
<id>72</id>
<name>ofm_buff0_14</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>271</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>271</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff0[14]</originalName>
<rtlName>ofm_buff0_14_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>242</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>65</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_69">
<Value>
<Obj>
<type>0</type>
<id>73</id>
<name>ofm_buff0_15</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>271</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>271</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff0[15]</originalName>
<rtlName>ofm_buff0_15_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>243</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>66</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_70">
<Value>
<Obj>
<type>0</type>
<id>74</id>
<name>ofm_buff1_0</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>272</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>272</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff1[0]</originalName>
<rtlName>ofm_buff1_0_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>244</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>67</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_71">
<Value>
<Obj>
<type>0</type>
<id>75</id>
<name>ofm_buff1_1</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>272</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>272</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff1[1]</originalName>
<rtlName>ofm_buff1_1_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>245</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>68</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_72">
<Value>
<Obj>
<type>0</type>
<id>76</id>
<name>ofm_buff1_2</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>272</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>272</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff1[2]</originalName>
<rtlName>ofm_buff1_2_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>246</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>69</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_73">
<Value>
<Obj>
<type>0</type>
<id>77</id>
<name>ofm_buff1_3</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>272</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>272</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff1[3]</originalName>
<rtlName>ofm_buff1_3_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>247</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>70</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_74">
<Value>
<Obj>
<type>0</type>
<id>78</id>
<name>ofm_buff1_4</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>272</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>272</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff1[4]</originalName>
<rtlName>ofm_buff1_4_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>248</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>71</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_75">
<Value>
<Obj>
<type>0</type>
<id>79</id>
<name>ofm_buff1_5</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>272</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>272</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff1[5]</originalName>
<rtlName>ofm_buff1_5_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>249</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>72</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_76">
<Value>
<Obj>
<type>0</type>
<id>80</id>
<name>ofm_buff1_6</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>272</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>272</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff1[6]</originalName>
<rtlName>ofm_buff1_6_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>250</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>73</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_77">
<Value>
<Obj>
<type>0</type>
<id>81</id>
<name>ofm_buff1_7</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>272</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>272</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff1[7]</originalName>
<rtlName>ofm_buff1_7_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>251</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>74</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_78">
<Value>
<Obj>
<type>0</type>
<id>82</id>
<name>ofm_buff1_8</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>272</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>272</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff1[8]</originalName>
<rtlName>ofm_buff1_8_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>252</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>75</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_79">
<Value>
<Obj>
<type>0</type>
<id>83</id>
<name>ofm_buff1_9</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>272</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>272</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff1[9]</originalName>
<rtlName>ofm_buff1_9_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>253</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>76</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_80">
<Value>
<Obj>
<type>0</type>
<id>84</id>
<name>ofm_buff1_10</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>272</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>272</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff1[10]</originalName>
<rtlName>ofm_buff1_10_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>254</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>77</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_81">
<Value>
<Obj>
<type>0</type>
<id>85</id>
<name>ofm_buff1_11</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>272</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>272</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff1[11]</originalName>
<rtlName>ofm_buff1_11_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>255</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>78</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_82">
<Value>
<Obj>
<type>0</type>
<id>86</id>
<name>ofm_buff1_12</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>272</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>272</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff1[12]</originalName>
<rtlName>ofm_buff1_12_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>256</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>79</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_83">
<Value>
<Obj>
<type>0</type>
<id>87</id>
<name>ofm_buff1_13</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>272</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>272</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff1[13]</originalName>
<rtlName>ofm_buff1_13_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>257</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>80</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_84">
<Value>
<Obj>
<type>0</type>
<id>88</id>
<name>ofm_buff1_14</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>272</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>272</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff1[14]</originalName>
<rtlName>ofm_buff1_14_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>258</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>81</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_85">
<Value>
<Obj>
<type>0</type>
<id>89</id>
<name>ofm_buff1_15</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>272</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>272</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ofm_buff1[15]</originalName>
<rtlName>ofm_buff1_15_U</rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>259</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>82</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_86">
<Value>
<Obj>
<type>0</type>
<id>93</id>
<name>_ln289</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>289</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>289</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>grp_load_cifm_data_fu_491</rtlName>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>34</count>
<item_version>0</item_version>
<item>261</item>
<item>262</item>
<item>263</item>
<item>264</item>
<item>265</item>
<item>266</item>
<item>267</item>
<item>268</item>
<item>269</item>
<item>270</item>
<item>271</item>
<item>272</item>
<item>273</item>
<item>274</item>
<item>275</item>
<item>276</item>
<item>277</item>
<item>278</item>
<item>279</item>
<item>280</item>
<item>281</item>
<item>282</item>
<item>283</item>
<item>284</item>
<item>285</item>
<item>286</item>
<item>287</item>
<item>288</item>
<item>289</item>
<item>290</item>
<item>291</item>
<item>292</item>
<item>293</item>
<item>294</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.25</m_delay>
<m_topoIndex>85</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_87">
<Value>
<Obj>
<type>0</type>
<id>94</id>
<name>cofm_counter_5_write_ln297</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>297</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>297</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>296</item>
<item>297</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.95</m_delay>
<m_topoIndex>83</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_88">
<Value>
<Obj>
<type>0</type>
<id>95</id>
<name>cifm_counter_5_write_ln297</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>297</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>297</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>299</item>
<item>300</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.95</m_delay>
<m_topoIndex>84</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_89">
<Value>
<Obj>
<type>0</type>
<id>96</id>
<name>_ln297</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>297</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>297</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>301</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>86</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_90">
<Value>
<Obj>
<type>0</type>
<id>98</id>
<name>rotate_counter_0</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>351</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>351</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>303</item>
<item>304</item>
<item>305</item>
<item>306</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>87</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_91">
<Value>
<Obj>
<type>0</type>
<id>99</id>
<name>row_0</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>row</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>308</item>
<item>309</item>
<item>310</item>
<item>311</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>88</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_92">
<Value>
<Obj>
<type>0</type>
<id>100</id>
<name>icmp_ln297</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>297</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>297</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln297_fu_567_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>312</item>
<item>314</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.42</m_delay>
<m_topoIndex>89</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_93">
<Value>
<Obj>
<type>0</type>
<id>102</id>
<name>icmp_ln303</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>303</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>303</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln303_fu_573_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>315</item>
<item>317</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.42</m_delay>
<m_topoIndex>90</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_94">
<Value>
<Obj>
<type>0</type>
<id>103</id>
<name>row</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>297</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>297</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>row</originalName>
<rtlName>row_fu_580_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>318</item>
<item>320</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.82</m_delay>
<m_topoIndex>91</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_95">
<Value>
<Obj>
<type>0</type>
<id>104</id>
<name>_ln297</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>297</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>297</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>321</item>
<item>322</item>
<item>323</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>92</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_96">
<Value>
<Obj>
<type>0</type>
<id>106</id>
<name>icmp_ln301</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>301</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>301</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln301_fu_586_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>324</item>
<item>325</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.42</m_delay>
<m_topoIndex>93</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_97">
<Value>
<Obj>
<type>0</type>
<id>107</id>
<name>_ln301</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>301</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>301</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>326</item>
<item>327</item>
<item>328</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>94</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_98">
<Value>
<Obj>
<type>0</type>
<id>109</id>
<name>icmp_ln312</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>312</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>312</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln312_fu_592_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>407</item>
<item>409</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.42</m_delay>
<m_topoIndex>95</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_99">
<Value>
<Obj>
<type>0</type>
<id>110</id>
<name>_ln312</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>312</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>312</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>410</item>
<item>411</item>
<item>412</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>96</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_100">
<Value>
<Obj>
<type>0</type>
<id>112</id>
<name>icmp_ln321</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>321</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>321</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln321_fu_598_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>487</item>
<item>489</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.42</m_delay>
<m_topoIndex>97</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_101">
<Value>
<Obj>
<type>0</type>
<id>113</id>
<name>_ln321</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>321</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>321</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>490</item>
<item>491</item>
<item>492</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>98</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_102">
<Value>
<Obj>
<type>0</type>
<id>115</id>
<name>icmp_ln330</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>330</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>330</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln330_fu_604_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>566</item>
<item>568</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.42</m_delay>
<m_topoIndex>99</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_103">
<Value>
<Obj>
<type>0</type>
<id>116</id>
<name>_ln330</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>330</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>330</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<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>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>100</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_104">
<Value>
<Obj>
<type>0</type>
<id>118</id>
<name>icmp_ln339</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>339</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>339</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln339_fu_610_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>645</item>
<item>647</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.42</m_delay>
<m_topoIndex>101</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_105">
<Value>
<Obj>
<type>0</type>
<id>119</id>
<name>_ln339</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>339</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>339</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>648</item>
<item>649</item>
<item>650</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>102</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_106">
<Value>
<Obj>
<type>0</type>
<id>121</id>
<name>cifm_counter_5_load_4</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>341</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>341</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>651</item>
<item>873</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>103</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_107">
<Value>
<Obj>
<type>0</type>
<id>122</id>
<name>cofm_counter_5_load_5</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>343</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>343</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>652</item>
<item>871</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>104</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_108">
<Value>
<Obj>
<type>0</type>
<id>123</id>
<name>cifm_counter_4</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>341</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>341</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>cifm_counter</originalName>
<rtlName>grp_write_row_ifm_fu_480</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>9</count>
<item_version>0</item_version>
<item>653</item>
<item>654</item>
<item>655</item>
<item>656</item>
<item>657</item>
<item>658</item>
<item>659</item>
<item>870</item>
<item>883</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>5.16</m_delay>
<m_topoIndex>105</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_109">
<Value>
<Obj>
<type>0</type>
<id>124</id>
<name>_ln342</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>342</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>342</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>grp_pool_write_fu_413</rtlName>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>50</count>
<item_version>0</item_version>
<item>660</item>
<item>661</item>
<item>662</item>
<item>663</item>
<item>664</item>
<item>665</item>
<item>666</item>
<item>667</item>
<item>668</item>
<item>669</item>
<item>670</item>
<item>671</item>
<item>672</item>
<item>673</item>
<item>674</item>
<item>675</item>
<item>676</item>
<item>677</item>
<item>678</item>
<item>679</item>
<item>680</item>
<item>681</item>
<item>682</item>
<item>683</item>
<item>684</item>
<item>685</item>
<item>686</item>
<item>687</item>
<item>688</item>
<item>689</item>
<item>690</item>
<item>691</item>
<item>692</item>
<item>693</item>
<item>694</item>
<item>695</item>
<item>696</item>
<item>697</item>
<item>698</item>
<item>699</item>
<item>700</item>
<item>701</item>
<item>702</item>
<item>703</item>
<item>704</item>
<item>705</item>
<item>706</item>
<item>707</item>
<item>708</item>
<item>884</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.90</m_delay>
<m_topoIndex>106</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_110">
<Value>
<Obj>
<type>0</type>
<id>125</id>
<name>cofm_counter_4</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>343</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>343</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>cofm_counter</originalName>
<rtlName>grp_conv_read_fu_465</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>10</count>
<item_version>0</item_version>
<item>709</item>
<item>710</item>
<item>711</item>
<item>712</item>
<item>713</item>
<item>714</item>
<item>715</item>
<item>716</item>
<item>717</item>
<item>718</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>4.50</m_delay>
<m_topoIndex>107</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_111">
<Value>
<Obj>
<type>0</type>
<id>126</id>
<name>cofm_counter_5_write_ln344</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>344</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>344</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>719</item>
<item>720</item>
<item>839</item>
<item>872</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.95</m_delay>
<m_topoIndex>131</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_112">
<Value>
<Obj>
<type>0</type>
<id>127</id>
<name>cifm_counter_5_write_ln344</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>344</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>344</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>721</item>
<item>722</item>
<item>840</item>
<item>874</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.95</m_delay>
<m_topoIndex>132</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_113">
<Value>
<Obj>
<type>0</type>
<id>128</id>
<name>_ln344</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>344</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>344</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>723</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>133</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_114">
<Value>
<Obj>
<type>0</type>
<id>130</id>
<name>cifm_counter_5_load_3</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>332</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>332</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>572</item>
<item>868</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>108</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_115">
<Value>
<Obj>
<type>0</type>
<id>131</id>
<name>cofm_counter_5_load_4</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>334</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>334</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>573</item>
<item>866</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>109</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_116">
<Value>
<Obj>
<type>0</type>
<id>132</id>
<name>cifm_counter_3</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>332</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>332</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>cifm_counter</originalName>
<rtlName>grp_write_row_ifm_fu_480</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>9</count>
<item_version>0</item_version>
<item>574</item>
<item>575</item>
<item>576</item>
<item>577</item>
<item>578</item>
<item>579</item>
<item>580</item>
<item>865</item>
<item>881</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>5.16</m_delay>
<m_topoIndex>110</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_117">
<Value>
<Obj>
<type>0</type>
<id>133</id>
<name>_ln333</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>333</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>333</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>grp_pool_write_fu_413</rtlName>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>50</count>
<item_version>0</item_version>
<item>581</item>
<item>582</item>
<item>583</item>
<item>584</item>
<item>585</item>
<item>586</item>
<item>587</item>
<item>588</item>
<item>589</item>
<item>590</item>
<item>591</item>
<item>592</item>
<item>593</item>
<item>594</item>
<item>595</item>
<item>596</item>
<item>597</item>
<item>598</item>
<item>599</item>
<item>600</item>
<item>601</item>
<item>602</item>
<item>603</item>
<item>604</item>
<item>605</item>
<item>606</item>
<item>607</item>
<item>608</item>
<item>609</item>
<item>610</item>
<item>611</item>
<item>612</item>
<item>613</item>
<item>614</item>
<item>615</item>
<item>616</item>
<item>617</item>
<item>618</item>
<item>619</item>
<item>620</item>
<item>621</item>
<item>622</item>
<item>623</item>
<item>624</item>
<item>625</item>
<item>626</item>
<item>627</item>
<item>628</item>
<item>629</item>
<item>882</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.90</m_delay>
<m_topoIndex>111</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_118">
<Value>
<Obj>
<type>0</type>
<id>134</id>
<name>cofm_counter_3</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>334</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>334</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>cofm_counter</originalName>
<rtlName>grp_conv_read_fu_465</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>10</count>
<item_version>0</item_version>
<item>630</item>
<item>631</item>
<item>632</item>
<item>633</item>
<item>634</item>
<item>635</item>
<item>636</item>
<item>637</item>
<item>638</item>
<item>639</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>4.50</m_delay>
<m_topoIndex>112</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_119">
<Value>
<Obj>
<type>0</type>
<id>135</id>
<name>cofm_counter_5_write_ln339</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>339</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>339</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>640</item>
<item>641</item>
<item>841</item>
<item>867</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.95</m_delay>
<m_topoIndex>134</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_120">
<Value>
<Obj>
<type>0</type>
<id>136</id>
<name>cifm_counter_5_write_ln339</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>339</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>339</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>642</item>
<item>643</item>
<item>842</item>
<item>869</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.95</m_delay>
<m_topoIndex>135</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_121">
<Value>
<Obj>
<type>0</type>
<id>137</id>
<name>_ln339</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>339</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>339</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>644</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>136</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_122">
<Value>
<Obj>
<type>0</type>
<id>139</id>
<name>cifm_counter_5_load_2</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>323</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>323</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>493</item>
<item>863</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>113</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_123">
<Value>
<Obj>
<type>0</type>
<id>140</id>
<name>cofm_counter_5_load_3</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>325</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>325</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>494</item>
<item>861</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>114</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_124">
<Value>
<Obj>
<type>0</type>
<id>141</id>
<name>cifm_counter_2</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>323</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>323</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>cifm_counter</originalName>
<rtlName>grp_write_row_ifm_fu_480</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>9</count>
<item_version>0</item_version>
<item>495</item>
<item>496</item>
<item>497</item>
<item>498</item>
<item>499</item>
<item>500</item>
<item>501</item>
<item>860</item>
<item>879</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>5.16</m_delay>
<m_topoIndex>115</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_125">
<Value>
<Obj>
<type>0</type>
<id>142</id>
<name>_ln324</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>324</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>grp_pool_write_fu_413</rtlName>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>50</count>
<item_version>0</item_version>
<item>502</item>
<item>503</item>
<item>504</item>
<item>505</item>
<item>506</item>
<item>507</item>
<item>508</item>
<item>509</item>
<item>510</item>
<item>511</item>
<item>512</item>
<item>513</item>
<item>514</item>
<item>515</item>
<item>516</item>
<item>517</item>
<item>518</item>
<item>519</item>
<item>520</item>
<item>521</item>
<item>522</item>
<item>523</item>
<item>524</item>
<item>525</item>
<item>526</item>
<item>527</item>
<item>528</item>
<item>529</item>
<item>530</item>
<item>531</item>
<item>532</item>
<item>533</item>
<item>534</item>
<item>535</item>
<item>536</item>
<item>537</item>
<item>538</item>
<item>539</item>
<item>540</item>
<item>541</item>
<item>542</item>
<item>543</item>
<item>544</item>
<item>545</item>
<item>546</item>
<item>547</item>
<item>548</item>
<item>549</item>
<item>550</item>
<item>880</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.90</m_delay>
<m_topoIndex>116</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_126">
<Value>
<Obj>
<type>0</type>
<id>143</id>
<name>cofm_counter_2</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>325</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>325</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>cofm_counter</originalName>
<rtlName>grp_conv_read_fu_465</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>10</count>
<item_version>0</item_version>
<item>551</item>
<item>552</item>
<item>553</item>
<item>554</item>
<item>555</item>
<item>556</item>
<item>557</item>
<item>558</item>
<item>559</item>
<item>560</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>4.50</m_delay>
<m_topoIndex>117</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_127">
<Value>
<Obj>
<type>0</type>
<id>144</id>
<name>cofm_counter_5_write_ln330</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>330</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>330</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>561</item>
<item>562</item>
<item>843</item>
<item>862</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.95</m_delay>
<m_topoIndex>137</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_128">
<Value>
<Obj>
<type>0</type>
<id>145</id>
<name>cifm_counter_5_write_ln330</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>330</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>330</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>563</item>
<item>564</item>
<item>844</item>
<item>864</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.95</m_delay>
<m_topoIndex>138</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_129">
<Value>
<Obj>
<type>0</type>
<id>146</id>
<name>_ln330</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>330</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>330</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>565</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>139</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_130">
<Value>
<Obj>
<type>0</type>
<id>148</id>
<name>cifm_counter_5_load_1</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>314</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>314</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>413</item>
<item>858</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>118</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_131">
<Value>
<Obj>
<type>0</type>
<id>149</id>
<name>cofm_counter_5_load_2</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>316</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>316</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>414</item>
<item>856</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>119</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_132">
<Value>
<Obj>
<type>0</type>
<id>150</id>
<name>cifm_counter_1</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>314</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>314</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>cifm_counter</originalName>
<rtlName>grp_write_row_ifm_fu_480</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>9</count>
<item_version>0</item_version>
<item>415</item>
<item>416</item>
<item>417</item>
<item>418</item>
<item>419</item>
<item>420</item>
<item>421</item>
<item>855</item>
<item>877</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>5.16</m_delay>
<m_topoIndex>120</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_133">
<Value>
<Obj>
<type>0</type>
<id>151</id>
<name>_ln315</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>315</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>315</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>grp_pool_write_fu_413</rtlName>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>50</count>
<item_version>0</item_version>
<item>422</item>
<item>423</item>
<item>424</item>
<item>425</item>
<item>426</item>
<item>427</item>
<item>428</item>
<item>429</item>
<item>430</item>
<item>431</item>
<item>432</item>
<item>433</item>
<item>434</item>
<item>435</item>
<item>436</item>
<item>437</item>
<item>438</item>
<item>439</item>
<item>440</item>
<item>441</item>
<item>442</item>
<item>443</item>
<item>444</item>
<item>445</item>
<item>446</item>
<item>447</item>
<item>448</item>
<item>449</item>
<item>450</item>
<item>451</item>
<item>452</item>
<item>453</item>
<item>454</item>
<item>455</item>
<item>456</item>
<item>457</item>
<item>458</item>
<item>459</item>
<item>460</item>
<item>461</item>
<item>462</item>
<item>463</item>
<item>464</item>
<item>465</item>
<item>466</item>
<item>467</item>
<item>468</item>
<item>469</item>
<item>470</item>
<item>878</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.90</m_delay>
<m_topoIndex>121</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_134">
<Value>
<Obj>
<type>0</type>
<id>152</id>
<name>cofm_counter_1</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>316</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>316</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>cofm_counter</originalName>
<rtlName>grp_conv_read_fu_465</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>10</count>
<item_version>0</item_version>
<item>471</item>
<item>472</item>
<item>473</item>
<item>474</item>
<item>475</item>
<item>476</item>
<item>477</item>
<item>478</item>
<item>479</item>
<item>481</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>4.50</m_delay>
<m_topoIndex>122</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_135">
<Value>
<Obj>
<type>0</type>
<id>153</id>
<name>cofm_counter_5_write_ln321</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>321</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>321</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>482</item>
<item>483</item>
<item>845</item>
<item>857</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.95</m_delay>
<m_topoIndex>140</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_136">
<Value>
<Obj>
<type>0</type>
<id>154</id>
<name>cifm_counter_5_write_ln321</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>321</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>321</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>484</item>
<item>485</item>
<item>846</item>
<item>859</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.95</m_delay>
<m_topoIndex>141</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_137">
<Value>
<Obj>
<type>0</type>
<id>155</id>
<name>_ln321</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>321</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>321</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>486</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>142</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_138">
<Value>
<Obj>
<type>0</type>
<id>157</id>
<name>cifm_counter_5_load</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>303</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>303</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>329</item>
<item>853</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>123</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_139">
<Value>
<Obj>
<type>0</type>
<id>158</id>
<name>cofm_counter_5_load_1</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>306</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>306</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>330</item>
<item>851</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>124</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_140">
<Value>
<Obj>
<type>0</type>
<id>159</id>
<name>cifm_counter</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>303</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>303</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>cifm_counter</originalName>
<rtlName>grp_write_row_ifm_fu_480</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>9</count>
<item_version>0</item_version>
<item>332</item>
<item>333</item>
<item>334</item>
<item>335</item>
<item>336</item>
<item>337</item>
<item>338</item>
<item>850</item>
<item>875</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>5.16</m_delay>
<m_topoIndex>125</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_141">
<Value>
<Obj>
<type>0</type>
<id>160</id>
<name>_ln305</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>305</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>305</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>grp_pool_write_fu_413</rtlName>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>50</count>
<item_version>0</item_version>
<item>340</item>
<item>341</item>
<item>342</item>
<item>343</item>
<item>344</item>
<item>345</item>
<item>346</item>
<item>347</item>
<item>348</item>
<item>349</item>
<item>350</item>
<item>351</item>
<item>352</item>
<item>353</item>
<item>354</item>
<item>355</item>
<item>356</item>
<item>357</item>
<item>358</item>
<item>359</item>
<item>360</item>
<item>361</item>
<item>362</item>
<item>363</item>
<item>364</item>
<item>365</item>
<item>366</item>
<item>367</item>
<item>368</item>
<item>369</item>
<item>370</item>
<item>371</item>
<item>372</item>
<item>373</item>
<item>374</item>
<item>375</item>
<item>376</item>
<item>377</item>
<item>378</item>
<item>379</item>
<item>380</item>
<item>381</item>
<item>382</item>
<item>383</item>
<item>384</item>
<item>385</item>
<item>386</item>
<item>387</item>
<item>388</item>
<item>876</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.90</m_delay>
<m_topoIndex>126</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_142">
<Value>
<Obj>
<type>0</type>
<id>161</id>
<name>icmp_ln306</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>306</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>306</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln306_fu_616_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>389</item>
<item>390</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.42</m_delay>
<m_topoIndex>127</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_143">
<Value>
<Obj>
<type>0</type>
<id>162</id>
<name>cofm_counter</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>306</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>306</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>cofm_counter</originalName>
<rtlName>grp_conv_read_fu_465</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>10</count>
<item_version>0</item_version>
<item>392</item>
<item>393</item>
<item>394</item>
<item>395</item>
<item>396</item>
<item>397</item>
<item>398</item>
<item>399</item>
<item>400</item>
<item>401</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>4.50</m_delay>
<m_topoIndex>128</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_144">
<Value>
<Obj>
<type>0</type>
<id>163</id>
<name>cofm_counter_5_write_ln312</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>312</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>312</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>402</item>
<item>403</item>
<item>847</item>
<item>852</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.95</m_delay>
<m_topoIndex>143</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_145">
<Value>
<Obj>
<type>0</type>
<id>164</id>
<name>cifm_counter_5_write_ln312</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>312</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>312</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>404</item>
<item>405</item>
<item>848</item>
<item>854</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.95</m_delay>
<m_topoIndex>144</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_146">
<Value>
<Obj>
<type>0</type>
<id>165</id>
<name>_ln312</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>312</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>312</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>406</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>145</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_147">
<Value>
<Obj>
<type>0</type>
<id>167</id>
<name>rotate_counter</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>350</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>350</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>rotate_counter</originalName>
<rtlName>rotate_counter_fu_623_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>724</item>
<item>725</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.07</m_delay>
<m_topoIndex>146</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_148">
<Value>
<Obj>
<type>0</type>
<id>168</id>
<name>icmp_ln351</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>351</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>351</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln351_fu_629_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>726</item>
<item>728</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.42</m_delay>
<m_topoIndex>147</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_149">
<Value>
<Obj>
<type>0</type>
<id>169</id>
<name>select_ln351</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>351</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>351</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>select_ln351_fu_635_p3</rtlName>
<coreName/>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>729</item>
<item>730</item>
<item>731</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.80</m_delay>
<m_topoIndex>148</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_150">
<Value>
<Obj>
<type>0</type>
<id>170</id>
<name>_ln297</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>297</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>297</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>732</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>149</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_151">
<Value>
<Obj>
<type>0</type>
<id>172</id>
<name>cofm_counter_5_load</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>356</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>356</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>733</item>
<item>849</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>129</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_152">
<Value>
<Obj>
<type>0</type>
<id>173</id>
<name>empty</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>356</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>356</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>grp_conv_read_fu_465</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>10</count>
<item_version>0</item_version>
<item>734</item>
<item>735</item>
<item>736</item>
<item>737</item>
<item>738</item>
<item>739</item>
<item>740</item>
<item>741</item>
<item>742</item>
<item>743</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>4.50</m_delay>
<m_topoIndex>130</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_153">
<Value>
<Obj>
<type>0</type>
<id>174</id>
<name>_ln357</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>357</lineNumber>
<contextFuncName>pool_hw</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>pool_hw</second>
</first>
<second>357</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>0</count>
<item_version>0</item_version>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>150</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>19</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_154">
<Value>
<Obj>
<type>2</type>
<id>176</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_155">
<Value>
<Obj>
<type>2</type>
<id>179</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="_156">
<Value>
<Obj>
<type>2</type>
<id>260</id>
<name>load_cifm_data</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:load_cifm_data></content>
</item>
<item class_id_reference="16" object_id="_157">
<Value>
<Obj>
<type>2</type>
<id>295</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_158">
<Value>
<Obj>
<type>2</type>
<id>298</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>116</content>
</item>
<item class_id_reference="16" object_id="_159">
<Value>
<Obj>
<type>2</type>
<id>302</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>16</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_160">
<Value>
<Obj>
<type>2</type>
<id>307</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_161">
<Value>
<Obj>
<type>2</type>
<id>313</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<const_type>0</const_type>
<content>56</content>
</item>
<item class_id_reference="16" object_id="_162">
<Value>
<Obj>
<type>2</type>
<id>316</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<const_type>0</const_type>
<content>55</content>
</item>
<item class_id_reference="16" object_id="_163">
<Value>
<Obj>
<type>2</type>
<id>319</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_164">
<Value>
<Obj>
<type>2</type>
<id>331</id>
<name>write_row_ifm</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>6</const_type>
<content><constant:write_row_ifm></content>
</item>
<item class_id_reference="16" object_id="_165">
<Value>
<Obj>
<type>2</type>
<id>339</id>
<name>pool_write</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:pool_write></content>
</item>
<item class_id_reference="16" object_id="_166">
<Value>
<Obj>
<type>2</type>
<id>391</id>
<name>conv_read</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>6</const_type>
<content><constant:conv_read></content>
</item>
<item class_id_reference="16" object_id="_167">
<Value>
<Obj>
<type>2</type>
<id>408</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>16</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_168">
<Value>
<Obj>
<type>2</type>
<id>480</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>1</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_169">
<Value>
<Obj>
<type>2</type>
<id>488</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>16</bitwidth>
</Value>
<const_type>0</const_type>
<content>2</content>
</item>
<item class_id_reference="16" object_id="_170">
<Value>
<Obj>
<type>2</type>
<id>567</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>16</bitwidth>
</Value>
<const_type>0</const_type>
<content>3</content>
</item>
<item class_id_reference="16" object_id="_171">
<Value>
<Obj>
<type>2</type>
<id>646</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>16</bitwidth>
</Value>
<const_type>0</const_type>
<content>4</content>
</item>
<item class_id_reference="16" object_id="_172">
<Value>
<Obj>
<type>2</type>
<id>727</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>16</bitwidth>
</Value>
<const_type>0</const_type>
<content>5</content>
</item>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>14</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_173">
<Obj>
<type>3</type>
<id>97</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>86</count>
<item_version>0</item_version>
<item>4</item>
<item>5</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>
<item>27</item>
<item>28</item>
<item>29</item>
<item>30</item>
<item>31</item>
<item>32</item>
<item>33</item>
<item>34</item>
<item>35</item>
<item>36</item>
<item>37</item>
<item>38</item>
<item>39</item>
<item>40</item>
<item>41</item>
<item>42</item>
<item>43</item>
<item>44</item>
<item>45</item>
<item>46</item>
<item>47</item>
<item>48</item>
<item>49</item>
<item>50</item>
<item>51</item>
<item>52</item>
<item>53</item>
<item>54</item>
<item>55</item>
<item>56</item>
<item>57</item>
<item>58</item>
<item>59</item>
<item>60</item>
<item>61</item>
<item>62</item>
<item>63</item>
<item>64</item>
<item>65</item>
<item>66</item>
<item>67</item>
<item>68</item>
<item>69</item>
<item>70</item>
<item>71</item>
<item>72</item>
<item>73</item>
<item>74</item>
<item>75</item>
<item>76</item>
<item>77</item>
<item>78</item>
<item>79</item>
<item>80</item>
<item>81</item>
<item>82</item>
<item>83</item>
<item>84</item>
<item>85</item>
<item>86</item>
<item>87</item>
<item>88</item>
<item>89</item>
<item>93</item>
<item>94</item>
<item>95</item>
<item>96</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_174">
<Obj>
<type>3</type>
<id>105</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>6</count>
<item_version>0</item_version>
<item>98</item>
<item>99</item>
<item>100</item>
<item>102</item>
<item>103</item>
<item>104</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_175">
<Obj>
<type>3</type>
<id>108</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>106</item>
<item>107</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_176">
<Obj>
<type>3</type>
<id>111</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>109</item>
<item>110</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_177">
<Obj>
<type>3</type>
<id>114</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>112</item>
<item>113</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_178">
<Obj>
<type>3</type>
<id>117</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>115</item>
<item>116</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_179">
<Obj>
<type>3</type>
<id>120</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>118</item>
<item>119</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_180">
<Obj>
<type>3</type>
<id>129</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>8</count>
<item_version>0</item_version>
<item>121</item>
<item>122</item>
<item>123</item>
<item>124</item>
<item>125</item>
<item>126</item>
<item>127</item>
<item>128</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_181">
<Obj>
<type>3</type>
<id>138</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>8</count>
<item_version>0</item_version>
<item>130</item>
<item>131</item>
<item>132</item>
<item>133</item>
<item>134</item>
<item>135</item>
<item>136</item>
<item>137</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_182">
<Obj>
<type>3</type>
<id>147</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>8</count>
<item_version>0</item_version>
<item>139</item>
<item>140</item>
<item>141</item>
<item>142</item>
<item>143</item>
<item>144</item>
<item>145</item>
<item>146</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_183">
<Obj>
<type>3</type>
<id>156</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>8</count>
<item_version>0</item_version>
<item>148</item>
<item>149</item>
<item>150</item>
<item>151</item>
<item>152</item>
<item>153</item>
<item>154</item>
<item>155</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_184">
<Obj>
<type>3</type>
<id>166</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>9</count>
<item_version>0</item_version>
<item>157</item>
<item>158</item>
<item>159</item>
<item>160</item>
<item>161</item>
<item>162</item>
<item>163</item>
<item>164</item>
<item>165</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_185">
<Obj>
<type>3</type>
<id>171</id>
<name>._crit_edge</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>167</item>
<item>168</item>
<item>169</item>
<item>170</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_186">
<Obj>
<type>3</type>
<id>175</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>3</count>
<item_version>0</item_version>
<item>172</item>
<item>173</item>
<item>174</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>614</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_187">
<id>177</id>
<edge_type>1</edge_type>
<source_obj>176</source_obj>
<sink_obj>4</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_188">
<id>178</id>
<edge_type>1</edge_type>
<source_obj>176</source_obj>
<sink_obj>5</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_189">
<id>180</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>10</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_190">
<id>181</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>11</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_191">
<id>182</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>12</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_192">
<id>183</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>13</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_193">
<id>184</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>14</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_194">
<id>185</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>15</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_195">
<id>186</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>16</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_196">
<id>187</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_197">
<id>188</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>18</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_198">
<id>189</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>19</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_199">
<id>190</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>20</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_200">
<id>191</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_201">
<id>192</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_202">
<id>193</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_203">
<id>194</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>24</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_204">
<id>195</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_205">
<id>196</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>26</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_206">
<id>197</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>27</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_207">
<id>198</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>28</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_208">
<id>199</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>29</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_209">
<id>200</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>30</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_210">
<id>201</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>31</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_211">
<id>202</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>32</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_212">
<id>203</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>33</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_213">
<id>204</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>34</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_214">
<id>205</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_215">
<id>206</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>36</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_216">
<id>207</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_217">
<id>208</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>38</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_218">
<id>209</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_219">
<id>210</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_220">
<id>211</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_221">
<id>212</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_222">
<id>213</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_223">
<id>214</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>44</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_224">
<id>215</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>45</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_225">
<id>216</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>46</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_226">
<id>217</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_227">
<id>218</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>48</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_228">
<id>219</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>49</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_229">
<id>220</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_230">
<id>221</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>51</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_231">
<id>222</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>52</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_232">
<id>223</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>53</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_233">
<id>224</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>54</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_234">
<id>225</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>55</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_235">
<id>226</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>56</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_236">
<id>227</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>57</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_237">
<id>228</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_238">
<id>229</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>59</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_239">
<id>230</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>60</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_240">
<id>231</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>61</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_241">
<id>232</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_242">
<id>233</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>63</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_243">
<id>234</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>64</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_244">
<id>235</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_245">
<id>236</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>66</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_246">
<id>237</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>67</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_247">
<id>238</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>68</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_248">
<id>239</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>69</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_249">
<id>240</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>70</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_250">
<id>241</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>71</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_251">
<id>242</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>72</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_252">
<id>243</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>73</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_253">
<id>244</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_254">
<id>245</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_255">
<id>246</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>76</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_256">
<id>247</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>77</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_257">
<id>248</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>78</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_258">
<id>249</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_259">
<id>250</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>80</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_260">
<id>251</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_261">
<id>252</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_262">
<id>253</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_263">
<id>254</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_264">
<id>255</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_265">
<id>256</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_266">
<id>257</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_267">
<id>258</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_268">
<id>259</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>89</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_269">
<id>261</id>
<edge_type>1</edge_type>
<source_obj>260</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_270">
<id>262</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_271">
<id>263</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_272">
<id>264</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_273">
<id>265</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_274">
<id>266</id>
<edge_type>1</edge_type>
<source_obj>29</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_275">
<id>267</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_276">
<id>268</id>
<edge_type>1</edge_type>
<source_obj>31</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_277">
<id>269</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_278">
<id>270</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_279">
<id>271</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_280">
<id>272</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_281">
<id>273</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_282">
<id>274</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_283">
<id>275</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_284">
<id>276</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_285">
<id>277</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_286">
<id>278</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_287">
<id>279</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_288">
<id>280</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_289">
<id>281</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_290">
<id>282</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_291">
<id>283</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_292">
<id>284</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_293">
<id>285</id>
<edge_type>1</edge_type>
<source_obj>48</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_294">
<id>286</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_295">
<id>287</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_296">
<id>288</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_297">
<id>289</id>
<edge_type>1</edge_type>
<source_obj>52</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_298">
<id>290</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_299">
<id>291</id>
<edge_type>1</edge_type>
<source_obj>54</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_300">
<id>292</id>
<edge_type>1</edge_type>
<source_obj>55</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_301">
<id>293</id>
<edge_type>1</edge_type>
<source_obj>56</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_302">
<id>294</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_303">
<id>296</id>
<edge_type>1</edge_type>
<source_obj>295</source_obj>
<sink_obj>94</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_304">
<id>297</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>94</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_305">
<id>299</id>
<edge_type>1</edge_type>
<source_obj>298</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_306">
<id>300</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_307">
<id>301</id>
<edge_type>2</edge_type>
<source_obj>105</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_308">
<id>303</id>
<edge_type>1</edge_type>
<source_obj>302</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_309">
<id>304</id>
<edge_type>2</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="_310">
<id>305</id>
<edge_type>1</edge_type>
<source_obj>169</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_311">
<id>306</id>
<edge_type>2</edge_type>
<source_obj>171</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_312">
<id>308</id>
<edge_type>1</edge_type>
<source_obj>307</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_313">
<id>309</id>
<edge_type>2</edge_type>
<source_obj>97</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_314">
<id>310</id>
<edge_type>1</edge_type>
<source_obj>103</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_315">
<id>311</id>
<edge_type>2</edge_type>
<source_obj>171</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_316">
<id>312</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="_317">
<id>314</id>
<edge_type>1</edge_type>
<source_obj>313</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_318">
<id>315</id>
<edge_type>1</edge_type>
<source_obj>99</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_319">
<id>317</id>
<edge_type>1</edge_type>
<source_obj>316</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_320">
<id>318</id>
<edge_type>1</edge_type>
<source_obj>99</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_321">
<id>320</id>
<edge_type>1</edge_type>
<source_obj>319</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_322">
<id>321</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_323">
<id>322</id>
<edge_type>2</edge_type>
<source_obj>108</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_324">
<id>323</id>
<edge_type>2</edge_type>
<source_obj>175</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_325">
<id>324</id>
<edge_type>1</edge_type>
<source_obj>98</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_326">
<id>325</id>
<edge_type>1</edge_type>
<source_obj>302</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_327">
<id>326</id>
<edge_type>1</edge_type>
<source_obj>106</source_obj>
<sink_obj>107</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_328">
<id>327</id>
<edge_type>2</edge_type>
<source_obj>111</source_obj>
<sink_obj>107</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_329">
<id>328</id>
<edge_type>2</edge_type>
<source_obj>166</source_obj>
<sink_obj>107</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_330">
<id>329</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>157</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_331">
<id>330</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>158</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_332">
<id>332</id>
<edge_type>1</edge_type>
<source_obj>331</source_obj>
<sink_obj>159</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_333">
<id>333</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>159</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_334">
<id>334</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>159</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_335">
<id>335</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>159</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_336">
<id>336</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>159</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_337">
<id>337</id>
<edge_type>1</edge_type>
<source_obj>157</source_obj>
<sink_obj>159</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_338">
<id>338</id>
<edge_type>1</edge_type>
<source_obj>102</source_obj>
<sink_obj>159</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_339">
<id>340</id>
<edge_type>1</edge_type>
<source_obj>339</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_340">
<id>341</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_341">
<id>342</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_342">
<id>343</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_343">
<id>344</id>
<edge_type>1</edge_type>
<source_obj>29</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_344">
<id>345</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_345">
<id>346</id>
<edge_type>1</edge_type>
<source_obj>31</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_346">
<id>347</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_347">
<id>348</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_348">
<id>349</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_349">
<id>350</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_350">
<id>351</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_351">
<id>352</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_352">
<id>353</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_353">
<id>354</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_354">
<id>355</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_355">
<id>356</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_356">
<id>357</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_357">
<id>358</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_358">
<id>359</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_359">
<id>360</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_360">
<id>361</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_361">
<id>362</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_362">
<id>363</id>
<edge_type>1</edge_type>
<source_obj>48</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_363">
<id>364</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_364">
<id>365</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_365">
<id>366</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_366">
<id>367</id>
<edge_type>1</edge_type>
<source_obj>52</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_367">
<id>368</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_368">
<id>369</id>
<edge_type>1</edge_type>
<source_obj>54</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_369">
<id>370</id>
<edge_type>1</edge_type>
<source_obj>55</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_370">
<id>371</id>
<edge_type>1</edge_type>
<source_obj>56</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_371">
<id>372</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_372">
<id>373</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_373">
<id>374</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_374">
<id>375</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_375">
<id>376</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_376">
<id>377</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_377">
<id>378</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_378">
<id>379</id>
<edge_type>1</edge_type>
<source_obj>64</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_379">
<id>380</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_380">
<id>381</id>
<edge_type>1</edge_type>
<source_obj>66</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_381">
<id>382</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_382">
<id>383</id>
<edge_type>1</edge_type>
<source_obj>68</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_383">
<id>384</id>
<edge_type>1</edge_type>
<source_obj>69</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_384">
<id>385</id>
<edge_type>1</edge_type>
<source_obj>70</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_385">
<id>386</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_386">
<id>387</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_387">
<id>388</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_388">
<id>389</id>
<edge_type>1</edge_type>
<source_obj>99</source_obj>
<sink_obj>161</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_389">
<id>390</id>
<edge_type>1</edge_type>
<source_obj>307</source_obj>
<sink_obj>161</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_390">
<id>392</id>
<edge_type>1</edge_type>
<source_obj>391</source_obj>
<sink_obj>162</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_391">
<id>393</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>162</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_392">
<id>394</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>162</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_393">
<id>395</id>
<edge_type>1</edge_type>
<source_obj>75</source_obj>
<sink_obj>162</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_394">
<id>396</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>162</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_395">
<id>397</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>162</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_396">
<id>398</id>
<edge_type>1</edge_type>
<source_obj>78</source_obj>
<sink_obj>162</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_397">
<id>399</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>162</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_398">
<id>400</id>
<edge_type>1</edge_type>
<source_obj>158</source_obj>
<sink_obj>162</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_399">
<id>401</id>
<edge_type>1</edge_type>
<source_obj>161</source_obj>
<sink_obj>162</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_400">
<id>402</id>
<edge_type>1</edge_type>
<source_obj>162</source_obj>
<sink_obj>163</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_401">
<id>403</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>163</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_402">
<id>404</id>
<edge_type>1</edge_type>
<source_obj>159</source_obj>
<sink_obj>164</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_403">
<id>405</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>164</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_404">
<id>406</id>
<edge_type>2</edge_type>
<source_obj>171</source_obj>
<sink_obj>165</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_405">
<id>407</id>
<edge_type>1</edge_type>
<source_obj>98</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_406">
<id>409</id>
<edge_type>1</edge_type>
<source_obj>408</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_407">
<id>410</id>
<edge_type>1</edge_type>
<source_obj>109</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_408">
<id>411</id>
<edge_type>2</edge_type>
<source_obj>114</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_409">
<id>412</id>
<edge_type>2</edge_type>
<source_obj>156</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_410">
<id>413</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>148</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_411">
<id>414</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>149</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_412">
<id>415</id>
<edge_type>1</edge_type>
<source_obj>331</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_413">
<id>416</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_414">
<id>417</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_415">
<id>418</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_416">
<id>419</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_417">
<id>420</id>
<edge_type>1</edge_type>
<source_obj>148</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_418">
<id>421</id>
<edge_type>1</edge_type>
<source_obj>102</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_419">
<id>422</id>
<edge_type>1</edge_type>
<source_obj>339</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_420">
<id>423</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_421">
<id>424</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_422">
<id>425</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_423">
<id>426</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_424">
<id>427</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_425">
<id>428</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_426">
<id>429</id>
<edge_type>1</edge_type>
<source_obj>48</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_427">
<id>430</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_428">
<id>431</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_429">
<id>432</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_430">
<id>433</id>
<edge_type>1</edge_type>
<source_obj>52</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_431">
<id>434</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_432">
<id>435</id>
<edge_type>1</edge_type>
<source_obj>54</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_433">
<id>436</id>
<edge_type>1</edge_type>
<source_obj>55</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_434">
<id>437</id>
<edge_type>1</edge_type>
<source_obj>56</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_435">
<id>438</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_436">
<id>439</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_437">
<id>440</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_438">
<id>441</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_439">
<id>442</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_440">
<id>443</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_441">
<id>444</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_442">
<id>445</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_443">
<id>446</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_444">
<id>447</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_445">
<id>448</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_446">
<id>449</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_447">
<id>450</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_448">
<id>451</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_449">
<id>452</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_450">
<id>453</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_451">
<id>454</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_452">
<id>455</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_453">
<id>456</id>
<edge_type>1</edge_type>
<source_obj>75</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_454">
<id>457</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_455">
<id>458</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_456">
<id>459</id>
<edge_type>1</edge_type>
<source_obj>78</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_457">
<id>460</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_458">
<id>461</id>
<edge_type>1</edge_type>
<source_obj>80</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_459">
<id>462</id>
<edge_type>1</edge_type>
<source_obj>81</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_460">
<id>463</id>
<edge_type>1</edge_type>
<source_obj>82</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_461">
<id>464</id>
<edge_type>1</edge_type>
<source_obj>83</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_462">
<id>465</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_463">
<id>466</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_464">
<id>467</id>
<edge_type>1</edge_type>
<source_obj>86</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_465">
<id>468</id>
<edge_type>1</edge_type>
<source_obj>87</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_466">
<id>469</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_467">
<id>470</id>
<edge_type>1</edge_type>
<source_obj>89</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_468">
<id>471</id>
<edge_type>1</edge_type>
<source_obj>391</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_469">
<id>472</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_470">
<id>473</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_471">
<id>474</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_472">
<id>475</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_473">
<id>476</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_474">
<id>477</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_475">
<id>478</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_476">
<id>479</id>
<edge_type>1</edge_type>
<source_obj>149</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_477">
<id>481</id>
<edge_type>1</edge_type>
<source_obj>480</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_478">
<id>482</id>
<edge_type>1</edge_type>
<source_obj>152</source_obj>
<sink_obj>153</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_479">
<id>483</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>153</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_480">
<id>484</id>
<edge_type>1</edge_type>
<source_obj>150</source_obj>
<sink_obj>154</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_481">
<id>485</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>154</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_482">
<id>486</id>
<edge_type>2</edge_type>
<source_obj>171</source_obj>
<sink_obj>155</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_483">
<id>487</id>
<edge_type>1</edge_type>
<source_obj>98</source_obj>
<sink_obj>112</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_484">
<id>489</id>
<edge_type>1</edge_type>
<source_obj>488</source_obj>
<sink_obj>112</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_485">
<id>490</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="_486">
<id>491</id>
<edge_type>2</edge_type>
<source_obj>117</source_obj>
<sink_obj>113</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_487">
<id>492</id>
<edge_type>2</edge_type>
<source_obj>147</source_obj>
<sink_obj>113</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_488">
<id>493</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>139</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_489">
<id>494</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>140</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_490">
<id>495</id>
<edge_type>1</edge_type>
<source_obj>331</source_obj>
<sink_obj>141</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_491">
<id>496</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>141</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_492">
<id>497</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>141</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_493">
<id>498</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>141</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_494">
<id>499</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>141</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_495">
<id>500</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>141</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_496">
<id>501</id>
<edge_type>1</edge_type>
<source_obj>102</source_obj>
<sink_obj>141</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_497">
<id>502</id>
<edge_type>1</edge_type>
<source_obj>339</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_498">
<id>503</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_499">
<id>504</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_500">
<id>505</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_501">
<id>506</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_502">
<id>507</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_503">
<id>508</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_504">
<id>509</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_505">
<id>510</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_506">
<id>511</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_507">
<id>512</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_508">
<id>513</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_509">
<id>514</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_510">
<id>515</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_511">
<id>516</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_512">
<id>517</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_513">
<id>518</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_514">
<id>519</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_515">
<id>520</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_516">
<id>521</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_517">
<id>522</id>
<edge_type>1</edge_type>
<source_obj>29</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_518">
<id>523</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_519">
<id>524</id>
<edge_type>1</edge_type>
<source_obj>31</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_520">
<id>525</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_521">
<id>526</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_522">
<id>527</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_523">
<id>528</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_524">
<id>529</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_525">
<id>530</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_526">
<id>531</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_527">
<id>532</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_528">
<id>533</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_529">
<id>534</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_530">
<id>535</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_531">
<id>536</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_532">
<id>537</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_533">
<id>538</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_534">
<id>539</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_535">
<id>540</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_536">
<id>541</id>
<edge_type>1</edge_type>
<source_obj>64</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_537">
<id>542</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_538">
<id>543</id>
<edge_type>1</edge_type>
<source_obj>66</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_539">
<id>544</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_540">
<id>545</id>
<edge_type>1</edge_type>
<source_obj>68</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_541">
<id>546</id>
<edge_type>1</edge_type>
<source_obj>69</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_542">
<id>547</id>
<edge_type>1</edge_type>
<source_obj>70</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_543">
<id>548</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_544">
<id>549</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_545">
<id>550</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_546">
<id>551</id>
<edge_type>1</edge_type>
<source_obj>391</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_547">
<id>552</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_548">
<id>553</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_549">
<id>554</id>
<edge_type>1</edge_type>
<source_obj>75</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_550">
<id>555</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_551">
<id>556</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_552">
<id>557</id>
<edge_type>1</edge_type>
<source_obj>78</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_553">
<id>558</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_554">
<id>559</id>
<edge_type>1</edge_type>
<source_obj>140</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_555">
<id>560</id>
<edge_type>1</edge_type>
<source_obj>480</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_556">
<id>561</id>
<edge_type>1</edge_type>
<source_obj>143</source_obj>
<sink_obj>144</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_557">
<id>562</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>144</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_558">
<id>563</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>145</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_559">
<id>564</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>145</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_560">
<id>565</id>
<edge_type>2</edge_type>
<source_obj>171</source_obj>
<sink_obj>146</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_561">
<id>566</id>
<edge_type>1</edge_type>
<source_obj>98</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_562">
<id>568</id>
<edge_type>1</edge_type>
<source_obj>567</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_563">
<id>569</id>
<edge_type>1</edge_type>
<source_obj>115</source_obj>
<sink_obj>116</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_564">
<id>570</id>
<edge_type>2</edge_type>
<source_obj>120</source_obj>
<sink_obj>116</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_565">
<id>571</id>
<edge_type>2</edge_type>
<source_obj>138</source_obj>
<sink_obj>116</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_566">
<id>572</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>130</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_567">
<id>573</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>131</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_568">
<id>574</id>
<edge_type>1</edge_type>
<source_obj>331</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_569">
<id>575</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_570">
<id>576</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_571">
<id>577</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_572">
<id>578</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_573">
<id>579</id>
<edge_type>1</edge_type>
<source_obj>130</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_574">
<id>580</id>
<edge_type>1</edge_type>
<source_obj>102</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_575">
<id>581</id>
<edge_type>1</edge_type>
<source_obj>339</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_576">
<id>582</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_577">
<id>583</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_578">
<id>584</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_579">
<id>585</id>
<edge_type>1</edge_type>
<source_obj>29</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_580">
<id>586</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_581">
<id>587</id>
<edge_type>1</edge_type>
<source_obj>31</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_582">
<id>588</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_583">
<id>589</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_584">
<id>590</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_585">
<id>591</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_586">
<id>592</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_587">
<id>593</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_588">
<id>594</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_589">
<id>595</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_590">
<id>596</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_591">
<id>597</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_592">
<id>598</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_593">
<id>599</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_594">
<id>600</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_595">
<id>601</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_596">
<id>602</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_597">
<id>603</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_598">
<id>604</id>
<edge_type>1</edge_type>
<source_obj>48</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_599">
<id>605</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_600">
<id>606</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_601">
<id>607</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_602">
<id>608</id>
<edge_type>1</edge_type>
<source_obj>52</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_603">
<id>609</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_604">
<id>610</id>
<edge_type>1</edge_type>
<source_obj>54</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_605">
<id>611</id>
<edge_type>1</edge_type>
<source_obj>55</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_606">
<id>612</id>
<edge_type>1</edge_type>
<source_obj>56</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_607">
<id>613</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_608">
<id>614</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_609">
<id>615</id>
<edge_type>1</edge_type>
<source_obj>75</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_610">
<id>616</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_611">
<id>617</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_612">
<id>618</id>
<edge_type>1</edge_type>
<source_obj>78</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_613">
<id>619</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_614">
<id>620</id>
<edge_type>1</edge_type>
<source_obj>80</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_615">
<id>621</id>
<edge_type>1</edge_type>
<source_obj>81</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_616">
<id>622</id>
<edge_type>1</edge_type>
<source_obj>82</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_617">
<id>623</id>
<edge_type>1</edge_type>
<source_obj>83</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_618">
<id>624</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_619">
<id>625</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_620">
<id>626</id>
<edge_type>1</edge_type>
<source_obj>86</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_621">
<id>627</id>
<edge_type>1</edge_type>
<source_obj>87</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_622">
<id>628</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_623">
<id>629</id>
<edge_type>1</edge_type>
<source_obj>89</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_624">
<id>630</id>
<edge_type>1</edge_type>
<source_obj>391</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_625">
<id>631</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_626">
<id>632</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_627">
<id>633</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_628">
<id>634</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_629">
<id>635</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_630">
<id>636</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_631">
<id>637</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_632">
<id>638</id>
<edge_type>1</edge_type>
<source_obj>131</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_633">
<id>639</id>
<edge_type>1</edge_type>
<source_obj>480</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_634">
<id>640</id>
<edge_type>1</edge_type>
<source_obj>134</source_obj>
<sink_obj>135</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_635">
<id>641</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>135</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_636">
<id>642</id>
<edge_type>1</edge_type>
<source_obj>132</source_obj>
<sink_obj>136</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_637">
<id>643</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>136</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_638">
<id>644</id>
<edge_type>2</edge_type>
<source_obj>171</source_obj>
<sink_obj>137</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_639">
<id>645</id>
<edge_type>1</edge_type>
<source_obj>98</source_obj>
<sink_obj>118</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_640">
<id>647</id>
<edge_type>1</edge_type>
<source_obj>646</source_obj>
<sink_obj>118</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_641">
<id>648</id>
<edge_type>1</edge_type>
<source_obj>118</source_obj>
<sink_obj>119</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_642">
<id>649</id>
<edge_type>2</edge_type>
<source_obj>171</source_obj>
<sink_obj>119</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_643">
<id>650</id>
<edge_type>2</edge_type>
<source_obj>129</source_obj>
<sink_obj>119</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_644">
<id>651</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>121</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_645">
<id>652</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>122</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_646">
<id>653</id>
<edge_type>1</edge_type>
<source_obj>331</source_obj>
<sink_obj>123</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_647">
<id>654</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>123</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_648">
<id>655</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>123</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_649">
<id>656</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>123</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_650">
<id>657</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>123</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_651">
<id>658</id>
<edge_type>1</edge_type>
<source_obj>121</source_obj>
<sink_obj>123</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_652">
<id>659</id>
<edge_type>1</edge_type>
<source_obj>102</source_obj>
<sink_obj>123</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_653">
<id>660</id>
<edge_type>1</edge_type>
<source_obj>339</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_654">
<id>661</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_655">
<id>662</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_656">
<id>663</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_657">
<id>664</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_658">
<id>665</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_659">
<id>666</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_660">
<id>667</id>
<edge_type>1</edge_type>
<source_obj>48</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_661">
<id>668</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_662">
<id>669</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_663">
<id>670</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_664">
<id>671</id>
<edge_type>1</edge_type>
<source_obj>52</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_665">
<id>672</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_666">
<id>673</id>
<edge_type>1</edge_type>
<source_obj>54</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_667">
<id>674</id>
<edge_type>1</edge_type>
<source_obj>55</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_668">
<id>675</id>
<edge_type>1</edge_type>
<source_obj>56</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_669">
<id>676</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_670">
<id>677</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_671">
<id>678</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_672">
<id>679</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_673">
<id>680</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_674">
<id>681</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_675">
<id>682</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_676">
<id>683</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_677">
<id>684</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_678">
<id>685</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_679">
<id>686</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_680">
<id>687</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_681">
<id>688</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_682">
<id>689</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_683">
<id>690</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_684">
<id>691</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_685">
<id>692</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_686">
<id>693</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_687">
<id>694</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_688">
<id>695</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_689">
<id>696</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_690">
<id>697</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_691">
<id>698</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_692">
<id>699</id>
<edge_type>1</edge_type>
<source_obj>64</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_693">
<id>700</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_694">
<id>701</id>
<edge_type>1</edge_type>
<source_obj>66</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_695">
<id>702</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_696">
<id>703</id>
<edge_type>1</edge_type>
<source_obj>68</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_697">
<id>704</id>
<edge_type>1</edge_type>
<source_obj>69</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_698">
<id>705</id>
<edge_type>1</edge_type>
<source_obj>70</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_699">
<id>706</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_700">
<id>707</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_701">
<id>708</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_702">
<id>709</id>
<edge_type>1</edge_type>
<source_obj>391</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_703">
<id>710</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_704">
<id>711</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_705">
<id>712</id>
<edge_type>1</edge_type>
<source_obj>75</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_706">
<id>713</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_707">
<id>714</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_708">
<id>715</id>
<edge_type>1</edge_type>
<source_obj>78</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_709">
<id>716</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_710">
<id>717</id>
<edge_type>1</edge_type>
<source_obj>122</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_711">
<id>718</id>
<edge_type>1</edge_type>
<source_obj>480</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_712">
<id>719</id>
<edge_type>1</edge_type>
<source_obj>125</source_obj>
<sink_obj>126</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_713">
<id>720</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>126</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_714">
<id>721</id>
<edge_type>1</edge_type>
<source_obj>123</source_obj>
<sink_obj>127</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_715">
<id>722</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>127</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_716">
<id>723</id>
<edge_type>2</edge_type>
<source_obj>171</source_obj>
<sink_obj>128</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_717">
<id>724</id>
<edge_type>1</edge_type>
<source_obj>98</source_obj>
<sink_obj>167</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_718">
<id>725</id>
<edge_type>1</edge_type>
<source_obj>408</source_obj>
<sink_obj>167</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_719">
<id>726</id>
<edge_type>1</edge_type>
<source_obj>167</source_obj>
<sink_obj>168</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_720">
<id>728</id>
<edge_type>1</edge_type>
<source_obj>727</source_obj>
<sink_obj>168</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_721">
<id>729</id>
<edge_type>1</edge_type>
<source_obj>168</source_obj>
<sink_obj>169</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_722">
<id>730</id>
<edge_type>1</edge_type>
<source_obj>302</source_obj>
<sink_obj>169</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_723">
<id>731</id>
<edge_type>1</edge_type>
<source_obj>167</source_obj>
<sink_obj>169</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_724">
<id>732</id>
<edge_type>2</edge_type>
<source_obj>105</source_obj>
<sink_obj>170</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_725">
<id>733</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>172</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_726">
<id>734</id>
<edge_type>1</edge_type>
<source_obj>391</source_obj>
<sink_obj>173</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_727">
<id>735</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>173</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_728">
<id>736</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>173</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_729">
<id>737</id>
<edge_type>1</edge_type>
<source_obj>75</source_obj>
<sink_obj>173</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_730">
<id>738</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>173</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_731">
<id>739</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>173</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_732">
<id>740</id>
<edge_type>1</edge_type>
<source_obj>78</source_obj>
<sink_obj>173</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_733">
<id>741</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>173</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_734">
<id>742</id>
<edge_type>1</edge_type>
<source_obj>172</source_obj>
<sink_obj>173</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_735">
<id>743</id>
<edge_type>1</edge_type>
<source_obj>480</source_obj>
<sink_obj>173</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_736">
<id>820</id>
<edge_type>2</edge_type>
<source_obj>97</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_737">
<id>821</id>
<edge_type>2</edge_type>
<source_obj>105</source_obj>
<sink_obj>175</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_738">
<id>822</id>
<edge_type>2</edge_type>
<source_obj>105</source_obj>
<sink_obj>108</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_739">
<id>823</id>
<edge_type>2</edge_type>
<source_obj>108</source_obj>
<sink_obj>166</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_740">
<id>824</id>
<edge_type>2</edge_type>
<source_obj>108</source_obj>
<sink_obj>111</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_741">
<id>825</id>
<edge_type>2</edge_type>
<source_obj>111</source_obj>
<sink_obj>156</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_742">
<id>826</id>
<edge_type>2</edge_type>
<source_obj>111</source_obj>
<sink_obj>114</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_743">
<id>827</id>
<edge_type>2</edge_type>
<source_obj>114</source_obj>
<sink_obj>147</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_744">
<id>828</id>
<edge_type>2</edge_type>
<source_obj>114</source_obj>
<sink_obj>117</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_745">
<id>829</id>
<edge_type>2</edge_type>
<source_obj>117</source_obj>
<sink_obj>138</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_746">
<id>830</id>
<edge_type>2</edge_type>
<source_obj>117</source_obj>
<sink_obj>120</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_747">
<id>831</id>
<edge_type>2</edge_type>
<source_obj>120</source_obj>
<sink_obj>129</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_748">
<id>832</id>
<edge_type>2</edge_type>
<source_obj>120</source_obj>
<sink_obj>171</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_749">
<id>833</id>
<edge_type>2</edge_type>
<source_obj>129</source_obj>
<sink_obj>171</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_750">
<id>834</id>
<edge_type>2</edge_type>
<source_obj>138</source_obj>
<sink_obj>171</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_751">
<id>835</id>
<edge_type>2</edge_type>
<source_obj>147</source_obj>
<sink_obj>171</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_752">
<id>836</id>
<edge_type>2</edge_type>
<source_obj>156</source_obj>
<sink_obj>171</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_753">
<id>837</id>
<edge_type>2</edge_type>
<source_obj>166</source_obj>
<sink_obj>171</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_754">
<id>838</id>
<edge_type>2</edge_type>
<source_obj>171</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_755">
<id>839</id>
<edge_type>4</edge_type>
<source_obj>122</source_obj>
<sink_obj>126</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_756">
<id>840</id>
<edge_type>4</edge_type>
<source_obj>121</source_obj>
<sink_obj>127</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_757">
<id>841</id>
<edge_type>4</edge_type>
<source_obj>131</source_obj>
<sink_obj>135</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_758">
<id>842</id>
<edge_type>4</edge_type>
<source_obj>130</source_obj>
<sink_obj>136</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_759">
<id>843</id>
<edge_type>4</edge_type>
<source_obj>140</source_obj>
<sink_obj>144</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_760">
<id>844</id>
<edge_type>4</edge_type>
<source_obj>139</source_obj>
<sink_obj>145</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_761">
<id>845</id>
<edge_type>4</edge_type>
<source_obj>149</source_obj>
<sink_obj>153</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_762">
<id>846</id>
<edge_type>4</edge_type>
<source_obj>148</source_obj>
<sink_obj>154</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_763">
<id>847</id>
<edge_type>4</edge_type>
<source_obj>158</source_obj>
<sink_obj>163</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_764">
<id>848</id>
<edge_type>4</edge_type>
<source_obj>157</source_obj>
<sink_obj>164</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_765">
<id>849</id>
<edge_type>4</edge_type>
<source_obj>94</source_obj>
<sink_obj>172</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_766">
<id>850</id>
<edge_type>4</edge_type>
<source_obj>93</source_obj>
<sink_obj>159</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_767">
<id>851</id>
<edge_type>4</edge_type>
<source_obj>94</source_obj>
<sink_obj>158</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_768">
<id>852</id>
<edge_type>4</edge_type>
<source_obj>94</source_obj>
<sink_obj>163</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_769">
<id>853</id>
<edge_type>4</edge_type>
<source_obj>95</source_obj>
<sink_obj>157</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_770">
<id>854</id>
<edge_type>4</edge_type>
<source_obj>95</source_obj>
<sink_obj>164</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_771">
<id>855</id>
<edge_type>4</edge_type>
<source_obj>93</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_772">
<id>856</id>
<edge_type>4</edge_type>
<source_obj>94</source_obj>
<sink_obj>149</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_773">
<id>857</id>
<edge_type>4</edge_type>
<source_obj>94</source_obj>
<sink_obj>153</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_774">
<id>858</id>
<edge_type>4</edge_type>
<source_obj>95</source_obj>
<sink_obj>148</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_775">
<id>859</id>
<edge_type>4</edge_type>
<source_obj>95</source_obj>
<sink_obj>154</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_776">
<id>860</id>
<edge_type>4</edge_type>
<source_obj>93</source_obj>
<sink_obj>141</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_777">
<id>861</id>
<edge_type>4</edge_type>
<source_obj>94</source_obj>
<sink_obj>140</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_778">
<id>862</id>
<edge_type>4</edge_type>
<source_obj>94</source_obj>
<sink_obj>144</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_779">
<id>863</id>
<edge_type>4</edge_type>
<source_obj>95</source_obj>
<sink_obj>139</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_780">
<id>864</id>
<edge_type>4</edge_type>
<source_obj>95</source_obj>
<sink_obj>145</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_781">
<id>865</id>
<edge_type>4</edge_type>
<source_obj>93</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_782">
<id>866</id>
<edge_type>4</edge_type>
<source_obj>94</source_obj>
<sink_obj>131</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_783">
<id>867</id>
<edge_type>4</edge_type>
<source_obj>94</source_obj>
<sink_obj>135</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_784">
<id>868</id>
<edge_type>4</edge_type>
<source_obj>95</source_obj>
<sink_obj>130</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_785">
<id>869</id>
<edge_type>4</edge_type>
<source_obj>95</source_obj>
<sink_obj>136</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_786">
<id>870</id>
<edge_type>4</edge_type>
<source_obj>93</source_obj>
<sink_obj>123</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_787">
<id>871</id>
<edge_type>4</edge_type>
<source_obj>94</source_obj>
<sink_obj>122</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_788">
<id>872</id>
<edge_type>4</edge_type>
<source_obj>94</source_obj>
<sink_obj>126</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_789">
<id>873</id>
<edge_type>4</edge_type>
<source_obj>95</source_obj>
<sink_obj>121</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_790">
<id>874</id>
<edge_type>4</edge_type>
<source_obj>95</source_obj>
<sink_obj>127</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_791">
<id>875</id>
<edge_type>4</edge_type>
<source_obj>93</source_obj>
<sink_obj>159</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_792">
<id>876</id>
<edge_type>4</edge_type>
<source_obj>93</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_793">
<id>877</id>
<edge_type>4</edge_type>
<source_obj>93</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_794">
<id>878</id>
<edge_type>4</edge_type>
<source_obj>93</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_795">
<id>879</id>
<edge_type>4</edge_type>
<source_obj>93</source_obj>
<sink_obj>141</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_796">
<id>880</id>
<edge_type>4</edge_type>
<source_obj>93</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_797">
<id>881</id>
<edge_type>4</edge_type>
<source_obj>93</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_798">
<id>882</id>
<edge_type>4</edge_type>
<source_obj>93</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_799">
<id>883</id>
<edge_type>4</edge_type>
<source_obj>93</source_obj>
<sink_obj>123</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_800">
<id>884</id>
<edge_type>4</edge_type>
<source_obj>93</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_801">
<mId>1</mId>
<mTag>pool_hw</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>238</mMinLatency>
<mMaxLatency>50920</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_802">
<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>97</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>122</mMinLatency>
<mMaxLatency>122</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_803">
<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>12</count>
<item_version>0</item_version>
<item>105</item>
<item>108</item>
<item>111</item>
<item>114</item>
<item>117</item>
<item>120</item>
<item>129</item>
<item>138</item>
<item>147</item>
<item>156</item>
<item>166</item>
<item>171</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>56</mMinTripCount>
<mMaxTripCount>56</mMaxTripCount>
<mMinLatency>112</mMinLatency>
<mMaxLatency>50680</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_804">
<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>175</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>3</mMinLatency>
<mMaxLatency>117</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
</cdfg_regions>
<fsm class_id="24" tracking_level="1" version="0" object_id="_805">
<states class_id="25" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="26" tracking_level="1" version="0" object_id="_806">
<id>1</id>
<operations class_id="27" tracking_level="0" version="0">
<count>84</count>
<item_version>0</item_version>
<item class_id="28" tracking_level="1" version="0" object_id="_807">
<id>4</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_808">
<id>5</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_809">
<id>10</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_810">
<id>11</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_811">
<id>12</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_812">
<id>13</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_813">
<id>14</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_814">
<id>15</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_815">
<id>16</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_816">
<id>17</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_817">
<id>18</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_818">
<id>19</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_819">
<id>20</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_820">
<id>21</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_821">
<id>22</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_822">
<id>23</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_823">
<id>24</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_824">
<id>25</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_825">
<id>26</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_826">
<id>27</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_827">
<id>28</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_828">
<id>29</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_829">
<id>30</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_830">
<id>31</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_831">
<id>32</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_832">
<id>33</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_833">
<id>34</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_834">
<id>35</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_835">
<id>36</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_836">
<id>37</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_837">
<id>38</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_838">
<id>39</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_839">
<id>40</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_840">
<id>41</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_841">
<id>42</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_842">
<id>43</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_843">
<id>44</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_844">
<id>45</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_845">
<id>46</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_846">
<id>47</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_847">
<id>48</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_848">
<id>49</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_849">
<id>50</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_850">
<id>51</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_851">
<id>52</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_852">
<id>53</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_853">
<id>54</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_854">
<id>55</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_855">
<id>56</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_856">
<id>57</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_857">
<id>58</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_858">
<id>59</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_859">
<id>60</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_860">
<id>61</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_861">
<id>62</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_862">
<id>63</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_863">
<id>64</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_864">
<id>65</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_865">
<id>66</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_866">
<id>67</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_867">
<id>68</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_868">
<id>69</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_869">
<id>70</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_870">
<id>71</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_871">
<id>72</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_872">
<id>73</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_873">
<id>74</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_874">
<id>75</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_875">
<id>76</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_876">
<id>77</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_877">
<id>78</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_878">
<id>79</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_879">
<id>80</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_880">
<id>81</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_881">
<id>82</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_882">
<id>83</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_883">
<id>84</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_884">
<id>85</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_885">
<id>86</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_886">
<id>87</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_887">
<id>88</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_888">
<id>89</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_889">
<id>94</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_890">
<id>95</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_891">
<id>2</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_892">
<id>93</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_893">
<id>3</id>
<operations>
<count>9</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_894">
<id>6</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_895">
<id>7</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_896">
<id>8</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_897">
<id>9</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_898">
<id>90</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_899">
<id>91</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_900">
<id>92</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_901">
<id>93</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_902">
<id>96</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_903">
<id>4</id>
<operations>
<count>45</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_904">
<id>98</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_905">
<id>99</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_906">
<id>100</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_907">
<id>101</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_908">
<id>102</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_909">
<id>103</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_910">
<id>104</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_911">
<id>106</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_912">
<id>107</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_913">
<id>109</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_914">
<id>110</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_915">
<id>112</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_916">
<id>113</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_917">
<id>115</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_918">
<id>116</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_919">
<id>118</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_920">
<id>119</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_921">
<id>121</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_922">
<id>122</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_923">
<id>123</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_924">
<id>124</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_925">
<id>125</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_926">
<id>130</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_927">
<id>131</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_928">
<id>132</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_929">
<id>133</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_930">
<id>134</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_931">
<id>139</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_932">
<id>140</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_933">
<id>141</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_934">
<id>142</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_935">
<id>143</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_936">
<id>148</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_937">
<id>149</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_938">
<id>150</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_939">
<id>151</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_940">
<id>152</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_941">
<id>157</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_942">
<id>158</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_943">
<id>159</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_944">
<id>160</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_945">
<id>161</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_946">
<id>162</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_947">
<id>172</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_948">
<id>173</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_949">
<id>5</id>
<operations>
<count>34</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_950">
<id>123</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_951">
<id>124</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_952">
<id>125</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_953">
<id>126</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_954">
<id>127</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_955">
<id>128</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_956">
<id>132</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_957">
<id>133</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_958">
<id>134</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_959">
<id>135</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_960">
<id>136</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_961">
<id>137</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_962">
<id>141</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_963">
<id>142</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_964">
<id>143</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_965">
<id>144</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_966">
<id>145</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_967">
<id>146</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_968">
<id>150</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_969">
<id>151</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_970">
<id>152</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_971">
<id>153</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_972">
<id>154</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_973">
<id>155</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_974">
<id>159</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_975">
<id>160</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_976">
<id>162</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_977">
<id>163</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_978">
<id>164</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_979">
<id>165</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_980">
<id>167</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_981">
<id>168</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_982">
<id>169</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_983">
<id>170</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_984">
<id>6</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_985">
<id>173</id>
<stage>1</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_986">
<id>7</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_987">
<id>174</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="29" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="1" version="0" object_id="_988">
<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="_989">
<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="_990">
<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="_991">
<inState>4</inState>
<outState>6</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item class_id="34" tracking_level="0" version="0">
<first class_id="35" tracking_level="0" version="0">
<first>100</first>
<second>0</second>
</first>
<second>0</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_992">
<inState>4</inState>
<outState>5</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>100</first>
<second>0</second>
</first>
<second>1</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_993">
<inState>5</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="_994">
<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>
</transitions>
</fsm>
<res class_id="36" tracking_level="1" version="0" object_id="_995">
<dp_component_resource class_id="37" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="38" tracking_level="0" version="0">
<first>grp_conv_read_fu_465 (conv_read)</first>
<second class_id="39" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="40" tracking_level="0" version="0">
<first>FF</first>
<second>628</second>
</item>
<item>
<first>LUT</first>
<second>171</second>
</item>
</second>
</item>
<item>
<first>grp_load_cifm_data_fu_491 (load_cifm_data)</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>FF</first>
<second>17</second>
</item>
<item>
<first>LUT</first>
<second>116</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413 (pool_write)</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>BRAM</first>
<second>0</second>
</item>
<item>
<first>DSP48E</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>854</second>
</item>
<item>
<first>LUT</first>
<second>1546</second>
</item>
</second>
</item>
<item>
<first>grp_write_row_ifm_fu_480 (write_row_ifm)</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>FF</first>
<second>105</second>
</item>
<item>
<first>LUT</first>
<second>133</second>
</item>
</second>
</item>
<item>
<first>regslice_both_cifm_U (regslice_both)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_cofm_i_U (regslice_both)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_cofm_o_U (regslice_both)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
</dp_component_resource>
<dp_expression_resource>
<count>18</count>
<item_version>0</item_version>
<item>
<first>ap_block_state5_on_subcall_done ( or ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>ap_predicate_op147_call_state5 ( and ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>ap_predicate_op153_call_state5 ( and ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>ap_predicate_op159_call_state5 ( and ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>ap_predicate_op165_call_state5 ( and ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>grp_conv_read_fu_465_cofm_o_TREADY ( or ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>icmp_ln297_fu_567_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>6</second>
</item>
<item>
<first>(1P1)</first>
<second>5</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>icmp_ln301_fu_586_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>16</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>13</second>
</item>
</second>
</item>
<item>
<first>icmp_ln303_fu_573_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>6</second>
</item>
<item>
<first>(1P1)</first>
<second>5</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>icmp_ln306_fu_616_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>6</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>icmp_ln312_fu_592_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>16</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>13</second>
</item>
</second>
</item>
<item>
<first>icmp_ln321_fu_598_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>16</second>
</item>
<item>
<first>(1P1)</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>13</second>
</item>
</second>
</item>
<item>
<first>icmp_ln330_fu_604_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>16</second>
</item>
<item>
<first>(1P1)</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>13</second>
</item>
</second>
</item>
<item>
<first>icmp_ln339_fu_610_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>16</second>
</item>
<item>
<first>(1P1)</first>
<second>3</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>13</second>
</item>
</second>
</item>
<item>
<first>icmp_ln351_fu_629_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>16</second>
</item>
<item>
<first>(1P1)</first>
<second>3</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>13</second>
</item>
</second>
</item>
<item>
<first>rotate_counter_fu_623_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>16</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>23</second>
</item>
</second>
</item>
<item>
<first>row_fu_580_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>6</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>select_ln351_fu_635_p3 ( select ) </first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>(2P2)</first>
<second>16</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>16</second>
</item>
</second>
</item>
</dp_expression_resource>
<dp_fifo_resource>
<count>0</count>
<item_version>0</item_version>
</dp_fifo_resource>
<dp_memory_resource>
<count>80</count>
<item_version>0</item_version>
<item>
<first>ifm_buff0_0_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_10_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_11_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_12_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_13_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_14_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_15_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_1_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_2_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_3_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_4_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_5_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_6_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_7_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_8_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_9_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_0_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_10_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_11_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_12_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_13_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_14_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_15_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_1_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_2_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_3_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_4_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_5_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_6_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_7_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_8_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_9_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_0_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_10_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_11_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_12_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_13_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_14_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_15_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_1_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_2_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_3_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_4_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_5_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_6_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_7_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_8_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_9_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>58</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1856</second>
</item>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_0_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_10_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_11_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_12_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_13_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_14_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_15_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_1_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_2_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_3_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_4_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_5_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_6_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_7_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_8_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_9_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_0_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_10_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_11_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_12_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_13_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_14_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_15_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_1_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_2_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_3_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_4_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_5_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_6_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_7_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_8_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_9_U</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>56</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>1792</second>
</item>
<item>
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>0</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
</dp_memory_resource>
<dp_multiplexer_resource>
<count>388</count>
<item_version>0</item_version>
<item>
<first>ap_NS_fsm</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>8</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>8</second>
</item>
<item>
<first>LUT</first>
<second>41</second>
</item>
</second>
</item>
<item>
<first>cifm_TREADY_int</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>cifm_counter_5_fu_62</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>64</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>cofm_counter_5_fu_66</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>64</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>cofm_i_TREADY_int</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>cofm_o_TVALID_int</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>grp_conv_read_fu_465_enable</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>grp_conv_read_fu_465_ofm_buff0_0_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>96</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>grp_conv_read_fu_465_ofm_buff0_1_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>96</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>grp_conv_read_fu_465_ofm_buff0_2_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>96</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>grp_conv_read_fu_465_ofm_buff0_3_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>96</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>grp_conv_read_fu_465_ofm_buff0_4_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>96</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>grp_conv_read_fu_465_ofm_buff0_5_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>96</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_0_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_0_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_10_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_10_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_11_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_11_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_12_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_12_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_13_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_13_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_14_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_14_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_15_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_15_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_1_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_1_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_2_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_2_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_3_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_3_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_4_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_4_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_5_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_5_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_6_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_6_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_7_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_7_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_8_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_8_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_9_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff0_9_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_0_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_0_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_10_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_10_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_11_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_11_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_12_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_12_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_13_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_13_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_14_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_14_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_15_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_15_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_1_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_1_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_2_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_2_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_3_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_3_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_4_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_4_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_5_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_5_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_6_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_6_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_7_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_7_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_8_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_8_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_9_q0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ifm_buff1_9_q1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>128</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_0_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_0_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_0_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_0_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_0_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_10_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_10_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_10_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_10_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_11_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_11_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_11_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_11_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_12_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_12_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_12_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_12_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_13_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_13_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_13_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_13_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_14_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_14_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_14_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_14_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_15_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_15_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_15_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_15_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_1_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_1_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_1_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_1_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_1_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_2_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_2_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_2_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_2_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_2_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_3_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_3_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_3_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_3_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_4_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_4_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_4_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_4_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_5_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_5_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_5_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_5_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_6_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_6_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_6_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_6_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_7_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_7_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_7_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_7_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_8_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_8_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_8_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_8_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_9_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_9_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_9_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff0_9_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_0_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>5</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>30</second>
</item>
<item>
<first>LUT</first>
<second>27</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_0_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_0_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>5</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>5</second>
</item>
<item>
<first>LUT</first>
<second>27</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_0_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_0_d0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>96</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_0_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_10_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_10_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_10_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_10_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_10_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_11_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_11_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_11_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_11_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_11_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_12_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_12_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_12_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_12_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_12_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_13_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_13_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_13_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_13_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_13_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_14_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_14_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_14_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_14_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_14_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_15_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_15_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_15_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_15_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_15_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_1_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>5</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>30</second>
</item>
<item>
<first>LUT</first>
<second>27</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_1_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_1_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>5</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>5</second>
</item>
<item>
<first>LUT</first>
<second>27</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_1_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_1_d0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>96</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_1_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_2_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>5</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>30</second>
</item>
<item>
<first>LUT</first>
<second>27</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_2_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_2_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>5</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>5</second>
</item>
<item>
<first>LUT</first>
<second>27</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_2_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_2_d0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>96</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_2_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_3_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_3_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_3_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_3_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_3_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_4_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_4_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_4_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_4_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_4_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_5_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_5_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_5_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_5_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_5_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_6_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_6_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_6_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_6_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_6_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_7_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_7_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_7_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_7_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_7_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_8_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_8_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_8_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_8_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_8_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_9_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_9_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_9_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_9_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff1_9_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_0_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>5</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>30</second>
</item>
<item>
<first>LUT</first>
<second>27</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_0_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_0_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>5</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>5</second>
</item>
<item>
<first>LUT</first>
<second>27</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_0_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_0_d0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>96</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_0_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_10_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_10_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_10_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_10_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_10_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_11_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_11_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_11_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_11_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_11_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_12_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_12_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_12_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_12_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_12_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_13_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_13_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_13_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_13_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_13_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_14_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_14_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_14_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_14_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_14_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_15_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_15_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_15_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_15_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_15_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_1_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>5</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>30</second>
</item>
<item>
<first>LUT</first>
<second>27</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_1_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_1_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>5</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>5</second>
</item>
<item>
<first>LUT</first>
<second>27</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_1_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_1_d0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>96</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_1_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_2_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>5</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>30</second>
</item>
<item>
<first>LUT</first>
<second>27</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_2_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_2_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>5</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>5</second>
</item>
<item>
<first>LUT</first>
<second>27</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_2_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_2_d0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>96</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_2_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_3_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_3_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_3_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_3_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_3_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_4_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_4_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_4_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_4_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_4_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_5_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_5_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_5_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_5_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_5_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_6_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_6_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_6_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_6_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_6_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_7_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_7_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_7_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_7_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_7_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_8_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_8_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_8_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_8_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_8_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_9_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>24</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_9_address1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_9_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>21</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_9_ce1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ifm_buff2_9_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_0_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_0_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_0_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_10_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_10_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_11_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_11_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_12_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_12_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_13_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_13_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_14_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_14_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_15_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_15_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_1_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_1_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_1_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_2_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_2_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_2_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_3_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_3_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_3_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_4_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_4_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_4_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_5_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_5_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_5_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_6_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_6_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_7_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_7_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_8_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_8_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_9_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff0_9_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_0_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_0_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_0_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_10_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_10_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_11_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_11_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_12_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_12_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_13_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_13_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_14_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_14_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_15_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_15_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_1_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_1_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_1_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_2_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_2_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_2_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_3_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_3_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_3_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_4_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_4_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_4_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_5_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>18</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_5_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_5_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_6_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_6_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_7_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_7_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_8_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_8_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_9_ce0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ofm_buff1_9_we0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>rotate_counter_0_reg_390</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>16</second>
</item>
<item>
<first>(2Count)</first>
<second>32</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>row_0_reg_402</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>6</second>
</item>
<item>
<first>(2Count)</first>
<second>12</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
</dp_multiplexer_resource>
<dp_register_resource>
<count>19</count>
<item_version>0</item_version>
<item>
<first>ap_CS_fsm</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>7</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>7</second>
</item>
</second>
</item>
<item>
<first>cifm_counter_5_fu_62</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>32</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>32</second>
</item>
</second>
</item>
<item>
<first>cofm_counter_5_fu_66</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>32</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>32</second>
</item>
</second>
</item>
<item>
<first>grp_conv_read_fu_465_ap_start_reg</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>grp_load_cifm_data_fu_491_ap_start_reg</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413_ap_start_reg</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>grp_write_row_ifm_fu_480_ap_start_reg</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>icmp_ln301_reg_670</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>icmp_ln303_reg_660</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>icmp_ln306_reg_690</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>icmp_ln312_reg_674</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>icmp_ln321_reg_678</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>icmp_ln330_reg_682</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>icmp_ln339_reg_686</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>reg_547</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>32</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>32</second>
</item>
</second>
</item>
<item>
<first>reg_552</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>32</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>32</second>
</item>
</second>
</item>
<item>
<first>rotate_counter_0_reg_390</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>16</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>row_0_reg_402</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>6</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>6</second>
</item>
</second>
</item>
<item>
<first>row_reg_665</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>6</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>6</second>
</item>
</second>
</item>
</dp_register_resource>
<dp_dsp_resource>
<count>7</count>
<item_version>0</item_version>
<item>
<first>grp_conv_read_fu_465</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>grp_load_cifm_data_fu_491</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>grp_pool_write_fu_413</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>grp_write_row_ifm_fu_480</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_cifm_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_cofm_i_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_cofm_o_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
</dp_dsp_resource>
<dp_component_map class_id="41" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="42" tracking_level="0" version="0">
<first>grp_conv_read_fu_465 (conv_read)</first>
<second>
<count>6</count>
<item_version>0</item_version>
<item>125</item>
<item>134</item>
<item>143</item>
<item>152</item>
<item>162</item>
<item>173</item>
</second>
</item>
<item>
<first>grp_load_cifm_data_fu_491 (load_cifm_data)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>93</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413 (pool_write)</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>124</item>
<item>133</item>
<item>142</item>
<item>151</item>
<item>160</item>
</second>
</item>
<item>
<first>grp_write_row_ifm_fu_480 (write_row_ifm)</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>123</item>
<item>132</item>
<item>141</item>
<item>150</item>
<item>159</item>
</second>
</item>
</dp_component_map>
<dp_expression_map>
<count>12</count>
<item_version>0</item_version>
<item>
<first>icmp_ln297_fu_567_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>icmp_ln301_fu_586_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>icmp_ln303_fu_573_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>icmp_ln306_fu_616_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>161</item>
</second>
</item>
<item>
<first>icmp_ln312_fu_592_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>icmp_ln321_fu_598_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>icmp_ln330_fu_604_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
<item>
<first>icmp_ln339_fu_610_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>118</item>
</second>
</item>
<item>
<first>icmp_ln351_fu_629_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>168</item>
</second>
</item>
<item>
<first>rotate_counter_fu_623_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>167</item>
</second>
</item>
<item>
<first>row_fu_580_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>select_ln351_fu_635_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>169</item>
</second>
</item>
</dp_expression_map>
<dp_fifo_map>
<count>0</count>
<item_version>0</item_version>
</dp_fifo_map>
<dp_memory_map>
<count>80</count>
<item_version>0</item_version>
<item>
<first>ifm_buff0_0_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>194</item>
</second>
</item>
<item>
<first>ifm_buff0_10_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>301</item>
</second>
</item>
<item>
<first>ifm_buff0_11_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>311</item>
</second>
</item>
<item>
<first>ifm_buff0_12_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>321</item>
</second>
</item>
<item>
<first>ifm_buff0_13_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>331</item>
</second>
</item>
<item>
<first>ifm_buff0_14_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>341</item>
</second>
</item>
<item>
<first>ifm_buff0_15_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>351</item>
</second>
</item>
<item>
<first>ifm_buff0_1_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>206</item>
</second>
</item>
<item>
<first>ifm_buff0_2_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>218</item>
</second>
</item>
<item>
<first>ifm_buff0_3_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>231</item>
</second>
</item>
<item>
<first>ifm_buff0_4_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>241</item>
</second>
</item>
<item>
<first>ifm_buff0_5_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>251</item>
</second>
</item>
<item>
<first>ifm_buff0_6_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>261</item>
</second>
</item>
<item>
<first>ifm_buff0_7_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>271</item>
</second>
</item>
<item>
<first>ifm_buff0_8_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>281</item>
</second>
</item>
<item>
<first>ifm_buff0_9_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>291</item>
</second>
</item>
<item>
<first>ifm_buff1_0_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>361</item>
</second>
</item>
<item>
<first>ifm_buff1_10_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>481</item>
</second>
</item>
<item>
<first>ifm_buff1_11_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>493</item>
</second>
</item>
<item>
<first>ifm_buff1_12_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>505</item>
</second>
</item>
<item>
<first>ifm_buff1_13_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>517</item>
</second>
</item>
<item>
<first>ifm_buff1_14_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>529</item>
</second>
</item>
<item>
<first>ifm_buff1_15_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>541</item>
</second>
</item>
<item>
<first>ifm_buff1_1_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>373</item>
</second>
</item>
<item>
<first>ifm_buff1_2_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>385</item>
</second>
</item>
<item>
<first>ifm_buff1_3_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>397</item>
</second>
</item>
<item>
<first>ifm_buff1_4_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>409</item>
</second>
</item>
<item>
<first>ifm_buff1_5_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>421</item>
</second>
</item>
<item>
<first>ifm_buff1_6_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>433</item>
</second>
</item>
<item>
<first>ifm_buff1_7_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>445</item>
</second>
</item>
<item>
<first>ifm_buff1_8_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>457</item>
</second>
</item>
<item>
<first>ifm_buff1_9_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>469</item>
</second>
</item>
<item>
<first>ifm_buff2_0_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>553</item>
</second>
</item>
<item>
<first>ifm_buff2_10_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>673</item>
</second>
</item>
<item>
<first>ifm_buff2_11_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>685</item>
</second>
</item>
<item>
<first>ifm_buff2_12_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>697</item>
</second>
</item>
<item>
<first>ifm_buff2_13_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>709</item>
</second>
</item>
<item>
<first>ifm_buff2_14_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>721</item>
</second>
</item>
<item>
<first>ifm_buff2_15_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>733</item>
</second>
</item>
<item>
<first>ifm_buff2_1_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>565</item>
</second>
</item>
<item>
<first>ifm_buff2_2_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>577</item>
</second>
</item>
<item>
<first>ifm_buff2_3_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>589</item>
</second>
</item>
<item>
<first>ifm_buff2_4_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>601</item>
</second>
</item>
<item>
<first>ifm_buff2_5_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>613</item>
</second>
</item>
<item>
<first>ifm_buff2_6_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>625</item>
</second>
</item>
<item>
<first>ifm_buff2_7_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>637</item>
</second>
</item>
<item>
<first>ifm_buff2_8_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>649</item>
</second>
</item>
<item>
<first>ifm_buff2_9_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>661</item>
</second>
</item>
<item>
<first>ofm_buff0_0_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>746</item>
</second>
</item>
<item>
<first>ofm_buff0_10_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>833</item>
</second>
</item>
<item>
<first>ofm_buff0_11_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>841</item>
</second>
</item>
<item>
<first>ofm_buff0_12_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>849</item>
</second>
</item>
<item>
<first>ofm_buff0_13_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>857</item>
</second>
</item>
<item>
<first>ofm_buff0_14_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>865</item>
</second>
</item>
<item>
<first>ofm_buff0_15_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>873</item>
</second>
</item>
<item>
<first>ofm_buff0_1_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>755</item>
</second>
</item>
<item>
<first>ofm_buff0_2_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>764</item>
</second>
</item>
<item>
<first>ofm_buff0_3_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>773</item>
</second>
</item>
<item>
<first>ofm_buff0_4_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>782</item>
</second>
</item>
<item>
<first>ofm_buff0_5_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>791</item>
</second>
</item>
<item>
<first>ofm_buff0_6_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>801</item>
</second>
</item>
<item>
<first>ofm_buff0_7_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>809</item>
</second>
</item>
<item>
<first>ofm_buff0_8_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>817</item>
</second>
</item>
<item>
<first>ofm_buff0_9_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>825</item>
</second>
</item>
<item>
<first>ofm_buff1_0_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>881</item>
</second>
</item>
<item>
<first>ofm_buff1_10_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>967</item>
</second>
</item>
<item>
<first>ofm_buff1_11_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>975</item>
</second>
</item>
<item>
<first>ofm_buff1_12_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>983</item>
</second>
</item>
<item>
<first>ofm_buff1_13_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>991</item>
</second>
</item>
<item>
<first>ofm_buff1_14_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>999</item>
</second>
</item>
<item>
<first>ofm_buff1_15_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>1007</item>
</second>
</item>
<item>
<first>ofm_buff1_1_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>890</item>
</second>
</item>
<item>
<first>ofm_buff1_2_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>899</item>
</second>
</item>
<item>
<first>ofm_buff1_3_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>908</item>
</second>
</item>
<item>
<first>ofm_buff1_4_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>917</item>
</second>
</item>
<item>
<first>ofm_buff1_5_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>926</item>
</second>
</item>
<item>
<first>ofm_buff1_6_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>935</item>
</second>
</item>
<item>
<first>ofm_buff1_7_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>943</item>
</second>
</item>
<item>
<first>ofm_buff1_8_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>951</item>
</second>
</item>
<item>
<first>ofm_buff1_9_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>959</item>
</second>
</item>
</dp_memory_map>
</res>
<node_label_latency class_id="43" tracking_level="0" version="0">
<count>150</count>
<item_version>0</item_version>
<item class_id="44" tracking_level="0" version="0">
<first>4</first>
<second class_id="45" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>5</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>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>
<item>
<first>27</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>28</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>29</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>30</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>31</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>32</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>33</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>34</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>35</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>36</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>37</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>39</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>40</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>41</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>42</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>43</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>44</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>45</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>46</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>49</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>50</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>51</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>52</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>53</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>54</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>55</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>56</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>57</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>58</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>59</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>60</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>61</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>62</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>63</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>64</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>65</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>66</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>67</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>68</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>69</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>70</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>71</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>72</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>73</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>74</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>75</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>76</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>77</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>78</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>79</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>80</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>81</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>82</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>83</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>84</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>85</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>86</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>87</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>88</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>89</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>93</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>94</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>95</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>96</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>98</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>99</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>100</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>102</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>103</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>104</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>106</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>107</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>109</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>110</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>112</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>113</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>115</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>116</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>118</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>119</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>121</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>122</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>123</first>
<second>
<first>3</first>
<second>1</second>
</second>
</item>
<item>
<first>124</first>
<second>
<first>3</first>
<second>1</second>
</second>
</item>
<item>
<first>125</first>
<second>
<first>3</first>
<second>1</second>
</second>
</item>
<item>
<first>126</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>127</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>128</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>130</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>131</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>132</first>
<second>
<first>3</first>
<second>1</second>
</second>
</item>
<item>
<first>133</first>
<second>
<first>3</first>
<second>1</second>
</second>
</item>
<item>
<first>134</first>
<second>
<first>3</first>
<second>1</second>
</second>
</item>
<item>
<first>135</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>136</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>137</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>139</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>140</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>141</first>
<second>
<first>3</first>
<second>1</second>
</second>
</item>
<item>
<first>142</first>
<second>
<first>3</first>
<second>1</second>
</second>
</item>
<item>
<first>143</first>
<second>
<first>3</first>
<second>1</second>
</second>
</item>
<item>
<first>144</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>145</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>146</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>148</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>149</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>150</first>
<second>
<first>3</first>
<second>1</second>
</second>
</item>
<item>
<first>151</first>
<second>
<first>3</first>
<second>1</second>
</second>
</item>
<item>
<first>152</first>
<second>
<first>3</first>
<second>1</second>
</second>
</item>
<item>
<first>153</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>154</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>155</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>157</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>158</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>159</first>
<second>
<first>3</first>
<second>1</second>
</second>
</item>
<item>
<first>160</first>
<second>
<first>3</first>
<second>1</second>
</second>
</item>
<item>
<first>161</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>162</first>
<second>
<first>3</first>
<second>1</second>
</second>
</item>
<item>
<first>163</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>164</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>165</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>167</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>168</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>169</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>170</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>172</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>173</first>
<second>
<first>3</first>
<second>1</second>
</second>
</item>
<item>
<first>174</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="46" tracking_level="0" version="0">
<count>14</count>
<item_version>0</item_version>
<item class_id="47" tracking_level="0" version="0">
<first>97</first>
<second class_id="48" tracking_level="0" version="0">
<first>0</first>
<second>2</second>
</second>
</item>
<item>
<first>105</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>108</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>111</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>114</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>117</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>120</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>129</first>
<second>
<first>3</first>
<second>4</second>
</second>
</item>
<item>
<first>138</first>
<second>
<first>3</first>
<second>4</second>
</second>
</item>
<item>
<first>147</first>
<second>
<first>3</first>
<second>4</second>
</second>
</item>
<item>
<first>156</first>
<second>
<first>3</first>
<second>4</second>
</second>
</item>
<item>
<first>166</first>
<second>
<first>3</first>
<second>4</second>
</second>
</item>
<item>
<first>171</first>
<second>
<first>4</first>
<second>4</second>
</second>
</item>
<item>
<first>175</first>
<second>
<first>3</first>
<second>5</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="49" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</regions>
<dp_fu_nodes class_id="50" tracking_level="0" version="0">
<count>106</count>
<item_version>0</item_version>
<item class_id="51" tracking_level="0" version="0">
<first>62</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>4</item>
</second>
</item>
<item>
<first>66</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>5</item>
</second>
</item>
<item>
<first>70</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>74</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>78</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>82</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>86</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>90</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>94</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>98</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>102</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>106</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>110</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>114</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>118</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>22</item>
</second>
</item>
<item>
<first>122</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>126</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>130</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>134</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>138</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
<item>
<first>142</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>146</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
<item>
<first>150</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>154</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</second>
</item>
<item>
<first>158</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>162</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>166</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>170</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>174</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>178</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>182</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>186</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>190</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>194</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>198</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>202</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>206</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>210</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>214</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>218</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>222</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>226</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>230</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>234</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>238</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>242</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>246</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>54</item>
</second>
</item>
<item>
<first>250</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>254</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>258</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>262</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>266</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>270</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>274</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>278</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>62</item>
</second>
</item>
<item>
<first>282</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>286</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>290</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>294</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>298</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>302</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>306</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>310</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>70</item>
</second>
</item>
<item>
<first>314</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>318</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>322</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>326</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>330</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>334</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>338</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>342</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>346</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
<item>
<first>350</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>354</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>358</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>362</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>366</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>370</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>374</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>86</item>
</second>
</item>
<item>
<first>378</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>382</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>88</item>
</second>
</item>
<item>
<first>386</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
<item>
<first>394</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>406</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>413</first>
<second>
<count>10</count>
<item_version>0</item_version>
<item>124</item>
<item>124</item>
<item>133</item>
<item>133</item>
<item>142</item>
<item>142</item>
<item>151</item>
<item>151</item>
<item>160</item>
<item>160</item>
</second>
</item>
<item>
<first>465</first>
<second>
<count>12</count>
<item_version>0</item_version>
<item>125</item>
<item>125</item>
<item>134</item>
<item>134</item>
<item>143</item>
<item>143</item>
<item>152</item>
<item>152</item>
<item>162</item>
<item>162</item>
<item>173</item>
<item>173</item>
</second>
</item>
<item>
<first>480</first>
<second>
<count>10</count>
<item_version>0</item_version>
<item>123</item>
<item>123</item>
<item>132</item>
<item>132</item>
<item>141</item>
<item>141</item>
<item>150</item>
<item>150</item>
<item>159</item>
<item>159</item>
</second>
</item>
<item>
<first>491</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>93</item>
<item>93</item>
</second>
</item>
<item>
<first>529</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>121</item>
<item>130</item>
<item>139</item>
<item>148</item>
<item>157</item>
</second>
</item>
<item>
<first>533</first>
<second>
<count>6</count>
<item_version>0</item_version>
<item>122</item>
<item>131</item>
<item>140</item>
<item>149</item>
<item>158</item>
<item>172</item>
</second>
</item>
<item>
<first>537</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>126</item>
<item>135</item>
<item>144</item>
<item>153</item>
<item>163</item>
</second>
</item>
<item>
<first>542</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>127</item>
<item>136</item>
<item>145</item>
<item>154</item>
<item>164</item>
</second>
</item>
<item>
<first>557</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>562</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>567</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>573</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>580</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>586</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>592</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>598</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>604</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
<item>
<first>610</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>118</item>
</second>
</item>
<item>
<first>616</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>161</item>
</second>
</item>
<item>
<first>623</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>167</item>
</second>
</item>
<item>
<first>629</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>168</item>
</second>
</item>
<item>
<first>635</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>169</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="53" tracking_level="0" version="0">
<count>96</count>
<item_version>0</item_version>
<item class_id="54" tracking_level="0" version="0">
<first>cifm_counter_5_fu_62</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>4</item>
</second>
</item>
<item>
<first>cofm_counter_5_fu_66</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>5</item>
</second>
</item>
<item>
<first>icmp_ln297_fu_567</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>icmp_ln301_fu_586</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>icmp_ln303_fu_573</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>icmp_ln306_fu_616</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>161</item>
</second>
</item>
<item>
<first>icmp_ln312_fu_592</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>icmp_ln321_fu_598</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>icmp_ln330_fu_604</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
<item>
<first>icmp_ln339_fu_610</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>118</item>
</second>
</item>
<item>
<first>icmp_ln351_fu_629</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>168</item>
</second>
</item>
<item>
<first>ifm_buff0_0_alloca_fu_70</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>ifm_buff0_10_alloca_fu_110</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>ifm_buff0_11_alloca_fu_114</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>ifm_buff0_12_alloca_fu_118</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>22</item>
</second>
</item>
<item>
<first>ifm_buff0_13_alloca_fu_122</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>ifm_buff0_14_alloca_fu_126</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>ifm_buff0_15_alloca_fu_130</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>ifm_buff0_1_alloca_fu_74</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>ifm_buff0_2_alloca_fu_78</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>ifm_buff0_3_alloca_fu_82</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>ifm_buff0_4_alloca_fu_86</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>ifm_buff0_5_alloca_fu_90</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>ifm_buff0_6_alloca_fu_94</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>ifm_buff0_7_alloca_fu_98</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>ifm_buff0_8_alloca_fu_102</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>ifm_buff0_9_alloca_fu_106</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>ifm_buff1_0_alloca_fu_134</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>ifm_buff1_10_alloca_fu_174</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>ifm_buff1_11_alloca_fu_178</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>ifm_buff1_12_alloca_fu_182</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>ifm_buff1_13_alloca_fu_186</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>ifm_buff1_14_alloca_fu_190</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>ifm_buff1_15_alloca_fu_194</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>ifm_buff1_1_alloca_fu_138</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
<item>
<first>ifm_buff1_2_alloca_fu_142</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>ifm_buff1_3_alloca_fu_146</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
<item>
<first>ifm_buff1_4_alloca_fu_150</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>ifm_buff1_5_alloca_fu_154</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</second>
</item>
<item>
<first>ifm_buff1_6_alloca_fu_158</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>ifm_buff1_7_alloca_fu_162</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>ifm_buff1_8_alloca_fu_166</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>ifm_buff1_9_alloca_fu_170</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>ifm_buff2_0_alloca_fu_198</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>ifm_buff2_10_alloca_fu_238</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>ifm_buff2_11_alloca_fu_242</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>ifm_buff2_12_alloca_fu_246</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>54</item>
</second>
</item>
<item>
<first>ifm_buff2_13_alloca_fu_250</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>ifm_buff2_14_alloca_fu_254</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>ifm_buff2_15_alloca_fu_258</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>ifm_buff2_1_alloca_fu_202</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>ifm_buff2_2_alloca_fu_206</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>ifm_buff2_3_alloca_fu_210</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>ifm_buff2_4_alloca_fu_214</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>ifm_buff2_5_alloca_fu_218</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>ifm_buff2_6_alloca_fu_222</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>ifm_buff2_7_alloca_fu_226</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>ifm_buff2_8_alloca_fu_230</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>ifm_buff2_9_alloca_fu_234</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>ofm_buff0_0_alloca_fu_262</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>ofm_buff0_10_alloca_fu_302</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>ofm_buff0_11_alloca_fu_306</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>ofm_buff0_12_alloca_fu_310</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>70</item>
</second>
</item>
<item>
<first>ofm_buff0_13_alloca_fu_314</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>ofm_buff0_14_alloca_fu_318</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>ofm_buff0_15_alloca_fu_322</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>ofm_buff0_1_alloca_fu_266</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>ofm_buff0_2_alloca_fu_270</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>ofm_buff0_3_alloca_fu_274</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>ofm_buff0_4_alloca_fu_278</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>62</item>
</second>
</item>
<item>
<first>ofm_buff0_5_alloca_fu_282</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>ofm_buff0_6_alloca_fu_286</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>ofm_buff0_7_alloca_fu_290</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>ofm_buff0_8_alloca_fu_294</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>ofm_buff0_9_alloca_fu_298</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>ofm_buff1_0_alloca_fu_326</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>ofm_buff1_10_alloca_fu_366</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>ofm_buff1_11_alloca_fu_370</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>ofm_buff1_12_alloca_fu_374</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>86</item>
</second>
</item>
<item>
<first>ofm_buff1_13_alloca_fu_378</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>ofm_buff1_14_alloca_fu_382</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>88</item>
</second>
</item>
<item>
<first>ofm_buff1_15_alloca_fu_386</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
<item>
<first>ofm_buff1_1_alloca_fu_330</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>ofm_buff1_2_alloca_fu_334</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>ofm_buff1_3_alloca_fu_338</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>ofm_buff1_4_alloca_fu_342</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>ofm_buff1_5_alloca_fu_346</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
<item>
<first>ofm_buff1_6_alloca_fu_350</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>ofm_buff1_7_alloca_fu_354</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>ofm_buff1_8_alloca_fu_358</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>ofm_buff1_9_alloca_fu_362</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>rotate_counter_0_phi_fu_394</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>rotate_counter_fu_623</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>167</item>
</second>
</item>
<item>
<first>row_0_phi_fu_406</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>row_fu_580</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>select_ln351_fu_635</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>169</item>
</second>
</item>
</dp_fu_nodes_expression>
<dp_fu_nodes_module>
<count>4</count>
<item_version>0</item_version>
<item>
<first>grp_conv_read_fu_465</first>
<second>
<count>12</count>
<item_version>0</item_version>
<item>125</item>
<item>125</item>
<item>134</item>
<item>134</item>
<item>143</item>
<item>143</item>
<item>152</item>
<item>152</item>
<item>162</item>
<item>162</item>
<item>173</item>
<item>173</item>
</second>
</item>
<item>
<first>grp_load_cifm_data_fu_491</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>93</item>
<item>93</item>
</second>
</item>
<item>
<first>grp_pool_write_fu_413</first>
<second>
<count>10</count>
<item_version>0</item_version>
<item>124</item>
<item>124</item>
<item>133</item>
<item>133</item>
<item>142</item>
<item>142</item>
<item>151</item>
<item>151</item>
<item>160</item>
<item>160</item>
</second>
</item>
<item>
<first>grp_write_row_ifm_fu_480</first>
<second>
<count>10</count>
<item_version>0</item_version>
<item>123</item>
<item>123</item>
<item>132</item>
<item>132</item>
<item>141</item>
<item>141</item>
<item>150</item>
<item>150</item>
<item>159</item>
<item>159</item>
</second>
</item>
</dp_fu_nodes_module>
<dp_fu_nodes_io>
<count>6</count>
<item_version>0</item_version>
<item>
<first>grp_load_fu_529</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>121</item>
<item>130</item>
<item>139</item>
<item>148</item>
<item>157</item>
</second>
</item>
<item>
<first>grp_load_fu_533</first>
<second>
<count>6</count>
<item_version>0</item_version>
<item>122</item>
<item>131</item>
<item>140</item>
<item>149</item>
<item>158</item>
<item>172</item>
</second>
</item>
<item>
<first>grp_store_fu_537</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>126</item>
<item>135</item>
<item>144</item>
<item>153</item>
<item>163</item>
</second>
</item>
<item>
<first>grp_store_fu_542</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>127</item>
<item>136</item>
<item>145</item>
<item>154</item>
<item>164</item>
</second>
</item>
<item>
<first>store_ln297_store_fu_557</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>store_ln297_store_fu_562</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
</dp_fu_nodes_io>
<return_ports>
<count>0</count>
<item_version>0</item_version>
</return_ports>
<dp_mem_port_nodes class_id="55" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>15</count>
<item_version>0</item_version>
<item>
<first>390</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>402</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>547</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>121</item>
<item>130</item>
<item>139</item>
<item>148</item>
<item>157</item>
</second>
</item>
<item>
<first>552</first>
<second>
<count>6</count>
<item_version>0</item_version>
<item>122</item>
<item>131</item>
<item>140</item>
<item>149</item>
<item>158</item>
<item>172</item>
</second>
</item>
<item>
<first>643</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>4</item>
</second>
</item>
<item>
<first>650</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>5</item>
</second>
</item>
<item>
<first>660</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>665</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>670</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>674</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>678</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>682</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
<item>
<first>686</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>118</item>
</second>
</item>
<item>
<first>690</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>161</item>
</second>
</item>
<item>
<first>695</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>169</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>15</count>
<item_version>0</item_version>
<item>
<first>cifm_counter_5_reg_643</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>4</item>
</second>
</item>
<item>
<first>cofm_counter_5_reg_650</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>5</item>
</second>
</item>
<item>
<first>icmp_ln301_reg_670</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>icmp_ln303_reg_660</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>icmp_ln306_reg_690</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>161</item>
</second>
</item>
<item>
<first>icmp_ln312_reg_674</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>icmp_ln321_reg_678</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>icmp_ln330_reg_682</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
<item>
<first>icmp_ln339_reg_686</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>118</item>
</second>
</item>
<item>
<first>reg_547</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>121</item>
<item>130</item>
<item>139</item>
<item>148</item>
<item>157</item>
</second>
</item>
<item>
<first>reg_552</first>
<second>
<count>6</count>
<item_version>0</item_version>
<item>122</item>
<item>131</item>
<item>140</item>
<item>149</item>
<item>158</item>
<item>172</item>
</second>
</item>
<item>
<first>rotate_counter_0_reg_390</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>row_0_reg_402</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>row_reg_665</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>select_ln351_reg_695</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>169</item>
</second>
</item>
</dp_regname_nodes>
<dp_reg_phi>
<count>2</count>
<item_version>0</item_version>
<item>
<first>390</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>402</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
</dp_reg_phi>
<dp_regname_phi>
<count>2</count>
<item_version>0</item_version>
<item>
<first>rotate_counter_0_reg_390</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>row_0_reg_402</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
</dp_regname_phi>
<dp_port_io_nodes class_id="56" tracking_level="0" version="0">
<count>3</count>
<item_version>0</item_version>
<item class_id="57" tracking_level="0" version="0">
<first>cifm</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>call</first>
<second>
<count>6</count>
<item_version>0</item_version>
<item>93</item>
<item>159</item>
<item>150</item>
<item>141</item>
<item>132</item>
<item>123</item>
</second>
</item>
</second>
</item>
<item>
<first>cofm</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>call</first>
<second>
<count>6</count>
<item_version>0</item_version>
<item>162</item>
<item>152</item>
<item>143</item>
<item>134</item>
<item>125</item>
<item>173</item>
</second>
</item>
</second>
</item>
<item>
<first>tran_wgt</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
</dp_port_io_nodes>
<port2core class_id="58" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</port2core>
<node2core>
<count>80</count>
<item_version>0</item_version>
<item class_id="59" tracking_level="0" version="0">
<first>10</first>
<second>RAM</second>
</item>
<item>
<first>11</first>
<second>RAM</second>
</item>
<item>
<first>12</first>
<second>RAM</second>
</item>
<item>
<first>13</first>
<second>RAM</second>
</item>
<item>
<first>14</first>
<second>RAM</second>
</item>
<item>
<first>15</first>
<second>RAM</second>
</item>
<item>
<first>16</first>
<second>RAM</second>
</item>
<item>
<first>17</first>
<second>RAM</second>
</item>
<item>
<first>18</first>
<second>RAM</second>
</item>
<item>
<first>19</first>
<second>RAM</second>
</item>
<item>
<first>20</first>
<second>RAM</second>
</item>
<item>
<first>21</first>
<second>RAM</second>
</item>
<item>
<first>22</first>
<second>RAM</second>
</item>
<item>
<first>23</first>
<second>RAM</second>
</item>
<item>
<first>24</first>
<second>RAM</second>
</item>
<item>
<first>25</first>
<second>RAM</second>
</item>
<item>
<first>26</first>
<second>RAM</second>
</item>
<item>
<first>27</first>
<second>RAM</second>
</item>
<item>
<first>28</first>
<second>RAM</second>
</item>
<item>
<first>29</first>
<second>RAM</second>
</item>
<item>
<first>30</first>
<second>RAM</second>
</item>
<item>
<first>31</first>
<second>RAM</second>
</item>
<item>
<first>32</first>
<second>RAM</second>
</item>
<item>
<first>33</first>
<second>RAM</second>
</item>
<item>
<first>34</first>
<second>RAM</second>
</item>
<item>
<first>35</first>
<second>RAM</second>
</item>
<item>
<first>36</first>
<second>RAM</second>
</item>
<item>
<first>37</first>
<second>RAM</second>
</item>
<item>
<first>38</first>
<second>RAM</second>
</item>
<item>
<first>39</first>
<second>RAM</second>
</item>
<item>
<first>40</first>
<second>RAM</second>
</item>
<item>
<first>41</first>
<second>RAM</second>
</item>
<item>
<first>42</first>
<second>RAM</second>
</item>
<item>
<first>43</first>
<second>RAM</second>
</item>
<item>
<first>44</first>
<second>RAM</second>
</item>
<item>
<first>45</first>
<second>RAM</second>
</item>
<item>
<first>46</first>
<second>RAM</second>
</item>
<item>
<first>47</first>
<second>RAM</second>
</item>
<item>
<first>48</first>
<second>RAM</second>
</item>
<item>
<first>49</first>
<second>RAM</second>
</item>
<item>
<first>50</first>
<second>RAM</second>
</item>
<item>
<first>51</first>
<second>RAM</second>
</item>
<item>
<first>52</first>
<second>RAM</second>
</item>
<item>
<first>53</first>
<second>RAM</second>
</item>
<item>
<first>54</first>
<second>RAM</second>
</item>
<item>
<first>55</first>
<second>RAM</second>
</item>
<item>
<first>56</first>
<second>RAM</second>
</item>
<item>
<first>57</first>
<second>RAM</second>
</item>
<item>
<first>58</first>
<second>RAM</second>
</item>
<item>
<first>59</first>
<second>RAM</second>
</item>
<item>
<first>60</first>
<second>RAM</second>
</item>
<item>
<first>61</first>
<second>RAM</second>
</item>
<item>
<first>62</first>
<second>RAM</second>
</item>
<item>
<first>63</first>
<second>RAM</second>
</item>
<item>
<first>64</first>
<second>RAM</second>
</item>
<item>
<first>65</first>
<second>RAM</second>
</item>
<item>
<first>66</first>
<second>RAM</second>
</item>
<item>
<first>67</first>
<second>RAM</second>
</item>
<item>
<first>68</first>
<second>RAM</second>
</item>
<item>
<first>69</first>
<second>RAM</second>
</item>
<item>
<first>70</first>
<second>RAM</second>
</item>
<item>
<first>71</first>
<second>RAM</second>
</item>
<item>
<first>72</first>
<second>RAM</second>
</item>
<item>
<first>73</first>
<second>RAM</second>
</item>
<item>
<first>74</first>
<second>RAM</second>
</item>
<item>
<first>75</first>
<second>RAM</second>
</item>
<item>
<first>76</first>
<second>RAM</second>
</item>
<item>
<first>77</first>
<second>RAM</second>
</item>
<item>
<first>78</first>
<second>RAM</second>
</item>
<item>
<first>79</first>
<second>RAM</second>
</item>
<item>
<first>80</first>
<second>RAM</second>
</item>
<item>
<first>81</first>
<second>RAM</second>
</item>
<item>
<first>82</first>
<second>RAM</second>
</item>
<item>
<first>83</first>
<second>RAM</second>
</item>
<item>
<first>84</first>
<second>RAM</second>
</item>
<item>
<first>85</first>
<second>RAM</second>
</item>
<item>
<first>86</first>
<second>RAM</second>
</item>
<item>
<first>87</first>
<second>RAM</second>
</item>
<item>
<first>88</first>
<second>RAM</second>
</item>
<item>
<first>89</first>
<second>RAM</second>
</item>
</node2core>
</syndb>
</boost_serialization>
| 30.112285 | 80 | 0.432884 |
2f0f327a7a82cf2c83aa710abf3c075540a51789 | 3,266 | adb | Ada | src/q_bingo-q_bombo.adb | mgrojo/bingada | a685f928045bae6003987ce70c785d4dc3fae8e7 | [
"MIT"
] | 2 | 2020-04-27T19:22:48.000Z | 2020-05-03T16:34:41.000Z | src/q_bingo-q_bombo.adb | mgrojo/bingada | a685f928045bae6003987ce70c785d4dc3fae8e7 | [
"MIT"
] | null | null | null | src/q_bingo-q_bombo.adb | mgrojo/bingada | a685f928045bae6003987ce70c785d4dc3fae8e7 | [
"MIT"
] | null | null | null | --*****************************************************************************
--*
--* PROJECT: BINGADA
--*
--* FILE: q_bingo.adb
--*
--* AUTHOR: Javier Fuica Fernandez
--*
--*****************************************************************************
with Q_GEN_SHUFFLE;
-- Sound library
--
with CANBERRA;
with Ada.Directories;
with Ada.Strings.Fixed;
with GTKADA.Intl;
package body Q_BINGO.Q_BOMBO is
--==================================================================
V_INDEX : T_NUMBER;
--==================================================================
package Q_SHUFFLE is new Q_GEN_SHUFFLE
(ELEMENT_TYPE => T_NUMBER,
C_MAX_NUMBER => T_NUMBER'LAST);
V_BINGO_ARRAY : Q_SHUFFLE.ARRAY_TYPE;
V_CONTEXT : CANBERRA.CONTEXT := CANBERRA.CREATE
(NAME => "BingAda",
ID => "bingada.lovelace",
ICON => "applications-games");
--==================================================================
procedure P_INIT is
begin
for I in 1 .. T_NUMBER'LAST loop
V_BINGO_ARRAY (I) := I;
end loop;
Q_SHUFFLE.P_SHUFFLE (LIST => V_BINGO_ARRAY);
V_INDEX := 1;
end P_INIT;
--==================================================================
procedure P_Play_Number (V_NUMBER : Positive) is
C_Number_Image : constant String := Ada.Strings.Fixed.Trim (V_Number'Image, Ada.Strings.Left);
C_Path : constant String := "media/";
C_Extension : constant String := ".ogg";
C_Lang_Code_Last : constant := 2;
C_locale : constant String := GTKADA.INTL.Getlocale;
C_Default_Lang : constant String := "en";
V_Lang : String (1 .. C_Lang_Code_Last) := C_Default_Lang;
V_Sound : Canberra.Sound;
begin
if C_locale'Length >= C_Lang_Code_Last then
V_Lang := C_Locale (C_Locale'First .. C_Locale'First + C_Lang_Code_Last - 1);
end if;
if not Ada.Directories.Exists (C_Path & V_Lang & '/' & C_Number_Image & C_Extension) then
V_Lang := C_Default_Lang;
end if;
V_Context.Play_FILE (C_Path & V_Lang & '/' & C_Number_Image & C_Extension, V_SOUND, CANBERRA.Music, "Number");
end P_Play_Number;
--==================================================================
procedure P_SPIN (V_NUMBER : out POSITIVE;
V_CURRENT_INDEX : out T_NUMBER;
V_LAST_NUMBER : out BOOLEAN) is
begin
if V_INDEX = T_NUMBER'LAST then
V_NUMBER := V_BINGO_ARRAY (T_NUMBER'LAST);
V_LAST_NUMBER := TRUE;
V_CURRENT_INDEX := V_INDEX;
else
V_NUMBER := V_BINGO_ARRAY (V_INDEX);
V_CURRENT_INDEX := V_INDEX;
V_INDEX := V_INDEX + 1;
V_LAST_NUMBER := FALSE;
end if;
P_PLAY_NUMBER (V_Bingo_Array(V_Current_Index));
end P_SPIN;
--==================================================================
function F_GET_NUMBER (V_INDEX : T_NUMBER) return T_NUMBER is
begin
return V_BINGO_ARRAY (V_INDEX);
end F_GET_NUMBER;
--==================================================================
function F_GET_CURRENT_INDEX return T_NUMBER is
begin
return V_INDEX;
end F_GET_CURRENT_INDEX;
--==================================================================
end Q_BINGO.Q_BOMBO;
| 23 | 114 | 0.504287 |
29d0419cb076fd8a5e44c1fb77f412b0d5711826 | 3,446 | ada | Ada | Task/Rosetta-Code-Count-examples/Ada/rosetta-code-count-examples.ada | djgoku/RosettaCodeData | 91df62d46142e921b3eacdb52b0316c39ee236bc | [
"Info-ZIP"
] | null | null | null | Task/Rosetta-Code-Count-examples/Ada/rosetta-code-count-examples.ada | djgoku/RosettaCodeData | 91df62d46142e921b3eacdb52b0316c39ee236bc | [
"Info-ZIP"
] | null | null | null | Task/Rosetta-Code-Count-examples/Ada/rosetta-code-count-examples.ada | djgoku/RosettaCodeData | 91df62d46142e921b3eacdb52b0316c39ee236bc | [
"Info-ZIP"
] | null | null | null | with Aws.Client, Aws.Messages, Aws.Response, Aws.Resources, Aws.Url;
with Dom.Readers, Dom.Core, Dom.Core.Documents, Dom.Core.Nodes, Dom.Core.Attrs;
with Input_Sources.Strings, Unicode, Unicode.Ces.Utf8;
with Ada.Strings.Unbounded, Ada.Strings.Fixed, Ada.Text_IO, Ada.Command_Line;
with Ada.Containers.Vectors;
use Aws.Client, Aws.Messages, Aws.Response, Aws.Resources, Aws.Url;
use Dom.Readers, Dom.Core, Dom.Core.Documents, Dom.Core.Nodes, Dom.Core.Attrs;
use Aws, Ada.Strings.Unbounded, Ada.Strings.Fixed, Input_Sources.Strings;
use Ada.Text_IO, Ada.Command_Line;
procedure Count_Examples is
package Members_Vectors is new Ada.Containers.Vectors (
Index_Type => Positive,
Element_Type => Unbounded_String);
use Members_Vectors;
Exemples : Vector;
Nbr_Lg, Total : Natural := 0;
procedure Get_Vector (Category : in String; Mbr_Vector : in out Vector) is
Reader : Tree_Reader;
Doc : Document;
List : Node_List;
N : Node;
A : Attr;
Page : Aws.Response.Data;
Uri_Xml : constant String :=
"http://rosettacode.org/mw/api.php?action=query&list=categorymembers"
&
"&format=xml&cmlimit=500&cmtitle=Category:";
begin
Page := Client.Get (Uri_Xml & Category);
if Response.Status_Code (Page) not in Messages.Success then
raise Client.Connection_Error;
end if;
declare
Xml : constant String := Message_Body (Page);
Source : String_Input;
begin
Open
(Xml'Unrestricted_Access,
Unicode.Ces.Utf8.Utf8_Encoding,
Source);
Parse (Reader, Source);
Close (Source);
end;
Doc := Get_Tree (Reader);
List := Get_Elements_By_Tag_Name (Doc, "cm");
for Index in 1 .. Length (List) loop
N := Item (List, Index - 1);
A := Get_Named_Item (Attributes (N), "title");
Append (Mbr_Vector, To_Unbounded_String (Value (A)));
end loop;
Free (List);
Free (Reader);
end Get_Vector;
function Scan_Page (Title : String) return Natural is
Page : Aws.Response.Data;
File : Aws.Resources.File_Type;
Buffer : String (1 .. 1024);
Languages, Position, Last : Natural := 0;
begin
Page :=
Client.Get
("http://rosettacode.org/mw/index.php?title=" &
Aws.Url.Encode (Title) &
"&action=raw");
Response.Message_Body (Page, File);
while not End_Of_File (File) loop
Resources.Get_Line (File, Buffer, Last);
Position :=
Index
(Source => Buffer (Buffer'First .. Last),
Pattern => "=={{header|");
if Position > 0 then
Languages := Languages + 1;
end if;
end loop;
Close (File);
return Languages;
end Scan_Page;
begin
Get_Vector ("Programming_Tasks", Exemples);
for I in First_Index (Exemples) .. Last_Index (Exemples) loop
declare
Title : constant String :=
To_String (Members_Vectors.Element (Exemples, I));
begin
Nbr_Lg := Scan_Page (Title);
Total := Total + Nbr_Lg;
Put_Line (Title & " :" & Integer'Image (Nbr_Lg) & " exemples.");
end;
end loop;
Put_Line ("Total :" & Integer'Image (Total) & " exemples.");
end Count_Examples;
| 33.784314 | 79 | 0.594893 |
5739ea9505cdc746e59c7a1394b74533a2e29709 | 5,090 | ads | Ada | source/amf/uml/amf-uml-data_types.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | source/amf/uml/amf-uml-data_types.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | source/amf/uml/amf-uml-data_types.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 4 | 2017-07-18T07:11:05.000Z | 2020-06-21T03:02:25.000Z | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2011-2012, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- This file is generated, don't edit it.
------------------------------------------------------------------------------
-- A data type is a type whose instances are identified only by their value.
-- A data type may contain attributes to support the modeling of structured
-- data types.
------------------------------------------------------------------------------
with AMF.UML.Classifiers;
limited with AMF.UML.Named_Elements.Collections;
limited with AMF.UML.Operations.Collections;
limited with AMF.UML.Properties.Collections;
package AMF.UML.Data_Types is
pragma Preelaborate;
type UML_Data_Type is limited interface
and AMF.UML.Classifiers.UML_Classifier;
type UML_Data_Type_Access is
access all UML_Data_Type'Class;
for UML_Data_Type_Access'Storage_Size use 0;
not overriding function Get_Owned_Attribute
(Self : not null access constant UML_Data_Type)
return AMF.UML.Properties.Collections.Ordered_Set_Of_UML_Property is abstract;
-- Getter of DataType::ownedAttribute.
--
-- The Attributes owned by the DataType.
not overriding function Get_Owned_Operation
(Self : not null access constant UML_Data_Type)
return AMF.UML.Operations.Collections.Ordered_Set_Of_UML_Operation is abstract;
-- Getter of DataType::ownedOperation.
--
-- The Operations owned by the DataType.
overriding function Inherit
(Self : not null access constant UML_Data_Type;
Inhs : AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element)
return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element is abstract;
-- Operation DataType::inherit.
--
-- The inherit operation is overridden to exclude redefined properties.
end AMF.UML.Data_Types;
| 57.191011 | 86 | 0.49391 |
576096d47ee02e69c390969075c57c1e5e598696 | 496 | ada | Ada | Task/Comma-quibbling/Ada/comma-quibbling.ada | mullikine/RosettaCodeData | 4f0027c6ce83daa36118ee8b67915a13cd23ab67 | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:38.000Z | 2018-11-09T22:08:38.000Z | Task/Comma-quibbling/Ada/comma-quibbling.ada | mullikine/RosettaCodeData | 4f0027c6ce83daa36118ee8b67915a13cd23ab67 | [
"Info-ZIP"
] | null | null | null | Task/Comma-quibbling/Ada/comma-quibbling.ada | mullikine/RosettaCodeData | 4f0027c6ce83daa36118ee8b67915a13cd23ab67 | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:40.000Z | 2018-11-09T22:08:40.000Z | with Ada.Text_IO, Ada.Command_Line; use Ada.Command_Line;
procedure Comma_Quibble is
begin
case Argument_Count is
when 0 => Ada.Text_IO.Put_Line("{}");
when 1 => Ada.Text_IO.Put_Line("{" & Argument(1) & "}");
when others =>
Ada.Text_IO.Put("{");
for I in 1 .. Argument_Count-2 loop
Ada.Text_IO.Put(Argument(I) & ", ");
end loop;
Ada.Text_IO.Put(Argument(Argument_Count-1) & " and " &
Argument(Argument_Count) & "}");
end case;
end Comma_Quibble;
| 27.555556 | 62 | 0.631048 |
41618e9974ce35b1990391ac195225e85cce73bb | 3,662 | ads | Ada | tools/scitools/conf/understand/ada/ada12/a-tiflau.ads | brucegua/moocos | 575c161cfa35e220f10d042e2e5ca18773691695 | [
"Apache-2.0"
] | 1 | 2020-01-20T21:26:46.000Z | 2020-01-20T21:26:46.000Z | tools/scitools/conf/understand/ada/ada12/a-tiflau.ads | brucegua/moocos | 575c161cfa35e220f10d042e2e5ca18773691695 | [
"Apache-2.0"
] | null | null | null | tools/scitools/conf/understand/ada/ada12/a-tiflau.ads | brucegua/moocos | 575c161cfa35e220f10d042e2e5ca18773691695 | [
"Apache-2.0"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . T E X T _ I O . F L O A T _ A U X --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2009, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- 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 the routines for Ada.Text_IO.Float_IO that are
-- shared among separate instantiations of this package. The routines in
-- this package are identical semantically to those in Float_IO itself,
-- except that generic parameter Num has been replaced by Long_Long_Float,
-- and the default parameters have been removed because they are supplied
-- explicitly by the calls from within the generic template. This package
-- is also used by Ada.Text_IO.Fixed_IO, and Ada.Text_IO.Decimal_IO.
private package Ada.Text_IO.Float_Aux is
procedure Load_Real
(File : File_Type;
Buf : out String;
Ptr : in out Natural);
-- This is an auxiliary routine that is used to load a possibly signed
-- real literal value from the input file into Buf, starting at Ptr + 1.
procedure Get
(File : File_Type;
Item : out Long_Long_Float;
Width : Field);
procedure Put
(File : File_Type;
Item : Long_Long_Float;
Fore : Field;
Aft : Field;
Exp : Field);
procedure Gets
(From : String;
Item : out Long_Long_Float;
Last : out Positive);
procedure Puts
(To : out String;
Item : Long_Long_Float;
Aft : Field;
Exp : Field);
end Ada.Text_IO.Float_Aux;
| 50.164384 | 78 | 0.431458 |
3193e0de0b3b78e4f551f71fa8c2eb17ca6e9fcf | 14,558 | ads | Ada | awa/samples/src/model/atlas-reviews-models.ads | Letractively/ada-awa | 3c82a4d29ed6c1209a2ac7d5fe123c142f3cffbe | [
"Apache-2.0"
] | null | null | null | awa/samples/src/model/atlas-reviews-models.ads | Letractively/ada-awa | 3c82a4d29ed6c1209a2ac7d5fe123c142f3cffbe | [
"Apache-2.0"
] | null | null | null | awa/samples/src/model/atlas-reviews-models.ads | Letractively/ada-awa | 3c82a4d29ed6c1209a2ac7d5fe123c142f3cffbe | [
"Apache-2.0"
] | null | null | null | -----------------------------------------------------------------------
-- Atlas.Reviews.Models -- Atlas.Reviews.Models
-----------------------------------------------------------------------
-- File generated by ada-gen DO NOT MODIFY
-- Template used: templates/model/package-spec.xhtml
-- Ada Generator: https://ada-gen.googlecode.com/svn/trunk Revision 1095
-----------------------------------------------------------------------
-- Copyright (C) 2014 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
pragma Warnings (Off, "unit * is not referenced");
with ADO.Sessions;
with ADO.Objects;
with ADO.Statements;
with ADO.SQL;
with ADO.Schemas;
with ADO.Queries;
with ADO.Queries.Loaders;
with Ada.Calendar;
with Ada.Containers.Vectors;
with Ada.Strings.Unbounded;
with Util.Beans.Objects;
with Util.Beans.Basic.Lists;
with AWA.Users.Models;
with Util.Beans.Methods;
pragma Warnings (On, "unit * is not referenced");
package Atlas.Reviews.Models is
type Review_Ref is new ADO.Objects.Object_Ref with null record;
-- --------------------
-- the table that contains the reviews made by users.
-- --------------------
-- Create an object key for Review.
function Review_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key;
-- Create an object key for Review from a string.
-- Raises Constraint_Error if the string cannot be converted into the object key.
function Review_Key (Id : in String) return ADO.Objects.Object_Key;
Null_Review : constant Review_Ref;
function "=" (Left, Right : Review_Ref'Class) return Boolean;
-- Set the review identifier
procedure Set_Id (Object : in out Review_Ref;
Value : in ADO.Identifier);
-- Get the review identifier
function Get_Id (Object : in Review_Ref)
return ADO.Identifier;
--
function Get_Version (Object : in Review_Ref)
return Integer;
-- Set the review title.
procedure Set_Title (Object : in out Review_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Title (Object : in out Review_Ref;
Value : in String);
-- Get the review title.
function Get_Title (Object : in Review_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Title (Object : in Review_Ref)
return String;
-- Set the review description
procedure Set_Text (Object : in out Review_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Text (Object : in out Review_Ref;
Value : in String);
-- Get the review description
function Get_Text (Object : in Review_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Text (Object : in Review_Ref)
return String;
-- Set the review creation date.
procedure Set_Create_Date (Object : in out Review_Ref;
Value : in Ada.Calendar.Time);
-- Get the review creation date.
function Get_Create_Date (Object : in Review_Ref)
return Ada.Calendar.Time;
-- Set whether comments are allowed.
procedure Set_Allow_Comments (Object : in out Review_Ref;
Value : in Integer);
-- Get whether comments are allowed.
function Get_Allow_Comments (Object : in Review_Ref)
return Integer;
-- Set the site, article or application being reviewed.
procedure Set_Site (Object : in out Review_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Site (Object : in out Review_Ref;
Value : in String);
-- Get the site, article or application being reviewed.
function Get_Site (Object : in Review_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Site (Object : in Review_Ref)
return String;
--
procedure Set_Reviewer (Object : in out Review_Ref;
Value : in AWA.Users.Models.User_Ref'Class);
--
function Get_Reviewer (Object : in Review_Ref)
return AWA.Users.Models.User_Ref'Class;
-- Load the entity identified by 'Id'.
-- Raises the NOT_FOUND exception if it does not exist.
procedure Load (Object : in out Review_Ref;
Session : in out ADO.Sessions.Session'Class;
Id : in ADO.Identifier);
-- Load the entity identified by 'Id'.
-- Returns True in <b>Found</b> if the object was found and False if it does not exist.
procedure Load (Object : in out Review_Ref;
Session : in out ADO.Sessions.Session'Class;
Id : in ADO.Identifier;
Found : out Boolean);
-- Find and load the entity.
overriding
procedure Find (Object : in out Review_Ref;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class;
Found : out Boolean);
-- Save the entity. If the entity does not have an identifier, an identifier is allocated
-- and it is inserted in the table. Otherwise, only data fields which have been changed
-- are updated.
overriding
procedure Save (Object : in out Review_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
-- Delete the entity.
overriding
procedure Delete (Object : in out Review_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
function Get_Value (From : in Review_Ref;
Name : in String) return Util.Beans.Objects.Object;
-- Table definition
REVIEW_TABLE : constant ADO.Schemas.Class_Mapping_Access;
-- Internal method to allocate the Object_Record instance
overriding
procedure Allocate (Object : in out Review_Ref);
-- Copy of the object.
procedure Copy (Object : in Review_Ref;
Into : in out Review_Ref);
package Review_Vectors is
new Ada.Containers.Vectors (Index_Type => Natural,
Element_Type => Review_Ref,
"=" => "=");
subtype Review_Vector is Review_Vectors.Vector;
procedure List (Object : in out Review_Vector;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class);
-- --------------------
-- The list of reviews.
-- --------------------
type List_Info is new Util.Beans.Basic.Readonly_Bean with record
-- the review identifier.
Id : ADO.Identifier;
-- the review title.
Title : Ada.Strings.Unbounded.Unbounded_String;
-- the review site.
Site : Ada.Strings.Unbounded.Unbounded_String;
-- the review date.
Date : Ada.Calendar.Time;
-- the whether comments are allowed.
Allow_Comments : Boolean;
-- the reviewer identifier.
Reviewer_Id : ADO.Identifier;
-- the reviewer name.
Reviewer_Name : Ada.Strings.Unbounded.Unbounded_String;
-- the reviewer email address.
Reviewer_Email : Ada.Strings.Unbounded.Unbounded_String;
-- the review text.
Text : Ada.Strings.Unbounded.Unbounded_String;
end record;
-- Get the bean attribute identified by the given name.
overriding
function Get_Value (From : in List_Info;
Name : in String) return Util.Beans.Objects.Object;
package List_Info_Beans is
new Util.Beans.Basic.Lists (Element_Type => List_Info);
package List_Info_Vectors renames List_Info_Beans.Vectors;
subtype List_Info_List_Bean is List_Info_Beans.List_Bean;
type List_Info_List_Bean_Access is access all List_Info_List_Bean;
-- Run the query controlled by <b>Context</b> and append the list in <b>Object</b>.
procedure List (Object : in out List_Info_List_Bean'Class;
Session : in out ADO.Sessions.Session'Class;
Context : in out ADO.Queries.Context'Class);
subtype List_Info_Vector is List_Info_Vectors.Vector;
-- Run the query controlled by <b>Context</b> and append the list in <b>Object</b>.
procedure List (Object : in out List_Info_Vector;
Session : in out ADO.Sessions.Session'Class;
Context : in out ADO.Queries.Context'Class);
Query_List : constant ADO.Queries.Query_Definition_Access;
-- --------------------
-- create or update the review.
-- --------------------
type Review_Bean is abstract new Atlas.Reviews.Models.Review_Ref
and Util.Beans.Basic.Bean and Util.Beans.Methods.Method_Bean with null record;
-- This bean provides some methods that can be used in a Method_Expression.
overriding
function Get_Method_Bindings (From : in Review_Bean)
return Util.Beans.Methods.Method_Binding_Array_Access;
-- Set the value identified by the name.
overriding
procedure Set_Value (Item : in out Review_Bean;
Name : in String;
Value : in Util.Beans.Objects.Object);
procedure Save (Bean : in out Review_Bean;
Outcome : in out Ada.Strings.Unbounded.Unbounded_String) is abstract;
procedure Delete (Bean : in out Review_Bean;
Outcome : in out Ada.Strings.Unbounded.Unbounded_String) is abstract;
procedure Load (Bean : in out Review_Bean;
Outcome : in out Ada.Strings.Unbounded.Unbounded_String) is abstract;
type Review_List_Bean is abstract
new Util.Beans.Basic.Bean and Util.Beans.Methods.Method_Bean with record
Page : Integer;
Count : Integer;
Page_Size : Integer;
end record;
-- This bean provides some methods that can be used in a Method_Expression.
overriding
function Get_Method_Bindings (From : in Review_List_Bean)
return Util.Beans.Methods.Method_Binding_Array_Access;
-- Get the value identified by the name.
overriding
function Get_Value (From : in Review_List_Bean;
Name : in String) return Util.Beans.Objects.Object;
-- Set the value identified by the name.
overriding
procedure Set_Value (Item : in out Review_List_Bean;
Name : in String;
Value : in Util.Beans.Objects.Object);
procedure Load (Bean : in out Review_List_Bean;
Outcome : in out Ada.Strings.Unbounded.Unbounded_String) is abstract;
private
REVIEW_NAME : aliased constant String := "atlas_review";
COL_0_1_NAME : aliased constant String := "id";
COL_1_1_NAME : aliased constant String := "version";
COL_2_1_NAME : aliased constant String := "title";
COL_3_1_NAME : aliased constant String := "text";
COL_4_1_NAME : aliased constant String := "create_date";
COL_5_1_NAME : aliased constant String := "allow_comments";
COL_6_1_NAME : aliased constant String := "site";
COL_7_1_NAME : aliased constant String := "reviewer_id";
REVIEW_DEF : aliased constant ADO.Schemas.Class_Mapping :=
(Count => 8,
Table => REVIEW_NAME'Access,
Members => (
1 => COL_0_1_NAME'Access,
2 => COL_1_1_NAME'Access,
3 => COL_2_1_NAME'Access,
4 => COL_3_1_NAME'Access,
5 => COL_4_1_NAME'Access,
6 => COL_5_1_NAME'Access,
7 => COL_6_1_NAME'Access,
8 => COL_7_1_NAME'Access
)
);
REVIEW_TABLE : constant ADO.Schemas.Class_Mapping_Access
:= REVIEW_DEF'Access;
Null_Review : constant Review_Ref
:= Review_Ref'(ADO.Objects.Object_Ref with others => <>);
type Review_Impl is
new ADO.Objects.Object_Record (Key_Type => ADO.Objects.KEY_INTEGER,
Of_Class => REVIEW_DEF'Access)
with record
Version : Integer;
Title : Ada.Strings.Unbounded.Unbounded_String;
Text : Ada.Strings.Unbounded.Unbounded_String;
Create_Date : Ada.Calendar.Time;
Allow_Comments : Integer;
Site : Ada.Strings.Unbounded.Unbounded_String;
Reviewer : AWA.Users.Models.User_Ref;
end record;
type Review_Access is access all Review_Impl;
overriding
procedure Destroy (Object : access Review_Impl);
overriding
procedure Find (Object : in out Review_Impl;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class;
Found : out Boolean);
overriding
procedure Load (Object : in out Review_Impl;
Session : in out ADO.Sessions.Session'Class);
procedure Load (Object : in out Review_Impl;
Stmt : in out ADO.Statements.Query_Statement'Class;
Session : in out ADO.Sessions.Session'Class);
overriding
procedure Save (Object : in out Review_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Create (Object : in out Review_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
procedure Delete (Object : in out Review_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Set_Field (Object : in out Review_Ref'Class;
Impl : out Review_Access);
package File_1 is
new ADO.Queries.Loaders.File (Path => "reviews-list.xml",
Sha1 => "E5A97F945EDDB18ECD918CEED09A8EDFBAF90552");
package Def_Listinfo_List is
new ADO.Queries.Loaders.Query (Name => "list",
File => File_1.File'Access);
Query_List : constant ADO.Queries.Query_Definition_Access
:= Def_Listinfo_List.Query'Access;
end Atlas.Reviews.Models;
| 38.010444 | 94 | 0.627078 |
2f774abb876f5b3093ca15ecac5b2c612f77bcbe | 6,345 | ads | Ada | tools/scitools/conf/understand/ada/ada05/a-comlin.ads | brucegua/moocos | 575c161cfa35e220f10d042e2e5ca18773691695 | [
"Apache-2.0"
] | 1 | 2020-01-20T21:26:46.000Z | 2020-01-20T21:26:46.000Z | tools/scitools/conf/understand/ada/ada05/a-comlin.ads | brucegua/moocos | 575c161cfa35e220f10d042e2e5ca18773691695 | [
"Apache-2.0"
] | null | null | null | tools/scitools/conf/understand/ada/ada05/a-comlin.ads | brucegua/moocos | 575c161cfa35e220f10d042e2e5ca18773691695 | [
"Apache-2.0"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . C O M M A N D _ L I N E --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2005, Free Software Foundation, Inc. --
-- --
-- This specification is derived from the Ada Reference Manual for use with --
-- GNAT. The copyright notice above, and the license provisions that follow --
-- apply solely to the contents of the part following the private keyword. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
--
--
--
--
--
--
--
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
package Ada.Command_Line is
pragma Preelaborate;
function Argument_Count return Natural;
-- If the external execution environment supports passing arguments to a
-- program, then Argument_Count returns the number of arguments passed to
-- the program invoking the function. Otherwise it return 0.
--
-- In GNAT: Corresponds to (argc - 1) in C.
function Argument (Number : Positive) return String;
-- If the external execution environment supports passing arguments to
-- a program, then Argument returns an implementation-defined value
-- corresponding to the argument at relative position Number. If Number
-- is outside the range 1 .. Argument_Count, then Constraint_Error is
-- propagated.
--
-- in GNAT: Corresponds to argv [n] (for n > 0) in C.
function Command_Name return String;
-- If the external execution environment supports passing arguments to
-- a program, then Command_Name returns an implementation-defined value
-- corresponding to the name of the command invoking the program.
-- Otherwise Command_Name returns the null string.
--
-- in GNAT: Corresponds to argv [0] in C.
type Exit_Status is new Integer;
Success : constant Exit_Status;
Failure : constant Exit_Status;
procedure Set_Exit_Status (Code : Exit_Status);
------------------------------------
-- Note on Interface Requirements --
------------------------------------
-- If the main program is in Ada, this package works as specified without
-- any other work than the normal steps of WITH'ing the package and then
-- calling the desired routines.
-- If the main program is not in Ada, then the information must be made
-- available for this package to work correctly. In particular, it is
-- required that the global variable "gnat_argc" contain the number of
-- arguments, and that the global variable "gnat_argv" points to an
-- array of null-terminated strings, the first entry being the command
-- name, and the remaining entries being the command arguments.
-- These correspond to the normal argc/argv variables passed to a C
-- main program, and the following is an example of a complete C main
-- program that stores the required information:
-- main(int argc, char **argv, char **envp)
-- {
-- extern int gnat_argc;
-- extern char **gnat_argv;
-- extern char **gnat_envp;
-- gnat_argc = argc;
-- gnat_argv = argv;
-- gnat_envp = envp;
-- adainit();
-- adamain();
-- adafinal();
-- }
-- The assignment statements ensure that the necessary information is
-- available for finding the command name and command line arguments.
private
Success : constant Exit_Status := 0;
Failure : constant Exit_Status := 1;
-- The following locations support the operation of the package
-- Ada.Command_Line.Remove, whih provides facilities for logically
-- removing arguments from the command line. If one of the remove
-- procedures is called in this unit, then Remove_Args/Remove_Count
-- are set to indicate which arguments are removed. If no such calls
-- have been made, then Remove_Args is null.
Remove_Count : Natural;
-- Number of arguments reflecting removals. Not defined unless
-- Remove_Args is non-null.
type Arg_Nums is array (Positive range <>) of Positive;
type Arg_Nums_Ptr is access Arg_Nums;
-- An array that maps logical argument numbers (reflecting removal)
-- to physical argument numbers (e.g. if the first argument has been
-- removed, but not the second, then Arg_Nums (1) will be set to 2.
Remove_Args : Arg_Nums_Ptr := null;
-- Left set to null if no remove calls have been made, otherwise set
-- to point to an appropriate mapping array. Only the first Remove_Count
-- elements are relevant.
pragma Import (C, Set_Exit_Status, "__gnat_set_exit_status");
end Ada.Command_Line;
| 46.313869 | 78 | 0.577305 |
415c95b76cd0d484d11d739717d1c708254843c2 | 8,055 | adb | Ada | source/streams/a-direio.adb | ytomino/drake | 4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2 | [
"MIT"
] | 33 | 2015-04-04T09:19:36.000Z | 2021-11-10T05:33:34.000Z | source/streams/a-direio.adb | ytomino/drake | 4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2 | [
"MIT"
] | 8 | 2017-11-14T13:05:07.000Z | 2018-08-09T15:28:49.000Z | source/streams/a-direio.adb | ytomino/drake | 4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2 | [
"MIT"
] | 9 | 2015-02-03T17:09:53.000Z | 2021-11-12T01:16:05.000Z | with Ada.Exception_Identification.From_Here;
with Ada.Streams.Naked_Stream_IO;
with Ada.Streams.Stream_IO.Naked;
package body Ada.Direct_IO is
use Exception_Identification.From_Here;
use type Streams.Stream_Element_Offset;
procedure Create (
File : in out File_Type;
Mode : File_Mode := Inout_File;
Name : String := "";
Form : String := "")
is
NC_File : Streams.Naked_Stream_IO.Non_Controlled_File_Type
renames Streams.Stream_IO.Naked.Non_Controlled (
Streams.Stream_IO.File_Type (File)).all;
begin
Streams.Naked_Stream_IO.Create (
NC_File,
IO_Modes.Inout_File_Mode (Mode),
Name => Name,
Form => Streams.Naked_Stream_IO.Pack (Form));
end Create;
procedure Open (
File : in out File_Type;
Mode : File_Mode;
Name : String;
Form : String := "")
is
NC_File : Streams.Naked_Stream_IO.Non_Controlled_File_Type
renames Streams.Stream_IO.Naked.Non_Controlled (
Streams.Stream_IO.File_Type (File)).all;
begin
Streams.Naked_Stream_IO.Open (
NC_File,
IO_Modes.Inout_File_Mode (Mode),
Name => Name,
Form => Streams.Naked_Stream_IO.Pack (Form));
end Open;
procedure Close (File : in out File_Type) is
begin
Streams.Stream_IO.Close (Streams.Stream_IO.File_Type (File));
end Close;
procedure Delete (File : in out File_Type) is
begin
Streams.Stream_IO.Delete (Streams.Stream_IO.File_Type (File));
end Delete;
procedure Reset (File : in out File_Type; Mode : File_Mode) is
NC_File : Streams.Naked_Stream_IO.Non_Controlled_File_Type
renames Streams.Stream_IO.Naked.Non_Controlled (
Streams.Stream_IO.File_Type (File)).all;
begin
Streams.Naked_Stream_IO.Reset (NC_File, IO_Modes.Inout_File_Mode (Mode));
end Reset;
procedure Reset (File : in out File_Type) is
begin
Reset (File, File_Mode'(Mode (File)));
end Reset;
function Mode (
File : File_Type)
return File_Mode
is
pragma Check (Dynamic_Predicate,
Check => Is_Open (File) or else raise Status_Error);
NC_File : Streams.Naked_Stream_IO.Non_Controlled_File_Type
renames Streams.Stream_IO.Naked.Non_Controlled (
Streams.Stream_IO.File_Type (File)).all;
begin
return File_Mode (
IO_Modes.Inout_File_Mode'(Streams.Naked_Stream_IO.Mode (NC_File)));
end Mode;
function Name (
File : File_Type)
return String is
begin
return Streams.Stream_IO.Name (
Streams.Stream_IO.File_Type (File)); -- checking the predicate
end Name;
function Form (
File : File_Type)
return String is
begin
return Streams.Stream_IO.Form (
Streams.Stream_IO.File_Type (File)); -- checking the predicate
end Form;
function Is_Open (File : File_Type) return Boolean is
begin
return Streams.Stream_IO.Is_Open (Streams.Stream_IO.File_Type (File));
end Is_Open;
procedure Flush (
File : File_Type) is
begin
Streams.Stream_IO.Flush (
Streams.Stream_IO.File_Type (File)); -- checking the predicate
end Flush;
procedure Read (
File : File_Type;
Item : out Element_Type;
From : Positive_Count)
is
pragma Check (Dynamic_Predicate,
Check => Is_Open (File) or else raise Status_Error);
pragma Check (Dynamic_Predicate,
Check => Mode (File) /= Out_File or else raise Mode_Error);
begin
Set_Index (File, From);
Read (File, Item);
end Read;
procedure Read (
File : File_Type;
Item : out Element_Type)
is
pragma Warnings (Off,
"constrained for private type is an obsolescent feature (RM J.4)");
Constrained : constant Boolean := Element_Type'Constrained;
-- 'Definite / 'Has_Discriminants attribute are disallowed here
pragma Warnings (On,
"constrained for private type is an obsolescent feature (RM J.4)");
begin
if not Constrained then
-- indefinite (or unconstrained) types
declare
Buffer_Item : Element_Type;
Buffer_Item_As_SEA : Streams.Stream_Element_Array (
1 ..
Element_Type'Max_Size_In_Storage_Elements);
for Buffer_Item_As_SEA'Address use Buffer_Item'Address;
Last : Streams.Stream_Element_Offset;
begin
Streams.Stream_IO.Read (
Streams.Stream_IO.File_Type (File), -- checking the predicate
Buffer_Item_As_SEA,
Last);
if Last < Buffer_Item_As_SEA'Last then
Raise_Exception (End_Error'Identity);
end if;
Item := Buffer_Item;
end;
else
declare
Item_As_SEA : Streams.Stream_Element_Array (
1 ..
Element_Type'Max_Size_In_Storage_Elements);
for Item_As_SEA'Address use Item'Address;
Last : Streams.Stream_Element_Offset;
begin
Streams.Stream_IO.Read (
Streams.Stream_IO.File_Type (File), -- checking the predicate
Item_As_SEA,
Last);
if Last < Item_As_SEA'Last then
Raise_Exception (End_Error'Identity);
end if;
end;
end if;
end Read;
procedure Write (
File : File_Type;
Item : Element_Type;
To : Positive_Count)
is
pragma Check (Dynamic_Predicate,
Check => Is_Open (File) or else raise Status_Error);
pragma Check (Dynamic_Predicate,
Check => Mode (File) /= In_File or else raise Mode_Error);
begin
Set_Index (File, To);
Write (File, Item);
end Write;
procedure Write (
File : File_Type;
Item : Element_Type)
is
Item_As_SEA : Streams.Stream_Element_Array (
1 ..
Element_Type'Max_Size_In_Storage_Elements);
for Item_As_SEA'Address use Item'Address;
begin
Streams.Stream_IO.Write (
Streams.Stream_IO.File_Type (File), -- checking the predicate
Item_As_SEA);
end Write;
procedure Set_Index (
File : File_Type;
To : Positive_Count)
is
Raw_Index : constant Streams.Stream_IO.Positive_Count :=
Streams.Stream_IO.Positive_Count (
(To - 1) * Element_Type'Max_Size_In_Storage_Elements + 1);
begin
Streams.Stream_IO.Set_Index (
Streams.Stream_IO.File_Type (File), -- checking the predicate
Raw_Index);
end Set_Index;
function Index (
File : File_Type)
return Positive_Count
is
Raw_Index : constant Positive_Count :=
Positive_Count (
Streams.Stream_IO.Index (
Streams.Stream_IO.File_Type (File))); -- checking the predicate
Index_From_0 : constant Count := Raw_Index - 1;
begin
if Index_From_0 rem Element_Type'Max_Size_In_Storage_Elements /= 0 then
Raise_Exception (Use_Error'Identity);
end if;
return Index_From_0 / Element_Type'Max_Size_In_Storage_Elements + 1;
end Index;
function Size (
File : File_Type)
return Count
is
Raw_Size : constant Count :=
Count (
Streams.Stream_IO.Size (
Streams.Stream_IO.File_Type (File))); -- checking the predicate
begin
if Raw_Size rem Element_Type'Max_Size_In_Storage_Elements /= 0 then
Raise_Exception (Use_Error'Identity);
end if;
return Raw_Size / Element_Type'Max_Size_In_Storage_Elements;
end Size;
function End_Of_File (
File : File_Type)
return Boolean
is
pragma Check (Dynamic_Predicate,
Check => Is_Open (File) or else raise Status_Error);
pragma Check (Dynamic_Predicate,
Check => Mode (File) /= Out_File or else raise Mode_Error);
begin
return Streams.Stream_IO.End_Of_File (
Streams.Stream_IO.File_Type (File));
end End_Of_File;
end Ada.Direct_IO;
| 31.464844 | 79 | 0.636499 |
573dedf402319cd48cc861714d63c8a5435cee75 | 4,260 | adb | Ada | src/smk-runs-must_be_run.adb | LionelDraghi/smk | 2ba79048e1d2579bbbdd1004a78c5cff1796261e | [
"Apache-2.0"
] | 10 | 2018-11-27T22:07:50.000Z | 2020-04-12T21:00:03.000Z | src/smk-runs-must_be_run.adb | LionelDraghi/smk | 2ba79048e1d2579bbbdd1004a78c5cff1796261e | [
"Apache-2.0"
] | 18 | 2018-11-27T22:11:06.000Z | 2019-01-25T20:52:49.000Z | src/smk-runs-must_be_run.adb | LionelDraghi/smk | 2ba79048e1d2579bbbdd1004a78c5cff1796261e | [
"Apache-2.0"
] | 1 | 2018-12-05T23:05:05.000Z | 2018-12-05T23:05:05.000Z | -- -----------------------------------------------------------------------------
-- smk, the smart make (http://lionel.draghi.free.fr/smk/)
-- © 2018, 2019 Lionel Draghi <[email protected]>
-- SPDX-License-Identifier: APSL-2.0
-- -----------------------------------------------------------------------------
-- 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 File_Utilities;
with Smk.IO;
with Smk.Settings; use Smk.Settings;
separate (Smk.Runs)
-- -----------------------------------------------------------------------------
function Must_Be_Run (Command : in Command_Lines;
Previous_Run : in out Runfiles.Run_Lists.Map)
return Boolean
is
-- --------------------------------------------------------------------------
procedure Put_Explanation (Text : in String) is
begin
if Settings.Explain then
IO.Put_Line ("run """ & (+Command) & """ " & Text);
end if;
end Put_Explanation;
use Runfiles;
use Run_Lists;
C : Run_Lists.Cursor;
Updated_List : Condition_Lists.List;
-- --------------------------------------------------------------------------
function Assert (C : Condition) return Boolean is
Role : constant String := Role_Image (Files.Role (C.File)) & " ";
Because : constant String := "because "
& Role
& (if Is_Dir (C.File) then "dir " else "file ")
& Shorten (C.Name);
Status : File_Status renames Files.Status (C.File);
File_Exists : constant Boolean := Status /= Missing;
Is_The_Target : constant Boolean := Has_Target (C.Name,
Settings.Target_Name);
-- Is_The_Target is True if C.Name is the target explicitly given
-- on command line.
begin
if File_Exists and C.Trigger = File_Update and Status = Updated then
-- --------------------------------------------------------------------
Put_Explanation (Because
& " has been updated (" & IO.Image (Time_Tag (C.File)) & ")");
return False;
elsif not File_Exists and C.Trigger = File_Absence
and (Is_Target (C.File)
and (Settings.Build_Missing_Targets or Is_The_Target))
-- if target and :
-- - -mt option used, or
-- - this target is explicitly given on command line
then
-- -----------------------------------------------------------------
Put_Explanation (Because & " is missing");
return False;
elsif File_Exists and C.Trigger = File_Presence then
-- --------------------------------------------------------------------
Put_Explanation (Because & " is present");
return False;
else
-- --------------------------------------------------------------------
-- assertions are OK
return True;
end if;
end Assert;
begin
-- --------------------------------------------------------------------------
if Always_Make then
-- don't even ask, run it!
Put_Explanation ("because -a option is set");
return True;
end if;
C := Previous_Run.Find (Command);
if C = No_Element then
-- never run command
Put_Explanation ("because it was not run before");
return True;
end if;
Update_Files_Status (Previous_Run (C).Assertions, Updated_List);
if Debug_Mode then
Put_Updated (Updated_List);
end if;
--
for P of Element (C).Assertions loop
if not Assert (P) then return True; end if;
end loop;
return False;
end Must_Be_Run;
| 35.798319 | 80 | 0.489202 |
1de1f8442cfda67acb83b1eec79a4a9393d3c685 | 7,988 | ads | Ada | bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/a-crbtgk.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/a-crbtgk.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/a-crbtgk.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT LIBRARY COMPONENTS --
-- --
-- ADA.CONTAINERS.RED_BLACK_TREES.GENERIC_KEYS --
-- --
-- S p e c --
-- --
-- Copyright (C) 2004-2021, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- This unit was originally developed by Matthew J Heaney. --
------------------------------------------------------------------------------
-- Tree_Type is used to implement ordered containers. This package declares
-- the tree operations that depend on keys.
with Ada.Containers.Red_Black_Trees.Generic_Operations;
generic
with package Tree_Operations is new Generic_Operations (<>);
use Tree_Operations.Tree_Types, Tree_Operations.Tree_Types.Implementation;
type Key_Type (<>) is limited private;
with function Is_Less_Key_Node
(L : Key_Type;
R : Node_Access) return Boolean;
with function Is_Greater_Key_Node
(L : Key_Type;
R : Node_Access) return Boolean;
package Ada.Containers.Red_Black_Trees.Generic_Keys is
pragma Pure;
generic
with function New_Node return Node_Access;
procedure Generic_Insert_Post
(Tree : in out Tree_Type;
Y : Node_Access;
Before : Boolean;
Z : out Node_Access);
-- Completes an insertion after the insertion position has been
-- determined. On output Z contains a pointer to the newly inserted
-- node, allocated using New_Node. If Tree is busy then
-- Program_Error is raised. If Y is null, then Tree must be empty.
-- Otherwise Y denotes the insertion position, and Before specifies
-- whether the new node is Y's left (True) or right (False) child.
generic
with procedure Insert_Post
(T : in out Tree_Type;
Y : Node_Access;
B : Boolean;
Z : out Node_Access);
procedure Generic_Conditional_Insert
(Tree : in out Tree_Type;
Key : Key_Type;
Node : out Node_Access;
Inserted : out Boolean);
-- Inserts a new node in Tree, but only if the tree does not already
-- contain Key. Generic_Conditional_Insert first searches for a key
-- equivalent to Key in Tree. If an equivalent key is found, then on
-- output Node designates the node with that key and Inserted is
-- False; there is no allocation and Tree is not modified. Otherwise
-- Node designates a new node allocated using Insert_Post, and
-- Inserted is True.
generic
with procedure Insert_Post
(T : in out Tree_Type;
Y : Node_Access;
B : Boolean;
Z : out Node_Access);
procedure Generic_Unconditional_Insert
(Tree : in out Tree_Type;
Key : Key_Type;
Node : out Node_Access);
-- Inserts a new node in Tree. On output Node designates the new
-- node, which is allocated using Insert_Post. The node is inserted
-- immediately after already-existing equivalent keys.
generic
with procedure Insert_Post
(T : in out Tree_Type;
Y : Node_Access;
B : Boolean;
Z : out Node_Access);
with procedure Unconditional_Insert_Sans_Hint
(Tree : in out Tree_Type;
Key : Key_Type;
Node : out Node_Access);
procedure Generic_Unconditional_Insert_With_Hint
(Tree : in out Tree_Type;
Hint : Node_Access;
Key : Key_Type;
Node : out Node_Access);
-- Inserts a new node in Tree near position Hint, to avoid having to
-- search from the root for the insertion position. If Hint is null
-- then Generic_Unconditional_Insert_With_Hint attempts to insert
-- the new node after Tree.Last. If Hint is non-null then if Key is
-- less than Hint, it attempts to insert the new node immediately
-- prior to Hint. Otherwise it attempts to insert the node
-- immediately following Hint. We say "attempts" above to emphasize
-- that insertions always preserve invariants with respect to key
-- order, even when there's a hint. So if Key can't be inserted
-- immediately near Hint, then the new node is inserted in the
-- normal way, by searching for the correct position starting from
-- the root.
generic
with procedure Insert_Post
(T : in out Tree_Type;
Y : Node_Access;
B : Boolean;
Z : out Node_Access);
with procedure Conditional_Insert_Sans_Hint
(Tree : in out Tree_Type;
Key : Key_Type;
Node : out Node_Access;
Inserted : out Boolean);
procedure Generic_Conditional_Insert_With_Hint
(Tree : in out Tree_Type;
Position : Node_Access; -- the hint
Key : Key_Type;
Node : out Node_Access;
Inserted : out Boolean);
-- Inserts a new node in Tree if the tree does not already contain
-- Key, using Position as a hint about where to insert the new node.
-- See Generic_Unconditional_Insert_With_Hint for more details about
-- hint semantics.
function Find
(Tree : Tree_Type;
Key : Key_Type) return Node_Access;
-- Searches Tree for the smallest node equivalent to Key
function Ceiling
(Tree : Tree_Type;
Key : Key_Type) return Node_Access;
-- Searches Tree for the smallest node equal to or greater than Key
function Floor
(Tree : Tree_Type;
Key : Key_Type) return Node_Access;
-- Searches Tree for the largest node less than or equal to Key
function Upper_Bound
(Tree : Tree_Type;
Key : Key_Type) return Node_Access;
-- Searches Tree for the smallest node greater than Key
generic
with procedure Process (Node : Node_Access);
procedure Generic_Iteration
(Tree : Tree_Type;
Key : Key_Type);
-- Calls Process for each node in Tree equivalent to Key, in order
-- from earliest in range to latest.
generic
with procedure Process (Node : Node_Access);
procedure Generic_Reverse_Iteration
(Tree : Tree_Type;
Key : Key_Type);
-- Calls Process for each node in Tree equivalent to Key, but in
-- order from largest in range to earliest.
end Ada.Containers.Red_Black_Trees.Generic_Keys;
| 41.388601 | 78 | 0.567977 |
2f617fc3ab680f9af61a323b3f2f8f6e37a47a2d | 4,371 | ads | Ada | resources/scripts/api/robtex.ads | MoisesTapia/Amass | 30f786aae86e44751f3ebbe2cebb9b25638c1934 | [
"Apache-2.0"
] | 2 | 2022-02-12T20:24:32.000Z | 2022-02-27T16:14:56.000Z | resources/scripts/api/robtex.ads | Dheerajmadhukar/Amass | 30f786aae86e44751f3ebbe2cebb9b25638c1934 | [
"Apache-2.0"
] | 1 | 2021-02-15T09:01:23.000Z | 2021-02-15T09:01:23.000Z | resources/scripts/api/robtex.ads | Dheerajmadhukar/Amass | 30f786aae86e44751f3ebbe2cebb9b25638c1934 | [
"Apache-2.0"
] | null | null | null | -- Copyright 2021 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 = "Robtex"
type = "api"
function start()
setratelimit(1)
end
function vertical(ctx, domain)
local cfg = datasrc_config()
if (cfg == nil) then
return
end
local url = "https://freeapi.robtex.com/pdns/forward/" .. domain
local resp, err = request(ctx, {
['url']=url,
headers={['Content-Type']="application/json"},
})
if (err ~= nil and err ~= "") then
return
end
local j = json.decode("{\"results\": [" .. resp .. "]}")
if (j == nil or #(j.results) == 0) then
return
end
for _, rr in pairs(j.results) do
if (rr.rrtype == "A") then
local d = ipinfo(ctx, rr.rrdata, cfg.ttl)
if (d == nil) then
return
end
extractnames(ctx, d)
elseif (rr.rrtype == "NS" or rr.rrtype == "MX") then
sendnames(ctx, rr.rrdata)
end
end
end
function asn(ctx, addr, asn)
local cfg = datasrc_config()
if (cfg == nil) then
return
end
local d
local prefix
if (asn == 0) then
if (addr == "") then
return
end
d = ipinfo(ctx, addr, cfg.ttl)
if (d == nil) then
return
end
asn = d.as
prefix = d.bgproute
end
local cidrs = netblocks(ctx, asn, cfg.ttl)
if (cidrs == nil or #cidrs == 0) then
return
end
if (prefix == "") then
prefix = cidrs[1]
parts = split(prefix, "/")
addr = parts[1]
d = ipinfo(ctx, addr, cfg.ttl)
if (d == nil) then
return
end
end
extractnames(ctx, d)
local desc = d.asname
if (desc == nil) then
desc = ""
end
if (d.whoisdesc ~= nil and string.len(desc) < string.len(d.whoisdesc)) then
desc = d.whoisdesc
end
if (d.asdesc ~= nil and string.len(d.asdesc) > 0) then
desc = desc .. " - " .. d.asdesc
elseif (d.routedesc ~= nil and string.len(d.routedesc) > 0) then
desc = desc .. " - " .. d.routedesc
end
newasn(ctx, {
['addr']=addr,
['asn']=asn,
['prefix']=prefix,
['desc']=desc,
['netblocks']=cidrs,
})
end
function ipinfo(ctx, addr, ttl)
local url = "https://freeapi.robtex.com/ipquery/" .. addr
local resp, err = request(ctx, {
['url']=url,
headers={['Content-Type']="application/json"},
})
if (err ~= nil and err ~= "") then
return nil
end
local j = json.decode(resp)
if (j == nil or j.status ~= "ok") then
return nil
end
return j
end
function extractnames(ctx, djson)
local sections = {"act", "acth", "pas", "pash"}
for _, s in pairs(sections) do
if (djson[s] ~= nil and #(djson[s]) > 0) then
for _, name in pairs(djson[s]) do
if inscope(ctx, name.o) then
newname(ctx, name.o)
end
end
end
end
end
function netblocks(ctx, asn, ttl)
local url = "https://freeapi.robtex.com/asquery/" .. tostring(asn)
local resp, err = request(ctx, {
['url']=url,
headers={['Content-Type']="application/json"},
})
if (err ~= nil and err ~= "") then
return nil
end
local j = json.decode(resp)
if (j == nil or j.status ~= "ok") then
return nil
end
local netblocks = {}
for _, net in pairs(j.nets) do
table.insert(netblocks, net.n)
end
if (#netblocks == 0) then
return nil
end
return netblocks
end
function sendnames(ctx, content)
local names = find(content, subdomainre)
if (names == nil) then
return
end
local found = {}
for i, v in pairs(names) do
if (found[v] == nil) then
newname(ctx, v)
found[v] = true
end
end
end
function split(str, delim)
local result = {}
local pattern = "[^%" .. delim .. "]+"
local matches = find(str, pattern)
if (matches == nil or #matches == 0) then
return result
end
for i, match in pairs(matches) do
table.insert(result, match)
end
return result
end
| 22.30102 | 97 | 0.522992 |
4172e99068c0477d48deebe4a2db59034fb59ac8 | 18,488 | adb | Ada | src/tk/tk-ttkentry.adb | thindil/tashy2 | 43fcbadb33c0062b2c8d6138a8238441dec5fd80 | [
"Apache-2.0"
] | 2 | 2020-12-09T07:27:07.000Z | 2021-10-19T13:31:54.000Z | src/tk/tk-ttkentry.adb | thindil/tashy2 | 43fcbadb33c0062b2c8d6138a8238441dec5fd80 | [
"Apache-2.0"
] | null | null | null | src/tk/tk-ttkentry.adb | thindil/tashy2 | 43fcbadb33c0062b2c8d6138a8238441dec5fd80 | [
"Apache-2.0"
] | null | null | null | -- Copyright (c) 2021 Bartek thindil Jasicki <[email protected]>
--
-- 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 Tcl.Lists; use Tcl.Lists;
with Ada.Characters.Handling; use Ada.Characters.Handling;
with Ada.Strings; use Ada.Strings;
with Ada.Strings.Fixed;
with Ada.Strings.Unbounded;
package body Tk.TtkEntry is
-- ****if* TtkEntry/TtkEntry.Widget_Command
-- FUNCTION
-- Used to get Natural result from the selected Tcl widget command
-- PARAMETERS
-- Widgt - Tk widget on which the command will be executed
-- Command_Name - Tk command which will be executed
-- Options - Option for the selected Tk command
-- RESULT
-- Natural type with the result of the Tk widget command
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
function Widget_Command is new Generic_Scalar_Execute_Widget_Command
(Result_Type => Natural);
-- ****
-- ****if* TtkEntry/TtkEntry.Options_To_String
-- FUNCTION
-- Convert Ada structure to Tcl command
-- PARAMETERS
-- Options - Ada Ttk_Entry_Options to convert
-- RESULT
-- String with Tcl command options
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
function Options_To_String(Options: Ttk_Entry_Options) return String is
-- ****
use Ada.Strings.Unbounded;
Options_String: Unbounded_String := Null_Unbounded_String;
begin
Option_Image
(Name => "class", Value => Options.Class,
Options_String => Options_String);
Option_Image
(Name => "cursor", Value => Options.Cursor,
Options_String => Options_String);
Option_Image
(Name => "exportselection", Value => Options.Export_Selection,
Options_String => Options_String);
Option_Image
(Name => "invalidcommand", Value => Options.Invalid_Command,
Options_String => Options_String);
Option_Image
(Name => "justify", Value => Options.Justify,
Options_String => Options_String);
Option_Image
(Name => "show", Value => Options.Show,
Options_String => Options_String);
if Options.State /= NONE then
Append
(Source => Options_String,
New_Item =>
" -state " &
To_Lower(Item => Entry_State_Type'Image(Options.State)));
end if;
Option_Image
(Name => "style", Value => Options.Style,
Options_String => Options_String);
Option_Image
(Name => "takefocus", Value => Options.Take_Focus,
Options_String => Options_String);
Option_Image
(Name => "textvariable", Value => Options.Text_Variable,
Options_String => Options_String);
if Options.Validation /= EMPTY then
Append
(Source => Options_String,
New_Item =>
" -validate " &
To_Lower(Item => Validate_Type'Image(Options.Validation)));
end if;
Option_Image
(Name => "validatecommand", Value => Options.Validate_Command,
Options_String => Options_String);
Option_Image
(Name => "width", Value => Options.Width,
Options_String => Options_String);
Option_Image
(Name => "xscrollcommand", Value => Options.X_Scroll_Command,
Options_String => Options_String);
return To_String(Source => Options_String);
end Options_To_String;
function Create
(Path_Name: Tk_Path_String; Options: Ttk_Entry_Options;
Interpreter: Tcl_Interpreter := Get_Interpreter) return Ttk_Entry is
begin
Tcl_Eval
(Tcl_Script =>
"ttk::entry " & Path_Name & " " &
Options_To_String(Options => Options),
Interpreter => Interpreter);
return Get_Widget(Path_Name => Path_Name, Interpreter => Interpreter);
end Create;
procedure Create
(Entry_Widget: out Ttk_Entry; Path_Name: Tk_Path_String;
Options: Ttk_Entry_Options;
Interpreter: Tcl_Interpreter := Get_Interpreter) is
begin
Entry_Widget :=
Create
(Path_Name => Path_Name, Options => Options,
Interpreter => Interpreter);
end Create;
function Get_Options(Entry_Widget: Ttk_Entry) return Ttk_Entry_Options is
begin
return Options: Ttk_Entry_Options := Default_Ttk_Entry_Options do
Options.Class := Option_Value(Widgt => Entry_Widget, Name => "class");
Options.Cursor :=
Option_Value(Widgt => Entry_Widget, Name => "cursor");
Options.Export_Selection :=
Option_Value(Widgt => Entry_Widget, Name => "exportselection");
Options.Invalid_Command :=
Option_Value(Widgt => Entry_Widget, Name => "invalidcommand");
Options.Justify :=
Option_Value(Widgt => Entry_Widget, Name => "justify");
Options.Show := Option_Value(Widgt => Entry_Widget, Name => "show");
Options.Style := Option_Value(Widgt => Entry_Widget, Name => "style");
Options.State :=
Entry_State_Type'Value
(Execute_Widget_Command
(Widgt => Entry_Widget, Command_Name => "cget",
Options => "-state")
.Result);
Options.Take_Focus :=
Option_Value(Widgt => Entry_Widget, Name => "takefocus");
Options.Text_Variable :=
Option_Value(Widgt => Entry_Widget, Name => "textvariable");
Options.Validation :=
Validate_Type'Value
(Execute_Widget_Command
(Widgt => Entry_Widget, Command_Name => "cget",
Options => "-validate")
.Result);
Options.Validate_Command :=
Option_Value(Widgt => Entry_Widget, Name => "validatecommand");
Options.Width := Option_Value(Widgt => Entry_Widget, Name => "width");
Options.X_Scroll_Command :=
Option_Value(Widgt => Entry_Widget, Name => "xscrollcommand");
end return;
end Get_Options;
procedure Configure(Entry_Widget: Ttk_Entry; Options: Ttk_Entry_Options) is
begin
Execute_Widget_Command
(Widgt => Entry_Widget, Command_Name => "configure",
Options => Options_To_String(Options => Options));
end Configure;
-- ****if* TtkEntry/TtkEntry.Index_To_String_(numerical)
-- FUNCTION
-- Convert numeric index in ttk::entry to String
-- PARAMETERS
-- Index - The index to convert to String
-- Is_Index - If True, the Index is numerical index of character to convert,
-- otherwise it is X coordinate in ttk::entry
-- RESULT
-- String with converted Index or, if it is X coordinate, with added "@"
-- sign before number
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
function Index_To_String(Index: Natural; Is_Index: Boolean) return String is
-- ****
use Ada.Strings.Fixed;
begin
if Is_Index then
return Trim(Source => Natural'Image(Index), Side => Left);
end if;
return "@" & Trim(Source => Natural'Image(Index), Side => Left);
end Index_To_String;
-- ****if* TtkEntry/TtkEntry.Index_To_String_(Entry_Index_Type)
-- FUNCTION
-- Convert Entry_Index_Type index in ttk::entry to String
-- PARAMETERS
-- Index - The index to convert to String
-- RESULT
-- String with converted Index
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
function Index_To_String(Index: Entry_Index_Type) return String is
-- ****
begin
case Index is
when LASTCHARACTER =>
return "end";
when INSERT =>
return "insert";
when SELECTIONFIRST =>
return "sel.first";
when SELECTIONLAST =>
return "sel.last";
when NONE =>
return "";
end case;
end Index_To_String;
function Get_Bounding_Box
(Entry_Widget: Ttk_Entry; Index: Natural; Is_Index: Boolean := True)
return Bbox_Data is
Interpreter: constant Tcl_Interpreter :=
Tk_Interp(Widgt => Entry_Widget);
Result_List: constant Array_List :=
Split_List
(List =>
Tcl_Eval
(Tcl_Script =>
Tk_Path_Name(Widgt => Entry_Widget) & " bbox " &
Index_To_String(Index => Index, Is_Index => Is_Index),
Interpreter => Interpreter)
.Result,
Interpreter => Interpreter);
begin
return Coords: Bbox_Data := Empty_Bbox_Data do
Coords.Start_X :=
Natural'Value(To_Ada_String(Source => Result_List(1)));
Coords.Start_Y :=
Natural'Value(To_Ada_String(Source => Result_List(2)));
Coords.Width :=
Natural'Value(To_Ada_String(Source => Result_List(3)));
Coords.Height :=
Natural'Value(To_Ada_String(Source => Result_List(4)));
end return;
end Get_Bounding_Box;
function Get_Bounding_Box
(Entry_Widget: Ttk_Entry; Index: Entry_Index_Type) return Bbox_Data is
Interpreter: constant Tcl_Interpreter :=
Tk_Interp(Widgt => Entry_Widget);
Result_List: constant Array_List :=
Split_List
(List =>
Tcl_Eval
(Tcl_Script =>
Tk_Path_Name(Widgt => Entry_Widget) & " bbox " &
Index_To_String(Index => Index),
Interpreter => Interpreter)
.Result,
Interpreter => Interpreter);
begin
return Coords: Bbox_Data := Empty_Bbox_Data do
Coords.Start_X :=
Natural'Value(To_Ada_String(Source => Result_List(1)));
Coords.Start_Y :=
Natural'Value(To_Ada_String(Source => Result_List(2)));
Coords.Width :=
Natural'Value(To_Ada_String(Source => Result_List(3)));
Coords.Height :=
Natural'Value(To_Ada_String(Source => Result_List(4)));
end return;
end Get_Bounding_Box;
procedure Delete
(Entry_Widget: Ttk_Entry; First: Natural; Last: Natural := 0;
Is_First_Index, Is_Last_Index: Boolean := True) is
begin
Execute_Widget_Command
(Widgt => Entry_Widget, Command_Name => "delete",
Options =>
Index_To_String(Index => First, Is_Index => Is_First_Index) &
(if Last > 0 then
" " & Index_To_String(Index => Last, Is_Index => Is_Last_Index)
else ""));
end Delete;
procedure Delete
(Entry_Widget: Ttk_Entry; First: Entry_Index_Type;
Last: Entry_Index_Type := NONE) is
begin
Execute_Widget_Command
(Widgt => Entry_Widget, Command_Name => "delete",
Options =>
Index_To_String(Index => First) &
(if Last = NONE then "" else " " & Index_To_String(Index => Last)));
end Delete;
procedure Delete
(Entry_Widget: Ttk_Entry; First: Natural; Last: Entry_Index_Type := NONE;
Is_First_Index: Boolean := True) is
begin
Execute_Widget_Command
(Widgt => Entry_Widget, Command_Name => "delete",
Options =>
Index_To_String(Index => First, Is_Index => Is_First_Index) &
(if Last = NONE then "" else " " & Index_To_String(Index => Last)));
end Delete;
procedure Delete
(Entry_Widget: Ttk_Entry; First: Entry_Index_Type; Last: Natural := 0;
Is_Last_Index: Boolean := True) is
begin
Execute_Widget_Command
(Widgt => Entry_Widget, Command_Name => "delete",
Options =>
Index_To_String(Index => First) &
(if Last > 0 then
" " & Index_To_String(Index => Last, Is_Index => Is_Last_Index)
else ""));
end Delete;
function Get_Text(Entry_Widget: Ttk_Entry) return String is
begin
return
Execute_Widget_Command(Widgt => Entry_Widget, Command_Name => "get")
.Result;
end Get_Text;
procedure Set_Insert_Cursor
(Entry_Widget: Ttk_Entry; Index: Natural; Is_Index: Boolean := True) is
begin
Execute_Widget_Command
(Widgt => Entry_Widget, Command_Name => "icursor",
Options => Index_To_String(Index => Index, Is_Index => Is_Index));
end Set_Insert_Cursor;
procedure Set_Insert_Cursor
(Entry_Widget: Ttk_Entry; Index: Entry_Index_Type) is
begin
Execute_Widget_Command
(Widgt => Entry_Widget, Command_Name => "icursor",
Options => Index_To_String(Index => Index));
end Set_Insert_Cursor;
function Get_Index(Entry_Widget: Ttk_Entry; X: Natural) return Natural is
begin
return
Widget_Command
(Widgt => Entry_Widget, Command_Name => "index",
Options => Index_To_String(Index => X, Is_Index => False));
end Get_Index;
function Get_Index
(Entry_Widget: Ttk_Entry; Index: Entry_Index_Type) return Natural is
begin
return
Widget_Command
(Widgt => Entry_Widget, Command_Name => "index",
Options => Index_To_String(Index => Index));
end Get_Index;
procedure Insert_Text
(Entry_Widget: Ttk_Entry; Index: Natural; Text: Tcl_String;
Is_Index: Boolean := True) is
begin
Execute_Widget_Command
(Widgt => Entry_Widget, Command_Name => "insert",
Options =>
Index_To_String(Index => Index, Is_Index => Is_Index) & " " &
To_String(Source => Text));
end Insert_Text;
procedure Insert_Text
(Entry_Widget: Ttk_Entry; Index: Entry_Index_Type; Text: Tcl_String) is
begin
Execute_Widget_Command
(Widgt => Entry_Widget, Command_Name => "insert",
Options =>
Index_To_String(Index => Index) & " " & To_String(Source => Text));
end Insert_Text;
procedure Selection_Clear(Entry_Widget: Ttk_Entry) is
begin
Execute_Widget_Command
(Widgt => Entry_Widget, Command_Name => "selection",
Options => "clear");
end Selection_Clear;
function Selection_Present(Entry_Widget: Ttk_Entry) return Boolean is
begin
return
Execute_Widget_Command
(Widgt => Entry_Widget, Command_Name => "selection",
Options => "present")
.Result;
end Selection_Present;
procedure Selection_Range
(Entry_Widget: Ttk_Entry; Start_Index, End_Index: Natural;
Is_Start_Index, Is_End_Index: Boolean := True) is
begin
Execute_Widget_Command
(Widgt => Entry_Widget, Command_Name => "selection",
Options =>
"range " &
Index_To_String(Index => Start_Index, Is_Index => Is_Start_Index) &
" " &
Index_To_String(Index => End_Index, Is_Index => Is_End_Index));
end Selection_Range;
procedure Selection_Range
(Entry_Widget: Ttk_Entry; Start_Index, End_Index: Entry_Index_Type) is
begin
Execute_Widget_Command
(Widgt => Entry_Widget, Command_Name => "selection",
Options =>
"range " & Index_To_String(Index => Start_Index) & " " &
Index_To_String(Index => End_Index));
end Selection_Range;
procedure Selection_Range
(Entry_Widget: Ttk_Entry; Start_Index: Natural;
End_Index: Entry_Index_Type; Is_Start_Index: Boolean := True) is
begin
Execute_Widget_Command
(Widgt => Entry_Widget, Command_Name => "selection",
Options =>
"range " &
Index_To_String(Index => Start_Index, Is_Index => Is_Start_Index) &
" " & Index_To_String(Index => End_Index));
end Selection_Range;
procedure Selection_Range
(Entry_Widget: Ttk_Entry; Start_Index: Entry_Index_Type;
End_Index: Natural; Is_End_Index: Boolean := True) is
begin
Execute_Widget_Command
(Widgt => Entry_Widget, Command_Name => "selection",
Options =>
"range " & Index_To_String(Index => Start_Index) & " " &
Index_To_String(Index => End_Index, Is_Index => Is_End_Index));
end Selection_Range;
function Validate(Entry_Widget: Ttk_Entry) return Boolean is
begin
return
Execute_Widget_Command
(Widgt => Entry_Widget, Command_Name => "validate")
.Result;
end Validate;
function X_View(Entry_Widget: Ttk_Entry) return Fractions_Array is
Interpreter: constant Tcl_Interpreter :=
Tk_Interp(Widgt => Entry_Widget);
Result_List: constant Array_List :=
Split_List
(List =>
Tcl_Eval
(Tcl_Script => Tk_Path_Name(Widgt => Entry_Widget) & " xview",
Interpreter => Interpreter)
.Result,
Interpreter => Interpreter);
begin
return Fractions: Fractions_Array := Default_Fractions_Array do
Fractions(1) :=
Fraction_Type'Value(To_Ada_String(Source => Result_List(1)));
Fractions(2) :=
Fraction_Type'Value(To_Ada_String(Source => Result_List(2)));
end return;
end X_View;
procedure X_View_Adjust
(Entry_Widget: Ttk_Entry; Index: Natural; Is_Index: Boolean := True) is
begin
Execute_Widget_Command
(Widgt => Entry_Widget, Command_Name => "xview",
Options => Index_To_String(Index => Index, Is_Index => Is_Index));
end X_View_Adjust;
procedure X_View_Adjust(Entry_Widget: Ttk_Entry; Index: Entry_Index_Type) is
begin
Execute_Widget_Command
(Widgt => Entry_Widget, Command_Name => "xview",
Options => Index_To_String(Index => Index));
end X_View_Adjust;
procedure X_View_Move_To
(Entry_Widget: Ttk_Entry; Fraction: Fraction_Type) is
begin
Execute_Widget_Command
(Widgt => Entry_Widget, Command_Name => "xview",
Options => "moveto " & Fraction_Type'Image(Fraction));
end X_View_Move_To;
procedure X_View_Scroll
(Entry_Widget: Ttk_Entry; Number: Integer; What: Scroll_Unit_Type) is
begin
Execute_Widget_Command
(Widgt => Entry_Widget, Command_Name => "xview",
Options =>
"scroll " & Integer'Image(Number) & " " &
To_Lower(Item => Scroll_Unit_Type'Image(What)));
end X_View_Scroll;
end Tk.TtkEntry;
| 36.038986 | 79 | 0.628299 |
29f03b9369b8e560d58aad7392845d06942ac056 | 6,163 | ads | Ada | source/amf/uml/amf-uml-link_end_datas.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | source/amf/uml/amf-uml-link_end_datas.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | source/amf/uml/amf-uml-link_end_datas.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 4 | 2017-07-18T07:11:05.000Z | 2020-06-21T03:02:25.000Z | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2011-2012, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- This file is generated, don't edit it.
------------------------------------------------------------------------------
-- A link end data is not an action. It is an element that identifies links.
-- It identifies one end of a link to be read or written by the children of a
-- link action. A link cannot be passed as a runtime value to or from an
-- action. Instead, a link is identified by its end objects and qualifier
-- values, if any. This requires more than one piece of data, namely, the
-- statically-specified end in the user model, the object on the end, and the
-- qualifier values for that end, if any. These pieces are brought together
-- around a link end data. Each association end is identified separately with
-- an instance of the LinkEndData class.
------------------------------------------------------------------------------
with AMF.UML.Elements;
limited with AMF.UML.Input_Pins;
limited with AMF.UML.Properties;
limited with AMF.UML.Qualifier_Values.Collections;
package AMF.UML.Link_End_Datas is
pragma Preelaborate;
type UML_Link_End_Data is limited interface
and AMF.UML.Elements.UML_Element;
type UML_Link_End_Data_Access is
access all UML_Link_End_Data'Class;
for UML_Link_End_Data_Access'Storage_Size use 0;
not overriding function Get_End
(Self : not null access constant UML_Link_End_Data)
return AMF.UML.Properties.UML_Property_Access is abstract;
-- Getter of LinkEndData::end.
--
-- Association end for which this link-end data specifies values.
not overriding procedure Set_End
(Self : not null access UML_Link_End_Data;
To : AMF.UML.Properties.UML_Property_Access) is abstract;
-- Setter of LinkEndData::end.
--
-- Association end for which this link-end data specifies values.
not overriding function Get_Qualifier
(Self : not null access constant UML_Link_End_Data)
return AMF.UML.Qualifier_Values.Collections.Set_Of_UML_Qualifier_Value is abstract;
-- Getter of LinkEndData::qualifier.
--
-- List of qualifier values
not overriding function Get_Value
(Self : not null access constant UML_Link_End_Data)
return AMF.UML.Input_Pins.UML_Input_Pin_Access is abstract;
-- Getter of LinkEndData::value.
--
-- Input pin that provides the specified object for the given end. This
-- pin is omitted if the link-end data specifies an 'open' end for reading.
not overriding procedure Set_Value
(Self : not null access UML_Link_End_Data;
To : AMF.UML.Input_Pins.UML_Input_Pin_Access) is abstract;
-- Setter of LinkEndData::value.
--
-- Input pin that provides the specified object for the given end. This
-- pin is omitted if the link-end data specifies an 'open' end for reading.
end AMF.UML.Link_End_Datas;
| 56.027273 | 90 | 0.529612 |
41db3acc05a0d44cb00d9c16c1fac2ba9f7a9031 | 4,539 | ads | Ada | tools-src/gnu/gcc/gcc/ada/s-imgllb.ads | modern-tomato/tomato | 96f09fab4929c6ddde5c9113f1b2476ad37133c4 | [
"FSFAP"
] | 80 | 2015-01-02T10:14:04.000Z | 2021-06-07T06:29:49.000Z | tools-src/gnu/gcc/gcc/ada/s-imgllb.ads | modern-tomato/tomato | 96f09fab4929c6ddde5c9113f1b2476ad37133c4 | [
"FSFAP"
] | 9 | 2015-05-14T11:03:12.000Z | 2018-01-04T07:12:58.000Z | tools-src/gnu/gcc/gcc/ada/s-imgllb.ads | modern-tomato/tomato | 96f09fab4929c6ddde5c9113f1b2476ad37133c4 | [
"FSFAP"
] | 69 | 2015-01-02T10:45:56.000Z | 2021-09-06T07:52:13.000Z | ------------------------------------------------------------------------------
-- --
-- GNAT RUNTIME COMPONENTS --
-- --
-- S Y S T E M . I M G _ L L B --
-- --
-- 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. --
-- --
-- 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. --
-- --
------------------------------------------------------------------------------
-- Contains the routine for computing the image in based format of signed and
-- unsigned integers whose size > Integer'Size for use by Text_IO.Integer_IO
-- and Text_IO.Modular_IO.
with System.Unsigned_Types;
package System.Img_LLB is
pragma Preelaborate (Img_LLB);
procedure Set_Image_Based_Long_Long_Integer
(V : Long_Long_Integer;
B : Natural;
W : Integer;
S : out String;
P : in out Natural);
-- Sets the signed image of V in based format, using base value B (2..16)
-- starting at S (P + 1), updating P to point to the last character stored.
-- The image includes a leading minus sign if necessary, but no leading
-- spaces unless W is positive, in which case leading spaces are output if
-- necessary to ensure that the output string is no less than W characters
-- long. 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 is violated, since it is perfectly valid to compile this unit with
-- checks off.
procedure Set_Image_Based_Long_Long_Unsigned
(V : System.Unsigned_Types.Long_Long_Unsigned;
B : Natural;
W : Integer;
S : out String;
P : in out Natural);
-- Sets the unsigned image of V in based format, using base value B (2..16)
-- starting at S (P + 1), updating P to point to the last character stored.
-- The image includes no leading spaces unless W is positive, in which case
-- leading spaces are output if necessary to ensure that the output string
-- is no less than W characters long. 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 is violated, since it is perfectly valid
-- to compile this unit with checks off).
end System.Img_LLB;
| 58.948052 | 79 | 0.522802 |
59d2cfc0f679bad4d05d8d7972ae997b5d97f40d | 7,605 | ads | Ada | llvm-gcc-4.2-2.9/gcc/ada/prj-env.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | 1 | 2016-04-09T02:58:13.000Z | 2016-04-09T02:58:13.000Z | llvm-gcc-4.2-2.9/gcc/ada/prj-env.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | llvm-gcc-4.2-2.9/gcc/ada/prj-env.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- P R J . E N V --
-- --
-- S p e c --
-- --
-- Copyright (C) 2001-2005, Free Software Foundation, Inc --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package implements services for Project-aware tools, mostly related
-- to the environment (configuration pragma files, path files, mapping files).
package Prj.Env is
procedure Initialize;
-- Called by Prj.Initialize to perform required initialization steps for
-- this package.
procedure Print_Sources (In_Tree : Project_Tree_Ref);
-- Output the list of sources, after Project files have been scanned
procedure Create_Mapping_File
(Project : Project_Id;
In_Tree : Project_Tree_Ref;
Name : out Name_Id);
-- Create a temporary mapping file for project Project. For each unit
-- in the closure of immediate sources of Project, put the mapping of
-- its spec and or body to its file name and path name in this file.
procedure Set_Mapping_File_Initial_State_To_Empty;
-- When creating a mapping file, create an empty map. This case occurs
-- when run time source files are found in the project files.
procedure Create_Config_Pragmas_File
(For_Project : Project_Id;
Main_Project : Project_Id;
In_Tree : Project_Tree_Ref;
Include_Config_Files : Boolean := True);
-- If there needs to have SFN pragmas, either for non standard naming
-- schemes or for individual units, or (when Include_Config_Files is True)
-- if Global_Configuration_Pragmas has been specified in package gnatmake
-- of the main project, or if Local_Configuration_Pragmas has been
-- specified in package Compiler of the main project, build (if needed)
-- a temporary file that contains all configuration pragmas, and specify
-- the configuration pragmas file in the project data.
function Ada_Include_Path
(Project : Project_Id;
In_Tree : Project_Tree_Ref) return String_Access;
-- Get the ADA_INCLUDE_PATH of a Project file. For the first call, compute
-- it and cache it.
function Ada_Include_Path
(Project : Project_Id;
In_Tree : Project_Tree_Ref;
Recursive : Boolean) return String;
-- Get the ADA_INCLUDE_PATH of a Project file. If Recursive it True,
-- get all the source directories of the imported and modified project
-- files (recursively). If Recursive is False, just get the path for the
-- source directories of Project. Note: the resulting String may be empty
-- if there is no source directory in the project file.
function Ada_Objects_Path
(Project : Project_Id;
In_Tree : Project_Tree_Ref;
Including_Libraries : Boolean := True) return String_Access;
-- Get the ADA_OBJECTS_PATH of a Project file. For the first call, compute
-- it and cache it. When Including_Libraries is False, do not include the
-- object directories of the library projects, and do not cache the result.
procedure Set_Ada_Paths
(Project : Project_Id;
In_Tree : Project_Tree_Ref;
Including_Libraries : Boolean);
-- Set the env vars for additional project path files, after
-- creating the path files if necessary.
procedure Delete_All_Path_Files (In_Tree : Project_Tree_Ref);
-- Delete all temporary path files that have been created by
-- calls to Set_Ada_Paths.
function Path_Name_Of_Library_Unit_Body
(Name : String;
Project : Project_Id;
In_Tree : Project_Tree_Ref) return String;
-- Returns the Path of a library unit
function File_Name_Of_Library_Unit_Body
(Name : String;
Project : Project_Id;
In_Tree : Project_Tree_Ref;
Main_Project_Only : Boolean := True;
Full_Path : Boolean := False) return String;
-- Returns the file name of a library unit, in canonical case. Name may or
-- may not have an extension (corresponding to the naming scheme of the
-- project). If there is no body with this name, but there is a spec, the
-- name of the spec is returned.
--
-- If Full_Path is False (the default), the simple file name is returned.
--
-- If Full_Path is True, the absolute path name is returned.
--
-- If neither a body nor a spec can be found, an empty string is returned.
-- If Main_Project_Only is True, the unit must be an immediate source of
-- Project. If it is False, it may be a source of one of its imported
-- projects.
function Project_Of
(Name : String;
Main_Project : Project_Id;
In_Tree : Project_Tree_Ref) return Project_Id;
-- Get the project of a source. The source file name may be truncated
-- (".adb" or ".ads" may be missing). If the source is in a project being
-- extended, return the ultimate extending project. If it is not a source
-- of any project, return No_Project.
procedure Get_Reference
(Source_File_Name : String;
In_Tree : Project_Tree_Ref;
Project : out Project_Id;
Path : out Name_Id);
-- Returns the project of a source and its path in displayable form
generic
with procedure Action (Path : String);
procedure For_All_Source_Dirs
(Project : Project_Id;
In_Tree : Project_Tree_Ref);
-- Iterate through all the source directories of a project, including
-- those of imported or modified projects.
generic
with procedure Action (Path : String);
procedure For_All_Object_Dirs
(Project : Project_Id;
In_Tree : Project_Tree_Ref);
-- Iterate through all the object directories of a project, including
-- those of imported or modified projects.
end Prj.Env;
| 48.132911 | 79 | 0.603945 |
59ddf9dd580e3fc25d8b282bd9a1a3b2b4893e1f | 25,113 | adb | Ada | source/strings/a-sgugfu.adb | ytomino/drake | 4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2 | [
"MIT"
] | 33 | 2015-04-04T09:19:36.000Z | 2021-11-10T05:33:34.000Z | source/strings/a-sgugfu.adb | ytomino/drake | 4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2 | [
"MIT"
] | 8 | 2017-11-14T13:05:07.000Z | 2018-08-09T15:28:49.000Z | source/strings/a-sgugfu.adb | ytomino/drake | 4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2 | [
"MIT"
] | 9 | 2015-02-03T17:09:53.000Z | 2021-11-12T01:16:05.000Z | package body Ada.Strings.Generic_Unbounded.Generic_Functions is
function Index (
Source : Unbounded_String;
Pattern : String_Type;
From : Positive;
Going : Direction := Forward)
return Natural
is
pragma Suppress (Access_Check);
begin
return Fixed_Functions.Index (
Source.Data.Items (1 .. Source.Length),
Pattern,
From,
Going);
end Index;
function Index (
Source : Unbounded_String;
Pattern : String_Type;
Going : Direction := Forward)
return Natural
is
pragma Suppress (Access_Check);
begin
return Fixed_Functions.Index (
Source.Data.Items (1 .. Source.Length),
Pattern,
Going);
end Index;
function Index_Non_Blank (
Source : Unbounded_String;
From : Positive;
Going : Direction := Forward)
return Natural
is
pragma Suppress (Access_Check);
begin
return Fixed_Functions.Index_Non_Blank (
Source.Data.Items (1 .. Source.Length),
From,
Going);
end Index_Non_Blank;
function Index_Non_Blank (
Source : Unbounded_String;
Going : Direction := Forward)
return Natural
is
pragma Suppress (Access_Check);
begin
return Fixed_Functions.Index_Non_Blank (
Source.Data.Items (1 .. Source.Length),
Going);
end Index_Non_Blank;
function Count (Source : Unbounded_String; Pattern : String_Type)
return Natural
is
pragma Suppress (Access_Check);
begin
return Fixed_Functions.Count (
Source.Data.Items (1 .. Source.Length),
Pattern);
end Count;
function Replace_Slice (
Source : Unbounded_String;
Low : Positive;
High : Natural;
By : String_Type)
return Unbounded_String
is
pragma Check (Pre,
Check =>
(Low <= Source.Length + 1 and then High <= Source.Length)
or else raise Index_Error);
pragma Suppress (Access_Check);
begin
return Result : Unbounded_String do
if By'Length > 0 or else Low <= High then
if By'Length = 0 and then High = Source.Length then
Assign (Result, Source); -- shared
Set_Length (Result, Low - 1);
elsif Low > Source.Length then
Assign (Result, Source); -- shared
Append (Result, By);
else
Set_Length (
Result,
Source.Length + By'Length - Integer'Max (High - Low + 1, 0));
declare
Dummy_Last : Natural;
begin
Fixed_Functions.Replace_Slice (
Source.Data.Items (1 .. Source.Length),
Low,
High,
By,
Target => Result.Data.Items.all,
Target_Last => Dummy_Last);
end;
end if;
else
Assign (Result, Source); -- shared
end if;
end return;
end Replace_Slice;
procedure Replace_Slice (
Source : in out Unbounded_String;
Low : Positive;
High : Natural;
By : String_Type)
is
pragma Check (Pre,
Check =>
(Low <= Source.Length + 1 and then High <= Source.Length)
or else raise Index_Error); -- CXA4032
pragma Suppress (Access_Check);
begin
if By'Length > 0 or else Low <= High then
if By'Length = 0 and then High = Source.Length then
Set_Length (Source, Low - 1);
elsif Low > Source.Length then
Append (Source, By);
else
declare
Old_Length : constant Natural := Source.Length;
New_Length : Natural;
begin
Unique_And_Set_Length (
Source,
Old_Length
+ Integer'Max (
By'Length - Integer'Max (High - Low + 1, 0),
0));
New_Length := Old_Length;
Fixed_Functions.Replace_Slice (
Source.Data.Items.all, -- (1 .. Source.Length)
New_Length,
Low,
High,
By);
Set_Length (Source, New_Length);
end;
end if;
end if;
end Replace_Slice;
function Insert (
Source : Unbounded_String;
Before : Positive;
New_Item : String_Type)
return Unbounded_String
is
pragma Check (Pre,
Check => Before <= Source.Length + 1 or else raise Index_Error);
pragma Suppress (Access_Check);
begin
return Result : Unbounded_String do
if New_Item'Length > 0 then
if Before > Source.Length then
Assign (Result, Source); -- shared
Append (Result, New_Item);
else
Set_Length (Result, Source.Length + New_Item'Length);
declare
Dummy_Last : Natural;
begin
Fixed_Functions.Insert (
Source.Data.Items (1 .. Source.Length),
Before,
New_Item,
Target => Result.Data.Items.all,
Target_Last => Dummy_Last);
end;
end if;
else
Assign (Result, Source); -- shared
end if;
end return;
end Insert;
procedure Insert (
Source : in out Unbounded_String;
Before : Positive;
New_Item : String_Type)
is
pragma Check (Pre,
Check =>
Before <= Source.Length + 1
or else raise Index_Error); -- CXA4032
pragma Suppress (Access_Check);
begin
if New_Item'Length > 0 then
if Before > Source.Length then
Append (Source, New_Item);
else
declare
Old_Length : constant Natural := Source.Length;
New_Length : Natural;
begin
Unique_And_Set_Length (Source, Old_Length + New_Item'Length);
New_Length := Old_Length;
Fixed_Functions.Insert (
Source.Data.Items.all, -- (1 .. Source.Length)
New_Length,
Before,
New_Item);
Set_Length (Source, New_Length);
end;
end if;
end if;
end Insert;
function Overwrite (
Source : Unbounded_String;
Position : Positive;
New_Item : String_Type)
return Unbounded_String is
begin
return Replace_Slice (
Source,
Position, -- checking Index_Error
Integer'Min (Position + New_Item'Length - 1, Source.Length),
New_Item);
end Overwrite;
procedure Overwrite (
Source : in out Unbounded_String;
Position : Positive;
New_Item : String_Type) is
begin
Replace_Slice (
Source,
Position, -- checking Index_Error, CXA4032
Integer'Min (Position + New_Item'Length - 1, Source.Length),
New_Item);
end Overwrite;
function Delete (
Source : Unbounded_String;
From : Positive;
Through : Natural)
return Unbounded_String
is
pragma Check (Pre,
Check =>
(From <= Source.Length + 1 and then Through <= Source.Length)
or else raise Index_Error);
pragma Suppress (Access_Check);
begin
return Result : Unbounded_String do
if From <= Through then
if Through >= Source.Length then
Assign (Result, Source); -- shared
Set_Length (Result, From - 1);
else
Set_Length (Result, Source.Length - (Through - From + 1));
declare
Dummy_Last : Natural;
begin
Fixed_Functions.Delete (
Source.Data.Items (1 .. Source.Length),
From,
Through,
Target => Result.Data.Items.all,
Target_Last => Dummy_Last);
end;
end if;
else
Assign (Result, Source); -- shared
end if;
end return;
end Delete;
procedure Delete (
Source : in out Unbounded_String;
From : Positive;
Through : Natural)
is
pragma Check (Pre,
Check =>
(From <= Source.Length + 1 and then Through <= Source.Length)
or else raise Index_Error);
pragma Suppress (Access_Check);
begin
if From <= Through then
declare
Old_Length : constant Natural := Source.Length;
New_Length : Natural;
begin
if Through >= Old_Length then
New_Length := From - 1;
else
New_Length := Old_Length;
Unique (Source); -- for overwriting
Fixed_Functions.Delete (
Source.Data.Items.all, -- (1 .. Old_Length)
New_Length,
From,
Through);
end if;
Set_Length (Source, New_Length);
end;
end if;
end Delete;
function Trim (
Source : Unbounded_String;
Side : Trim_End;
Blank : Character_Type := Fixed_Functions.Space)
return Unbounded_String
is
pragma Suppress (Access_Check);
First : Positive;
Last : Natural;
begin
Fixed_Functions.Trim (
Source.Data.Items (1 .. Source.Length),
Side,
Blank,
First,
Last);
return Unbounded_Slice (Source, First, Last);
end Trim;
procedure Trim (
Source : in out Unbounded_String;
Side : Trim_End;
Blank : Character_Type := Fixed_Functions.Space)
is
pragma Suppress (Access_Check);
First : Positive;
Last : Natural;
begin
Fixed_Functions.Trim (
Source.Data.Items (1 .. Source.Length),
Side,
Blank,
First,
Last);
Unbounded_Slice (Source, Source, First, Last);
end Trim;
function Head (
Source : Unbounded_String;
Count : Natural;
Pad : Character_Type := Fixed_Functions.Space)
return Unbounded_String
is
pragma Suppress (Access_Check);
begin
return Result : Unbounded_String do
if Count > Source.Length then
Set_Length (Result, Count);
declare
Dummy_Last : Natural;
begin
Fixed_Functions.Head (
Source.Data.Items (1 .. Source.Length),
Count,
Pad,
Target => Result.Data.Items.all,
Target_Last => Dummy_Last);
end;
else
Assign (Result, Source); -- shared
Set_Length (Result, Count);
end if;
end return;
end Head;
procedure Head (
Source : in out Unbounded_String;
Count : Natural;
Pad : Character_Type := Fixed_Functions.Space)
is
pragma Suppress (Access_Check);
begin
if Count > Source.Length then
declare
New_Last : Natural := Source.Length;
begin
Set_Length (Source, Count);
Fixed_Functions.Head (
Source.Data.Items.all, -- (1 .. Count)
New_Last,
Count,
Pad);
end;
else
Set_Length (Source, Count);
end if;
end Head;
function Tail (
Source : Unbounded_String;
Count : Natural;
Pad : Character_Type := Fixed_Functions.Space)
return Unbounded_String
is
pragma Suppress (Access_Check);
begin
return Result : Unbounded_String do
if Count /= Source.Length then
Set_Length (Result, Count);
declare
Dummy_Last : Natural;
begin
Fixed_Functions.Tail (
Source.Data.Items (1 .. Source.Length),
Count,
Pad,
Target => Result.Data.Items.all,
Target_Last => Dummy_Last);
end;
else
Assign (Result, Source); -- shared
end if;
end return;
end Tail;
procedure Tail (
Source : in out Unbounded_String;
Count : Natural;
Pad : Character_Type := Fixed_Functions.Space)
is
pragma Suppress (Access_Check);
begin
if Count /= Source.Length then
if Count > 0 then
declare
Old_Length : constant Natural := Source.Length;
Dummy_Last : Natural;
begin
Unique_And_Set_Length (Source, Integer'Max (Count, Old_Length));
Fixed_Functions.Tail (
Source.Data.Items (1 .. Old_Length),
Count,
Pad,
Target => Source.Data.Items.all, -- copying
Target_Last => Dummy_Last);
end;
end if;
Set_Length (Source, Count);
end if;
end Tail;
function "*" (Left : Natural; Right : Character_Type)
return Unbounded_String
is
pragma Suppress (Access_Check);
begin
return Result : Unbounded_String do
Set_Length (Result, Left);
for I in 1 .. Left loop
Result.Data.Items (I) := Right;
end loop;
end return;
end "*";
function "*" (Left : Natural; Right : String_Type)
return Unbounded_String
is
pragma Suppress (Access_Check);
Right_Length : constant Natural := Right'Length;
begin
return Result : Unbounded_String do
Set_Length (Result, Left * Right_Length);
declare
Last : Natural := 0;
begin
for I in 1 .. Left loop
Result.Data.Items (Last + 1 .. Last + Right_Length) :=
Right;
Last := Last + Right_Length;
end loop;
end;
end return;
end "*";
function "*" (Left : Natural; Right : Unbounded_String)
return Unbounded_String
is
pragma Suppress (Access_Check);
begin
return Left * Right.Data.Items (1 .. Right.Length);
end "*";
package body Generic_Maps is
function Index (
Source : Unbounded_String;
Pattern : String_Type;
From : Positive;
Going : Direction := Forward;
Mapping : Fixed_Maps.Character_Mapping)
return Natural
is
pragma Suppress (Access_Check);
begin
return Fixed_Maps.Index (
Source.Data.Items (1 .. Source.Length),
Pattern,
From,
Going,
Mapping);
end Index;
function Index (
Source : Unbounded_String;
Pattern : String_Type;
Going : Direction := Forward;
Mapping : Fixed_Maps.Character_Mapping)
return Natural
is
pragma Suppress (Access_Check);
begin
return Fixed_Maps.Index (
Source.Data.Items (1 .. Source.Length),
Pattern,
Going,
Mapping);
end Index;
function Index (
Source : Unbounded_String;
Pattern : String_Type;
From : Positive;
Going : Direction := Forward;
Mapping : not null access function (From : Wide_Wide_Character)
return Wide_Wide_Character)
return Natural
is
pragma Suppress (Access_Check);
begin
return Fixed_Maps.Index (
Source.Data.Items (1 .. Source.Length),
Pattern,
From,
Going,
Mapping);
end Index;
function Index (
Source : Unbounded_String;
Pattern : String_Type;
Going : Direction := Forward;
Mapping : not null access function (From : Wide_Wide_Character)
return Wide_Wide_Character)
return Natural
is
pragma Suppress (Access_Check);
begin
return Fixed_Maps.Index (
Source.Data.Items (1 .. Source.Length),
Pattern,
Going,
Mapping);
end Index;
function Index_Element (
Source : Unbounded_String;
Pattern : String_Type;
From : Positive;
Going : Direction := Forward;
Mapping : not null access function (From : Character_Type)
return Character_Type)
return Natural
is
pragma Suppress (Access_Check);
begin
return Fixed_Maps.Index_Element (
Source.Data.Items (1 .. Source.Length),
Pattern,
From,
Going,
Mapping);
end Index_Element;
function Index_Element (
Source : Unbounded_String;
Pattern : String_Type;
Going : Direction := Forward;
Mapping : not null access function (From : Character_Type)
return Character_Type)
return Natural
is
pragma Suppress (Access_Check);
begin
return Fixed_Maps.Index_Element (
Source.Data.Items (1 .. Source.Length),
Pattern,
Going,
Mapping);
end Index_Element;
function Index (
Source : Unbounded_String;
Set : Fixed_Maps.Character_Set;
From : Positive;
Test : Membership := Inside;
Going : Direction := Forward)
return Natural
is
pragma Suppress (Access_Check);
begin
return Fixed_Maps.Index (
Source.Data.Items (1 .. Source.Length),
Set,
From,
Test,
Going);
end Index;
function Index (
Source : Unbounded_String;
Set : Fixed_Maps.Character_Set;
Test : Membership := Inside;
Going : Direction := Forward)
return Natural
is
pragma Suppress (Access_Check);
begin
return Fixed_Maps.Index (
Source.Data.Items (1 .. Source.Length),
Set,
Test,
Going);
end Index;
function Count (
Source : Unbounded_String;
Pattern : String_Type;
Mapping : Fixed_Maps.Character_Mapping)
return Natural
is
pragma Suppress (Access_Check);
begin
return Fixed_Maps.Count (
Source.Data.Items (1 .. Source.Length),
Pattern,
Mapping);
end Count;
function Count (
Source : Unbounded_String;
Pattern : String_Type;
Mapping : not null access function (From : Wide_Wide_Character)
return Wide_Wide_Character)
return Natural
is
pragma Suppress (Access_Check);
begin
return Fixed_Maps.Count (
Source.Data.Items (1 .. Source.Length),
Pattern,
Mapping);
end Count;
function Count_Element (
Source : Unbounded_String;
Pattern : String_Type;
Mapping : not null access function (From : Character_Type)
return Character_Type)
return Natural
is
pragma Suppress (Access_Check);
begin
return Fixed_Maps.Count_Element (
Source.Data.Items (1 .. Source.Length),
Pattern,
Mapping);
end Count_Element;
function Count (
Source : Unbounded_String;
Set : Fixed_Maps.Character_Set)
return Natural
is
pragma Suppress (Access_Check);
begin
return Fixed_Maps.Count (Source.Data.Items (1 .. Source.Length), Set);
end Count;
procedure Find_Token (
Source : Unbounded_String;
Set : Fixed_Maps.Character_Set;
From : Positive;
Test : Membership;
First : out Positive;
Last : out Natural)
is
pragma Suppress (Access_Check);
begin
Fixed_Maps.Find_Token (
Source.Data.Items (1 .. Source.Length),
Set,
From,
Test,
First,
Last);
end Find_Token;
procedure Find_Token (
Source : Unbounded_String;
Set : Fixed_Maps.Character_Set;
Test : Membership;
First : out Positive;
Last : out Natural)
is
pragma Suppress (Access_Check);
begin
Fixed_Maps.Find_Token (
Source.Data.Items (1 .. Source.Length),
Set,
Test,
First,
Last);
end Find_Token;
function Translate (
Source : Unbounded_String;
Mapping : Fixed_Maps.Character_Mapping)
return Unbounded_String
is
pragma Suppress (Access_Check);
begin
return Result : Unbounded_String do
Set_Length (Result, Source.Length * Fixed_Maps.Expanding);
declare
New_Length : Natural;
begin
Fixed_Maps.Translate (
Source.Data.Items (1 .. Source.Length),
Mapping,
Target => Result.Data.Items.all,
Target_Last => New_Length);
Set_Length (Result, New_Length);
end;
end return;
end Translate;
procedure Translate (
Source : in out Unbounded_String;
Mapping : Fixed_Maps.Character_Mapping)
is
pragma Suppress (Access_Check); -- finalizer
begin
-- Translate can not update destructively.
Assign (Source, Translate (Source, Mapping));
end Translate;
function Translate (
Source : Unbounded_String;
Mapping : not null access function (From : Wide_Wide_Character)
return Wide_Wide_Character)
return Unbounded_String
is
pragma Suppress (Access_Check);
begin
return Result : Unbounded_String do
Set_Length (Result, Source.Length * Fixed_Maps.Expanding);
declare
New_Length : Natural;
begin
Fixed_Maps.Translate (
Source.Data.Items (1 .. Source.Length),
Mapping,
Target => Result.Data.Items.all,
Target_Last => New_Length);
Set_Length (Result, New_Length);
end;
end return;
end Translate;
procedure Translate (
Source : in out Unbounded_String;
Mapping : not null access function (From : Wide_Wide_Character)
return Wide_Wide_Character)
is
pragma Suppress (Access_Check); -- finalizer
begin
-- Translate can not update destructively.
Assign (Source, Translate (Source, Mapping));
end Translate;
function Translate_Element (
Source : Unbounded_String;
Mapping : not null access function (From : Character_Type)
return Character_Type)
return Unbounded_String
is
pragma Suppress (Access_Check);
begin
return Result : Unbounded_String do
Set_Length (Result, Source.Length);
Fixed_Maps.Translate_Element (
Source.Data.Items (1 .. Source.Length),
Mapping,
Target => Result.Data.Items (1 .. Source.Length));
end return;
end Translate_Element;
procedure Translate_Element (
Source : in out Unbounded_String;
Mapping : not null access function (From : Character_Type)
return Character_Type)
is
pragma Suppress (Access_Check);
begin
Unique (Source);
Fixed_Maps.Translate_Element (
Source.Data.Items (1 .. Source.Length),
Mapping);
end Translate_Element;
function Trim (
Source : Unbounded_String;
Left : Fixed_Maps.Character_Set;
Right : Fixed_Maps.Character_Set)
return Unbounded_String
is
pragma Suppress (Access_Check);
First : Positive;
Last : Natural;
begin
Fixed_Maps.Trim (
Source.Data.Items (1 .. Source.Length),
Left,
Right,
First,
Last);
return Unbounded_Slice (Source, First, Last);
end Trim;
procedure Trim (
Source : in out Unbounded_String;
Left : Fixed_Maps.Character_Set;
Right : Fixed_Maps.Character_Set)
is
pragma Suppress (Access_Check);
First : Positive;
Last : Natural;
begin
Fixed_Maps.Trim (
Source.Data.Items (1 .. Source.Length),
Left,
Right,
First,
Last);
Unbounded_Slice (Source, Source, First, Last);
end Trim;
end Generic_Maps;
end Ada.Strings.Generic_Unbounded.Generic_Functions;
| 29.133411 | 79 | 0.534703 |
1d62da194c6fe67880f623bd6889d1fb800737fd | 1,110 | ads | Ada | regtests/security-random-tests.ads | My-Colaborations/ada-security | a75f1f21140d128574aadbd53b2a2acc28fa0af5 | [
"Apache-2.0"
] | 19 | 2015-01-18T23:04:59.000Z | 2021-11-30T10:39:10.000Z | regtests/security-random-tests.ads | My-Colaborations/ada-security | a75f1f21140d128574aadbd53b2a2acc28fa0af5 | [
"Apache-2.0"
] | 4 | 2020-08-06T15:37:51.000Z | 2022-02-04T20:19:39.000Z | regtests/security-random-tests.ads | My-Colaborations/ada-security | a75f1f21140d128574aadbd53b2a2acc28fa0af5 | [
"Apache-2.0"
] | 3 | 2021-01-04T10:23:22.000Z | 2022-01-30T21:45:49.000Z | -----------------------------------------------------------------------
-- security-random-tests - Tests for random package
-- Copyright (C) 2017 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Util.Tests;
package Security.Random.Tests is
procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite);
type Test is new Util.Tests.Test with null record;
procedure Test_Generate (T : in out Test);
end Security.Random.Tests;
| 38.275862 | 76 | 0.644144 |
fbd028052b2c5c8fb3601ccf96d435a0ae19efb9 | 3,123 | adb | Ada | src/adaphysics2ddemo.adb | Kidev/DemoAdaPhysics2D | 70ef645e248e14fda1ed697bc4ce56d42cd6fb39 | [
"BSD-3-Clause"
] | 5 | 2019-02-21T11:56:07.000Z | 2022-01-09T10:03:26.000Z | src/adaphysics2ddemo.adb | Kidev/DemoAdaPhysics2D | 70ef645e248e14fda1ed697bc4ce56d42cd6fb39 | [
"BSD-3-Clause"
] | null | null | null | src/adaphysics2ddemo.adb | Kidev/DemoAdaPhysics2D | 70ef645e248e14fda1ed697bc4ce56d42cd6fb39 | [
"BSD-3-Clause"
] | null | null | null | with Entities; use Entities;
with Rectangles;
with Worlds;
with Materials;
with Vectors2D; use Vectors2D;
with Renderer; use Renderer;
with DemoLogic; use DemoLogic;
with Utils; use Utils;
package body AdaPhysics2DDemo is
procedure Start(This : in out Menu)
is
SCeiling, SFloor, SRight, SLeft : EntityClassAcc;
EAir, EWater : EntityClassAcc;
W1 : Worlds.World;
VecZero : constant Vec2D := (0.0, 0.0);
Vec1, Vec2 : Vec2D;
MaxEnt : constant Natural := 32; -- max ents + envs. 0 = unlimited
fps : constant Float := 30.0;
dt : constant Float := 1.0 / fps;
cd : constant Integer := 10; -- * dt | cooldown
Cue : VisualCue;
-- if true, the world will no longer update
Frozen : Boolean := False;
Cooldown : Integer := 0;
Tick : Integer := 0;
begin
-- Clears the calling menu
This.Free;
-- Ceiling
Vec1 := Vec2D'(x => 10.0, y => 0.0);
Vec2 := Vec2D'(x => 220.0, y => 10.0);
SCeiling := Rectangles.Create(Vec1, VecZero, VecZero, Vec2, Materials.STATIC);
-- Floor
Vec1 := Vec2D'(x => 0.0, y => 310.0);
Vec2 := Vec2D'(x => 240.0, y => 10.0);
SFloor := Rectangles.Create(Vec1, VecZero, VecZero, Vec2, Materials.STATIC);
-- Right wall
Vec1 := Vec2D'(x => 230.0, y => 0.0);
Vec2 := Vec2D'(x => 10.0, y => 310.0);
SRight := Rectangles.Create(Vec1, VecZero, VecZero, Vec2, Materials.STATIC);
-- Left wall
Vec1 := Vec2D'(x => 0.0, y => 0.0);
Vec2 := Vec2D'(x => 10.0, y => 310.0);
SLeft := Rectangles.Create(Vec1, VecZero, VecZero, Vec2, Materials.STATIC);
-- Top vacuum env
Vec1 := Vec2D'(x => 10.0, y => 10.0);
Vec2 := Vec2D'(x => 220.0, y => 250.0);
EAir := Rectangles.Create(Vec1, VecZero, VecZero, Vec2, Materials.AIR);
-- Bottom water env
Vec1 := Vec2D'(x => 10.0, y => 250.0);
Vec2 := Vec2D'(x => 220.0, y => 60.0);
EWater := Rectangles.Create(Vec1, VecZero, VecZero, Vec2, Materials.WATER);
W1.Init(dt, MaxEnt);
W1.SetInvalidChecker(InvalidEnt'Access);
W1.SetMaxSpeed((500.0, 500.0));
W1.AddEnvironment(EAir);
W1.AddEnvironment(EWater);
W1.AddEntity(SCeiling);
W1.AddEntity(SFloor);
W1.AddEntity(SRight);
W1.AddEntity(SLeft);
Clear(True);
loop
if Cooldown > 0 then
Cooldown := Cooldown - 1;
end if;
if not Frozen then
Tick := Tick + 1;
-- update the world for one tick (dt)
W1.Step(Worlds.Step_Normal);
end if;
-- clear buffer for next render
Clear(False);
-- gets the user inputs and updates the world accordingly
if Inputs(W1, Frozen, Cooldown, Cue) then
Cooldown := cd; -- reset cooldown
end if;
-- Exit when the menu quit was selected
exit when Cue.X < 0;
-- renders
Render(W1, Cue);
end loop;
W1.Free;
end Start;
end AdaPhysics2DDemo;
| 27.883929 | 84 | 0.550112 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.