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
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
a0d942d06d5900fabddad1b838d566b191f2aa4b | 12,159 | ads | Ada | source/nodes/program-nodes-function_body_declarations.ads | reznikmm/gela | 20134f1d154fb763812e73860c6f4b04f353df79 | [
"MIT"
] | null | null | null | source/nodes/program-nodes-function_body_declarations.ads | reznikmm/gela | 20134f1d154fb763812e73860c6f4b04f353df79 | [
"MIT"
] | null | null | null | source/nodes/program-nodes-function_body_declarations.ads | reznikmm/gela | 20134f1d154fb763812e73860c6f4b04f353df79 | [
"MIT"
] | 1 | 2019-10-16T09:05:27.000Z | 2019-10-16T09:05:27.000Z | -- SPDX-FileCopyrightText: 2019 Max Reznik <[email protected]>
--
-- SPDX-License-Identifier: MIT
-------------------------------------------------------------
with Program.Lexical_Elements;
with Program.Elements.Defining_Names;
with Program.Elements.Parameter_Specifications;
with Program.Elements.Aspect_Specifications;
with Program.Element_Vectors;
with Program.Elements.Exception_Handlers;
with Program.Elements.Expressions;
with Program.Elements.Function_Body_Declarations;
with Program.Element_Visitors;
package Program.Nodes.Function_Body_Declarations is
pragma Preelaborate;
type Function_Body_Declaration is
new Program.Nodes.Node
and Program.Elements.Function_Body_Declarations
.Function_Body_Declaration
and Program.Elements.Function_Body_Declarations
.Function_Body_Declaration_Text
with private;
function Create
(Not_Token : Program.Lexical_Elements.Lexical_Element_Access;
Overriding_Token : Program.Lexical_Elements.Lexical_Element_Access;
Function_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Name : not null Program.Elements.Defining_Names
.Defining_Name_Access;
Left_Bracket_Token : Program.Lexical_Elements.Lexical_Element_Access;
Parameters : Program.Elements.Parameter_Specifications
.Parameter_Specification_Vector_Access;
Right_Bracket_Token : Program.Lexical_Elements.Lexical_Element_Access;
Return_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Not_Token_2 : Program.Lexical_Elements.Lexical_Element_Access;
Null_Token : Program.Lexical_Elements.Lexical_Element_Access;
Result_Subtype : not null Program.Elements.Element_Access;
With_Token : Program.Lexical_Elements.Lexical_Element_Access;
Aspects : Program.Elements.Aspect_Specifications
.Aspect_Specification_Vector_Access;
Is_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Declarations : Program.Element_Vectors.Element_Vector_Access;
Begin_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Statements : not null Program.Element_Vectors
.Element_Vector_Access;
Exception_Token : Program.Lexical_Elements.Lexical_Element_Access;
Exception_Handlers : Program.Elements.Exception_Handlers
.Exception_Handler_Vector_Access;
End_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
End_Name : Program.Elements.Expressions.Expression_Access;
Semicolon_Token : not null Program.Lexical_Elements
.Lexical_Element_Access)
return Function_Body_Declaration;
type Implicit_Function_Body_Declaration is
new Program.Nodes.Node
and Program.Elements.Function_Body_Declarations
.Function_Body_Declaration
with private;
function Create
(Name : not null Program.Elements.Defining_Names
.Defining_Name_Access;
Parameters : Program.Elements.Parameter_Specifications
.Parameter_Specification_Vector_Access;
Result_Subtype : not null Program.Elements.Element_Access;
Aspects : Program.Elements.Aspect_Specifications
.Aspect_Specification_Vector_Access;
Declarations : Program.Element_Vectors.Element_Vector_Access;
Statements : not null Program.Element_Vectors
.Element_Vector_Access;
Exception_Handlers : Program.Elements.Exception_Handlers
.Exception_Handler_Vector_Access;
End_Name : Program.Elements.Expressions.Expression_Access;
Is_Part_Of_Implicit : Boolean := False;
Is_Part_Of_Inherited : Boolean := False;
Is_Part_Of_Instance : Boolean := False;
Has_Not : Boolean := False;
Has_Overriding : Boolean := False;
Has_Not_Null : Boolean := False)
return Implicit_Function_Body_Declaration
with Pre =>
Is_Part_Of_Implicit or Is_Part_Of_Inherited or Is_Part_Of_Instance;
private
type Base_Function_Body_Declaration is
abstract new Program.Nodes.Node
and Program.Elements.Function_Body_Declarations
.Function_Body_Declaration
with record
Name : not null Program.Elements.Defining_Names
.Defining_Name_Access;
Parameters : Program.Elements.Parameter_Specifications
.Parameter_Specification_Vector_Access;
Result_Subtype : not null Program.Elements.Element_Access;
Aspects : Program.Elements.Aspect_Specifications
.Aspect_Specification_Vector_Access;
Declarations : Program.Element_Vectors.Element_Vector_Access;
Statements : not null Program.Element_Vectors
.Element_Vector_Access;
Exception_Handlers : Program.Elements.Exception_Handlers
.Exception_Handler_Vector_Access;
End_Name : Program.Elements.Expressions.Expression_Access;
end record;
procedure Initialize (Self : in out Base_Function_Body_Declaration'Class);
overriding procedure Visit
(Self : not null access Base_Function_Body_Declaration;
Visitor : in out Program.Element_Visitors.Element_Visitor'Class);
overriding function Name
(Self : Base_Function_Body_Declaration)
return not null Program.Elements.Defining_Names.Defining_Name_Access;
overriding function Parameters
(Self : Base_Function_Body_Declaration)
return Program.Elements.Parameter_Specifications
.Parameter_Specification_Vector_Access;
overriding function Result_Subtype
(Self : Base_Function_Body_Declaration)
return not null Program.Elements.Element_Access;
overriding function Aspects
(Self : Base_Function_Body_Declaration)
return Program.Elements.Aspect_Specifications
.Aspect_Specification_Vector_Access;
overriding function Declarations
(Self : Base_Function_Body_Declaration)
return Program.Element_Vectors.Element_Vector_Access;
overriding function Statements
(Self : Base_Function_Body_Declaration)
return not null Program.Element_Vectors.Element_Vector_Access;
overriding function Exception_Handlers
(Self : Base_Function_Body_Declaration)
return Program.Elements.Exception_Handlers
.Exception_Handler_Vector_Access;
overriding function End_Name
(Self : Base_Function_Body_Declaration)
return Program.Elements.Expressions.Expression_Access;
overriding function Is_Function_Body_Declaration
(Self : Base_Function_Body_Declaration)
return Boolean;
overriding function Is_Declaration
(Self : Base_Function_Body_Declaration)
return Boolean;
type Function_Body_Declaration is
new Base_Function_Body_Declaration
and Program.Elements.Function_Body_Declarations
.Function_Body_Declaration_Text
with record
Not_Token : Program.Lexical_Elements.Lexical_Element_Access;
Overriding_Token : Program.Lexical_Elements.Lexical_Element_Access;
Function_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Left_Bracket_Token : Program.Lexical_Elements.Lexical_Element_Access;
Right_Bracket_Token : Program.Lexical_Elements.Lexical_Element_Access;
Return_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Not_Token_2 : Program.Lexical_Elements.Lexical_Element_Access;
Null_Token : Program.Lexical_Elements.Lexical_Element_Access;
With_Token : Program.Lexical_Elements.Lexical_Element_Access;
Is_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Begin_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Exception_Token : Program.Lexical_Elements.Lexical_Element_Access;
End_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Semicolon_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
end record;
overriding function To_Function_Body_Declaration_Text
(Self : in out Function_Body_Declaration)
return Program.Elements.Function_Body_Declarations
.Function_Body_Declaration_Text_Access;
overriding function Not_Token
(Self : Function_Body_Declaration)
return Program.Lexical_Elements.Lexical_Element_Access;
overriding function Overriding_Token
(Self : Function_Body_Declaration)
return Program.Lexical_Elements.Lexical_Element_Access;
overriding function Function_Token
(Self : Function_Body_Declaration)
return not null Program.Lexical_Elements.Lexical_Element_Access;
overriding function Left_Bracket_Token
(Self : Function_Body_Declaration)
return Program.Lexical_Elements.Lexical_Element_Access;
overriding function Right_Bracket_Token
(Self : Function_Body_Declaration)
return Program.Lexical_Elements.Lexical_Element_Access;
overriding function Return_Token
(Self : Function_Body_Declaration)
return not null Program.Lexical_Elements.Lexical_Element_Access;
overriding function Not_Token_2
(Self : Function_Body_Declaration)
return Program.Lexical_Elements.Lexical_Element_Access;
overriding function Null_Token
(Self : Function_Body_Declaration)
return Program.Lexical_Elements.Lexical_Element_Access;
overriding function With_Token
(Self : Function_Body_Declaration)
return Program.Lexical_Elements.Lexical_Element_Access;
overriding function Is_Token
(Self : Function_Body_Declaration)
return not null Program.Lexical_Elements.Lexical_Element_Access;
overriding function Begin_Token
(Self : Function_Body_Declaration)
return not null Program.Lexical_Elements.Lexical_Element_Access;
overriding function Exception_Token
(Self : Function_Body_Declaration)
return Program.Lexical_Elements.Lexical_Element_Access;
overriding function End_Token
(Self : Function_Body_Declaration)
return not null Program.Lexical_Elements.Lexical_Element_Access;
overriding function Semicolon_Token
(Self : Function_Body_Declaration)
return not null Program.Lexical_Elements.Lexical_Element_Access;
overriding function Has_Not
(Self : Function_Body_Declaration)
return Boolean;
overriding function Has_Overriding
(Self : Function_Body_Declaration)
return Boolean;
overriding function Has_Not_Null
(Self : Function_Body_Declaration)
return Boolean;
type Implicit_Function_Body_Declaration is
new Base_Function_Body_Declaration
with record
Is_Part_Of_Implicit : Boolean;
Is_Part_Of_Inherited : Boolean;
Is_Part_Of_Instance : Boolean;
Has_Not : Boolean;
Has_Overriding : Boolean;
Has_Not_Null : Boolean;
end record;
overriding function To_Function_Body_Declaration_Text
(Self : in out Implicit_Function_Body_Declaration)
return Program.Elements.Function_Body_Declarations
.Function_Body_Declaration_Text_Access;
overriding function Is_Part_Of_Implicit
(Self : Implicit_Function_Body_Declaration)
return Boolean;
overriding function Is_Part_Of_Inherited
(Self : Implicit_Function_Body_Declaration)
return Boolean;
overriding function Is_Part_Of_Instance
(Self : Implicit_Function_Body_Declaration)
return Boolean;
overriding function Has_Not
(Self : Implicit_Function_Body_Declaration)
return Boolean;
overriding function Has_Overriding
(Self : Implicit_Function_Body_Declaration)
return Boolean;
overriding function Has_Not_Null
(Self : Implicit_Function_Body_Declaration)
return Boolean;
end Program.Nodes.Function_Body_Declarations;
| 39.865574 | 78 | 0.737314 |
a0e5acea55403286c7dcf806f1b22b01a0ef4559 | 43,336 | ads | Ada | src/hershey_fonts/giza-hershey_fonts-timesi.ads | Fabien-Chouteau/Giza | 9f6c167666dbba8f0e5f0ba3e33825c0b3f399bd | [
"BSD-3-Clause"
] | 7 | 2017-10-18T02:40:24.000Z | 2020-12-19T22:41:19.000Z | src/hershey_fonts/giza-hershey_fonts-timesi.ads | Fabien-Chouteau/Giza | 9f6c167666dbba8f0e5f0ba3e33825c0b3f399bd | [
"BSD-3-Clause"
] | null | null | null | src/hershey_fonts/giza-hershey_fonts-timesi.ads | Fabien-Chouteau/Giza | 9f6c167666dbba8f0e5f0ba3e33825c0b3f399bd | [
"BSD-3-Clause"
] | 2 | 2019-05-06T08:30:26.000Z | 2020-11-22T11:27:27.000Z | package Giza.Hershey_Fonts.Timesi is
Font : constant Giza.Font.Ref_Const;
private
Glyph_0 : aliased constant Glyph :=
(Number_Of_Vectors => 0,
Width => 16,
Height => 0,
Y_Offset => 0,
X_Offset => -8,
Vects => (others => (Raise_Pen)));
Glyph_1 : aliased constant Glyph :=
(Number_Of_Vectors => 17,
Width => 11,
Height => 21,
Y_Offset => -12,
X_Offset => -5,
Vects => (Raise_Pen,
(3, -12),
(2, -11),
(0, 1),
Raise_Pen,
(3, -11),
(0, 1),
Raise_Pen,
(3, -12),
(4, -11),
(0, 1),
Raise_Pen,
(-2, 7),
(-3, 8),
(-2, 9),
(-1, 8),
(-2, 7)));
Glyph_2 : aliased constant Glyph :=
(Number_Of_Vectors => 12,
Width => 18,
Height => 7,
Y_Offset => -12,
X_Offset => -9,
Vects => (Raise_Pen,
(-2, -12),
(-4, -5),
Raise_Pen,
(-1, -12),
(-4, -5),
Raise_Pen,
(7, -12),
(5, -5),
Raise_Pen,
(8, -12),
(5, -5)));
Glyph_3 : aliased constant Glyph :=
(Number_Of_Vectors => 12,
Width => 21,
Height => 32,
Y_Offset => -16,
X_Offset => -10,
Vects => (Raise_Pen,
(1, -16),
(-6, 16),
Raise_Pen,
(7, -16),
(0, 16),
Raise_Pen,
(-6, -3),
(8, -3),
Raise_Pen,
(-7, 3),
(7, 3)));
Glyph_4 : aliased constant Glyph :=
(Number_Of_Vectors => 41,
Width => 21,
Height => 29,
Y_Offset => -16,
X_Offset => -10,
Vects => (Raise_Pen,
(2, -16),
(-6, 13),
Raise_Pen,
(7, -16),
(-1, 13),
Raise_Pen,
(8, -8),
(7, -7),
(8, -6),
(9, -7),
(9, -8),
(8, -10),
(7, -11),
(4, -12),
(0, -12),
(-3, -11),
(-5, -9),
(-5, -7),
(-4, -5),
(-3, -4),
(4, 0),
(6, 2),
Raise_Pen,
(-5, -7),
(-3, -5),
(4, -1),
(5, 0),
(6, 2),
(6, 5),
(5, 7),
(4, 8),
(1, 9),
(-3, 9),
(-6, 8),
(-7, 7),
(-8, 5),
(-8, 4),
(-7, 3),
(-6, 4),
(-7, 5)));
Glyph_5 : aliased constant Glyph :=
(Number_Of_Vectors => 32,
Width => 24,
Height => 21,
Y_Offset => -12,
X_Offset => -12,
Vects => (Raise_Pen,
(9, -12),
(-9, 9),
Raise_Pen,
(-4, -12),
(-2, -10),
(-2, -8),
(-3, -6),
(-5, -5),
(-7, -5),
(-9, -7),
(-9, -9),
(-8, -11),
(-6, -12),
(-4, -12),
(-2, -11),
(1, -10),
(4, -10),
(7, -11),
(9, -12),
Raise_Pen,
(5, 2),
(3, 3),
(2, 5),
(2, 7),
(4, 9),
(6, 9),
(8, 8),
(9, 6),
(9, 4),
(7, 2),
(5, 2)));
Glyph_6 : aliased constant Glyph :=
(Number_Of_Vectors => 49,
Width => 25,
Height => 21,
Y_Offset => -12,
X_Offset => -12,
Vects => (Raise_Pen,
(9, -4),
(8, -3),
(9, -2),
(10, -3),
(10, -4),
(9, -5),
(8, -5),
(7, -4),
(6, -2),
(4, 3),
(2, 6),
(0, 8),
(-2, 9),
(-5, 9),
(-8, 8),
(-9, 6),
(-9, 3),
(-8, 1),
(-2, -3),
(0, -5),
(1, -7),
(1, -9),
(0, -11),
(-2, -12),
(-4, -11),
(-5, -9),
(-5, -7),
(-4, -4),
(-2, -1),
(3, 6),
(5, 8),
(8, 9),
(9, 9),
(10, 8),
(10, 7),
Raise_Pen,
(-5, 9),
(-7, 8),
(-8, 6),
(-8, 3),
(-7, 1),
(-5, -1),
Raise_Pen,
(-5, -7),
(-4, -5),
(4, 6),
(6, 8),
(8, 9)));
Glyph_7 : aliased constant Glyph :=
(Number_Of_Vectors => 6,
Width => 9,
Height => 7,
Y_Offset => -12,
X_Offset => -4,
Vects => (Raise_Pen,
(3, -12),
(1, -5),
Raise_Pen,
(4, -12),
(1, -5)));
Glyph_8 : aliased constant Glyph :=
(Number_Of_Vectors => 20,
Width => 15,
Height => 32,
Y_Offset => -16,
X_Offset => -7,
Vects => (Raise_Pen,
(8, -16),
(4, -13),
(1, -10),
(-1, -7),
(-3, -3),
(-4, 2),
(-4, 6),
(-3, 11),
(-2, 14),
(-1, 16),
Raise_Pen,
(4, -13),
(1, -9),
(-1, -5),
(-2, -2),
(-3, 3),
(-3, 8),
(-2, 13),
(-1, 16)));
Glyph_9 : aliased constant Glyph :=
(Number_Of_Vectors => 20,
Width => 15,
Height => 32,
Y_Offset => -16,
X_Offset => -8,
Vects => (Raise_Pen,
(1, -16),
(2, -14),
(3, -11),
(4, -6),
(4, -2),
(3, 3),
(1, 7),
(-1, 10),
(-4, 13),
(-8, 16),
Raise_Pen,
(1, -16),
(2, -13),
(3, -8),
(3, -3),
(2, 2),
(1, 5),
(-1, 9),
(-4, 13)));
Glyph_10 : aliased constant Glyph :=
(Number_Of_Vectors => 9,
Width => 16,
Height => 12,
Y_Offset => -6,
X_Offset => -8,
Vects => (Raise_Pen,
(0, -6),
(0, 6),
Raise_Pen,
(-5, -3),
(5, 3),
Raise_Pen,
(5, -3),
(-5, 3)));
Glyph_11 : aliased constant Glyph :=
(Number_Of_Vectors => 6,
Width => 26,
Height => 18,
Y_Offset => -9,
X_Offset => -13,
Vects => (Raise_Pen,
(0, -9),
(0, 9),
Raise_Pen,
(-9, 0),
(9, 0)));
Glyph_12 : aliased constant Glyph :=
(Number_Of_Vectors => 8,
Width => 11,
Height => 6,
Y_Offset => 7,
X_Offset => -5,
Vects => (Raise_Pen,
(-2, 9),
(-3, 8),
(-2, 7),
(-1, 8),
(-1, 9),
(-2, 11),
(-4, 13)));
Glyph_13 : aliased constant Glyph :=
(Number_Of_Vectors => 3,
Width => 26,
Height => 0,
Y_Offset => 0,
X_Offset => -13,
Vects => (Raise_Pen,
(-9, 0),
(9, 0)));
Glyph_14 : aliased constant Glyph :=
(Number_Of_Vectors => 6,
Width => 11,
Height => 2,
Y_Offset => 7,
X_Offset => -5,
Vects => (Raise_Pen,
(-2, 7),
(-3, 8),
(-2, 9),
(-1, 8),
(-2, 7)));
Glyph_15 : aliased constant Glyph :=
(Number_Of_Vectors => 3,
Width => 22,
Height => 32,
Y_Offset => -16,
X_Offset => -11,
Vects => (Raise_Pen,
(9, -16),
(-9, 16)));
Glyph_16 : aliased constant Glyph :=
(Number_Of_Vectors => 42,
Width => 21,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(2, -12),
(-1, -11),
(-3, -9),
(-5, -6),
(-6, -3),
(-7, 1),
(-7, 4),
(-6, 7),
(-5, 8),
(-3, 9),
(-1, 9),
(2, 8),
(4, 6),
(6, 3),
(7, 0),
(8, -4),
(8, -7),
(7, -10),
(6, -11),
(4, -12),
(2, -12),
Raise_Pen,
(2, -12),
(0, -11),
(-2, -9),
(-4, -6),
(-5, -3),
(-6, 1),
(-6, 4),
(-5, 7),
(-3, 9),
Raise_Pen,
(-1, 9),
(1, 8),
(3, 6),
(5, 3),
(6, 0),
(7, -4),
(7, -7),
(6, -10),
(4, -12)));
Glyph_17 : aliased constant Glyph :=
(Number_Of_Vectors => 15,
Width => 21,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(2, -8),
(-3, 9),
Raise_Pen,
(4, -12),
(-2, 9),
Raise_Pen,
(4, -12),
(1, -9),
(-2, -7),
(-4, -6),
Raise_Pen,
(3, -9),
(-1, -7),
(-4, -6)));
Glyph_18 : aliased constant Glyph :=
(Number_Of_Vectors => 42,
Width => 21,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(-3, -8),
(-2, -7),
(-3, -6),
(-4, -7),
(-4, -8),
(-3, -10),
(-2, -11),
(1, -12),
(4, -12),
(7, -11),
(8, -9),
(8, -7),
(7, -5),
(5, -3),
(2, -1),
(-2, 1),
(-5, 3),
(-7, 5),
(-9, 9),
Raise_Pen,
(4, -12),
(6, -11),
(7, -9),
(7, -7),
(6, -5),
(4, -3),
(-2, 1),
Raise_Pen,
(-8, 7),
(-7, 6),
(-5, 6),
(0, 8),
(3, 8),
(5, 7),
(6, 5),
Raise_Pen,
(-5, 6),
(0, 9),
(3, 9),
(5, 8),
(6, 5)));
Glyph_19 : aliased constant Glyph :=
(Number_Of_Vectors => 50,
Width => 21,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(-3, -8),
(-2, -7),
(-3, -6),
(-4, -7),
(-4, -8),
(-3, -10),
(-2, -11),
(1, -12),
(4, -12),
(7, -11),
(8, -9),
(8, -7),
(7, -5),
(4, -3),
(1, -2),
Raise_Pen,
(4, -12),
(6, -11),
(7, -9),
(7, -7),
(6, -5),
(4, -3),
Raise_Pen,
(-1, -2),
(1, -2),
(4, -1),
(5, 0),
(6, 2),
(6, 5),
(5, 7),
(4, 8),
(1, 9),
(-3, 9),
(-6, 8),
(-7, 7),
(-8, 5),
(-8, 4),
(-7, 3),
(-6, 4),
(-7, 5),
Raise_Pen,
(1, -2),
(3, -1),
(4, 0),
(5, 2),
(5, 5),
(4, 7),
(3, 8),
(1, 9)));
Glyph_20 : aliased constant Glyph :=
(Number_Of_Vectors => 10,
Width => 21,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(6, -11),
(0, 9),
Raise_Pen,
(7, -12),
(1, 9),
Raise_Pen,
(7, -12),
(-8, 3),
(8, 3)));
Glyph_21 : aliased constant Glyph :=
(Number_Of_Vectors => 39,
Width => 21,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(-1, -12),
(-6, -2),
Raise_Pen,
(-1, -12),
(9, -12),
Raise_Pen,
(-1, -11),
(4, -11),
(9, -12),
Raise_Pen,
(-6, -2),
(-5, -3),
(-2, -4),
(1, -4),
(4, -3),
(5, -2),
(6, 0),
(6, 3),
(5, 6),
(3, 8),
(0, 9),
(-3, 9),
(-6, 8),
(-7, 7),
(-8, 5),
(-8, 4),
(-7, 3),
(-6, 4),
(-7, 5),
Raise_Pen,
(1, -4),
(3, -3),
(4, -2),
(5, 0),
(5, 3),
(4, 6),
(2, 8),
(0, 9)));
Glyph_22 : aliased constant Glyph :=
(Number_Of_Vectors => 46,
Width => 21,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(7, -9),
(6, -8),
(7, -7),
(8, -8),
(8, -9),
(7, -11),
(5, -12),
(2, -12),
(-1, -11),
(-3, -9),
(-5, -6),
(-6, -3),
(-7, 1),
(-7, 5),
(-6, 7),
(-5, 8),
(-3, 9),
(0, 9),
(3, 8),
(5, 6),
(6, 4),
(6, 1),
(5, -1),
(4, -2),
(2, -3),
(-1, -3),
(-3, -2),
(-5, 0),
(-6, 2),
Raise_Pen,
(2, -12),
(0, -11),
(-2, -9),
(-4, -6),
(-5, -3),
(-6, 1),
(-6, 6),
(-5, 8),
Raise_Pen,
(0, 9),
(2, 8),
(4, 6),
(5, 4),
(5, 0),
(4, -2)));
Glyph_23 : aliased constant Glyph :=
(Number_Of_Vectors => 30,
Width => 21,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(-4, -12),
(-6, -6),
Raise_Pen,
(9, -12),
(8, -9),
(6, -6),
(1, 0),
(-1, 3),
(-2, 5),
(-3, 9),
Raise_Pen,
(6, -6),
(0, 0),
(-2, 3),
(-3, 5),
(-4, 9),
Raise_Pen,
(-5, -9),
(-2, -12),
(0, -12),
(5, -9),
Raise_Pen,
(-4, -10),
(-2, -11),
(0, -11),
(5, -9),
(7, -9),
(8, -10),
(9, -12)));
Glyph_24 : aliased constant Glyph :=
(Number_Of_Vectors => 63,
Width => 21,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(1, -12),
(-2, -11),
(-3, -10),
(-4, -8),
(-4, -5),
(-3, -3),
(-1, -2),
(2, -2),
(6, -3),
(7, -4),
(8, -6),
(8, -9),
(7, -11),
(4, -12),
(1, -12),
Raise_Pen,
(1, -12),
(-1, -11),
(-2, -10),
(-3, -8),
(-3, -5),
(-2, -3),
(-1, -2),
Raise_Pen,
(2, -2),
(5, -3),
(6, -4),
(7, -6),
(7, -9),
(6, -11),
(4, -12),
Raise_Pen,
(-1, -2),
(-5, -1),
(-7, 1),
(-8, 3),
(-8, 6),
(-7, 8),
(-4, 9),
(0, 9),
(4, 8),
(5, 7),
(6, 5),
(6, 2),
(5, 0),
(4, -1),
(2, -2),
Raise_Pen,
(-1, -2),
(-4, -1),
(-6, 1),
(-7, 3),
(-7, 6),
(-6, 8),
(-4, 9),
Raise_Pen,
(0, 9),
(3, 8),
(4, 7),
(5, 5),
(5, 1),
(4, -1)));
Glyph_25 : aliased constant Glyph :=
(Number_Of_Vectors => 46,
Width => 21,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(7, -5),
(6, -3),
(4, -1),
(2, 0),
(-1, 0),
(-3, -1),
(-4, -2),
(-5, -4),
(-5, -7),
(-4, -9),
(-2, -11),
(1, -12),
(4, -12),
(6, -11),
(7, -10),
(8, -8),
(8, -4),
(7, 0),
(6, 3),
(4, 6),
(2, 8),
(-1, 9),
(-4, 9),
(-6, 8),
(-7, 6),
(-7, 5),
(-6, 4),
(-5, 5),
(-6, 6),
Raise_Pen,
(-3, -1),
(-4, -3),
(-4, -7),
(-3, -9),
(-1, -11),
(1, -12),
Raise_Pen,
(6, -11),
(7, -9),
(7, -4),
(6, 0),
(5, 3),
(3, 6),
(1, 8),
(-1, 9)));
Glyph_26 : aliased constant Glyph :=
(Number_Of_Vectors => 11,
Width => 11,
Height => 14,
Y_Offset => -5,
X_Offset => -5,
Vects => (Raise_Pen,
(1, -5),
(0, -4),
(1, -3),
(2, -4),
(1, -5),
Raise_Pen,
(-2, 7),
(-3, 8),
(-2, 9),
(-1, 8)));
Glyph_27 : aliased constant Glyph :=
(Number_Of_Vectors => 14,
Width => 11,
Height => 18,
Y_Offset => -5,
X_Offset => -5,
Vects => (Raise_Pen,
(1, -5),
(0, -4),
(1, -3),
(2, -4),
(1, -5),
Raise_Pen,
(-2, 9),
(-3, 8),
(-2, 7),
(-1, 8),
(-1, 9),
(-2, 11),
(-4, 13)));
Glyph_28 : aliased constant Glyph :=
(Number_Of_Vectors => 4,
Width => 24,
Height => 18,
Y_Offset => -9,
X_Offset => -12,
Vects => (Raise_Pen,
(8, -9),
(-8, 0),
(8, 9)));
Glyph_29 : aliased constant Glyph :=
(Number_Of_Vectors => 6,
Width => 26,
Height => 6,
Y_Offset => -3,
X_Offset => -13,
Vects => (Raise_Pen,
(-9, -3),
(9, -3),
Raise_Pen,
(-9, 3),
(9, 3)));
Glyph_30 : aliased constant Glyph :=
(Number_Of_Vectors => 4,
Width => 24,
Height => 18,
Y_Offset => -9,
X_Offset => -12,
Vects => (Raise_Pen,
(-8, -9),
(8, 0),
(-8, 9)));
Glyph_31 : aliased constant Glyph :=
(Number_Of_Vectors => 34,
Width => 21,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(-3, -8),
(-2, -7),
(-3, -6),
(-4, -7),
(-4, -8),
(-3, -10),
(-2, -11),
(1, -12),
(5, -12),
(8, -11),
(9, -9),
(9, -7),
(8, -5),
(7, -4),
(1, -2),
(-1, -1),
(-1, 1),
(0, 2),
(2, 2),
Raise_Pen,
(5, -12),
(7, -11),
(8, -9),
(8, -7),
(7, -5),
(6, -4),
(4, -3),
Raise_Pen,
(-2, 7),
(-3, 8),
(-2, 9),
(-1, 8),
(-2, 7)));
Glyph_32 : aliased constant Glyph :=
(Number_Of_Vectors => 56,
Width => 27,
Height => 21,
Y_Offset => -12,
X_Offset => -13,
Vects => (Raise_Pen,
(5, -4),
(4, -6),
(2, -7),
(-1, -7),
(-3, -6),
(-4, -5),
(-5, -2),
(-5, 1),
(-4, 3),
(-2, 4),
(1, 4),
(3, 3),
(4, 1),
Raise_Pen,
(-1, -7),
(-3, -5),
(-4, -2),
(-4, 1),
(-3, 3),
(-2, 4),
Raise_Pen,
(5, -7),
(4, 1),
(4, 3),
(6, 4),
(8, 4),
(10, 2),
(11, -1),
(11, -3),
(10, -6),
(9, -8),
(7, -10),
(5, -11),
(2, -12),
(-1, -12),
(-4, -11),
(-6, -10),
(-8, -8),
(-9, -6),
(-10, -3),
(-10, 0),
(-9, 3),
(-8, 5),
(-6, 7),
(-4, 8),
(-1, 9),
(2, 9),
(5, 8),
(7, 7),
(8, 6),
Raise_Pen,
(6, -7),
(5, 1),
(5, 3),
(6, 4)));
Glyph_33 : aliased constant Glyph :=
(Number_Of_Vectors => 18,
Width => 20,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(3, -12),
(-10, 9),
Raise_Pen,
(3, -12),
(4, 9),
Raise_Pen,
(2, -10),
(3, 9),
Raise_Pen,
(-6, 3),
(3, 3),
Raise_Pen,
(-12, 9),
(-6, 9),
Raise_Pen,
(0, 9),
(6, 9)));
Glyph_34 : aliased constant Glyph :=
(Number_Of_Vectors => 41,
Width => 24,
Height => 21,
Y_Offset => -12,
X_Offset => -12,
Vects => (Raise_Pen,
(-3, -12),
(-9, 9),
Raise_Pen,
(-2, -12),
(-8, 9),
Raise_Pen,
(-6, -12),
(5, -12),
(8, -11),
(9, -9),
(9, -7),
(8, -4),
(7, -3),
(4, -2),
Raise_Pen,
(5, -12),
(7, -11),
(8, -9),
(8, -7),
(7, -4),
(6, -3),
(4, -2),
Raise_Pen,
(-5, -2),
(4, -2),
(6, -1),
(7, 1),
(7, 3),
(6, 6),
(4, 8),
(0, 9),
(-12, 9),
Raise_Pen,
(4, -2),
(5, -1),
(6, 1),
(6, 3),
(5, 6),
(3, 8),
(0, 9)));
Glyph_35 : aliased constant Glyph :=
(Number_Of_Vectors => 34,
Width => 21,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(8, -10),
(9, -10),
(10, -12),
(9, -6),
(9, -8),
(8, -10),
(7, -11),
(5, -12),
(2, -12),
(-1, -11),
(-3, -9),
(-5, -6),
(-6, -3),
(-7, 1),
(-7, 4),
(-6, 7),
(-5, 8),
(-2, 9),
(1, 9),
(3, 8),
(5, 6),
(6, 4),
Raise_Pen,
(2, -12),
(0, -11),
(-2, -9),
(-4, -6),
(-5, -3),
(-6, 1),
(-6, 4),
(-5, 7),
(-4, 8),
(-2, 9)));
Glyph_36 : aliased constant Glyph :=
(Number_Of_Vectors => 30,
Width => 23,
Height => 21,
Y_Offset => -12,
X_Offset => -12,
Vects => (Raise_Pen,
(-3, -12),
(-9, 9),
Raise_Pen,
(-2, -12),
(-8, 9),
Raise_Pen,
(-6, -12),
(3, -12),
(6, -11),
(7, -10),
(8, -7),
(8, -3),
(7, 1),
(5, 5),
(3, 7),
(1, 8),
(-3, 9),
(-12, 9),
Raise_Pen,
(3, -12),
(5, -11),
(6, -10),
(7, -7),
(7, -3),
(6, 1),
(4, 5),
(2, 7),
(0, 8),
(-3, 9)));
Glyph_37 : aliased constant Glyph :=
(Number_Of_Vectors => 22,
Width => 23,
Height => 21,
Y_Offset => -12,
X_Offset => -12,
Vects => (Raise_Pen,
(-3, -12),
(-9, 9),
Raise_Pen,
(-2, -12),
(-8, 9),
Raise_Pen,
(2, -6),
(0, 2),
Raise_Pen,
(-6, -12),
(9, -12),
(8, -6),
(8, -12),
Raise_Pen,
(-5, -2),
(1, -2),
Raise_Pen,
(-12, 9),
(3, 9),
(5, 4),
(2, 9)));
Glyph_38 : aliased constant Glyph :=
(Number_Of_Vectors => 20,
Width => 22,
Height => 21,
Y_Offset => -12,
X_Offset => -12,
Vects => (Raise_Pen,
(-3, -12),
(-9, 9),
Raise_Pen,
(-2, -12),
(-8, 9),
Raise_Pen,
(2, -6),
(0, 2),
Raise_Pen,
(-6, -12),
(9, -12),
(8, -6),
(8, -12),
Raise_Pen,
(-5, -2),
(1, -2),
Raise_Pen,
(-12, 9),
(-5, 9)));
Glyph_39 : aliased constant Glyph :=
(Number_Of_Vectors => 42,
Width => 22,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(8, -10),
(9, -10),
(10, -12),
(9, -6),
(9, -8),
(8, -10),
(7, -11),
(5, -12),
(2, -12),
(-1, -11),
(-3, -9),
(-5, -6),
(-6, -3),
(-7, 1),
(-7, 4),
(-6, 7),
(-5, 8),
(-2, 9),
(0, 9),
(3, 8),
(5, 6),
(7, 2),
Raise_Pen,
(2, -12),
(0, -11),
(-2, -9),
(-4, -6),
(-5, -3),
(-6, 1),
(-6, 4),
(-5, 7),
(-4, 8),
(-2, 9),
Raise_Pen,
(0, 9),
(2, 8),
(4, 6),
(6, 2),
Raise_Pen,
(3, 2),
(10, 2)));
Glyph_40 : aliased constant Glyph :=
(Number_Of_Vectors => 27,
Width => 26,
Height => 21,
Y_Offset => -12,
X_Offset => -13,
Vects => (Raise_Pen,
(-4, -12),
(-10, 9),
Raise_Pen,
(-3, -12),
(-9, 9),
Raise_Pen,
(9, -12),
(3, 9),
Raise_Pen,
(10, -12),
(4, 9),
Raise_Pen,
(-7, -12),
(0, -12),
Raise_Pen,
(6, -12),
(13, -12),
Raise_Pen,
(-6, -2),
(6, -2),
Raise_Pen,
(-13, 9),
(-6, 9),
Raise_Pen,
(0, 9),
(7, 9)));
Glyph_41 : aliased constant Glyph :=
(Number_Of_Vectors => 12,
Width => 13,
Height => 21,
Y_Offset => -12,
X_Offset => -6,
Vects => (Raise_Pen,
(3, -12),
(-3, 9),
Raise_Pen,
(4, -12),
(-2, 9),
Raise_Pen,
(0, -12),
(7, -12),
Raise_Pen,
(-6, 9),
(1, 9)));
Glyph_42 : aliased constant Glyph :=
(Number_Of_Vectors => 21,
Width => 18,
Height => 21,
Y_Offset => -12,
X_Offset => -9,
Vects => (Raise_Pen,
(6, -12),
(1, 5),
(0, 7),
(-1, 8),
(-3, 9),
(-5, 9),
(-7, 8),
(-8, 6),
(-8, 4),
(-7, 3),
(-6, 4),
(-7, 5),
Raise_Pen,
(5, -12),
(0, 5),
(-1, 7),
(-3, 9),
Raise_Pen,
(2, -12),
(9, -12)));
Glyph_43 : aliased constant Glyph :=
(Number_Of_Vectors => 27,
Width => 23,
Height => 21,
Y_Offset => -12,
X_Offset => -12,
Vects => (Raise_Pen,
(-3, -12),
(-9, 9),
Raise_Pen,
(-2, -12),
(-8, 9),
Raise_Pen,
(11, -12),
(-6, 1),
Raise_Pen,
(1, -3),
(5, 9),
Raise_Pen,
(0, -3),
(4, 9),
Raise_Pen,
(-6, -12),
(1, -12),
Raise_Pen,
(7, -12),
(13, -12),
Raise_Pen,
(-12, 9),
(-5, 9),
Raise_Pen,
(1, 9),
(7, 9)));
Glyph_44 : aliased constant Glyph :=
(Number_Of_Vectors => 14,
Width => 20,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(-1, -12),
(-7, 9),
Raise_Pen,
(0, -12),
(-6, 9),
Raise_Pen,
(-4, -12),
(3, -12),
Raise_Pen,
(-10, 9),
(5, 9),
(7, 3),
(4, 9)));
Glyph_45 : aliased constant Glyph :=
(Number_Of_Vectors => 30,
Width => 27,
Height => 21,
Y_Offset => -12,
X_Offset => -13,
Vects => (Raise_Pen,
(-4, -12),
(-10, 9),
Raise_Pen,
(-4, -12),
(-3, 9),
Raise_Pen,
(-3, -12),
(-2, 7),
Raise_Pen,
(10, -12),
(-3, 9),
Raise_Pen,
(10, -12),
(4, 9),
Raise_Pen,
(11, -12),
(5, 9),
Raise_Pen,
(-7, -12),
(-3, -12),
Raise_Pen,
(10, -12),
(14, -12),
Raise_Pen,
(-13, 9),
(-7, 9),
Raise_Pen,
(1, 9),
(8, 9)));
Glyph_46 : aliased constant Glyph :=
(Number_Of_Vectors => 21,
Width => 25,
Height => 21,
Y_Offset => -12,
X_Offset => -12,
Vects => (Raise_Pen,
(-3, -12),
(-9, 9),
Raise_Pen,
(-3, -12),
(4, 6),
Raise_Pen,
(-3, -9),
(4, 9),
Raise_Pen,
(10, -12),
(4, 9),
Raise_Pen,
(-6, -12),
(-3, -12),
Raise_Pen,
(7, -12),
(13, -12),
Raise_Pen,
(-12, 9),
(-6, 9)));
Glyph_47 : aliased constant Glyph :=
(Number_Of_Vectors => 42,
Width => 22,
Height => 21,
Y_Offset => -12,
X_Offset => -11,
Vects => (Raise_Pen,
(1, -12),
(-2, -11),
(-4, -9),
(-6, -6),
(-7, -3),
(-8, 1),
(-8, 4),
(-7, 7),
(-6, 8),
(-4, 9),
(-1, 9),
(2, 8),
(4, 6),
(6, 3),
(7, 0),
(8, -4),
(8, -7),
(7, -10),
(6, -11),
(4, -12),
(1, -12),
Raise_Pen,
(1, -12),
(-1, -11),
(-3, -9),
(-5, -6),
(-6, -3),
(-7, 1),
(-7, 4),
(-6, 7),
(-4, 9),
Raise_Pen,
(-1, 9),
(1, 8),
(3, 6),
(5, 3),
(6, 0),
(7, -4),
(7, -7),
(6, -10),
(4, -12)));
Glyph_48 : aliased constant Glyph :=
(Number_Of_Vectors => 27,
Width => 23,
Height => 21,
Y_Offset => -12,
X_Offset => -12,
Vects => (Raise_Pen,
(-3, -12),
(-9, 9),
Raise_Pen,
(-2, -12),
(-8, 9),
Raise_Pen,
(-6, -12),
(6, -12),
(9, -11),
(10, -9),
(10, -7),
(9, -4),
(7, -2),
(3, -1),
(-5, -1),
Raise_Pen,
(6, -12),
(8, -11),
(9, -9),
(9, -7),
(8, -4),
(6, -2),
(3, -1),
Raise_Pen,
(-12, 9),
(-5, 9)));
Glyph_49 : aliased constant Glyph :=
(Number_Of_Vectors => 61,
Width => 22,
Height => 26,
Y_Offset => -12,
X_Offset => -11,
Vects => (Raise_Pen,
(1, -12),
(-2, -11),
(-4, -9),
(-6, -6),
(-7, -3),
(-8, 1),
(-8, 4),
(-7, 7),
(-6, 8),
(-4, 9),
(-1, 9),
(2, 8),
(4, 6),
(6, 3),
(7, 0),
(8, -4),
(8, -7),
(7, -10),
(6, -11),
(4, -12),
(1, -12),
Raise_Pen,
(1, -12),
(-1, -11),
(-3, -9),
(-5, -6),
(-6, -3),
(-7, 1),
(-7, 4),
(-6, 7),
(-4, 9),
Raise_Pen,
(-1, 9),
(1, 8),
(3, 6),
(5, 3),
(6, 0),
(7, -4),
(7, -7),
(6, -10),
(4, -12),
Raise_Pen,
(-6, 7),
(-6, 6),
(-5, 4),
(-3, 3),
(-2, 3),
(0, 4),
(1, 6),
(1, 13),
(2, 14),
(4, 14),
(5, 12),
(5, 11),
Raise_Pen,
(1, 6),
(2, 12),
(3, 13),
(4, 13),
(5, 12)));
Glyph_50 : aliased constant Glyph :=
(Number_Of_Vectors => 42,
Width => 24,
Height => 21,
Y_Offset => -12,
X_Offset => -12,
Vects => (Raise_Pen,
(-3, -12),
(-9, 9),
Raise_Pen,
(-2, -12),
(-8, 9),
Raise_Pen,
(-6, -12),
(5, -12),
(8, -11),
(9, -9),
(9, -7),
(8, -4),
(7, -3),
(4, -2),
(-5, -2),
Raise_Pen,
(5, -12),
(7, -11),
(8, -9),
(8, -7),
(7, -4),
(6, -3),
(4, -2),
Raise_Pen,
(0, -2),
(2, -1),
(3, 0),
(4, 8),
(5, 9),
(7, 9),
(8, 7),
(8, 6),
Raise_Pen,
(3, 0),
(5, 7),
(6, 8),
(7, 8),
(8, 7),
Raise_Pen,
(-12, 9),
(-5, 9)));
Glyph_51 : aliased constant Glyph :=
(Number_Of_Vectors => 35,
Width => 23,
Height => 21,
Y_Offset => -12,
X_Offset => -11,
Vects => (Raise_Pen,
(8, -10),
(9, -10),
(10, -12),
(9, -6),
(9, -8),
(8, -10),
(7, -11),
(4, -12),
(0, -12),
(-3, -11),
(-5, -9),
(-5, -7),
(-4, -5),
(-3, -4),
(4, 0),
(6, 2),
Raise_Pen,
(-5, -7),
(-3, -5),
(4, -1),
(5, 0),
(6, 2),
(6, 5),
(5, 7),
(4, 8),
(1, 9),
(-3, 9),
(-6, 8),
(-7, 7),
(-8, 5),
(-8, 3),
(-9, 9),
(-8, 7),
(-7, 7)));
Glyph_52 : aliased constant Glyph :=
(Number_Of_Vectors => 16,
Width => 21,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(3, -12),
(-3, 9),
Raise_Pen,
(4, -12),
(-2, 9),
Raise_Pen,
(-3, -12),
(-6, -6),
(-4, -12),
(11, -12),
(10, -6),
(10, -12),
Raise_Pen,
(-6, 9),
(1, 9)));
Glyph_53 : aliased constant Glyph :=
(Number_Of_Vectors => 25,
Width => 25,
Height => 21,
Y_Offset => -12,
X_Offset => -12,
Vects => (Raise_Pen,
(-4, -12),
(-7, -1),
(-8, 3),
(-8, 6),
(-7, 8),
(-4, 9),
(0, 9),
(3, 8),
(5, 6),
(6, 3),
(10, -12),
Raise_Pen,
(-3, -12),
(-6, -1),
(-7, 3),
(-7, 6),
(-6, 8),
(-4, 9),
Raise_Pen,
(-7, -12),
(0, -12),
Raise_Pen,
(7, -12),
(13, -12)));
Glyph_54 : aliased constant Glyph :=
(Number_Of_Vectors => 15,
Width => 20,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(-4, -12),
(-3, 9),
Raise_Pen,
(-3, -12),
(-2, 7),
Raise_Pen,
(10, -12),
(-3, 9),
Raise_Pen,
(-6, -12),
(0, -12),
Raise_Pen,
(6, -12),
(12, -12)));
Glyph_55 : aliased constant Glyph :=
(Number_Of_Vectors => 24,
Width => 26,
Height => 21,
Y_Offset => -12,
X_Offset => -13,
Vects => (Raise_Pen,
(-5, -12),
(-7, 9),
Raise_Pen,
(-4, -12),
(-6, 7),
Raise_Pen,
(3, -12),
(-7, 9),
Raise_Pen,
(3, -12),
(1, 9),
Raise_Pen,
(4, -12),
(2, 7),
Raise_Pen,
(11, -12),
(1, 9),
Raise_Pen,
(-8, -12),
(-1, -12),
Raise_Pen,
(8, -12),
(14, -12)));
Glyph_56 : aliased constant Glyph :=
(Number_Of_Vectors => 21,
Width => 22,
Height => 21,
Y_Offset => -12,
X_Offset => -11,
Vects => (Raise_Pen,
(-4, -12),
(3, 9),
Raise_Pen,
(-3, -12),
(4, 9),
Raise_Pen,
(10, -12),
(-10, 9),
Raise_Pen,
(-6, -12),
(0, -12),
Raise_Pen,
(6, -12),
(12, -12),
Raise_Pen,
(-12, 9),
(-6, 9),
Raise_Pen,
(0, 9),
(6, 9)));
Glyph_57 : aliased constant Glyph :=
(Number_Of_Vectors => 20,
Width => 21,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(-4, -12),
(0, -2),
(-3, 9),
Raise_Pen,
(-3, -12),
(1, -2),
(-2, 9),
Raise_Pen,
(11, -12),
(1, -2),
Raise_Pen,
(-6, -12),
(0, -12),
Raise_Pen,
(7, -12),
(13, -12),
Raise_Pen,
(-6, 9),
(1, 9)));
Glyph_58 : aliased constant Glyph :=
(Number_Of_Vectors => 16,
Width => 22,
Height => 21,
Y_Offset => -12,
X_Offset => -11,
Vects => (Raise_Pen,
(9, -12),
(-10, 9),
Raise_Pen,
(10, -12),
(-9, 9),
Raise_Pen,
(-3, -12),
(-6, -6),
(-4, -12),
(10, -12),
Raise_Pen,
(-10, 9),
(4, 9),
(6, 3),
(3, 9)));
Glyph_59 : aliased constant Glyph :=
(Number_Of_Vectors => 12,
Width => 14,
Height => 32,
Y_Offset => -16,
X_Offset => -7,
Vects => (Raise_Pen,
(-3, -16),
(-3, 16),
Raise_Pen,
(-2, -16),
(-2, 16),
Raise_Pen,
(-3, -16),
(4, -16),
Raise_Pen,
(-3, 16),
(4, 16)));
Glyph_60 : aliased constant Glyph :=
(Number_Of_Vectors => 3,
Width => 14,
Height => 24,
Y_Offset => -12,
X_Offset => -7,
Vects => (Raise_Pen,
(-7, -12),
(7, 12)));
Glyph_61 : aliased constant Glyph :=
(Number_Of_Vectors => 12,
Width => 14,
Height => 32,
Y_Offset => -16,
X_Offset => -7,
Vects => (Raise_Pen,
(2, -16),
(2, 16),
Raise_Pen,
(3, -16),
(3, 16),
Raise_Pen,
(-4, -16),
(3, -16),
Raise_Pen,
(-4, 16),
(3, 16)));
Glyph_62 : aliased constant Glyph :=
(Number_Of_Vectors => 8,
Width => 22,
Height => 5,
Y_Offset => -3,
X_Offset => -11,
Vects => (Raise_Pen,
(-8, 2),
(0, -3),
(8, 2),
Raise_Pen,
(-8, 2),
(0, -2),
(8, 2)));
Glyph_63 : aliased constant Glyph :=
(Number_Of_Vectors => 3,
Width => 20,
Height => 0,
Y_Offset => 16,
X_Offset => -10,
Vects => (Raise_Pen,
(-10, 16),
(10, 16)));
Glyph_64 : aliased constant Glyph :=
(Number_Of_Vectors => 7,
Width => 12,
Height => 6,
Y_Offset => -12,
X_Offset => -6,
Vects => (Raise_Pen,
(-2, -12),
(3, -6),
Raise_Pen,
(-2, -12),
(-3, -11),
(3, -6)));
Glyph_65 : aliased constant Glyph :=
(Number_Of_Vectors => 39,
Width => 21,
Height => 14,
Y_Offset => -5,
X_Offset => -10,
Vects => (Raise_Pen,
(6, -5),
(4, 2),
(3, 6),
(3, 8),
(4, 9),
(7, 9),
(9, 7),
(10, 5),
Raise_Pen,
(7, -5),
(5, 2),
(4, 6),
(4, 8),
(5, 9),
Raise_Pen,
(4, 2),
(4, -1),
(3, -4),
(1, -5),
(-1, -5),
(-4, -4),
(-6, -1),
(-7, 2),
(-7, 5),
(-6, 7),
(-5, 8),
(-3, 9),
(-1, 9),
(1, 8),
(3, 5),
(4, 2),
Raise_Pen,
(-1, -5),
(-3, -4),
(-5, -1),
(-6, 2),
(-6, 6),
(-5, 8)));
Glyph_66 : aliased constant Glyph :=
(Number_Of_Vectors => 36,
Width => 19,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(-2, -12),
(-6, 1),
(-6, 4),
(-5, 7),
(-4, 8),
Raise_Pen,
(-1, -12),
(-5, 1),
Raise_Pen,
(-5, 1),
(-4, -2),
(-2, -4),
(0, -5),
(2, -5),
(4, -4),
(5, -3),
(6, -1),
(6, 2),
(5, 5),
(3, 8),
(0, 9),
(-2, 9),
(-4, 8),
(-5, 5),
(-5, 1),
Raise_Pen,
(4, -4),
(5, -2),
(5, 2),
(4, 5),
(2, 8),
(0, 9),
Raise_Pen,
(-5, -12),
(-1, -12)));
Glyph_67 : aliased constant Glyph :=
(Number_Of_Vectors => 25,
Width => 18,
Height => 14,
Y_Offset => -5,
X_Offset => -9,
Vects => (Raise_Pen,
(5, -2),
(5, -1),
(6, -1),
(6, -2),
(5, -4),
(3, -5),
(0, -5),
(-3, -4),
(-5, -1),
(-6, 2),
(-6, 5),
(-5, 7),
(-4, 8),
(-2, 9),
(0, 9),
(3, 8),
(5, 5),
Raise_Pen,
(0, -5),
(-2, -4),
(-4, -1),
(-5, 2),
(-5, 6),
(-4, 8)));
Glyph_68 : aliased constant Glyph :=
(Number_Of_Vectors => 42,
Width => 21,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(8, -12),
(4, 2),
(3, 6),
(3, 8),
(4, 9),
(7, 9),
(9, 7),
(10, 5),
Raise_Pen,
(9, -12),
(5, 2),
(4, 6),
(4, 8),
(5, 9),
Raise_Pen,
(4, 2),
(4, -1),
(3, -4),
(1, -5),
(-1, -5),
(-4, -4),
(-6, -1),
(-7, 2),
(-7, 5),
(-6, 7),
(-5, 8),
(-3, 9),
(-1, 9),
(1, 8),
(3, 5),
(4, 2),
Raise_Pen,
(-1, -5),
(-3, -4),
(-5, -1),
(-6, 2),
(-6, 6),
(-5, 8),
Raise_Pen,
(5, -12),
(9, -12)));
Glyph_69 : aliased constant Glyph :=
(Number_Of_Vectors => 26,
Width => 18,
Height => 14,
Y_Offset => -5,
X_Offset => -9,
Vects => (Raise_Pen,
(-5, 4),
(-1, 3),
(2, 2),
(5, 0),
(6, -2),
(5, -4),
(3, -5),
(0, -5),
(-3, -4),
(-5, -1),
(-6, 2),
(-6, 5),
(-5, 7),
(-4, 8),
(-2, 9),
(0, 9),
(3, 8),
(5, 6),
Raise_Pen,
(0, -5),
(-2, -4),
(-4, -1),
(-5, 2),
(-5, 6),
(-4, 8)));
Glyph_70 : aliased constant Glyph :=
(Number_Of_Vectors => 35,
Width => 15,
Height => 28,
Y_Offset => -12,
X_Offset => -7,
Vects => (Raise_Pen,
(8, -11),
(7, -10),
(8, -9),
(9, -10),
(9, -11),
(8, -12),
(6, -12),
(4, -11),
(3, -10),
(2, -8),
(1, -5),
(-2, 9),
(-3, 13),
(-4, 15),
Raise_Pen,
(6, -12),
(4, -10),
(3, -8),
(2, -4),
(0, 5),
(-1, 9),
(-2, 12),
(-3, 14),
(-4, 15),
(-6, 16),
(-8, 16),
(-9, 15),
(-9, 14),
(-8, 13),
(-7, 14),
(-8, 15),
Raise_Pen,
(-3, -5),
(7, -5)));
Glyph_71 : aliased constant Glyph :=
(Number_Of_Vectors => 43,
Width => 20,
Height => 21,
Y_Offset => -5,
X_Offset => -10,
Vects => (Raise_Pen,
(7, -5),
(3, 9),
(2, 12),
(0, 15),
(-3, 16),
(-6, 16),
(-8, 15),
(-9, 14),
(-9, 13),
(-8, 12),
(-7, 13),
(-8, 14),
Raise_Pen,
(6, -5),
(2, 9),
(1, 12),
(-1, 15),
(-3, 16),
Raise_Pen,
(4, 2),
(4, -1),
(3, -4),
(1, -5),
(-1, -5),
(-4, -4),
(-6, -1),
(-7, 2),
(-7, 5),
(-6, 7),
(-5, 8),
(-3, 9),
(-1, 9),
(1, 8),
(3, 5),
(4, 2),
Raise_Pen,
(-1, -5),
(-3, -4),
(-5, -1),
(-6, 2),
(-6, 6),
(-5, 8)));
Glyph_72 : aliased constant Glyph :=
(Number_Of_Vectors => 31,
Width => 21,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(-2, -12),
(-8, 9),
Raise_Pen,
(-1, -12),
(-7, 9),
Raise_Pen,
(-5, 2),
(-3, -2),
(-1, -4),
(1, -5),
(3, -5),
(5, -4),
(6, -3),
(6, -1),
(4, 5),
(4, 8),
(5, 9),
Raise_Pen,
(3, -5),
(5, -3),
(5, -1),
(3, 5),
(3, 8),
(4, 9),
(7, 9),
(9, 7),
(10, 5),
Raise_Pen,
(-5, -12),
(-1, -12)));
Glyph_73 : aliased constant Glyph :=
(Number_Of_Vectors => 26,
Width => 13,
Height => 21,
Y_Offset => -12,
X_Offset => -6,
Vects => (Raise_Pen,
(3, -12),
(2, -11),
(3, -10),
(4, -11),
(3, -12),
Raise_Pen,
(-5, -1),
(-4, -3),
(-2, -5),
(1, -5),
(2, -4),
(2, -1),
(0, 5),
(0, 8),
(1, 9),
Raise_Pen,
(0, -5),
(1, -4),
(1, -1),
(-1, 5),
(-1, 8),
(0, 9),
(3, 9),
(5, 7),
(6, 5)));
Glyph_74 : aliased constant Glyph :=
(Number_Of_Vectors => 32,
Width => 13,
Height => 28,
Y_Offset => -12,
X_Offset => -6,
Vects => (Raise_Pen,
(4, -12),
(3, -11),
(4, -10),
(5, -11),
(4, -12),
Raise_Pen,
(-4, -1),
(-3, -3),
(-1, -5),
(2, -5),
(3, -4),
(3, -1),
(0, 9),
(-1, 12),
(-2, 14),
(-3, 15),
(-5, 16),
(-7, 16),
(-8, 15),
(-8, 14),
(-7, 13),
(-6, 14),
(-7, 15),
Raise_Pen,
(1, -5),
(2, -4),
(2, -1),
(-1, 9),
(-2, 12),
(-3, 14),
(-5, 16)));
Glyph_75 : aliased constant Glyph :=
(Number_Of_Vectors => 34,
Width => 20,
Height => 21,
Y_Offset => -12,
X_Offset => -10,
Vects => (Raise_Pen,
(-2, -12),
(-8, 9),
Raise_Pen,
(-1, -12),
(-7, 9),
Raise_Pen,
(6, -4),
(5, -3),
(6, -2),
(7, -3),
(7, -4),
(6, -5),
(5, -5),
(3, -4),
(-1, 0),
(-3, 1),
(-5, 1),
Raise_Pen,
(-3, 1),
(-1, 2),
(1, 8),
(2, 9),
Raise_Pen,
(-3, 1),
(-2, 2),
(0, 8),
(1, 9),
(3, 9),
(5, 8),
(7, 5),
Raise_Pen,
(-5, -12),
(-1, -12)));
Glyph_76 : aliased constant Glyph :=
(Number_Of_Vectors => 18,
Width => 12,
Height => 21,
Y_Offset => -12,
X_Offset => -5,
Vects => (Raise_Pen,
(3, -12),
(-1, 2),
(-2, 6),
(-2, 8),
(-1, 9),
(2, 9),
(4, 7),
(5, 5),
Raise_Pen,
(4, -12),
(0, 2),
(-1, 6),
(-1, 8),
(0, 9),
Raise_Pen,
(0, -12),
(4, -12)));
Glyph_77 : aliased constant Glyph :=
(Number_Of_Vectors => 52,
Width => 33,
Height => 14,
Y_Offset => -5,
X_Offset => -17,
Vects => (Raise_Pen,
(-16, -1),
(-15, -3),
(-13, -5),
(-10, -5),
(-9, -4),
(-9, -2),
(-10, 2),
(-12, 9),
Raise_Pen,
(-11, -5),
(-10, -4),
(-10, -2),
(-11, 2),
(-13, 9),
Raise_Pen,
(-10, 2),
(-8, -2),
(-6, -4),
(-4, -5),
(-2, -5),
(0, -4),
(1, -3),
(1, -1),
(-2, 9),
Raise_Pen,
(-2, -5),
(0, -3),
(0, -1),
(-3, 9),
Raise_Pen,
(0, 2),
(2, -2),
(4, -4),
(6, -5),
(8, -5),
(10, -4),
(11, -3),
(11, -1),
(9, 5),
(9, 8),
(10, 9),
Raise_Pen,
(8, -5),
(10, -3),
(10, -1),
(8, 5),
(8, 8),
(9, 9),
(12, 9),
(14, 7),
(15, 5)));
Glyph_78 : aliased constant Glyph :=
(Number_Of_Vectors => 37,
Width => 23,
Height => 14,
Y_Offset => -5,
X_Offset => -12,
Vects => (Raise_Pen,
(-11, -1),
(-10, -3),
(-8, -5),
(-5, -5),
(-4, -4),
(-4, -2),
(-5, 2),
(-7, 9),
Raise_Pen,
(-6, -5),
(-5, -4),
(-5, -2),
(-6, 2),
(-8, 9),
Raise_Pen,
(-5, 2),
(-3, -2),
(-1, -4),
(1, -5),
(3, -5),
(5, -4),
(6, -3),
(6, -1),
(4, 5),
(4, 8),
(5, 9),
Raise_Pen,
(3, -5),
(5, -3),
(5, -1),
(3, 5),
(3, 8),
(4, 9),
(7, 9),
(9, 7),
(10, 5)));
Glyph_79 : aliased constant Glyph :=
(Number_Of_Vectors => 32,
Width => 18,
Height => 14,
Y_Offset => -5,
X_Offset => -9,
Vects => (Raise_Pen,
(0, -5),
(-3, -4),
(-5, -1),
(-6, 2),
(-6, 5),
(-5, 7),
(-4, 8),
(-2, 9),
(0, 9),
(3, 8),
(5, 5),
(6, 2),
(6, -1),
(5, -3),
(4, -4),
(2, -5),
(0, -5),
Raise_Pen,
(0, -5),
(-2, -4),
(-4, -1),
(-5, 2),
(-5, 6),
(-4, 8),
Raise_Pen,
(0, 9),
(2, 8),
(4, 5),
(5, 2),
(5, -2),
(4, -4)));
Glyph_80 : aliased constant Glyph :=
(Number_Of_Vectors => 42,
Width => 21,
Height => 21,
Y_Offset => -5,
X_Offset => -11,
Vects => (Raise_Pen,
(-10, -1),
(-9, -3),
(-7, -5),
(-4, -5),
(-3, -4),
(-3, -2),
(-4, 2),
(-8, 16),
Raise_Pen,
(-5, -5),
(-4, -4),
(-4, -2),
(-5, 2),
(-9, 16),
Raise_Pen,
(-4, 2),
(-3, -1),
(-1, -4),
(1, -5),
(3, -5),
(5, -4),
(6, -3),
(7, -1),
(7, 2),
(6, 5),
(4, 8),
(1, 9),
(-1, 9),
(-3, 8),
(-4, 5),
(-4, 2),
Raise_Pen,
(5, -4),
(6, -2),
(6, 2),
(5, 5),
(3, 8),
(1, 9),
Raise_Pen,
(-12, 16),
(-5, 16)));
Glyph_81 : aliased constant Glyph :=
(Number_Of_Vectors => 33,
Width => 20,
Height => 21,
Y_Offset => -5,
X_Offset => -10,
Vects => (Raise_Pen,
(6, -5),
(0, 16),
Raise_Pen,
(7, -5),
(1, 16),
Raise_Pen,
(4, 2),
(4, -1),
(3, -4),
(1, -5),
(-1, -5),
(-4, -4),
(-6, -1),
(-7, 2),
(-7, 5),
(-6, 7),
(-5, 8),
(-3, 9),
(-1, 9),
(1, 8),
(3, 5),
(4, 2),
Raise_Pen,
(-1, -5),
(-3, -4),
(-5, -1),
(-6, 2),
(-6, 6),
(-5, 8),
Raise_Pen,
(-3, 16),
(4, 16)));
Glyph_82 : aliased constant Glyph :=
(Number_Of_Vectors => 26,
Width => 17,
Height => 14,
Y_Offset => -5,
X_Offset => -9,
Vects => (Raise_Pen,
(-8, -1),
(-7, -3),
(-5, -5),
(-2, -5),
(-1, -4),
(-1, -2),
(-2, 2),
(-4, 9),
Raise_Pen,
(-3, -5),
(-2, -4),
(-2, -2),
(-3, 2),
(-5, 9),
Raise_Pen,
(-2, 2),
(0, -2),
(2, -4),
(4, -5),
(6, -5),
(7, -4),
(7, -3),
(6, -2),
(5, -3),
(6, -4)));
Glyph_83 : aliased constant Glyph :=
(Number_Of_Vectors => 28,
Width => 17,
Height => 14,
Y_Offset => -5,
X_Offset => -8,
Vects => (Raise_Pen,
(6, -3),
(6, -2),
(7, -2),
(7, -3),
(6, -4),
(3, -5),
(0, -5),
(-3, -4),
(-4, -3),
(-4, -1),
(-3, 0),
(4, 4),
(5, 5),
Raise_Pen,
(-4, -2),
(-3, -1),
(4, 3),
(5, 4),
(5, 7),
(4, 8),
(1, 9),
(-2, 9),
(-5, 8),
(-6, 7),
(-6, 6),
(-5, 6),
(-5, 7)));
Glyph_84 : aliased constant Glyph :=
(Number_Of_Vectors => 18,
Width => 14,
Height => 21,
Y_Offset => -12,
X_Offset => -7,
Vects => (Raise_Pen,
(2, -12),
(-2, 2),
(-3, 6),
(-3, 8),
(-2, 9),
(1, 9),
(3, 7),
(4, 5),
Raise_Pen,
(3, -12),
(-1, 2),
(-2, 6),
(-2, 8),
(-1, 9),
Raise_Pen,
(-4, -5),
(5, -5)));
Glyph_85 : aliased constant Glyph :=
(Number_Of_Vectors => 37,
Width => 23,
Height => 14,
Y_Offset => -5,
X_Offset => -12,
Vects => (Raise_Pen,
(-11, -1),
(-10, -3),
(-8, -5),
(-5, -5),
(-4, -4),
(-4, -1),
(-6, 5),
(-6, 7),
(-4, 9),
Raise_Pen,
(-6, -5),
(-5, -4),
(-5, -1),
(-7, 5),
(-7, 7),
(-6, 8),
(-4, 9),
(-2, 9),
(0, 8),
(2, 6),
(4, 2),
Raise_Pen,
(6, -5),
(4, 2),
(3, 6),
(3, 8),
(4, 9),
(7, 9),
(9, 7),
(10, 5),
Raise_Pen,
(7, -5),
(5, 2),
(4, 6),
(4, 8),
(5, 9)));
Glyph_86 : aliased constant Glyph :=
(Number_Of_Vectors => 26,
Width => 20,
Height => 14,
Y_Offset => -5,
X_Offset => -10,
Vects => (Raise_Pen,
(-9, -1),
(-8, -3),
(-6, -5),
(-3, -5),
(-2, -4),
(-2, -1),
(-4, 5),
(-4, 7),
(-2, 9),
Raise_Pen,
(-4, -5),
(-3, -4),
(-3, -1),
(-5, 5),
(-5, 7),
(-4, 8),
(-2, 9),
(-1, 9),
(2, 8),
(4, 6),
(6, 3),
(7, -1),
(7, -5),
(6, -5),
(7, -3)));
Glyph_87 : aliased constant Glyph :=
(Number_Of_Vectors => 41,
Width => 29,
Height => 14,
Y_Offset => -5,
X_Offset => -15,
Vects => (Raise_Pen,
(-14, -1),
(-13, -3),
(-11, -5),
(-8, -5),
(-7, -4),
(-7, -1),
(-9, 5),
(-9, 7),
(-7, 9),
Raise_Pen,
(-9, -5),
(-8, -4),
(-8, -1),
(-10, 5),
(-10, 7),
(-9, 8),
(-7, 9),
(-5, 9),
(-3, 8),
(-1, 6),
(0, 4),
Raise_Pen,
(2, -5),
(0, 4),
(0, 7),
(1, 8),
(3, 9),
(5, 9),
(7, 8),
(9, 6),
(10, 4),
(11, 0),
(11, -5),
(10, -5),
(11, -3),
Raise_Pen,
(3, -5),
(1, 4),
(1, 7),
(3, 9)));
Glyph_88 : aliased constant Glyph :=
(Number_Of_Vectors => 42,
Width => 20,
Height => 14,
Y_Offset => -5,
X_Offset => -10,
Vects => (Raise_Pen,
(-7, -1),
(-5, -4),
(-3, -5),
(0, -5),
(1, -3),
(1, 0),
Raise_Pen,
(-1, -5),
(0, -3),
(0, 0),
(-1, 4),
(-2, 6),
(-4, 8),
(-6, 9),
(-7, 9),
(-8, 8),
(-8, 7),
(-7, 6),
(-6, 7),
(-7, 8),
Raise_Pen,
(-1, 4),
(-1, 7),
(0, 9),
(3, 9),
(5, 8),
(7, 5),
Raise_Pen,
(7, -4),
(6, -3),
(7, -2),
(8, -3),
(8, -4),
(7, -5),
(6, -5),
(4, -4),
(2, -2),
(1, 0),
(0, 4),
(0, 7),
(1, 9)));
Glyph_89 : aliased constant Glyph :=
(Number_Of_Vectors => 41,
Width => 21,
Height => 21,
Y_Offset => -5,
X_Offset => -11,
Vects => (Raise_Pen,
(-10, -1),
(-9, -3),
(-7, -5),
(-4, -5),
(-3, -4),
(-3, -1),
(-5, 5),
(-5, 7),
(-3, 9),
Raise_Pen,
(-5, -5),
(-4, -4),
(-4, -1),
(-6, 5),
(-6, 7),
(-5, 8),
(-3, 9),
(-1, 9),
(1, 8),
(3, 6),
(5, 2),
Raise_Pen,
(8, -5),
(4, 9),
(3, 12),
(1, 15),
(-2, 16),
(-5, 16),
(-7, 15),
(-8, 14),
(-8, 13),
(-7, 12),
(-6, 13),
(-7, 14),
Raise_Pen,
(7, -5),
(3, 9),
(2, 12),
(0, 15),
(-2, 16)));
Glyph_90 : aliased constant Glyph :=
(Number_Of_Vectors => 31,
Width => 20,
Height => 14,
Y_Offset => -5,
X_Offset => -10,
Vects => (Raise_Pen,
(7, -5),
(6, -3),
(4, -1),
(-4, 5),
(-6, 7),
(-7, 9),
Raise_Pen,
(-6, -1),
(-5, -3),
(-3, -5),
(0, -5),
(4, -3),
Raise_Pen,
(-5, -3),
(-3, -4),
(0, -4),
(4, -3),
(6, -3),
Raise_Pen,
(-6, 7),
(-4, 7),
(0, 8),
(3, 8),
(5, 7),
Raise_Pen,
(-4, 7),
(0, 9),
(3, 9),
(5, 7),
(6, 5)));
Glyph_91 : aliased constant Glyph :=
(Number_Of_Vectors => 40,
Width => 14,
Height => 32,
Y_Offset => -16,
X_Offset => -7,
Vects => (Raise_Pen,
(2, -16),
(0, -15),
(-1, -14),
(-2, -12),
(-2, -10),
(-1, -8),
(0, -7),
(1, -5),
(1, -3),
(-1, -1),
Raise_Pen,
(0, -15),
(-1, -13),
(-1, -11),
(0, -9),
(1, -8),
(2, -6),
(2, -4),
(1, -2),
(-3, 0),
(1, 2),
(2, 4),
(2, 6),
(1, 8),
(0, 9),
(-1, 11),
(-1, 13),
(0, 15),
Raise_Pen,
(-1, 1),
(1, 3),
(1, 5),
(0, 7),
(-1, 8),
(-2, 10),
(-2, 12),
(-1, 14),
(0, 15),
(2, 16)));
Glyph_92 : aliased constant Glyph :=
(Number_Of_Vectors => 3,
Width => 8,
Height => 32,
Y_Offset => -16,
X_Offset => -4,
Vects => (Raise_Pen,
(0, -16),
(0, 16)));
Glyph_93 : aliased constant Glyph :=
(Number_Of_Vectors => 40,
Width => 14,
Height => 32,
Y_Offset => -16,
X_Offset => -7,
Vects => (Raise_Pen,
(-2, -16),
(0, -15),
(1, -14),
(2, -12),
(2, -10),
(1, -8),
(0, -7),
(-1, -5),
(-1, -3),
(1, -1),
Raise_Pen,
(0, -15),
(1, -13),
(1, -11),
(0, -9),
(-1, -8),
(-2, -6),
(-2, -4),
(-1, -2),
(3, 0),
(-1, 2),
(-2, 4),
(-2, 6),
(-1, 8),
(0, 9),
(1, 11),
(1, 13),
(0, 15),
Raise_Pen,
(1, 1),
(-1, 3),
(-1, 5),
(0, 7),
(1, 8),
(2, 10),
(2, 12),
(1, 14),
(0, 15),
(-2, 16)));
Glyph_94 : aliased constant Glyph :=
(Number_Of_Vectors => 24,
Width => 24,
Height => 6,
Y_Offset => -3,
X_Offset => -12,
Vects => (Raise_Pen,
(-9, 3),
(-9, 1),
(-8, -2),
(-6, -3),
(-4, -3),
(-2, -2),
(2, 1),
(4, 2),
(6, 2),
(8, 1),
(9, -1),
Raise_Pen,
(-9, 1),
(-8, -1),
(-6, -2),
(-4, -2),
(-2, -1),
(2, 2),
(4, 3),
(6, 3),
(8, 2),
(9, -1),
(9, -3)));
Glyph_95 : aliased constant Glyph :=
(Number_Of_Vectors => 35,
Width => 16,
Height => 21,
Y_Offset => -12,
X_Offset => -8,
Vects => (Raise_Pen,
(-8, -12),
(-8, 9),
(-7, 9),
(-7, -12),
(-6, -12),
(-6, 9),
(-5, 9),
(-5, -12),
(-4, -12),
(-4, 9),
(-3, 9),
(-3, -12),
(-2, -12),
(-2, 9),
(-1, 9),
(-1, -12),
(0, -12),
(0, 9),
(1, 9),
(1, -12),
(2, -12),
(2, 9),
(3, 9),
(3, -12),
(4, -12),
(4, 9),
(5, 9),
(5, -12),
(6, -12),
(6, 9),
(7, 9),
(7, -12),
(8, -12),
(8, 9)));
Font_D : aliased constant Hershey_Font :=
(Number_Of_Glyphs => 96,
Glyphs =>
(
Glyph_0'Access,
Glyph_1'Access,
Glyph_2'Access,
Glyph_3'Access,
Glyph_4'Access,
Glyph_5'Access,
Glyph_6'Access,
Glyph_7'Access,
Glyph_8'Access,
Glyph_9'Access,
Glyph_10'Access,
Glyph_11'Access,
Glyph_12'Access,
Glyph_13'Access,
Glyph_14'Access,
Glyph_15'Access,
Glyph_16'Access,
Glyph_17'Access,
Glyph_18'Access,
Glyph_19'Access,
Glyph_20'Access,
Glyph_21'Access,
Glyph_22'Access,
Glyph_23'Access,
Glyph_24'Access,
Glyph_25'Access,
Glyph_26'Access,
Glyph_27'Access,
Glyph_28'Access,
Glyph_29'Access,
Glyph_30'Access,
Glyph_31'Access,
Glyph_32'Access,
Glyph_33'Access,
Glyph_34'Access,
Glyph_35'Access,
Glyph_36'Access,
Glyph_37'Access,
Glyph_38'Access,
Glyph_39'Access,
Glyph_40'Access,
Glyph_41'Access,
Glyph_42'Access,
Glyph_43'Access,
Glyph_44'Access,
Glyph_45'Access,
Glyph_46'Access,
Glyph_47'Access,
Glyph_48'Access,
Glyph_49'Access,
Glyph_50'Access,
Glyph_51'Access,
Glyph_52'Access,
Glyph_53'Access,
Glyph_54'Access,
Glyph_55'Access,
Glyph_56'Access,
Glyph_57'Access,
Glyph_58'Access,
Glyph_59'Access,
Glyph_60'Access,
Glyph_61'Access,
Glyph_62'Access,
Glyph_63'Access,
Glyph_64'Access,
Glyph_65'Access,
Glyph_66'Access,
Glyph_67'Access,
Glyph_68'Access,
Glyph_69'Access,
Glyph_70'Access,
Glyph_71'Access,
Glyph_72'Access,
Glyph_73'Access,
Glyph_74'Access,
Glyph_75'Access,
Glyph_76'Access,
Glyph_77'Access,
Glyph_78'Access,
Glyph_79'Access,
Glyph_80'Access,
Glyph_81'Access,
Glyph_82'Access,
Glyph_83'Access,
Glyph_84'Access,
Glyph_85'Access,
Glyph_86'Access,
Glyph_87'Access,
Glyph_88'Access,
Glyph_89'Access,
Glyph_90'Access,
Glyph_91'Access,
Glyph_92'Access,
Glyph_93'Access,
Glyph_94'Access,
Glyph_95'Access
), Y_Advance => 32);
Font : constant Giza.Font.Ref_Const := Font_D'Access;
end Giza.Hershey_Fonts.Timesi;
| 13.525593 | 56 | 0.41409 |
9a77a3eb90ecbe5addb8b260b2b5da05db447a42 | 836 | adb | Ada | src/gdb/gdb-7.11/gdb/testsuite/gdb.ada/addr_arith/pck.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/addr_arith/pck.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/addr_arith/pck.adb | alrooney/unum-sdk | bbccb10b0cd3500feccbbef22e27ea111c3d18eb | [
"Apache-2.0"
] | 20 | 2018-11-16T21:19:22.000Z | 2021-10-18T23:08:24.000Z | -- Copyright 2014-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/>.
package body Pck is
procedure Increment (I : in out Integer) is
begin
I := I + 1;
end Increment;
end Pck;
| 38 | 73 | 0.721292 |
a0394fba8276465825bef737876655eb716141a4 | 8,203 | adb | Ada | source/amf/uml/amf-internals-uml_elements.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_elements.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_elements.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.Extents;
with AMF.Internals.Helpers;
with AMF.Internals.Tables.UML_Attributes;
with AMF.Internals.Tables.UML_Element_Table;
with AMF.Internals.Tables.UML_Reflection;
package body AMF.Internals.UML_Elements is
------------------------
-- All_Owned_Elements --
------------------------
overriding function All_Owned_Elements
(Self : not null access constant UML_Element_Proxy)
return AMF.UML.Elements.Collections.Set_Of_UML_Element is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "All_Owned_Elements unimplemented");
raise Program_Error with "Unimplemented procedure UML_Variable_Proxy.All_Owned_Elements";
return All_Owned_Elements (Self);
end All_Owned_Elements;
---------------
-- Container --
---------------
overriding function Container
(Self : not null access constant UML_Element_Proxy)
return AMF.Elements.Element_Access is
begin
-- For UML elements Element::owner is container of the element.
return AMF.Elements.Element_Access (Self.Get_Owner);
end Container;
------------
-- Extent --
------------
overriding function Extent
(Self : not null access constant UML_Element_Base)
return AMF.Extents.Extent_Access is
begin
return
AMF.Internals.Extents.Proxy
(AMF.Internals.Tables.UML_Element_Table.Table (Self.Element).Extent);
end Extent;
---------
-- Get --
---------
overriding function Get
(Self : not null access constant UML_Element_Base;
Property : not null AMF.CMOF.Properties.CMOF_Property_Access)
return League.Holders.Holder is
begin
return
AMF.Internals.Tables.UML_Reflection.Get
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (Property)));
end Get;
--------------------
-- Get_Meta_Class --
--------------------
overriding function Get_Meta_Class
(Self : not null access constant UML_Element_Base)
return AMF.CMOF.Classes.CMOF_Class_Access is
begin
return
AMF.CMOF.Classes.CMOF_Class_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Reflection.Get_Meta_Class (Self.Element)));
end Get_Meta_Class;
-----------------------
-- Get_Owned_Comment --
-----------------------
overriding function Get_Owned_Comment
(Self : not null access constant UML_Element_Proxy)
return AMF.UML.Comments.Collections.Set_Of_UML_Comment is
begin
return
AMF.UML.Comments.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Owned_Comment
(Self.Element)));
end Get_Owned_Comment;
-----------------------
-- Get_Owned_Element --
-----------------------
overriding function Get_Owned_Element
(Self : not null access constant UML_Element_Proxy)
return AMF.UML.Elements.Collections.Set_Of_UML_Element is
begin
return
AMF.UML.Elements.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Owned_Element
(Self.Element)));
end Get_Owned_Element;
---------------
-- Get_Owner --
---------------
overriding function Get_Owner
(Self : not null access constant UML_Element_Proxy)
return AMF.UML.Elements.UML_Element_Access is
begin
return
AMF.UML.Elements.UML_Element_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Owner
(Self.Element)));
end Get_Owner;
-------------------
-- Must_Be_Owned --
-------------------
overriding function Must_Be_Owned
(Self : not null access constant UML_Element_Proxy) return Boolean
is
pragma Unreferenced (Self);
-- [UML241] 7.3.14 Element (from Kernel)
--
-- The query mustBeOwned() indicates whether elements of this type must
-- have an owner. Subclasses of Element that do not require an owner
-- must override this operation.
--
-- Element::mustBeOwned() : Boolean;
-- mustBeOwned = true
begin
return True;
end Must_Be_Owned;
---------
-- Set --
---------
overriding procedure Set
(Self : not null access UML_Element_Base;
Property : not null AMF.CMOF.Properties.CMOF_Property_Access;
Value : League.Holders.Holder) is
begin
AMF.Internals.Tables.UML_Reflection.Set
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (Property)),
Value);
end Set;
end AMF.Internals.UML_Elements;
| 39.4375 | 95 | 0.537974 |
8bffe81ee639fc89feb57fa6b4f3e3b228c877d7 | 259 | adb | Ada | test_suite/aoc_test_runner.adb | jwarwick/aoc_2020 | b88e5a69f7ce035c4bc0a2474e0e0cdbb7b43377 | [
"MIT"
] | 3 | 2020-12-26T23:44:33.000Z | 2021-12-06T16:00:54.000Z | test_suite/aoc_test_runner.adb | jwarwick/aoc_2020 | b88e5a69f7ce035c4bc0a2474e0e0cdbb7b43377 | [
"MIT"
] | null | null | null | test_suite/aoc_test_runner.adb | jwarwick/aoc_2020 | b88e5a69f7ce035c4bc0a2474e0e0cdbb7b43377 | [
"MIT"
] | null | null | null | with AUnit.Reporter.Text;
with AUnit.Run;
with AOC_Suite; use AOC_Suite;
procedure AOC_Test_Runner is
procedure Runner is new AUnit.Run.Test_Runner (Suite);
Reporter : AUnit.Reporter.Text.Text_Reporter;
begin
Runner (Reporter);
end AOC_Test_Runner;
| 23.545455 | 57 | 0.783784 |
a0aca526db96e4a15d228f2bc62f9a3468619d10 | 27,889 | ads | Ada | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-cohase.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-cohase.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-cohase.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT LIBRARY COMPONENTS --
-- --
-- A D A . C O N T A I N E R S . H A S H E D _ S E T S --
-- --
-- S p e c --
-- --
-- Copyright (C) 2004-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/>. --
-- --
-- This unit was originally developed by Matthew J Heaney. --
------------------------------------------------------------------------------
with Ada.Iterator_Interfaces;
private with Ada.Containers.Hash_Tables;
with Ada.Containers.Helpers;
private with Ada.Finalization;
private with Ada.Streams;
private with Ada.Strings.Text_Output;
generic
type Element_Type is private;
with function Hash (Element : Element_Type) return Hash_Type;
with function Equivalent_Elements
(Left, Right : Element_Type) return Boolean;
with function "=" (Left, Right : Element_Type) return Boolean is <>;
package Ada.Containers.Hashed_Sets with
SPARK_Mode => Off
is
pragma Annotate (CodePeer, Skip_Analysis);
pragma Preelaborate;
pragma Remote_Types;
type Set is tagged private
with
Constant_Indexing => Constant_Reference,
Default_Iterator => Iterate,
Iterator_Element => Element_Type,
Aggregate => (Empty => Empty,
Add_Unnamed => Include);
pragma Preelaborable_Initialization (Set);
type Cursor is private;
pragma Preelaborable_Initialization (Cursor);
Empty_Set : constant Set;
-- Set objects declared without an initialization expression are
-- initialized to the value Empty_Set.
No_Element : constant Cursor;
-- Cursor objects declared without an initialization expression are
-- initialized to the value No_Element.
function Has_Element (Position : Cursor) return Boolean;
-- Equivalent to Position /= No_Element
package Set_Iterator_Interfaces is new
Ada.Iterator_Interfaces (Cursor, Has_Element);
function Empty (Capacity : Count_Type := 1000) return Set;
function "=" (Left, Right : Set) return Boolean;
-- For each element in Left, set equality attempts to find the equal
-- element in Right; if a search fails, then set equality immediately
-- returns False. The search works by calling Hash to find the bucket in
-- the Right set that corresponds to the Left element. If the bucket is
-- non-empty, the search calls the generic formal element equality operator
-- to compare the element (in Left) to the element of each node in the
-- bucket (in Right); the search terminates when a matching node in the
-- bucket is found, or the nodes in the bucket are exhausted. (Note that
-- element equality is called here, not Equivalent_Elements. Set equality
-- is the only operation in which element equality is used. Compare set
-- equality to Equivalent_Sets, which does call Equivalent_Elements.)
function Equivalent_Sets (Left, Right : Set) return Boolean;
-- Similar to set equality, with the difference that the element in Left is
-- compared to the elements in Right using the generic formal
-- Equivalent_Elements operation instead of element equality.
function To_Set (New_Item : Element_Type) return Set;
-- Constructs a singleton set comprising New_Element. To_Set calls Hash to
-- determine the bucket for New_Item.
function Capacity (Container : Set) return Count_Type;
-- Returns the current capacity of the set. Capacity is the maximum length
-- before which rehashing in guaranteed not to occur.
procedure Reserve_Capacity (Container : in out Set; Capacity : Count_Type);
-- Adjusts the current capacity, by allocating a new buckets array. If the
-- requested capacity is less than the current capacity, then the capacity
-- is contracted (to a value not less than the current length). If the
-- requested capacity is greater than the current capacity, then the
-- capacity is expanded (to a value not less than what is requested). In
-- either case, the nodes are rehashed from the old buckets array onto the
-- new buckets array (Hash is called once for each existing element in
-- order to compute the new index), and then the old buckets array is
-- deallocated.
function Length (Container : Set) return Count_Type;
-- Returns the number of items in the set
function Is_Empty (Container : Set) return Boolean;
-- Equivalent to Length (Container) = 0
procedure Clear (Container : in out Set);
-- Removes all of the items from the set
function Element (Position : Cursor) return Element_Type;
-- Returns the element of the node designated by the cursor
procedure Replace_Element
(Container : in out Set;
Position : Cursor;
New_Item : Element_Type);
-- If New_Item is equivalent (as determined by calling Equivalent_Elements)
-- to the element of the node designated by Position, then New_Element is
-- assigned to that element. Otherwise, it calls Hash to determine the
-- bucket for New_Item. If the bucket is not empty, then it calls
-- Equivalent_Elements for each node in that bucket to determine whether
-- New_Item is equivalent to an element in that bucket. If
-- Equivalent_Elements returns True then Program_Error is raised (because
-- an element may appear only once in the set); otherwise, New_Item is
-- assigned to the node designated by Position, and the node is moved to
-- its new bucket.
procedure Query_Element
(Position : Cursor;
Process : not null access procedure (Element : Element_Type));
-- Calls Process with the element (having only a constant view) of the node
-- designed by the cursor.
type Constant_Reference_Type
(Element : not null access constant Element_Type) is private
with Implicit_Dereference => Element;
function Constant_Reference
(Container : aliased Set;
Position : Cursor) return Constant_Reference_Type;
pragma Inline (Constant_Reference);
procedure Assign (Target : in out Set; Source : Set);
function Copy (Source : Set; Capacity : Count_Type := 0) return Set;
procedure Move (Target : in out Set; Source : in out Set);
-- Clears Target (if it's not empty), and then moves (not copies) the
-- buckets array and nodes from Source to Target.
procedure Insert
(Container : in out Set;
New_Item : Element_Type;
Position : out Cursor;
Inserted : out Boolean);
-- Conditionally inserts New_Item into the set. If New_Item is already in
-- the set, then Inserted returns False and Position designates the node
-- containing the existing element (which is not modified). If New_Item is
-- not already in the set, then Inserted returns True and Position
-- designates the newly-inserted node containing New_Item. The search for
-- an existing element works as follows. Hash is called to determine
-- New_Item's bucket; if the bucket is non-empty, then Equivalent_Elements
-- is called to compare New_Item to the element of each node in that
-- bucket. If the bucket is empty, or there were no equivalent elements in
-- the bucket, the search "fails" and the New_Item is inserted in the set
-- (and Inserted returns True); otherwise, the search "succeeds" (and
-- Inserted returns False).
procedure Insert (Container : in out Set; New_Item : Element_Type);
-- Attempts to insert New_Item into the set, performing the usual insertion
-- search (which involves calling both Hash and Equivalent_Elements); if
-- the search succeeds (New_Item is equivalent to an element already in the
-- set, and so was not inserted), then this operation raises
-- Constraint_Error. (This version of Insert is similar to Replace, but
-- having the opposite exception behavior. It is intended for use when you
-- want to assert that the item is not already in the set.)
procedure Include (Container : in out Set; New_Item : Element_Type);
-- Attempts to insert New_Item into the set. If an element equivalent to
-- New_Item is already in the set (the insertion search succeeded, and
-- hence New_Item was not inserted), then the value of New_Item is assigned
-- to the existing element. (This insertion operation only raises an
-- exception if cursor tampering occurs. It is intended for use when you
-- want to insert the item in the set, and you don't care whether an
-- equivalent element is already present.)
procedure Replace (Container : in out Set; New_Item : Element_Type);
-- Searches for New_Item in the set; if the search fails (because an
-- equivalent element was not in the set), then it raises
-- Constraint_Error. Otherwise, the existing element is assigned the value
-- New_Item. (This is similar to Insert, but with the opposite exception
-- behavior. It is intended for use when you want to assert that the item
-- is already in the set.)
procedure Exclude (Container : in out Set; Item : Element_Type);
-- Searches for Item in the set, and if found, removes its node from the
-- set and then deallocates it. The search works as follows. The operation
-- calls Hash to determine the item's bucket; if the bucket is not empty,
-- it calls Equivalent_Elements to compare Item to the element of each node
-- in the bucket. (This is the deletion analog of Include. It is intended
-- for use when you want to remove the item from the set, but don't care
-- whether the item is already in the set.)
procedure Delete (Container : in out Set; Item : Element_Type);
-- Searches for Item in the set (which involves calling both Hash and
-- Equivalent_Elements). If the search fails, then the operation raises
-- Constraint_Error. Otherwise it removes the node from the set and then
-- deallocates it. (This is the deletion analog of non-conditional
-- Insert. It is intended for use when you want to assert that the item is
-- already in the set.)
procedure Delete (Container : in out Set; Position : in out Cursor);
-- Removes the node designated by Position from the set, and then
-- deallocates the node. The operation calls Hash to determine the bucket,
-- and then compares Position to each node in the bucket until there's a
-- match (it does not call Equivalent_Elements).
procedure Union (Target : in out Set; Source : Set);
-- The operation first calls Reserve_Capacity if the current capacity is
-- less than the sum of the lengths of Source and Target. It then iterates
-- over the Source set, and conditionally inserts each element into Target.
function Union (Left, Right : Set) return Set;
-- The operation first copies the Left set to the result, and then iterates
-- over the Right set to conditionally insert each element into the result.
function "or" (Left, Right : Set) return Set renames Union;
procedure Intersection (Target : in out Set; Source : Set);
-- Iterates over the Target set (calling First and Next), calling Find to
-- determine whether the element is in Source. If an equivalent element is
-- not found in Source, the element is deleted from Target.
function Intersection (Left, Right : Set) return Set;
-- Iterates over the Left set, calling Find to determine whether the
-- element is in Right. If an equivalent element is found, it is inserted
-- into the result set.
function "and" (Left, Right : Set) return Set renames Intersection;
procedure Difference (Target : in out Set; Source : Set);
-- Iterates over the Source (calling First and Next), calling Find to
-- determine whether the element is in Target. If an equivalent element is
-- found, it is deleted from Target.
function Difference (Left, Right : Set) return Set;
-- Iterates over the Left set, calling Find to determine whether the
-- element is in the Right set. If an equivalent element is not found, the
-- element is inserted into the result set.
function "-" (Left, Right : Set) return Set renames Difference;
procedure Symmetric_Difference (Target : in out Set; Source : Set);
-- The operation first calls Reserve_Capacity if the current capacity is
-- less than the sum of the lengths of Source and Target. It then iterates
-- over the Source set, searching for the element in Target (calling Hash
-- and Equivalent_Elements). If an equivalent element is found, it is
-- removed from Target; otherwise it is inserted into Target.
function Symmetric_Difference (Left, Right : Set) return Set;
-- The operation first iterates over the Left set. It calls Find to
-- determine whether the element is in the Right set. If no equivalent
-- element is found, the element from Left is inserted into the result. The
-- operation then iterates over the Right set, to determine whether the
-- element is in the Left set. If no equivalent element is found, the Right
-- element is inserted into the result.
function "xor" (Left, Right : Set) return Set
renames Symmetric_Difference;
function Overlap (Left, Right : Set) return Boolean;
-- Iterates over the Left set (calling First and Next), calling Find to
-- determine whether the element is in the Right set. If an equivalent
-- element is found, the operation immediately returns True. The operation
-- returns False if the iteration over Left terminates without finding any
-- equivalent element in Right.
function Is_Subset (Subset : Set; Of_Set : Set) return Boolean;
-- Iterates over Subset (calling First and Next), calling Find to determine
-- whether the element is in Of_Set. If no equivalent element is found in
-- Of_Set, the operation immediately returns False. The operation returns
-- True if the iteration over Subset terminates without finding an element
-- not in Of_Set (that is, every element in Subset is equivalent to an
-- element in Of_Set).
function First (Container : Set) return Cursor;
-- Returns a cursor that designates the first non-empty bucket, by
-- searching from the beginning of the buckets array.
function Next (Position : Cursor) return Cursor;
-- Returns a cursor that designates the node that follows the current one
-- designated by Position. If Position designates the last node in its
-- bucket, the operation calls Hash to compute the index of this bucket,
-- and searches the buckets array for the first non-empty bucket, starting
-- from that index; otherwise, it simply follows the link to the next node
-- in the same bucket.
procedure Next (Position : in out Cursor);
-- Equivalent to Position := Next (Position)
function Find
(Container : Set;
Item : Element_Type) return Cursor;
-- Searches for Item in the set. Find calls Hash to determine the item's
-- bucket; if the bucket is not empty, it calls Equivalent_Elements to
-- compare Item to each element in the bucket. If the search succeeds, Find
-- returns a cursor designating the node containing the equivalent element;
-- otherwise, it returns No_Element.
function Contains (Container : Set; Item : Element_Type) return Boolean;
-- Equivalent to Find (Container, Item) /= No_Element
function Equivalent_Elements (Left, Right : Cursor) return Boolean;
-- Returns the result of calling Equivalent_Elements with the elements of
-- the nodes designated by cursors Left and Right.
function Equivalent_Elements
(Left : Cursor;
Right : Element_Type) return Boolean;
-- Returns the result of calling Equivalent_Elements with element of the
-- node designated by Left and element Right.
function Equivalent_Elements
(Left : Element_Type;
Right : Cursor) return Boolean;
-- Returns the result of calling Equivalent_Elements with element Left and
-- the element of the node designated by Right.
procedure Iterate
(Container : Set;
Process : not null access procedure (Position : Cursor));
-- Calls Process for each node in the set
function Iterate
(Container : Set) return Set_Iterator_Interfaces.Forward_Iterator'Class;
generic
type Key_Type (<>) is private;
with function Key (Element : Element_Type) return Key_Type;
with function Hash (Key : Key_Type) return Hash_Type;
with function Equivalent_Keys (Left, Right : Key_Type) return Boolean;
package Generic_Keys is
function Key (Position : Cursor) return Key_Type;
-- Applies generic formal operation Key to the element of the node
-- designated by Position.
function Element (Container : Set; Key : Key_Type) return Element_Type;
-- Searches (as per the key-based Find) for the node containing Key, and
-- returns the associated element.
procedure Replace
(Container : in out Set;
Key : Key_Type;
New_Item : Element_Type);
-- Searches (as per the key-based Find) for the node containing Key, and
-- then replaces the element of that node (as per the element-based
-- Replace_Element).
procedure Exclude (Container : in out Set; Key : Key_Type);
-- Searches for Key in the set, and if found, removes its node from the
-- set and then deallocates it. The search works by first calling Hash
-- (on Key) to determine the bucket; if the bucket is not empty, it
-- calls Equivalent_Keys to compare parameter Key to the value of
-- generic formal operation Key applied to element of each node in the
-- bucket.
procedure Delete (Container : in out Set; Key : Key_Type);
-- Deletes the node containing Key as per Exclude, with the difference
-- that Constraint_Error is raised if Key is not found.
function Find (Container : Set; Key : Key_Type) return Cursor;
-- Searches for the node containing Key, and returns a cursor
-- designating the node. The search works by first calling Hash (on Key)
-- to determine the bucket. If the bucket is not empty, the search
-- compares Key to the element of each node in the bucket, and returns
-- the matching node. The comparison itself works by applying the
-- generic formal Key operation to the element of the node, and then
-- calling generic formal operation Equivalent_Keys.
function Contains (Container : Set; Key : Key_Type) return Boolean;
-- Equivalent to Find (Container, Key) /= No_Element
procedure Update_Element_Preserving_Key
(Container : in out Set;
Position : Cursor;
Process : not null access
procedure (Element : in out Element_Type));
-- Calls Process with the element of the node designated by Position,
-- but with the restriction that the key-value of the element is not
-- modified. The operation first makes a copy of the value returned by
-- applying generic formal operation Key on the element of the node, and
-- then calls Process with the element. The operation verifies that the
-- key-part has not been modified by calling generic formal operation
-- Equivalent_Keys to compare the saved key-value to the value returned
-- by applying generic formal operation Key to the post-Process value of
-- element. If the key values compare equal then the operation
-- completes. Otherwise, the node is removed from the set and
-- Program_Error is raised.
type Reference_Type (Element : not null access Element_Type) is private
with Implicit_Dereference => Element;
function Reference_Preserving_Key
(Container : aliased in out Set;
Position : Cursor) return Reference_Type;
function Constant_Reference
(Container : aliased Set;
Key : Key_Type) return Constant_Reference_Type;
function Reference_Preserving_Key
(Container : aliased in out Set;
Key : Key_Type) return Reference_Type;
private
use Ada.Streams;
type Set_Access is access all Set;
for Set_Access'Storage_Size use 0;
-- Key_Preserving references must carry information to allow removal
-- of elements whose value may have been altered improperly, i.e. have
-- been given values incompatible with the hash-code of the previous
-- value, and are thus in the wrong bucket. (RM 18.7 (96.6/3))
-- We cannot store the key directly because it is an unconstrained type.
-- To avoid using additional dynamic allocation we store the old cursor
-- which simplifies possible removal. This is not possible for some
-- other set types.
-- The mechanism is different for Update_Element_Preserving_Key, as
-- in that case the check that buckets have not changed is performed
-- at the time of the update, not when the reference is finalized.
package Impl is new Helpers.Generic_Implementation;
type Reference_Control_Type is
new Impl.Reference_Control_Type with
record
Container : Set_Access;
Index : Hash_Type;
Old_Pos : Cursor;
Old_Hash : Hash_Type;
end record;
overriding procedure Finalize (Control : in out Reference_Control_Type);
pragma Inline (Finalize);
type Reference_Type (Element : not null access Element_Type) is record
Control : Reference_Control_Type;
end record;
procedure Read
(Stream : not null access Root_Stream_Type'Class;
Item : out Reference_Type);
for Reference_Type'Read use Read;
procedure Write
(Stream : not null access Root_Stream_Type'Class;
Item : Reference_Type);
for Reference_Type'Write use Write;
end Generic_Keys;
private
pragma Inline (Next);
type Node_Type;
type Node_Access is access Node_Type;
type Node_Type is limited record
Element : aliased Element_Type;
Next : Node_Access;
end record;
package HT_Types is
new Hash_Tables.Generic_Hash_Table_Types (Node_Type, Node_Access);
type Set is new Ada.Finalization.Controlled with record
HT : HT_Types.Hash_Table_Type;
end record with Put_Image => Put_Image;
procedure Put_Image
(S : in out Ada.Strings.Text_Output.Sink'Class; V : Set);
overriding procedure Adjust (Container : in out Set);
overriding procedure Finalize (Container : in out Set);
use HT_Types, HT_Types.Implementation;
use Ada.Finalization;
use Ada.Streams;
procedure Write
(Stream : not null access Root_Stream_Type'Class;
Container : Set);
for Set'Write use Write;
procedure Read
(Stream : not null access Root_Stream_Type'Class;
Container : out Set);
for Set'Read use Read;
type Set_Access is access all Set;
for Set_Access'Storage_Size use 0;
type Cursor is record
Container : Set_Access;
Node : Node_Access;
Position : Hash_Type := Hash_Type'Last;
end record;
procedure Write
(Stream : not null access Root_Stream_Type'Class;
Item : Cursor);
for Cursor'Write use Write;
procedure Read
(Stream : not null access Root_Stream_Type'Class;
Item : out Cursor);
for Cursor'Read use Read;
subtype Reference_Control_Type is Implementation.Reference_Control_Type;
-- It is necessary to rename this here, so that the compiler can find it
type Constant_Reference_Type
(Element : not null access constant Element_Type) is
record
Control : Reference_Control_Type :=
raise Program_Error with "uninitialized reference";
-- The RM says, "The default initialization of an object of
-- type Constant_Reference_Type or Reference_Type propagates
-- Program_Error."
end record;
procedure Read
(Stream : not null access Root_Stream_Type'Class;
Item : out Constant_Reference_Type);
for Constant_Reference_Type'Read use Read;
procedure Write
(Stream : not null access Root_Stream_Type'Class;
Item : Constant_Reference_Type);
for Constant_Reference_Type'Write use Write;
-- Three operations are used to optimize in the expansion of "for ... of"
-- loops: the Next(Cursor) procedure in the visible part, and the following
-- Pseudo_Reference and Get_Element_Access functions. See Sem_Ch5 for
-- details.
function Pseudo_Reference
(Container : aliased Set'Class) return Reference_Control_Type;
pragma Inline (Pseudo_Reference);
-- Creates an object of type Reference_Control_Type pointing to the
-- container, and increments the Lock. Finalization of this object will
-- decrement the Lock.
type Element_Access is access all Element_Type with
Storage_Size => 0;
function Get_Element_Access
(Position : Cursor) return not null Element_Access;
-- Returns a pointer to the element designated by Position.
Empty_Set : constant Set := (Controlled with others => <>);
No_Element : constant Cursor :=
(Container => null, Node => null, Position => Hash_Type'Last);
type Iterator is new Limited_Controlled and
Set_Iterator_Interfaces.Forward_Iterator with
record
Container : Set_Access;
end record
with Disable_Controlled => not T_Check;
overriding function First (Object : Iterator) return Cursor;
overriding function Next
(Object : Iterator;
Position : Cursor) return Cursor;
overriding procedure Finalize (Object : in out Iterator);
end Ada.Containers.Hashed_Sets;
| 44.982258 | 79 | 0.677902 |
8b8f5a9a2efbcc2e0846a3e462a475d753561b30 | 29,450 | adb | Ada | 4-high/gel/source/applet/gel-applet.adb | charlie5/lace-alire | 9ace9682cf4daac7adb9f980c2868d6225b8111c | [
"0BSD"
] | 1 | 2022-01-20T07:13:42.000Z | 2022-01-20T07:13:42.000Z | 4-high/gel/source/applet/gel-applet.adb | charlie5/lace-alire | 9ace9682cf4daac7adb9f980c2868d6225b8111c | [
"0BSD"
] | null | null | null | 4-high/gel/source/applet/gel-applet.adb | charlie5/lace-alire | 9ace9682cf4daac7adb9f980c2868d6225b8111c | [
"0BSD"
] | null | null | null | with
gel.World.simple,
gel.Dolly.simple,
gel.Dolly.following,
gel.Camera.forge,
gel.Joint,
gel.Events,
openGL.Palette,
openGL.Renderer.lean.forge,
lace.Any,
lace.Event.utility,
ada.unchecked_Conversion,
ada.unchecked_Deallocation,
ada.Text_IO;
use ada.Text_IO;
package body gel.Applet
is
use lace.Event.utility;
procedure my_context_Setter
is
begin
global_Window.enable_GL;
end my_context_Setter;
procedure my_Swapper
is
begin
global_Window.swap_GL;
end my_Swapper;
overriding
procedure respond (Self : in out add_new_Sprite; to_Event : in lace.Event.item'Class)
is
the_Event : constant gel.events.new_sprite_added_to_world_Event
:= gel.events.new_sprite_added_to_world_Event (to_Event);
the_Sprite : gel.Sprite.view;
begin
the_Sprite := Self.Applet.World (the_Event.World_Id).fetch_Sprite (the_event.Sprite_Id);
the_Sprite.is_Visible (True);
Self.Applet.add (the_Sprite);
exception
when constraint_Error =>
put_Line ("Exception in 'add_new_Sprite' response.");
end respond;
overriding
function Name (Self : in add_new_Sprite) return String
is
pragma unreferenced (Self);
begin
return "add_new_Sprite";
end Name;
procedure define (Self : in View; use_Window : in gel.Window.view)
is
begin
Self.Window := use_Window;
global_Window := use_Window;
-- Add window resize event repsonse.
--
Self.local_Subject_and_Observer.add (Self.resize_Response'unchecked_Access,
to_Kind (gel.events.window_resize_Request'Tag),
use_Window.Name);
Self.Window.register (lace.Observer.view (Self.local_Subject_and_Observer),
to_Kind (gel.events.window_resize_Request'Tag));
Self.resize_Response.Applet := Self;
-- Setup the renderer.
--
Self.Renderer := openGL.Renderer.lean.forge.new_Renderer;
Self.Renderer.Background_is (openGL.Palette.Grey);
Self.Renderer.Swapper_is (my_Swapper'unrestricted_Access);
Self.Window.disable_GL;
Self.Renderer.Context_Setter_is (my_context_Setter'unrestricted_Access);
Self.Renderer.start_Engine;
Self.Renderer.add_Font (Self. Font);
Self.Renderer.add_Font (Self.titles_Font);
-- Set up the keyboard events.
--
Self.Keyboard := Self.Window.Keyboard;
Self.Mouse := Self.Window.Mouse;
Self.button_press_Response .Applet := Self;
Self.button_release_Response.Applet := Self;
Self.mouse_motion_Response .Applet := Self;
-- Add the new sprite event response.
--
the_add_new_sprite_Response.Applet := Self;
end define;
overriding
procedure destroy (Self : in out Item)
is
use world_Vectors,
gel.Dolly,
openGL.Renderer.lean,
gel.Window,
gel.World;
procedure free is new ada.unchecked_Deallocation (world_Info, world_Info_view);
Cursor : world_Vectors.Cursor := Self.Worlds.First;
world_Info : world_Info_view;
the_World : gel.World.view;
begin
while has_Element (Cursor)
loop
world_Info := Element (Cursor);
-- Free the world.
--
the_World := world_Info.World;
the_World.destroy;
free (the_World);
-- Free the cameras.
--
declare
use gel.Camera;
the_Cameras : camera_Vector renames world_Info.Cameras;
the_Camera : gel.Camera.view;
begin
for i in 1 .. Integer (the_Cameras.Length)
loop
the_Camera := the_Cameras.Element (i);
free (the_Camera);
end loop;
end;
free (world_Info);
next (Cursor);
end loop;
free (Self.Dolly);
free (Self.Renderer);
free (Self.Window);
Self.local_Subject_and_Observer.destroy;
lace.Subject_and_deferred_Observer.item (Self).destroy; -- Destroy base class.
end destroy;
procedure free (Self : in out View)
is
procedure deallocate is new ada.unchecked_Deallocation (Applet.item'Class, Applet.view);
begin
Self.destroy;
deallocate (Self);
end free;
---------
--- Forge
--
package body Forge
is
function to_Applet (Name : in String;
use_Window : in gel.Window.view) return Item
is
use lace.Subject_and_deferred_Observer.Forge;
begin
return Self : Item := (to_Subject_and_Observer (Name) with
local_Subject_and_Observer => new_Subject_and_Observer (Name),
others => <>)
do
define (Self'unchecked_Access, use_Window);
end return;
end to_Applet;
function new_Applet (Name : in String;
use_Window : in gel.Window.view) return View
is
begin
return new Item' (to_Applet (Name, use_Window));
end new_Applet;
end Forge;
--------------
--- Attributes
--
procedure add (Self : in out Item; the_World : in world_Info_view)
is
begin
Self.Worlds.append (the_World);
end add;
function new_World (Self : access Item; Name : in String;
space_Kind : in physics.space_Kind) return gel.World.view
is
begin
Self.add_new_World (Name, space_Kind);
return Self.Worlds.last_Element.World;
end new_World;
procedure add_new_World (Self : in out Item; Name : in String;
space_Kind : in physics.space_Kind)
is
use type ada.Containers.Count_type;
the_world_Info : constant world_Info_view := new world_Info;
the_Camera : constant gel.Camera.view := gel.Camera.forge.new_Camera;
begin
the_world_Info.World := gel.World.simple.forge.new_World (Name,
world_Id (Self.Worlds.Length + 1),
space_Kind,
Self.Renderer).all'Access;
the_Camera.Viewport_is (Self.Window.Width, Self.Window.Height);
the_Camera.Renderer_is (Self.Renderer);
the_Camera.Site_is ((0.0, 5.0, 50.0));
the_world_Info.Cameras.append (the_Camera);
Self.Worlds.append (the_world_Info);
Self.local_Subject_and_Observer.add (the_add_new_sprite_Response'Access,
to_Kind (gel.Events.new_sprite_added_to_world_Event'Tag),
the_world_Info.World.Name);
the_world_Info.World.start;
Self.add (the_world_Info);
end add_new_World;
function is_Open (Self : in Item) return Boolean
is
begin
return Self.Window.is_Open
and not Self.quit_Requested;
end is_Open;
function Window (Self : in Item) return gel.Window.view
is
begin
return Self.Window;
end Window;
function world_Count (Self : in Item) return Natural
is
begin
return Natural (Self.Worlds.Length);
end world_Count;
function Worlds (Self : in Item) return gel.World.views
is
the_Worlds : gel.World.views (1 .. Natural (Self.Worlds.Length));
begin
for i in the_Worlds'Range
loop
the_Worlds (i) := Self.Worlds.Element (i).World;
end loop;
return the_Worlds;
end Worlds;
function World (Self : in Item; Id : in world_Id := 1) return gel.World.view
is
begin
return Self.Worlds.Element (Integer (Id)).World;
end World;
function World_as_iFace (Self : in Item; Id : in world_Id := 1) return gel.remote.World.view
is
begin
return remote.World.view (Self.Worlds.Element (Integer (Id)).World);
end World_as_iFace;
function Camera (Self : in Item; world_Id : in gel.world_Id := 1;
camera_Id : in gel.camera_Id := 1) return gel.Camera.view
is
w : constant Integer := Integer ( world_Id);
c : constant Integer := Integer (camera_Id);
begin
return Self.Worlds.Element (w).Cameras.Element (c);
end Camera;
function Font (Self : in Item) return opengl.Font.font_Id
is
begin
return Self.Font;
end Font;
function titles_Font (Self : in Item) return opengl.Font.font_Id
is
begin
return Self.titles_Font;
end titles_Font;
function Renderer (Self : in Item) return openGL.Renderer.lean.view
is
begin
return Self.Renderer;
end Renderer;
function Keyboard (Self : in Item) return access gel.Keyboard.item'Class
is
begin
return Self.Keyboard;
end Keyboard;
function Mouse (Self : in Item) return access gel.Mouse.item'Class
is
begin
return Self.Mouse;
end Mouse;
function Dolly (Self : access Item) return gel.Dolly.view
is
begin
return Self.Dolly;
end Dolly;
function last_Keypress (Self : access Item) return gel.Keyboard.Key
is
the_last_Keypress : constant gel.Keyboard.Key := Self.last_pressed_Key;
begin
Self.last_pressed_Key := gel.Keyboard.Nil;
return the_last_Keypress;
end last_Keypress;
--------------
--- Operations
--
procedure evolve_all_Worlds (Self : in out Item; By : in Duration)
is
use world_Vectors;
world_Cursor : world_Vectors.Cursor := Self.Worlds.First;
begin
while has_Element (world_Cursor)
loop
declare
the_world_Info : world_Info renames Element (world_Cursor).all;
begin
the_world_Info.World.evolve;
end;
next (world_Cursor);
end loop;
end evolve_all_Worlds;
procedure freshen (Self : in out Item)
is
use type gel.Dolly.view;
Window_is_active : Boolean;
begin
Self.Window.emit_Events;
Self.Window.swap_GL;
Self .respond;
Self.local_Subject_and_Observer.respond;
Self.Window .respond;
if Self.Dolly /= null then
Self.Dolly.freshen;
end if;
Window_is_active := Self.Window.is_Open
and then Self.Window.is_Exposed
and then not Self.Window.is_being_Resized;
declare
use world_Vectors;
world_Cursor : world_Vectors.Cursor := Self.Worlds.First;
all_Cameras : gel.Camera.views (1 .. 1000);
all_cameras_Last : Natural := 0;
begin
while has_Element (world_Cursor)
loop
declare
use camera_Vectors;
the_world_Info : world_Info renames Element (world_Cursor).all;
camera_Cursor : camera_Vectors.Cursor := the_world_Info.Cameras.First;
begin
-- the_world_Info.World.wait_on_evolve;
the_world_Info.World.evolve;
if Window_is_active
then
while has_Element (camera_Cursor)
loop
all_cameras_Last := all_cameras_Last + 1;
all_Cameras (all_cameras_Last) := Element (camera_Cursor);
Element (camera_Cursor).render (the_world_Info.World,
To => Self.Window.Surface);
next (camera_Cursor);
end loop;
end if;
end;
next (world_Cursor);
end loop;
loop
declare
culls_Completed : Boolean := True;
begin
for i in 1 .. all_cameras_Last
loop
culls_Completed := culls_Completed
and all_Cameras (i).cull_Completed;
end loop;
exit when culls_Completed;
delay Duration'Small;
end;
end loop;
end;
Self.Renderer.render;
end freshen;
procedure add (Self : in out Item; the_Sprite : in gel.Sprite.view)
is
child_Joints : constant gel.Joint.views := the_Sprite.child_Joints;
begin
-- Add children and their joints.
--
for i in child_Joints'Range
loop
Self .add (the_Sprite.child_Joints (i).Sprite_B);
Self.World (1).add (the_Sprite.child_Joints (i));
end loop;
end add;
procedure add (Self : in out Item; the_Sprite : in gel.Sprite.view;
at_site : in Vector_3)
is
begin
the_Sprite.Site_is (at_site);
Self.add (the_Sprite);
end add;
procedure take_Screenshot (Self : in out Item; Filename : in String)
is
begin
Self.Renderer.Screenshot (Filename);
end take_Screenshot;
procedure request_Quit (Self : in out Item)
is
begin
Self.quit_Requested := True;
end request_Quit;
procedure toggle_video_Capture (Self : in out Item'Class)
is
begin
raise Error with "TODO";
end toggle_video_Capture;
----------------------
-- Keyboard Responses
--
overriding
procedure respond (Self : in out key_press_Response; to_Event : in lace.Event.item'Class)
is
use gel.Keyboard,
gel.Dolly;
the_Event : gel.Keyboard.key_press_Event renames gel.Keyboard.key_press_Event (to_Event);
the_Dolly : constant gel.Dolly.view := Self.Applet.Dolly;
the_Key : constant gel.keyboard.Key := the_Event.modified_Key.Key;
the_Modifiers : constant gel.Keyboard.modifier_Set := the_Event.modified_Key.modifier_Set;
begin
Self.Applet.last_pressed_Key := the_Event.modified_Key.Key;
if the_Key = ESCAPE
then
Self.Applet.quit_Requested := True;
end if;
if the_Dolly /= null
then
if the_Modifiers (lShift)
then the_Dolly.speed_Multiplier_is (6.0);
else the_Dolly.speed_Multiplier_is (1.0);
end if;
if the_Modifiers (lCtrl)
then
if the_Key = up then the_Dolly.is_spinning (Forward);
elsif the_Key = down then the_Dolly.is_spinning (Backward);
elsif the_Key = left then the_Dolly.is_spinning (Left);
elsif the_Key = right then the_Dolly.is_spinning (Right);
elsif the_Key = pageUp then the_Dolly.is_spinning (Up);
elsif the_Key = pageDown then the_Dolly.is_spinning (Down);
end if;
elsif the_Modifiers (lAlt)
then
if the_Key = up then the_Dolly.is_orbiting (Forward);
elsif the_Key = down then the_Dolly.is_orbiting (Backward);
elsif the_Key = left then the_Dolly.is_orbiting (Left);
elsif the_Key = right then the_Dolly.is_orbiting (Right);
elsif the_Key = pageUp then the_Dolly.is_orbiting (Up);
elsif the_Key = pageDown then the_Dolly.is_orbiting (Down);
end if;
else
if the_Key = up then the_Dolly.is_moving (Forward);
elsif the_Key = down then the_Dolly.is_moving (Backward);
elsif the_Key = left then the_Dolly.is_moving (Left);
elsif the_Key = right then the_Dolly.is_moving (Right);
elsif the_Key = pageUp then the_Dolly.is_moving (Up);
elsif the_Key = pageDown then the_Dolly.is_moving (Down);
elsif the_Key = F11 then Self.Applet.take_Screenshot ("./screenshot.bmp");
elsif the_Key = F12 then Self.Applet.toggle_video_Capture;
end if;
end if;
end if;
if the_Modifiers (lCtrl)
then
null;
elsif the_Modifiers (lAlt)
then
null;
else
if the_Key = F11 then Self.Applet.take_Screenshot ("./screenshot.bmp");
elsif the_Key = F12 then Self.Applet.toggle_video_Capture;
end if;
end if;
end respond;
overriding
procedure respond (Self : in out key_release_Response; to_Event : in lace.Event.Item'Class)
is
use gel.Keyboard, gel.Dolly;
the_Event : gel.Keyboard.key_release_Event renames gel.Keyboard.key_release_Event (to_Event);
the_Dolly : gel.Dolly.view renames Self.Applet.Dolly;
the_Key : constant gel.keyboard.Key := the_Event.modified_Key.Key;
the_Modifiers : constant gel.Keyboard.modifier_Set := the_Event.modified_Key.modifier_Set;
pragma Unreferenced (the_Modifiers);
begin
if the_Dolly = null
then
return;
end if;
if the_Key = up
then
the_Dolly.is_moving (Forward, False);
the_Dolly.is_spinning (Forward, False);
the_Dolly.is_orbiting (Forward, False);
elsif the_Key = down
then
the_Dolly.is_moving (Backward, False);
the_Dolly.is_spinning (Backward, False);
the_Dolly.is_orbiting (Backward, False);
elsif the_Key = left
then
the_Dolly.is_moving (Left, False);
the_Dolly.is_spinning (Left, False);
the_Dolly.is_orbiting (Left, False);
elsif the_Key = right
then
the_Dolly.is_moving (Right, False);
the_Dolly.is_spinning (Right, False);
the_Dolly.is_orbiting (Right, False);
elsif the_Key = pageUp
then
the_Dolly.is_moving (Up, False);
the_Dolly.is_spinning (Up, False);
the_Dolly.is_orbiting (Up, False);
elsif the_Key = pageDown
then
the_Dolly.is_moving (Down, False);
the_Dolly.is_spinning (Down, False);
the_Dolly.is_orbiting (Down, False);
end if;
end respond;
procedure Dolly_is (Self : access Item; Now : in gel.Dolly.view)
is
begin
Self.Dolly := Now;
end Dolly_is;
procedure enable_simple_Dolly (Self : access Item; in_World : in world_Id)
is
begin
Self.Dolly := new gel.Dolly.simple.item;
Self.Dolly.add_Camera (Self.Camera (in_World, 1));
Self.key_press_Response .Applet := gel.Applet.view (Self);
Self.key_release_Response.Applet := gel.Applet.view (Self);
lace.Event.utility.connect (lace.Observer.view (Self.local_Subject_and_Observer),
lace.Subject .view (Self.Keyboard),
Self.key_press_Response'unchecked_Access,
to_Kind (gel.Keyboard.key_press_Event'Tag));
lace.Event.utility.connect (lace.Observer.view (Self.local_Subject_and_Observer),
lace.Subject .view (Self.Keyboard),
Self.key_release_Response'unchecked_Access,
to_Kind (gel.Keyboard.key_release_Event'Tag));
end enable_simple_Dolly;
procedure enable_following_Dolly (Self : access Item; Follow : in gel.Sprite.view)
is
the_Dolly : constant gel.Dolly.following.view := new gel.Dolly.following.item;
begin
the_Dolly.follow (the_Sprite => Follow);
Self.Dolly := the_Dolly.all'Access;
Self.Dolly.add_Camera (Self.Camera (1, 1));
end enable_following_Dolly;
--------------------------
--- Mouse Button Responses
--
type button_press_raycast_Context is new lace.Any.limited_item with
record
is_Motion : Boolean;
is_Press : Boolean;
button_Id : gel.mouse.Button_Id;
end record;
type button_press_raycast_Context_view is access all button_press_raycast_Context'Class;
overriding
procedure respond (Self : in out mouse_click_raycast_Response; to_Event : in lace.Event.item'Class)
is
use gel.World;
the_Event : raycast_collision_Event := raycast_collision_Event (to_Event);
the_Context : constant button_press_raycast_Context_view := button_press_raycast_Context_view (the_Event.Context);
begin
if the_Context.is_Motion
then
null;
else
if the_Context.is_Press
then
declare
collide_Event : constant gel.events.sprite_click_down_Event := (mouse_Button => the_Context.button_Id,
world_Site => the_Event.Site_world);
begin
the_Event.near_Sprite.receive (collide_Event, Self.Applet.Name);
end;
else -- Is a button release.
declare
collide_Event : constant gel.events.sprite_click_up_Event := (mouse_Button => the_Context.button_Id,
world_Site => the_Event.Site_world);
begin
the_Event.near_Sprite.receive (collide_Event, Self.Applet.Name);
end;
end if;
end if;
the_Event.destruct;
end respond;
type mouse_button_collision_Event is new gel.World.raycast_collision_Event with null record;
overriding
procedure respond (Self : in out button_press_Response; to_Event : in lace.Event.item'Class)
is
use world_Vectors,
gel.Mouse;
the_Event : gel.mouse.button_press_Event renames gel.Mouse.button_press_Event (to_Event);
Cursor : world_Vectors.Cursor := Self.Applet.Worlds.First;
the_world_Info : world_Info_view;
begin
while has_Element (Cursor)
loop
the_world_Info := Element (Cursor);
declare
use gel.World;
the_Camera : constant gel.Camera.view := the_world_Info.Cameras.first_Element;
Site_window_space : constant Vector_3 := (Real (the_Event.Site (1)), Real (the_Event.Site (2)), 1.0);
Site_world_space : constant Vector_3 := the_Camera.to_world_Site (Site_window_space);
the_Context : constant access button_press_raycast_Context := new button_press_raycast_Context;
event_Kind : mouse_button_collision_Event;
begin
the_Context.is_Motion := False;
the_Context.is_Press := True;
the_Context.button_Id := the_Event.Button;
the_world_Info.World.cast_Ray (From => the_Camera.Site,
To => Site_world_space,
Observer => lace.Observer.view (Self.Applet.local_Subject_and_Observer),
Context => the_Context,
event_Kind => event_Kind);
end;
next (Cursor);
end loop;
end respond;
overriding
procedure respond (Self : in out button_release_Response; to_Event : in lace.Event.item'Class)
is
use world_Vectors,
gel.Mouse;
the_Event : gel.Mouse.button_release_Event renames gel.Mouse.button_release_Event (to_Event);
Cursor : world_Vectors.Cursor := Self.Applet.Worlds.First;
the_world_Info : world_Info_view;
begin
while has_Element (Cursor)
loop
the_world_Info := Element (Cursor);
declare
the_Camera : constant gel.Camera.view := the_world_Info.Cameras.first_Element;
Site_window_space : constant Vector_3 := (Real (the_Event.Site (1)), Real (the_Event.Site (2)), 1.0);
Site_world_space : constant Vector_3 := the_Camera.to_world_Site (Site_window_space);
the_Context : constant access button_press_raycast_Context := new button_press_raycast_Context;
event_Kind : mouse_button_collision_Event;
begin
the_Context.is_Motion := False;
the_Context.is_Press := False;
the_Context.button_Id := the_Event.Button;
the_world_Info.World.cast_Ray (From => the_Camera.Site,
To => Site_world_space,
Observer => lace.Observer.view (Self.Applet.local_Subject_and_Observer),
Context => the_Context,
event_Kind => event_Kind);
end;
next (Cursor);
end loop;
end respond;
overriding
procedure respond (Self : in out mouse_motion_Response; to_Event : in lace.Event.Item'Class)
is
use world_Vectors;
the_Event : gel.mouse.motion_Event renames gel.mouse.motion_Event (to_Event);
Cursor : world_Vectors.Cursor := Self.Applet.Worlds.First;
the_world_Info : world_Info_view;
begin
while has_Element (Cursor)
loop
the_world_Info := Element (Cursor);
declare
the_Camera : constant gel.Camera.view := the_world_Info.Cameras.first_Element;
Site_window_space : constant Vector_3 := (Real (the_Event.Site (1)), Real (the_Event.Site (2)), 1.0);
Site_world_space : constant Vector_3 := the_Camera.to_world_Site (Site_window_space);
pragma Unreferenced (Site_world_space);
the_Context : constant access button_press_raycast_Context := new button_press_raycast_Context;
begin
the_Context.is_Motion := True;
end;
next (Cursor);
end loop;
end respond;
--------------------------
--- Window Resize Response
--
overriding
procedure respond (Self : in out resize_event_Response; to_Event : in lace.Event.item'Class)
is
pragma unreferenced (to_Event);
use world_Vectors;
Cursor : world_Vectors.Cursor := Self.Applet.Worlds.First;
the_world_Info : world_Info_view;
begin
while has_Element (Cursor)
loop
the_world_Info := Element (Cursor);
declare
the_Camera : constant gel.Camera.view := the_world_Info.Cameras.first_Element;
begin
the_Camera.Viewport_is (Self.Applet.Window.Width,
Self.Applet.Window.Height);
end;
next (Cursor);
end loop;
end respond;
---------
--- Mouse
--
procedure enable_Mouse (Self : access Item; detect_Motion : in Boolean)
is
begin
Self.local_Subject_and_Observer.add (Self.button_press_Response'unchecked_Access,
to_Kind (gel.Mouse.button_press_Event'Tag),
Self.Mouse.Name);
Self.local_Subject_and_Observer.add (Self.button_release_Response'unchecked_Access,
to_Kind (gel.Mouse.button_release_Event'Tag),
Self.Mouse.Name);
Self.Mouse.register (lace.Observer.view (Self.local_Subject_and_Observer), to_Kind (gel.Mouse.button_press_Event 'Tag));
Self.Mouse.register (lace.Observer.view (Self.local_Subject_and_Observer), to_Kind (gel.Mouse.button_release_Event'Tag));
if detect_Motion
then
lace.Event.Utility.connect (lace.Observer.view (Self.local_Subject_and_Observer),
lace.Subject.view (Self.Mouse),
Self.mouse_motion_Response'unchecked_Access,
to_Kind (gel.Mouse.motion_Event'Tag));
end if;
Self.mouse_click_raycast_Response.Applet := Self.all'unchecked_Access;
declare
use world_Vectors;
Cursor : world_Vectors.Cursor := Self.Worlds.First;
the_world_Info : world_Info_view;
begin
while has_Element (Cursor)
loop
the_world_Info := Element (Cursor);
Self.local_Subject_and_Observer.add (the_Response => Self.mouse_click_raycast_Response'unchecked_Access,
to_Kind => lace.event.Utility.to_Kind (mouse_button_collision_Event'Tag),
from_Subject => the_world_Info.World.Name);
next (Cursor);
end loop;
end;
end enable_Mouse;
----------------
--- Local Events
--
function local_Subject_and_Observer (Self : access Item) return lace.Subject_and_deferred_Observer.view
is
begin
return Self.local_Subject_and_Observer;
end local_Subject_and_Observer;
function local_Subject (Self : access Item) return lace.Subject.view
is
begin
return lace.Subject.view (Self.local_Subject_and_Observer);
end local_Subject;
function local_Observer (Self : access Item) return lace.Observer.view
is
begin
return lace.Observer.view (Self.local_Subject_and_Observer);
end local_Observer;
end gel.Applet;
| 29.59799 | 128 | 0.589202 |
8b9a7b25644754d94d71ccdb8b53fe53795e1b3e | 12,433 | adb | Ada | software/lib/ulog/ulog-conversions.adb | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 12 | 2017-06-08T14:19:57.000Z | 2022-03-09T02:48:59.000Z | software/lib/ulog/ulog-conversions.adb | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 6 | 2017-06-08T13:13:50.000Z | 2020-05-15T09:32:43.000Z | software/lib/ulog/ulog-conversions.adb | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 3 | 2017-06-30T14:05:06.000Z | 2022-02-17T12:20:45.000Z | -- Institution: Technische Universitaet Muenchen
-- Department: Realtime Computer Systems (RCS)
-- Project: StratoX
-- Author: Martin Becker ([email protected])
with Ada.Unchecked_Conversion;
-- @summary convert various types to bytearrays
-- FIXME: optimize: don't collect labels and formats unless we are
-- building the header.
package body ULog.Conversions with SPARK_Mode is
----------------------
-- Enoding of types
----------------------
-- Format characters in the format string for binary log messages
-- DONE:
-- f : float
-- Z : char[64]
-- B : uint8_t
-- b : int8_t
-- H : uint16_t
-- h : int16_t
-- i : int32_t
-- I : uint32_t
-- q : int64_t
-- Q : uint64_t
-- TODO:
-- n : char[4]
-- N : char[16]
-- c : int16_t * 100
-- C : uint16_t * 100
-- e : int32_t * 100
-- E : uint32_t * 100
-- L : int32_t latitude/longitude
-- M : uint8_t flight mode
----------------
-- PROTOTYPES
----------------
procedure Add_Labeled (t : in out Conversion_Tag;
label : String;
format : Character;
buf : in out HIL.Byte_Array;
tail : HIL.Byte_Array)
with Pre => label'Length > 0 and then label'First <= label'Last;
procedure Copy_To_Buffer (t : in out Conversion_Tag;
buf : in out HIL.Byte_Array;
tail : HIL.Byte_Array);
function Buffer_Capacity (t : in Conversion_Tag; buf : HIL.Byte_Array)
return Natural
with Post => (if buf'Length <= t.Buffer_Fill then
Buffer_Capacity'Result = 0
else
Buffer_Capacity'Result = buf'Length - t.Buffer_Fill);
-- if the buffer length changed during conversion, then
-- t.Total_Size could be bigger than buf'length.
--------------------
-- New_Conversion --
--------------------
procedure New_Conversion (t : out Conversion_Tag) is
begin
t.Buffer_Fill := 0;
t.Buffer_Overflow := False;
t.Name := (others => HIL.Byte (0));
t.Label_Collect := (Labels => (others => HIL.Byte (0)), Length => 0);
t.Format_Collect := (Format => (others => HIL.Byte (0)), Length => 0);
end New_Conversion;
--------------
-- Get_Size --
--------------
function Get_Size (t : in Conversion_Tag) return Natural is
(t.Buffer_Fill);
---------------------
-- Buffer_Overflow --
---------------------
function Buffer_Overflow (t : in Conversion_Tag) return Boolean is
(t.Buffer_Overflow);
----------------
-- Get_Format --
----------------
function Get_Format (t : in Conversion_Tag) return ULog_Format is
(t.Format_Collect.Format);
----------------
-- Get_Labels --
----------------
function Get_Labels (t : in Conversion_Tag) return ULog_Label is
(t.Label_Collect.Labels);
--------------
-- Get_Name --
--------------
function Get_Name (t : in Conversion_Tag) return ULog_Name is
(t.Name);
--------------
-- Set_Name --
--------------
procedure Set_Name (t : in out Conversion_Tag; s : String) is
subtype shortname is String (1 .. ULog_Name'Length);
function To_Name is new Ada.Unchecked_Conversion (shortname, ULog_Name);
tmp : shortname := (others => Character'Val (0));
slen : constant Integer :=
(if s'Length > tmp'Length then tmp'Length else s'Length);
begin
if slen > 0 then
tmp (tmp'First .. tmp'First + (slen - 1)) :=
s (s'First .. s'First + (slen - 1));
end if;
t.Name := To_Name (tmp);
end Set_Name;
---------------------
-- Buffer_Capacity --
---------------------
function Buffer_Capacity
(t : in Conversion_Tag; buf : HIL.Byte_Array) return Natural
is
fill : constant Natural := t.Buffer_Fill;
blen : constant Natural := buf'Length;
cap : Natural;
begin
if blen > fill then
cap := blen - fill;
else
cap := 0;
end if;
return cap;
end Buffer_Capacity;
--------------------
-- Copy_To_Buffer --
--------------------
-- add as much as we can to the buffer, without overflowing
procedure Copy_To_Buffer
(t : in out Conversion_Tag;
buf : in out HIL.Byte_Array;
tail : HIL.Byte_Array)
is
cap : constant Natural := Buffer_Capacity (t, buf);
fill : constant Natural := t.Buffer_Fill;
tlen : constant Natural := tail'Length;
begin
if tlen > 0 and then cap >= tlen and
then buf'Length >= fill -- buffer inconsistency .. don't continue
then
-- this means the buffer can take all of it
declare
idx_l : constant Integer := buf'First + fill;
idx_h : constant Integer := idx_l + (tlen - 1);
begin
buf (idx_l .. idx_h) := tail;
end;
-- bookkeeping
if Natural'Last - fill >= tlen then
t.Buffer_Fill := fill + tlen;
else
t.Buffer_Fill := Natural'Last;
end if;
else
t.Buffer_Overflow := True;
end if;
end Copy_To_Buffer;
--------------------
-- Append_Labeled --
--------------------
procedure Add_Labeled
(t : in out Conversion_Tag;
label : String;
format : Character;
buf : in out HIL.Byte_Array;
tail : HIL.Byte_Array)
is
lbl_cap : constant Integer :=
t.Label_Collect.Labels'Length - t.Label_Collect.Length;
fmt_cap : constant Integer :=
t.Format_Collect.Format'Length - t.Format_Collect.Length;
begin
if Buffer_Capacity (t, buf) >= tail'Length and
then lbl_cap > label'Length -- not >=, because of ','
and then fmt_cap > 0
then
Copy_To_Buffer (t => t, buf => buf, tail => tail);
if t.Label_Collect.Length > 0 then
t.Label_Collect.Length := t.Label_Collect.Length + 1;
t.Label_Collect.Labels (t.Label_Collect.Length) :=
HIL.Byte (Character'Pos (','));
end if;
declare
idx_lbl_lo : constant Integer :=
t.Label_Collect.Labels'First + t.Label_Collect.Length;
idx_lbl_hi : constant Integer := idx_lbl_lo + (label'Length - 1);
idx_fmt : constant Integer :=
t.Format_Collect.Format'First + t.Format_Collect.Length;
subtype VarString is String (1 .. label'Length);
subtype VarBytes is HIL.Byte_Array (1 .. label'Length);
function To_Bytes is new
Ada.Unchecked_Conversion (VarString, VarBytes);
d : constant VarBytes := To_Bytes (label);
begin
t.Label_Collect.Labels (idx_lbl_lo .. idx_lbl_hi) := d;
t.Format_Collect.Format (idx_fmt) :=
HIL.Byte (Character'Pos (format));
end;
end if;
-- keep counting, so caller can see potential overflow
if Natural'Last - t.Label_Collect.Length > label'Length then
t.Label_Collect.Length := t.Label_Collect.Length + label'Length;
else
t.Label_Collect.Length := Natural'Last;
end if;
if Natural'Last - t.Format_Collect.Length > 0 then
t.Format_Collect.Length := t.Format_Collect.Length + 1;
else
t.Format_Collect.Length := Natural'Last;
end if;
end Add_Labeled;
----------------------------
-- Append_Unlabeled_Bytes --
----------------------------
procedure Append_Unlabeled_Bytes
(t : in out Conversion_Tag;
buf : in out HIL.Byte_Array;
tail : HIL.Byte_Array) is
begin
Copy_To_Buffer (t => t, buf => buf, tail => tail);
end Append_Unlabeled_Bytes;
------------------
-- Append_Float --
------------------
procedure Append_Float
(t : in out Conversion_Tag; label : String;
buf : in out HIL.Byte_Array; tail : Float)
is
subtype Byte4 is Byte_Array (1 .. 4);
function To_Bytes is new Ada.Unchecked_Conversion (Float, Byte4);
begin
Add_Labeled (t, label, 'f', buf, To_Bytes (tail));
end Append_Float;
------------------
-- Append_Uint8 --
------------------
procedure Append_Uint8
(t : in out Conversion_Tag; label : String;
buf : in out HIL.Byte_Array; tail : Unsigned_8)
is
barr : constant Byte_Array := (1 => HIL.Byte (tail));
begin
Add_Labeled (t, label, 'B', buf, barr);
end Append_Uint8;
-----------------
-- Append_Int8 --
-----------------
procedure Append_Int8
(t : in out Conversion_Tag; label : String;
buf : in out HIL.Byte_Array; tail : Integer_8)
is
subtype Byte1 is Byte_Array (1 .. 1);
function To_Bytes is new Ada.Unchecked_Conversion (Integer_8, Byte1);
begin
Add_Labeled (t, label, 'b', buf, To_Bytes (tail));
end Append_Int8;
-------------------
-- Append_Uint16 --
-------------------
procedure Append_Uint16
(t : in out Conversion_Tag; label : String;
buf : in out HIL.Byte_Array; tail : Unsigned_16)
is
subtype Byte2 is Byte_Array (1 .. 2);
function To_Bytes is new Ada.Unchecked_Conversion (Unsigned_16, Byte2);
begin
Add_Labeled (t, label, 'H', buf, To_Bytes (tail));
end Append_Uint16;
------------------
-- Append_Int16 --
------------------
procedure Append_Int16
(t : in out Conversion_Tag; label : String;
buf : in out HIL.Byte_Array; tail : Integer_16)
is
subtype Byte2 is Byte_Array (1 .. 2);
function To_Bytes is new Ada.Unchecked_Conversion (Integer_16, Byte2);
begin
Add_Labeled (t, label, 'h', buf, To_Bytes (tail));
end Append_Int16;
-------------------
-- Append_UInt32 --
-------------------
procedure Append_Uint32
(t : in out Conversion_Tag; label : String;
buf : in out HIL.Byte_Array; tail : Unsigned_32)
is
subtype Byte4 is Byte_Array (1 .. 4);
function To_Bytes is new Ada.Unchecked_Conversion (Unsigned_32, Byte4);
begin
Add_Labeled (t, label, 'I', buf, To_Bytes (tail));
end Append_Uint32;
------------------
-- Append_Int32 --
------------------
procedure Append_Int32
(t : in out Conversion_Tag; label : String;
buf : in out HIL.Byte_Array; tail : Integer_32)
is
subtype Byte4 is Byte_Array (1 .. 4);
function To_Bytes is new Ada.Unchecked_Conversion (Integer_32, Byte4);
begin
Add_Labeled (t, label, 'i', buf, To_Bytes (tail));
end Append_Int32;
-------------------
-- Append_UInt64 --
-------------------
procedure Append_Uint64
(t : in out Conversion_Tag; label : String;
buf : in out HIL.Byte_Array; tail : Unsigned_64)
is
subtype Byte8 is Byte_Array (1 .. 8);
function To_Bytes is new Ada.Unchecked_Conversion (Unsigned_64, Byte8);
begin
Add_Labeled (t, label, 'Q', buf, To_Bytes (tail));
end Append_Uint64;
------------------
-- Append_Int64 --
------------------
procedure Append_Int64
(t : in out Conversion_Tag; label : String;
buf : in out HIL.Byte_Array; tail : Integer_64)
is
subtype Byte8 is Byte_Array (1 .. 8);
function To_Bytes is new Ada.Unchecked_Conversion (Integer_64, Byte8);
begin
Add_Labeled (t, label, 'q', buf, To_Bytes (tail));
end Append_Int64;
---------------------
-- Append_String64 --
---------------------
procedure Append_String64
(t : in out Conversion_Tag; label : String;
buf : in out HIL.Byte_Array; tail : String; slen : Natural)
is
subtype String64 is String (1 .. 64);
subtype Byte64 is Byte_Array (1 .. String64'Length);
function To_Byte64 is new Ada.Unchecked_Conversion (String64, Byte64);
tmp : String64 := (others => Character'Val (0));
len : constant Integer :=
(if slen > tmp'Length then tmp'Length else slen);
begin
if len > 0 then
tmp (tmp'First .. tmp'First + (len - 1)) :=
tail (tail'First .. tail'First + (len - 1));
end if;
Add_Labeled (t, label, 'Z', buf, To_Byte64 (tmp));
end Append_String64;
end ULog.Conversions;
| 31.004988 | 78 | 0.548218 |
1ebc68e6e3fd587140e4cc8a8a5a953be0023c45 | 3,005 | adb | Ada | src/cmd_flags.adb | wiremoons/apass | a73f116d22ef41b87caf5fc238f47c0a6798a560 | [
"MIT"
] | 3 | 2021-02-05T13:12:39.000Z | 2022-03-30T03:54:44.000Z | src/cmd_flags.adb | wiremoons/apass | a73f116d22ef41b87caf5fc238f47c0a6798a560 | [
"MIT"
] | null | null | null | src/cmd_flags.adb | wiremoons/apass | a73f116d22ef41b87caf5fc238f47c0a6798a560 | [
"MIT"
] | null | null | null | -------------------------------------------------------------------------------
-- Package : Cmd_Flags --
-- Description : Manage user provided CLI flags for the program. --
-- Author : Simon Rowe <[email protected]> --
-- License : MIT Open Source. --
-------------------------------------------------------------------------------
with Ada.Text_IO; use Ada.Text_IO;
with GNAT.Command_Line; use GNAT.Command_Line;
-- local packages
with Show_Version;
package body Cmd_Flags is
function Command_Line_Flags_Exist return Boolean is
----------------------------------------------
-- Parse and manage and command line flags --
----------------------------------------------
-- GNAT.Command_Line variables and config
Help_Option : aliased Boolean := False;
Version_Option : aliased Boolean := False;
Config : Command_Line_Configuration;
begin
-- define params for the 'help' option
Define_Switch
(Config,
Help_Option'Access,
Switch => "-h",
Long_Switch => "--help",
Help => "Show command line usage for application");
-- define params for the 'version' option
Define_Switch
(Config,
Version_Option'Access,
Switch => "-v",
Long_Switch => "--version",
Help => "Show version details");
-- Additional help message as first line of 'Display_Help()'
Set_Usage
(Config,
Usage => "[switches] [arguments]",
Help => "Program to generate passwords from random three letter words.");
-- cli flags parse using config and above defined switched
Getopt (Config);
-- show program 'version' if requested
if Version_Option then
Show_Version.Show;
return True;
end if;
-- show 'help' if requested
if Help_Option then
New_Line (1);
Display_Help (Config);
return True;
end if;
-- no cli params : so just return
--Try_Help; -- alternative one line response
return False;
exception
when Invalid_Switch =>
New_Line (1);
Put_Line (Standard_Error, "Exception caught: caused by the use of an invalid command line switch.");
New_Line (1);
Display_Help (Config);
return True;
when Invalid_Parameter =>
New_Line (1);
Put_Line
(Standard_Error,
"Exception caught: caused by the use of an invalid parameter to a command line switch.");
New_Line (1);
Display_Help (Config);
return True;
when Exit_From_Command_Line =>
New_Line (1);
Put_Line (Standard_Error, "Exit following display of help message.");
return True;
end Command_Line_Flags_Exist;
end Cmd_Flags;
| 33.764045 | 109 | 0.520133 |
383c3e91a30f758a4cccf1497a9175cc9f9e3384 | 5,344 | adb | Ada | source/nodes/program-nodes-number_declarations.adb | reznikmm/gela | 20134f1d154fb763812e73860c6f4b04f353df79 | [
"MIT"
] | null | null | null | source/nodes/program-nodes-number_declarations.adb | reznikmm/gela | 20134f1d154fb763812e73860c6f4b04f353df79 | [
"MIT"
] | null | null | null | source/nodes/program-nodes-number_declarations.adb | reznikmm/gela | 20134f1d154fb763812e73860c6f4b04f353df79 | [
"MIT"
] | 1 | 2019-10-16T09:05:27.000Z | 2019-10-16T09:05:27.000Z | -- SPDX-FileCopyrightText: 2019 Max Reznik <[email protected]>
--
-- SPDX-License-Identifier: MIT
-------------------------------------------------------------
package body Program.Nodes.Number_Declarations is
function Create
(Names : not null Program.Elements.Defining_Identifiers
.Defining_Identifier_Vector_Access;
Colon_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Constant_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Assignment_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Expression : not null Program.Elements.Expressions
.Expression_Access;
Semicolon_Token : not null Program.Lexical_Elements
.Lexical_Element_Access)
return Number_Declaration is
begin
return Result : Number_Declaration :=
(Names => Names, Colon_Token => Colon_Token,
Constant_Token => Constant_Token,
Assignment_Token => Assignment_Token, Expression => Expression,
Semicolon_Token => Semicolon_Token, Enclosing_Element => null)
do
Initialize (Result);
end return;
end Create;
function Create
(Names : not null Program.Elements.Defining_Identifiers
.Defining_Identifier_Vector_Access;
Expression : not null Program.Elements.Expressions
.Expression_Access;
Is_Part_Of_Implicit : Boolean := False;
Is_Part_Of_Inherited : Boolean := False;
Is_Part_Of_Instance : Boolean := False)
return Implicit_Number_Declaration is
begin
return Result : Implicit_Number_Declaration :=
(Names => Names, Expression => Expression,
Is_Part_Of_Implicit => Is_Part_Of_Implicit,
Is_Part_Of_Inherited => Is_Part_Of_Inherited,
Is_Part_Of_Instance => Is_Part_Of_Instance, Enclosing_Element => null)
do
Initialize (Result);
end return;
end Create;
overriding function Names
(Self : Base_Number_Declaration)
return not null Program.Elements.Defining_Identifiers
.Defining_Identifier_Vector_Access is
begin
return Self.Names;
end Names;
overriding function Expression
(Self : Base_Number_Declaration)
return not null Program.Elements.Expressions.Expression_Access is
begin
return Self.Expression;
end Expression;
overriding function Colon_Token
(Self : Number_Declaration)
return not null Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.Colon_Token;
end Colon_Token;
overriding function Constant_Token
(Self : Number_Declaration)
return not null Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.Constant_Token;
end Constant_Token;
overriding function Assignment_Token
(Self : Number_Declaration)
return not null Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.Assignment_Token;
end Assignment_Token;
overriding function Semicolon_Token
(Self : Number_Declaration)
return not null Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.Semicolon_Token;
end Semicolon_Token;
overriding function Is_Part_Of_Implicit
(Self : Implicit_Number_Declaration)
return Boolean is
begin
return Self.Is_Part_Of_Implicit;
end Is_Part_Of_Implicit;
overriding function Is_Part_Of_Inherited
(Self : Implicit_Number_Declaration)
return Boolean is
begin
return Self.Is_Part_Of_Inherited;
end Is_Part_Of_Inherited;
overriding function Is_Part_Of_Instance
(Self : Implicit_Number_Declaration)
return Boolean is
begin
return Self.Is_Part_Of_Instance;
end Is_Part_Of_Instance;
procedure Initialize (Self : in out Base_Number_Declaration'Class) is
begin
for Item in Self.Names.Each_Element loop
Set_Enclosing_Element (Item.Element, Self'Unchecked_Access);
end loop;
Set_Enclosing_Element (Self.Expression, Self'Unchecked_Access);
null;
end Initialize;
overriding function Is_Number_Declaration
(Self : Base_Number_Declaration)
return Boolean is
pragma Unreferenced (Self);
begin
return True;
end Is_Number_Declaration;
overriding function Is_Declaration
(Self : Base_Number_Declaration)
return Boolean is
pragma Unreferenced (Self);
begin
return True;
end Is_Declaration;
overriding procedure Visit
(Self : not null access Base_Number_Declaration;
Visitor : in out Program.Element_Visitors.Element_Visitor'Class) is
begin
Visitor.Number_Declaration (Self);
end Visit;
overriding function To_Number_Declaration_Text
(Self : in out Number_Declaration)
return Program.Elements.Number_Declarations
.Number_Declaration_Text_Access is
begin
return Self'Unchecked_Access;
end To_Number_Declaration_Text;
overriding function To_Number_Declaration_Text
(Self : in out Implicit_Number_Declaration)
return Program.Elements.Number_Declarations
.Number_Declaration_Text_Access is
pragma Unreferenced (Self);
begin
return null;
end To_Number_Declaration_Text;
end Program.Nodes.Number_Declarations;
| 32 | 79 | 0.713698 |
2f31353895ddf8ff51cfb556e75aa371b6de9896 | 20,387 | ads | Ada | src/lzma-filter.ads | stcarrez/ada-lzma | 51dbf4028ff8944ebb8a7f702b5dcad182fbe6bb | [
"MIT"
] | 4 | 2015-08-03T16:26:56.000Z | 2020-05-15T14:46:52.000Z | src/lzma-filter.ads | stcarrez/ada-lzma | 51dbf4028ff8944ebb8a7f702b5dcad182fbe6bb | [
"MIT"
] | null | null | null | src/lzma-filter.ads | stcarrez/ada-lzma | 51dbf4028ff8944ebb8a7f702b5dcad182fbe6bb | [
"MIT"
] | null | null | null | pragma Style_Checks (Off);
with Interfaces.C; use Interfaces.C;
with Lzma.Vli;
with System;
with Lzma.Base;
with Ada.Streams;
package Lzma.Filter is
LZMA_FILTERS_MAX : constant := 4; -- /usr/include/lzma/filter.h:26
--*
-- * \file lzma/filter.h
-- * \brief Common filter related types and functions
--
-- * Author: Lasse Collin
-- *
-- * This file has been put into the public domain.
-- * You can do whatever you want with this file.
-- *
-- * See ../lzma.h for information about liblzma as a whole.
--
--*
-- * \brief Maximum number of filters in a chain
-- *
-- * A filter chain can have 1-4 filters, of which three are allowed to change
-- * the size of the data. Usually only one or two filters are needed.
--
--*
-- * \brief Filter options
-- *
-- * This structure is used to pass Filter ID and a pointer filter's
-- * options to liblzma. A few functions work with a single lzma_filter
-- * structure, while most functions expect a filter chain.
-- *
-- * A filter chain is indicated with an array of lzma_filter structures.
-- * The array is terminated with .id = LZMA_VLI_UNKNOWN. Thus, the filter
-- * array must have LZMA_FILTERS_MAX + 1 elements (that is, five) to
-- * be able to hold any arbitrary filter chain. This is important when
-- * using lzma_block_header_decode() from block.h, because too small
-- * array would make liblzma write past the end of the filters array.
--
--*
-- * \brief Filter ID
-- *
-- * Use constants whose name begin with `LZMA_FILTER_' to specify
-- * different filters. In an array of lzma_filter structures, use
-- * LZMA_VLI_UNKNOWN to indicate end of filters.
-- *
-- * \note This is not an enum, because on some systems enums
-- * cannot be 64-bit.
--
type lzma_filter is record
id : aliased Lzma.Vli.lzma_vli; -- /usr/include/lzma/filter.h:54
options : System.Address; -- /usr/include/lzma/filter.h:63
end record;
pragma Convention (C_Pass_By_Copy, lzma_filter); -- /usr/include/lzma/filter.h:65
-- skipped anonymous struct anon_7
--*
-- * \brief Pointer to filter-specific options structure
-- *
-- * If the filter doesn't need options, set this to NULL. If id is
-- * set to LZMA_VLI_UNKNOWN, options is ignored, and thus
-- * doesn't need be initialized.
--
--*
-- * \brief Test if the given Filter ID is supported for encoding
-- *
-- * Return true if the give Filter ID is supported for encoding by this
-- * liblzma build. Otherwise false is returned.
-- *
-- * There is no way to list which filters are available in this particular
-- * liblzma version and build. It would be useless, because the application
-- * couldn't know what kind of options the filter would need.
--
function lzma_filter_encoder_is_supported (id : Lzma.Vli.lzma_vli) return Lzma.Base.lzma_bool; -- /usr/include/lzma/filter.h:78
pragma Import (C, lzma_filter_encoder_is_supported, "lzma_filter_encoder_is_supported");
--*
-- * \brief Test if the given Filter ID is supported for decoding
-- *
-- * Return true if the give Filter ID is supported for decoding by this
-- * liblzma build. Otherwise false is returned.
--
function lzma_filter_decoder_is_supported (id : Lzma.Vli.lzma_vli) return Lzma.Base.lzma_bool; -- /usr/include/lzma/filter.h:88
pragma Import (C, lzma_filter_decoder_is_supported, "lzma_filter_decoder_is_supported");
--*
-- * \brief Copy the filters array
-- *
-- * Copy the Filter IDs and filter-specific options from src to dest.
-- * Up to LZMA_FILTERS_MAX filters are copied, plus the terminating
-- * .id == LZMA_VLI_UNKNOWN. Thus, dest should have at least
-- * LZMA_FILTERS_MAX + 1 elements space unless the caller knows that
-- * src is smaller than that.
-- *
-- * Unless the filter-specific options is NULL, the Filter ID has to be
-- * supported by liblzma, because liblzma needs to know the size of every
-- * filter-specific options structure. The filter-specific options are not
-- * validated. If options is NULL, any unsupported Filter IDs are copied
-- * without returning an error.
-- *
-- * Old filter-specific options in dest are not freed, so dest doesn't
-- * need to be initialized by the caller in any way.
-- *
-- * If an error occurs, memory possibly already allocated by this function
-- * is always freed.
-- *
-- * \return - LZMA_OK
-- * - LZMA_MEM_ERROR
-- * - LZMA_OPTIONS_ERROR: Unsupported Filter ID and its options
-- * is not NULL.
-- * - LZMA_PROG_ERROR: src or dest is NULL.
--
function lzma_filters_copy
(src : access constant lzma_filter;
dest : access lzma_filter;
allocator : access Lzma.Base.lzma_allocator) return Lzma.Base.lzma_ret; -- /usr/include/lzma/filter.h:119
pragma Import (C, lzma_filters_copy, "lzma_filters_copy");
--*
-- * \brief Calculate approximate memory requirements for raw encoder
-- *
-- * This function can be used to calculate the memory requirements for
-- * Block and Stream encoders too because Block and Stream encoders don't
-- * need significantly more memory than raw encoder.
-- *
-- * \param filters Array of filters terminated with
-- * .id == LZMA_VLI_UNKNOWN.
-- *
-- * \return Number of bytes of memory required for the given
-- * filter chain when encoding. If an error occurs,
-- * for example due to unsupported filter chain,
-- * UINT64_MAX is returned.
--
function lzma_raw_encoder_memusage (filters : access constant lzma_filter) return Long_Long_Integer; -- /usr/include/lzma/filter.h:138
pragma Import (C, lzma_raw_encoder_memusage, "lzma_raw_encoder_memusage");
--*
-- * \brief Calculate approximate memory requirements for raw decoder
-- *
-- * This function can be used to calculate the memory requirements for
-- * Block and Stream decoders too because Block and Stream decoders don't
-- * need significantly more memory than raw decoder.
-- *
-- * \param filters Array of filters terminated with
-- * .id == LZMA_VLI_UNKNOWN.
-- *
-- * \return Number of bytes of memory required for the given
-- * filter chain when decoding. If an error occurs,
-- * for example due to unsupported filter chain,
-- * UINT64_MAX is returned.
--
function lzma_raw_decoder_memusage (filters : access constant lzma_filter) return Long_Long_Integer; -- /usr/include/lzma/filter.h:157
pragma Import (C, lzma_raw_decoder_memusage, "lzma_raw_decoder_memusage");
--*
-- * \brief Initialize raw encoder
-- *
-- * This function may be useful when implementing custom file formats.
-- *
-- * \param strm Pointer to properly prepared lzma_stream
-- * \param filters Array of lzma_filter structures. The end of the
-- * array must be marked with .id = LZMA_VLI_UNKNOWN.
-- *
-- * The `action' with lzma_code() can be LZMA_RUN, LZMA_SYNC_FLUSH (if the
-- * filter chain supports it), or LZMA_FINISH.
-- *
-- * \return - LZMA_OK
-- * - LZMA_MEM_ERROR
-- * - LZMA_OPTIONS_ERROR
-- * - LZMA_PROG_ERROR
--
function lzma_raw_encoder (strm : access Lzma.Base.lzma_stream; filters : access constant lzma_filter) return Lzma.Base.lzma_ret; -- /usr/include/lzma/filter.h:178
pragma Import (C, lzma_raw_encoder, "lzma_raw_encoder");
--*
-- * \brief Initialize raw decoder
-- *
-- * The initialization of raw decoder goes similarly to raw encoder.
-- *
-- * The `action' with lzma_code() can be LZMA_RUN or LZMA_FINISH. Using
-- * LZMA_FINISH is not required, it is supported just for convenience.
-- *
-- * \return - LZMA_OK
-- * - LZMA_MEM_ERROR
-- * - LZMA_OPTIONS_ERROR
-- * - LZMA_PROG_ERROR
--
function lzma_raw_decoder (strm : access Lzma.Base.lzma_stream; filters : access constant lzma_filter) return Lzma.Base.lzma_ret; -- /usr/include/lzma/filter.h:196
pragma Import (C, lzma_raw_decoder, "lzma_raw_decoder");
--*
-- * \brief Update the filter chain in the encoder
-- *
-- * This function is for advanced users only. This function has two slightly
-- * different purposes:
-- *
-- * - After LZMA_FULL_FLUSH when using Stream encoder: Set a new filter
-- * chain, which will be used starting from the next Block.
-- *
-- * - After LZMA_SYNC_FLUSH using Raw, Block, or Stream encoder: Change
-- * the filter-specific options in the middle of encoding. The actual
-- * filters in the chain (Filter IDs) cannot be changed. In the future,
-- * it might become possible to change the filter options without
-- * using LZMA_SYNC_FLUSH.
-- *
-- * While rarely useful, this function may be called also when no data has
-- * been compressed yet. In that case, this function will behave as if
-- * LZMA_FULL_FLUSH (Stream encoder) or LZMA_SYNC_FLUSH (Raw or Block
-- * encoder) had been used right before calling this function.
-- *
-- * \return - LZMA_OK
-- * - LZMA_MEM_ERROR
-- * - LZMA_MEMLIMIT_ERROR
-- * - LZMA_OPTIONS_ERROR
-- * - LZMA_PROG_ERROR
--
function lzma_filters_update (strm : access Lzma.Base.lzma_stream; filters : access constant lzma_filter) return Lzma.Base.lzma_ret; -- /usr/include/lzma/filter.h:227
pragma Import (C, lzma_filters_update, "lzma_filters_update");
--*
-- * \brief Single-call raw encoder
-- *
-- * \param filters Array of lzma_filter structures. The end of the
-- * array must be marked with .id = LZMA_VLI_UNKNOWN.
-- * \param allocator lzma_allocator for custom allocator functions.
-- * Set to NULL to use malloc() and free().
-- * \param in Beginning of the input buffer
-- * \param in_size Size of the input buffer
-- * \param out Beginning of the output buffer
-- * \param out_pos The next byte will be written to out[*out_pos].
-- * *out_pos is updated only if encoding succeeds.
-- * \param out_size Size of the out buffer; the first byte into
-- * which no data is written to is out[out_size].
-- *
-- * \return - LZMA_OK: Encoding was successful.
-- * - LZMA_BUF_ERROR: Not enough output buffer space.
-- * - LZMA_OPTIONS_ERROR
-- * - LZMA_MEM_ERROR
-- * - LZMA_DATA_ERROR
-- * - LZMA_PROG_ERROR
-- *
-- * \note There is no function to calculate how big output buffer
-- * would surely be big enough. (lzma_stream_buffer_bound()
-- * works only for lzma_stream_buffer_encode(); raw encoder
-- * won't necessarily meet that bound.)
--
function lzma_raw_buffer_encode
(filters : access constant lzma_filter;
allocator : access Lzma.Base.lzma_allocator;
c_in : access Ada.Streams.Stream_Element;
in_size : Interfaces.C.size_t;
c_out : access Ada.Streams.Stream_Element;
out_pos : access Interfaces.C.size_t;
out_size : Interfaces.C.size_t) return Lzma.Base.lzma_ret; -- /usr/include/lzma/filter.h:258
pragma Import (C, lzma_raw_buffer_encode, "lzma_raw_buffer_encode");
--*
-- * \brief Single-call raw decoder
-- *
-- * \param filters Array of lzma_filter structures. The end of the
-- * array must be marked with .id = LZMA_VLI_UNKNOWN.
-- * \param allocator lzma_allocator for custom allocator functions.
-- * Set to NULL to use malloc() and free().
-- * \param in Beginning of the input buffer
-- * \param in_pos The next byte will be read from in[*in_pos].
-- * *in_pos is updated only if decoding succeeds.
-- * \param in_size Size of the input buffer; the first byte that
-- * won't be read is in[in_size].
-- * \param out Beginning of the output buffer
-- * \param out_pos The next byte will be written to out[*out_pos].
-- * *out_pos is updated only if encoding succeeds.
-- * \param out_size Size of the out buffer; the first byte into
-- * which no data is written to is out[out_size].
--
function lzma_raw_buffer_decode
(filters : access constant lzma_filter;
allocator : access Lzma.Base.lzma_allocator;
c_in : access Ada.Streams.Stream_Element;
in_pos : access Interfaces.C.size_t;
in_size : Interfaces.C.size_t;
c_out : access Ada.Streams.Stream_Element;
out_pos : access Interfaces.C.size_t;
out_size : Interfaces.C.size_t) return Lzma.Base.lzma_ret; -- /usr/include/lzma/filter.h:282
pragma Import (C, lzma_raw_buffer_decode, "lzma_raw_buffer_decode");
--*
-- * \brief Get the size of the Filter Properties field
-- *
-- * This function may be useful when implementing custom file formats
-- * using the raw encoder and decoder.
-- *
-- * \param size Pointer to uint32_t to hold the size of the properties
-- * \param filter Filter ID and options (the size of the properties may
-- * vary depending on the options)
-- *
-- * \return - LZMA_OK
-- * - LZMA_OPTIONS_ERROR
-- * - LZMA_PROG_ERROR
-- *
-- * \note This function validates the Filter ID, but does not
-- * necessarily validate the options. Thus, it is possible
-- * that this returns LZMA_OK while the following call to
-- * lzma_properties_encode() returns LZMA_OPTIONS_ERROR.
--
function lzma_properties_size (size : access Interfaces.C.unsigned; filter : access constant lzma_filter) return Lzma.Base.lzma_ret; -- /usr/include/lzma/filter.h:307
pragma Import (C, lzma_properties_size, "lzma_properties_size");
--*
-- * \brief Encode the Filter Properties field
-- *
-- * \param filter Filter ID and options
-- * \param props Buffer to hold the encoded options. The size of
-- * buffer must have been already determined with
-- * lzma_properties_size().
-- *
-- * \return - LZMA_OK
-- * - LZMA_OPTIONS_ERROR
-- * - LZMA_PROG_ERROR
-- *
-- * \note Even this function won't validate more options than actually
-- * necessary. Thus, it is possible that encoding the properties
-- * succeeds but using the same options to initialize the encoder
-- * will fail.
-- *
-- * \note If lzma_properties_size() indicated that the size
-- * of the Filter Properties field is zero, calling
-- * lzma_properties_encode() is not required, but it
-- * won't do any harm either.
--
function lzma_properties_encode (filter : access constant lzma_filter; props : access Ada.Streams.Stream_Element) return Lzma.Base.lzma_ret; -- /usr/include/lzma/filter.h:333
pragma Import (C, lzma_properties_encode, "lzma_properties_encode");
--*
-- * \brief Decode the Filter Properties field
-- *
-- * \param filter filter->id must have been set to the correct
-- * Filter ID. filter->options doesn't need to be
-- * initialized (it's not freed by this function). The
-- * decoded options will be stored to filter->options.
-- * filter->options is set to NULL if there are no
-- * properties or if an error occurs.
-- * \param allocator Custom memory allocator used to allocate the
-- * options. Set to NULL to use the default malloc(),
-- * and in case of an error, also free().
-- * \param props Input buffer containing the properties.
-- * \param props_size Size of the properties. This must be the exact
-- * size; giving too much or too little input will
-- * return LZMA_OPTIONS_ERROR.
-- *
-- * \return - LZMA_OK
-- * - LZMA_OPTIONS_ERROR
-- * - LZMA_MEM_ERROR
--
function lzma_properties_decode
(filter : access lzma_filter;
allocator : access Lzma.Base.lzma_allocator;
props : access Ada.Streams.Stream_Element;
props_size : Interfaces.C.size_t) return Lzma.Base.lzma_ret; -- /usr/include/lzma/filter.h:358
pragma Import (C, lzma_properties_decode, "lzma_properties_decode");
--*
-- * \brief Calculate encoded size of a Filter Flags field
-- *
-- * Knowing the size of Filter Flags is useful to know when allocating
-- * memory to hold the encoded Filter Flags.
-- *
-- * \param size Pointer to integer to hold the calculated size
-- * \param filter Filter ID and associated options whose encoded
-- * size is to be calculated
-- *
-- * \return - LZMA_OK: *size set successfully. Note that this doesn't
-- * guarantee that filter->options is valid, thus
-- * lzma_filter_flags_encode() may still fail.
-- * - LZMA_OPTIONS_ERROR: Unknown Filter ID or unsupported options.
-- * - LZMA_PROG_ERROR: Invalid options
-- *
-- * \note If you need to calculate size of List of Filter Flags,
-- * you need to loop over every lzma_filter entry.
--
function lzma_filter_flags_size (size : access Interfaces.C.unsigned; filter : access constant lzma_filter) return Lzma.Base.lzma_ret; -- /usr/include/lzma/filter.h:382
pragma Import (C, lzma_filter_flags_size, "lzma_filter_flags_size");
--*
-- * \brief Encode Filter Flags into given buffer
-- *
-- * In contrast to some functions, this doesn't allocate the needed buffer.
-- * This is due to how this function is used internally by liblzma.
-- *
-- * \param filter Filter ID and options to be encoded
-- * \param out Beginning of the output buffer
-- * \param out_pos out[*out_pos] is the next write position. This
-- * is updated by the encoder.
-- * \param out_size out[out_size] is the first byte to not write.
-- *
-- * \return - LZMA_OK: Encoding was successful.
-- * - LZMA_OPTIONS_ERROR: Invalid or unsupported options.
-- * - LZMA_PROG_ERROR: Invalid options or not enough output
-- * buffer space (you should have checked it with
-- * lzma_filter_flags_size()).
--
function lzma_filter_flags_encode
(filter : access constant lzma_filter;
c_out : access Ada.Streams.Stream_Element;
out_pos : access Interfaces.C.size_t;
out_size : Interfaces.C.size_t) return Lzma.Base.lzma_ret; -- /usr/include/lzma/filter.h:405
pragma Import (C, lzma_filter_flags_encode, "lzma_filter_flags_encode");
--*
-- * \brief Decode Filter Flags from given buffer
-- *
-- * The decoded result is stored into *filter. The old value of
-- * filter->options is not free()d.
-- *
-- * \return - LZMA_OK
-- * - LZMA_OPTIONS_ERROR
-- * - LZMA_MEM_ERROR
-- * - LZMA_PROG_ERROR
--
function lzma_filter_flags_decode
(filter : access lzma_filter;
allocator : access Lzma.Base.lzma_allocator;
c_in : access Ada.Streams.Stream_Element;
in_pos : access Interfaces.C.size_t;
in_size : Interfaces.C.size_t) return Lzma.Base.lzma_ret; -- /usr/include/lzma/filter.h:421
pragma Import (C, lzma_filter_flags_decode, "lzma_filter_flags_decode");
end Lzma.Filter;
| 44.708333 | 178 | 0.622946 |
8b1b242dc51b8ece64198548f4b586833e68ec0b | 31,129 | adb | Ada | awa/plugins/awa-votes/src/model/awa-votes-models.adb | fuzzysloth/ada-awa | f9b921eeea29841667a028f2fc4528e4385d247a | [
"Apache-2.0"
] | null | null | null | awa/plugins/awa-votes/src/model/awa-votes-models.adb | fuzzysloth/ada-awa | f9b921eeea29841667a028f2fc4528e4385d247a | [
"Apache-2.0"
] | null | null | null | awa/plugins/awa-votes/src/model/awa-votes-models.adb | fuzzysloth/ada-awa | f9b921eeea29841667a028f2fc4528e4385d247a | [
"Apache-2.0"
] | null | null | null | -----------------------------------------------------------------------
-- AWA.Votes.Models -- AWA.Votes.Models
-----------------------------------------------------------------------
-- File generated by ada-gen DO NOT MODIFY
-- Template used: templates/model/package-body.xhtml
-- Ada Generator: https://ada-gen.googlecode.com/svn/trunk Revision 1095
-----------------------------------------------------------------------
-- 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 Ada.Unchecked_Deallocation;
with ASF.Events.Faces.Actions;
package body AWA.Votes.Models is
use type ADO.Objects.Object_Record_Access;
use type ADO.Objects.Object_Ref;
use type ADO.Objects.Object_Record;
pragma Warnings (Off, "formal parameter * is not referenced");
function Rating_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key is
Result : ADO.Objects.Object_Key (Of_Type => ADO.Objects.KEY_INTEGER,
Of_Class => RATING_DEF'Access);
begin
ADO.Objects.Set_Value (Result, Id);
return Result;
end Rating_Key;
function Rating_Key (Id : in String) return ADO.Objects.Object_Key is
Result : ADO.Objects.Object_Key (Of_Type => ADO.Objects.KEY_INTEGER,
Of_Class => RATING_DEF'Access);
begin
ADO.Objects.Set_Value (Result, Id);
return Result;
end Rating_Key;
function "=" (Left, Right : Rating_Ref'Class) return Boolean is
begin
return ADO.Objects.Object_Ref'Class (Left) = ADO.Objects.Object_Ref'Class (Right);
end "=";
procedure Set_Field (Object : in out Rating_Ref'Class;
Impl : out Rating_Access) is
Result : ADO.Objects.Object_Record_Access;
begin
Object.Prepare_Modify (Result);
Impl := Rating_Impl (Result.all)'Access;
end Set_Field;
-- Internal method to allocate the Object_Record instance
procedure Allocate (Object : in out Rating_Ref) is
Impl : Rating_Access;
begin
Impl := new Rating_Impl;
Impl.Rating := 0;
Impl.Vote_Count := 0;
Impl.For_Entity_Id := ADO.NO_IDENTIFIER;
Impl.For_Entity_Type := 0;
ADO.Objects.Set_Object (Object, Impl.all'Access);
end Allocate;
-- ----------------------------------------
-- Data object: Rating
-- ----------------------------------------
procedure Set_Id (Object : in out Rating_Ref;
Value : in ADO.Identifier) is
Impl : Rating_Access;
begin
Set_Field (Object, Impl);
ADO.Objects.Set_Field_Key_Value (Impl.all, 1, Value);
end Set_Id;
function Get_Id (Object : in Rating_Ref)
return ADO.Identifier is
Impl : constant Rating_Access
:= Rating_Impl (Object.Get_Object.all)'Access;
begin
return Impl.Get_Key_Value;
end Get_Id;
procedure Set_Rating (Object : in out Rating_Ref;
Value : in Integer) is
Impl : Rating_Access;
begin
Set_Field (Object, Impl);
ADO.Objects.Set_Field_Integer (Impl.all, 2, Impl.Rating, Value);
end Set_Rating;
function Get_Rating (Object : in Rating_Ref)
return Integer is
Impl : constant Rating_Access
:= Rating_Impl (Object.Get_Load_Object.all)'Access;
begin
return Impl.Rating;
end Get_Rating;
procedure Set_Vote_Count (Object : in out Rating_Ref;
Value : in Integer) is
Impl : Rating_Access;
begin
Set_Field (Object, Impl);
ADO.Objects.Set_Field_Integer (Impl.all, 3, Impl.Vote_Count, Value);
end Set_Vote_Count;
function Get_Vote_Count (Object : in Rating_Ref)
return Integer is
Impl : constant Rating_Access
:= Rating_Impl (Object.Get_Load_Object.all)'Access;
begin
return Impl.Vote_Count;
end Get_Vote_Count;
procedure Set_For_Entity_Id (Object : in out Rating_Ref;
Value : in ADO.Identifier) is
Impl : Rating_Access;
begin
Set_Field (Object, Impl);
ADO.Objects.Set_Field_Identifier (Impl.all, 4, Impl.For_Entity_Id, Value);
end Set_For_Entity_Id;
function Get_For_Entity_Id (Object : in Rating_Ref)
return ADO.Identifier is
Impl : constant Rating_Access
:= Rating_Impl (Object.Get_Load_Object.all)'Access;
begin
return Impl.For_Entity_Id;
end Get_For_Entity_Id;
procedure Set_For_Entity_Type (Object : in out Rating_Ref;
Value : in ADO.Entity_Type) is
Impl : Rating_Access;
begin
Set_Field (Object, Impl);
ADO.Objects.Set_Field_Entity_Type (Impl.all, 5, Impl.For_Entity_Type, Value);
end Set_For_Entity_Type;
function Get_For_Entity_Type (Object : in Rating_Ref)
return ADO.Entity_Type is
Impl : constant Rating_Access
:= Rating_Impl (Object.Get_Load_Object.all)'Access;
begin
return Impl.For_Entity_Type;
end Get_For_Entity_Type;
-- Copy of the object.
procedure Copy (Object : in Rating_Ref;
Into : in out Rating_Ref) is
Result : Rating_Ref;
begin
if not Object.Is_Null then
declare
Impl : constant Rating_Access
:= Rating_Impl (Object.Get_Load_Object.all)'Access;
Copy : constant Rating_Access
:= new Rating_Impl;
begin
ADO.Objects.Set_Object (Result, Copy.all'Access);
Copy.Copy (Impl.all);
Copy.Rating := Impl.Rating;
Copy.Vote_Count := Impl.Vote_Count;
Copy.For_Entity_Id := Impl.For_Entity_Id;
Copy.For_Entity_Type := Impl.For_Entity_Type;
end;
end if;
Into := Result;
end Copy;
procedure Find (Object : in out Rating_Ref;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class;
Found : out Boolean) is
Impl : constant Rating_Access := new Rating_Impl;
begin
Impl.Find (Session, Query, Found);
if Found then
ADO.Objects.Set_Object (Object, Impl.all'Access);
else
ADO.Objects.Set_Object (Object, null);
Destroy (Impl);
end if;
end Find;
procedure Load (Object : in out Rating_Ref;
Session : in out ADO.Sessions.Session'Class;
Id : in ADO.Identifier) is
Impl : constant Rating_Access := new Rating_Impl;
Found : Boolean;
Query : ADO.SQL.Query;
begin
Query.Bind_Param (Position => 1, Value => Id);
Query.Set_Filter ("id = ?");
Impl.Find (Session, Query, Found);
if not Found then
Destroy (Impl);
raise ADO.Objects.NOT_FOUND;
end if;
ADO.Objects.Set_Object (Object, Impl.all'Access);
end Load;
procedure Load (Object : in out Rating_Ref;
Session : in out ADO.Sessions.Session'Class;
Id : in ADO.Identifier;
Found : out Boolean) is
Impl : constant Rating_Access := new Rating_Impl;
Query : ADO.SQL.Query;
begin
Query.Bind_Param (Position => 1, Value => Id);
Query.Set_Filter ("id = ?");
Impl.Find (Session, Query, Found);
if not Found then
Destroy (Impl);
else
ADO.Objects.Set_Object (Object, Impl.all'Access);
end if;
end Load;
procedure Save (Object : in out Rating_Ref;
Session : in out ADO.Sessions.Master_Session'Class) is
Impl : ADO.Objects.Object_Record_Access := Object.Get_Object;
begin
if Impl = null then
Impl := new Rating_Impl;
ADO.Objects.Set_Object (Object, Impl);
end if;
if not ADO.Objects.Is_Created (Impl.all) then
Impl.Create (Session);
else
Impl.Save (Session);
end if;
end Save;
procedure Delete (Object : in out Rating_Ref;
Session : in out ADO.Sessions.Master_Session'Class) is
Impl : constant ADO.Objects.Object_Record_Access := Object.Get_Object;
begin
if Impl /= null then
Impl.Delete (Session);
end if;
end Delete;
-- --------------------
-- Free the object
-- --------------------
procedure Destroy (Object : access Rating_Impl) is
type Rating_Impl_Ptr is access all Rating_Impl;
procedure Unchecked_Free is new Ada.Unchecked_Deallocation
(Rating_Impl, Rating_Impl_Ptr);
pragma Warnings (Off, "*redundant conversion*");
Ptr : Rating_Impl_Ptr := Rating_Impl (Object.all)'Access;
pragma Warnings (On, "*redundant conversion*");
begin
Unchecked_Free (Ptr);
end Destroy;
procedure Find (Object : in out Rating_Impl;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class;
Found : out Boolean) is
Stmt : ADO.Statements.Query_Statement
:= Session.Create_Statement (Query, RATING_DEF'Access);
begin
Stmt.Execute;
if Stmt.Has_Elements then
Object.Load (Stmt, Session);
Stmt.Next;
Found := not Stmt.Has_Elements;
else
Found := False;
end if;
end Find;
overriding
procedure Load (Object : in out Rating_Impl;
Session : in out ADO.Sessions.Session'Class) is
Found : Boolean;
Query : ADO.SQL.Query;
Id : constant ADO.Identifier := Object.Get_Key_Value;
begin
Query.Bind_Param (Position => 1, Value => Id);
Query.Set_Filter ("id = ?");
Object.Find (Session, Query, Found);
if not Found then
raise ADO.Objects.NOT_FOUND;
end if;
end Load;
procedure Save (Object : in out Rating_Impl;
Session : in out ADO.Sessions.Master_Session'Class) is
Stmt : ADO.Statements.Update_Statement
:= Session.Create_Statement (RATING_DEF'Access);
begin
if Object.Is_Modified (1) then
Stmt.Save_Field (Name => COL_0_1_NAME, -- id
Value => Object.Get_Key);
Object.Clear_Modified (1);
end if;
if Object.Is_Modified (2) then
Stmt.Save_Field (Name => COL_1_1_NAME, -- rating
Value => Object.Rating);
Object.Clear_Modified (2);
end if;
if Object.Is_Modified (3) then
Stmt.Save_Field (Name => COL_2_1_NAME, -- vote_count
Value => Object.Vote_Count);
Object.Clear_Modified (3);
end if;
if Object.Is_Modified (4) then
Stmt.Save_Field (Name => COL_3_1_NAME, -- for_entity_id
Value => Object.For_Entity_Id);
Object.Clear_Modified (4);
end if;
if Object.Is_Modified (5) then
Stmt.Save_Field (Name => COL_4_1_NAME, -- for_entity_type
Value => Object.For_Entity_Type);
Object.Clear_Modified (5);
end if;
if Stmt.Has_Save_Fields then
Stmt.Set_Filter (Filter => "id = ?");
Stmt.Add_Param (Value => Object.Get_Key);
declare
Result : Integer;
begin
Stmt.Execute (Result);
if Result /= 1 then
if Result /= 0 then
raise ADO.Objects.UPDATE_ERROR;
end if;
end if;
end;
end if;
end Save;
procedure Create (Object : in out Rating_Impl;
Session : in out ADO.Sessions.Master_Session'Class) is
Query : ADO.Statements.Insert_Statement
:= Session.Create_Statement (RATING_DEF'Access);
Result : Integer;
begin
Session.Allocate (Id => Object);
Query.Save_Field (Name => COL_0_1_NAME, -- id
Value => Object.Get_Key);
Query.Save_Field (Name => COL_1_1_NAME, -- rating
Value => Object.Rating);
Query.Save_Field (Name => COL_2_1_NAME, -- vote_count
Value => Object.Vote_Count);
Query.Save_Field (Name => COL_3_1_NAME, -- for_entity_id
Value => Object.For_Entity_Id);
Query.Save_Field (Name => COL_4_1_NAME, -- for_entity_type
Value => Object.For_Entity_Type);
Query.Execute (Result);
if Result /= 1 then
raise ADO.Objects.INSERT_ERROR;
end if;
ADO.Objects.Set_Created (Object);
end Create;
procedure Delete (Object : in out Rating_Impl;
Session : in out ADO.Sessions.Master_Session'Class) is
Stmt : ADO.Statements.Delete_Statement
:= Session.Create_Statement (RATING_DEF'Access);
begin
Stmt.Set_Filter (Filter => "id = ?");
Stmt.Add_Param (Value => Object.Get_Key);
Stmt.Execute;
end Delete;
-- ------------------------------
-- Get the bean attribute identified by the name.
-- ------------------------------
overriding
function Get_Value (From : in Rating_Ref;
Name : in String) return Util.Beans.Objects.Object is
Obj : ADO.Objects.Object_Record_Access;
Impl : access Rating_Impl;
begin
if From.Is_Null then
return Util.Beans.Objects.Null_Object;
end if;
Obj := From.Get_Load_Object;
Impl := Rating_Impl (Obj.all)'Access;
if Name = "id" then
return ADO.Objects.To_Object (Impl.Get_Key);
elsif Name = "rating" then
return Util.Beans.Objects.To_Object (Long_Long_Integer (Impl.Rating));
elsif Name = "vote_count" then
return Util.Beans.Objects.To_Object (Long_Long_Integer (Impl.Vote_Count));
elsif Name = "for_entity_id" then
return Util.Beans.Objects.To_Object (Long_Long_Integer (Impl.For_Entity_Id));
elsif Name = "for_entity_type" then
return Util.Beans.Objects.To_Object (Long_Long_Integer (Impl.For_Entity_Type));
end if;
return Util.Beans.Objects.Null_Object;
end Get_Value;
-- ------------------------------
-- Load the object from current iterator position
-- ------------------------------
procedure Load (Object : in out Rating_Impl;
Stmt : in out ADO.Statements.Query_Statement'Class;
Session : in out ADO.Sessions.Session'Class) is
begin
Object.Set_Key_Value (Stmt.Get_Identifier (0));
Object.Rating := Stmt.Get_Integer (1);
Object.Vote_Count := Stmt.Get_Integer (2);
Object.For_Entity_Id := Stmt.Get_Identifier (3);
Object.For_Entity_Type := ADO.Entity_Type (Stmt.Get_Integer (4));
ADO.Objects.Set_Created (Object);
end Load;
function Vote_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key is
Result : ADO.Objects.Object_Key (Of_Type => ADO.Objects.KEY_INTEGER,
Of_Class => VOTE_DEF'Access);
begin
ADO.Objects.Set_Value (Result, Id);
return Result;
end Vote_Key;
function Vote_Key (Id : in String) return ADO.Objects.Object_Key is
Result : ADO.Objects.Object_Key (Of_Type => ADO.Objects.KEY_INTEGER,
Of_Class => VOTE_DEF'Access);
begin
ADO.Objects.Set_Value (Result, Id);
return Result;
end Vote_Key;
function "=" (Left, Right : Vote_Ref'Class) return Boolean is
begin
return ADO.Objects.Object_Ref'Class (Left) = ADO.Objects.Object_Ref'Class (Right);
end "=";
procedure Set_Field (Object : in out Vote_Ref'Class;
Impl : out Vote_Access) is
Result : ADO.Objects.Object_Record_Access;
begin
Object.Prepare_Modify (Result);
Impl := Vote_Impl (Result.all)'Access;
end Set_Field;
-- Internal method to allocate the Object_Record instance
procedure Allocate (Object : in out Vote_Ref) is
Impl : Vote_Access;
begin
Impl := new Vote_Impl;
Impl.Rating := 0;
ADO.Objects.Set_Object (Object, Impl.all'Access);
end Allocate;
-- ----------------------------------------
-- Data object: Vote
-- ----------------------------------------
procedure Set_Rating (Object : in out Vote_Ref;
Value : in Integer) is
Impl : Vote_Access;
begin
Set_Field (Object, Impl);
ADO.Objects.Set_Field_Integer (Impl.all, 1, Impl.Rating, Value);
end Set_Rating;
function Get_Rating (Object : in Vote_Ref)
return Integer is
Impl : constant Vote_Access
:= Vote_Impl (Object.Get_Load_Object.all)'Access;
begin
return Impl.Rating;
end Get_Rating;
procedure Set_Entity (Object : in out Vote_Ref;
Value : in AWA.Votes.Models.Rating_Ref'Class) is
Impl : Vote_Access;
begin
Set_Field (Object, Impl);
ADO.Objects.Set_Field_Object (Impl.all, 2, Impl.Entity, Value);
end Set_Entity;
function Get_Entity (Object : in Vote_Ref)
return AWA.Votes.Models.Rating_Ref'Class is
Impl : constant Vote_Access
:= Vote_Impl (Object.Get_Load_Object.all)'Access;
begin
return Impl.Entity;
end Get_Entity;
procedure Set_User_Id (Object : in out Vote_Ref;
Value : in ADO.Identifier) is
Impl : Vote_Access;
begin
Set_Field (Object, Impl);
ADO.Objects.Set_Field_Key_Value (Impl.all, 3, Value);
end Set_User_Id;
function Get_User_Id (Object : in Vote_Ref)
return ADO.Identifier is
Impl : constant Vote_Access
:= Vote_Impl (Object.Get_Object.all)'Access;
begin
return Impl.Get_Key_Value;
end Get_User_Id;
-- Copy of the object.
procedure Copy (Object : in Vote_Ref;
Into : in out Vote_Ref) is
Result : Vote_Ref;
begin
if not Object.Is_Null then
declare
Impl : constant Vote_Access
:= Vote_Impl (Object.Get_Load_Object.all)'Access;
Copy : constant Vote_Access
:= new Vote_Impl;
begin
ADO.Objects.Set_Object (Result, Copy.all'Access);
Copy.Copy (Impl.all);
Copy.Rating := Impl.Rating;
Copy.Entity := Impl.Entity;
end;
end if;
Into := Result;
end Copy;
procedure Find (Object : in out Vote_Ref;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class;
Found : out Boolean) is
Impl : constant Vote_Access := new Vote_Impl;
begin
Impl.Find (Session, Query, Found);
if Found then
ADO.Objects.Set_Object (Object, Impl.all'Access);
else
ADO.Objects.Set_Object (Object, null);
Destroy (Impl);
end if;
end Find;
procedure Load (Object : in out Vote_Ref;
Session : in out ADO.Sessions.Session'Class;
Id : in ADO.Identifier) is
Impl : constant Vote_Access := new Vote_Impl;
Found : Boolean;
Query : ADO.SQL.Query;
begin
Query.Bind_Param (Position => 1, Value => Id);
Query.Set_Filter ("user_id = ?");
Impl.Find (Session, Query, Found);
if not Found then
Destroy (Impl);
raise ADO.Objects.NOT_FOUND;
end if;
ADO.Objects.Set_Object (Object, Impl.all'Access);
end Load;
procedure Load (Object : in out Vote_Ref;
Session : in out ADO.Sessions.Session'Class;
Id : in ADO.Identifier;
Found : out Boolean) is
Impl : constant Vote_Access := new Vote_Impl;
Query : ADO.SQL.Query;
begin
Query.Bind_Param (Position => 1, Value => Id);
Query.Set_Filter ("user_id = ?");
Impl.Find (Session, Query, Found);
if not Found then
Destroy (Impl);
else
ADO.Objects.Set_Object (Object, Impl.all'Access);
end if;
end Load;
procedure Save (Object : in out Vote_Ref;
Session : in out ADO.Sessions.Master_Session'Class) is
Impl : ADO.Objects.Object_Record_Access := Object.Get_Object;
begin
if Impl = null then
Impl := new Vote_Impl;
ADO.Objects.Set_Object (Object, Impl);
end if;
if not ADO.Objects.Is_Created (Impl.all) then
Impl.Create (Session);
else
Impl.Save (Session);
end if;
end Save;
procedure Delete (Object : in out Vote_Ref;
Session : in out ADO.Sessions.Master_Session'Class) is
Impl : constant ADO.Objects.Object_Record_Access := Object.Get_Object;
begin
if Impl /= null then
Impl.Delete (Session);
end if;
end Delete;
-- --------------------
-- Free the object
-- --------------------
procedure Destroy (Object : access Vote_Impl) is
type Vote_Impl_Ptr is access all Vote_Impl;
procedure Unchecked_Free is new Ada.Unchecked_Deallocation
(Vote_Impl, Vote_Impl_Ptr);
pragma Warnings (Off, "*redundant conversion*");
Ptr : Vote_Impl_Ptr := Vote_Impl (Object.all)'Access;
pragma Warnings (On, "*redundant conversion*");
begin
Unchecked_Free (Ptr);
end Destroy;
procedure Find (Object : in out Vote_Impl;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class;
Found : out Boolean) is
Stmt : ADO.Statements.Query_Statement
:= Session.Create_Statement (Query, VOTE_DEF'Access);
begin
Stmt.Execute;
if Stmt.Has_Elements then
Object.Load (Stmt, Session);
Stmt.Next;
Found := not Stmt.Has_Elements;
else
Found := False;
end if;
end Find;
overriding
procedure Load (Object : in out Vote_Impl;
Session : in out ADO.Sessions.Session'Class) is
Found : Boolean;
Query : ADO.SQL.Query;
Id : constant ADO.Identifier := Object.Get_Key_Value;
begin
Query.Bind_Param (Position => 1, Value => Id);
Query.Set_Filter ("user_id = ?");
Object.Find (Session, Query, Found);
if not Found then
raise ADO.Objects.NOT_FOUND;
end if;
end Load;
procedure Save (Object : in out Vote_Impl;
Session : in out ADO.Sessions.Master_Session'Class) is
Stmt : ADO.Statements.Update_Statement
:= Session.Create_Statement (VOTE_DEF'Access);
begin
if Object.Is_Modified (1) then
Stmt.Save_Field (Name => COL_0_2_NAME, -- rating
Value => Object.Rating);
Object.Clear_Modified (1);
end if;
if Object.Is_Modified (2) then
Stmt.Save_Field (Name => COL_1_2_NAME, -- entity_id
Value => Object.Entity);
Object.Clear_Modified (2);
end if;
if Object.Is_Modified (3) then
Stmt.Save_Field (Name => COL_2_2_NAME, -- user_id
Value => Object.Get_Key);
Object.Clear_Modified (3);
end if;
if Stmt.Has_Save_Fields then
Stmt.Set_Filter (Filter => "user_id = ? AND entity_id = ?");
Stmt.Add_Param (Value => Object.Get_Key);
Stmt.Add_Param (Value => Object.Entity);
declare
Result : Integer;
begin
Stmt.Execute (Result);
if Result /= 1 then
if Result /= 0 then
raise ADO.Objects.UPDATE_ERROR;
end if;
end if;
end;
end if;
end Save;
procedure Create (Object : in out Vote_Impl;
Session : in out ADO.Sessions.Master_Session'Class) is
Query : ADO.Statements.Insert_Statement
:= Session.Create_Statement (VOTE_DEF'Access);
Result : Integer;
begin
Query.Save_Field (Name => COL_0_2_NAME, -- rating
Value => Object.Rating);
Query.Save_Field (Name => COL_1_2_NAME, -- entity_id
Value => Object.Entity);
Query.Save_Field (Name => COL_2_2_NAME, -- user_id
Value => Object.Get_Key);
Query.Execute (Result);
if Result /= 1 then
raise ADO.Objects.INSERT_ERROR;
end if;
ADO.Objects.Set_Created (Object);
end Create;
procedure Delete (Object : in out Vote_Impl;
Session : in out ADO.Sessions.Master_Session'Class) is
Stmt : ADO.Statements.Delete_Statement
:= Session.Create_Statement (VOTE_DEF'Access);
begin
Stmt.Set_Filter (Filter => "user_id = ?");
Stmt.Add_Param (Value => Object.Get_Key);
Stmt.Execute;
end Delete;
-- ------------------------------
-- Get the bean attribute identified by the name.
-- ------------------------------
overriding
function Get_Value (From : in Vote_Ref;
Name : in String) return Util.Beans.Objects.Object is
Obj : ADO.Objects.Object_Record_Access;
Impl : access Vote_Impl;
begin
if From.Is_Null then
return Util.Beans.Objects.Null_Object;
end if;
Obj := From.Get_Load_Object;
Impl := Vote_Impl (Obj.all)'Access;
if Name = "rating" then
return Util.Beans.Objects.To_Object (Long_Long_Integer (Impl.Rating));
elsif Name = "user_id" then
return ADO.Objects.To_Object (Impl.Get_Key);
end if;
return Util.Beans.Objects.Null_Object;
end Get_Value;
-- ------------------------------
-- Load the object from current iterator position
-- ------------------------------
procedure Load (Object : in out Vote_Impl;
Stmt : in out ADO.Statements.Query_Statement'Class;
Session : in out ADO.Sessions.Session'Class) is
begin
Object.Rating := Stmt.Get_Integer (0);
if not Stmt.Is_Null (1) then
Object.Entity.Set_Key_Value (Stmt.Get_Identifier (1), Session);
end if;
Object.Set_Key_Value (Stmt.Get_Identifier (2));
ADO.Objects.Set_Created (Object);
end Load;
procedure Op_Vote_Up (Bean : in out Vote_Bean;
Outcome : in out Ada.Strings.Unbounded.Unbounded_String);
procedure Op_Vote_Up (Bean : in out Vote_Bean;
Outcome : in out Ada.Strings.Unbounded.Unbounded_String) is
begin
Vote_Bean'Class (Bean).Vote_Up (Outcome);
end Op_Vote_Up;
package Binding_Vote_Bean_1 is
new ASF.Events.Faces.Actions.Action_Method.Bind (Bean => Vote_Bean,
Method => Op_Vote_Up,
Name => "vote_up");
procedure Op_Vote_Down (Bean : in out Vote_Bean;
Outcome : in out Ada.Strings.Unbounded.Unbounded_String);
procedure Op_Vote_Down (Bean : in out Vote_Bean;
Outcome : in out Ada.Strings.Unbounded.Unbounded_String) is
begin
Vote_Bean'Class (Bean).Vote_Down (Outcome);
end Op_Vote_Down;
package Binding_Vote_Bean_2 is
new ASF.Events.Faces.Actions.Action_Method.Bind (Bean => Vote_Bean,
Method => Op_Vote_Down,
Name => "vote_down");
procedure Op_Vote (Bean : in out Vote_Bean;
Outcome : in out Ada.Strings.Unbounded.Unbounded_String);
procedure Op_Vote (Bean : in out Vote_Bean;
Outcome : in out Ada.Strings.Unbounded.Unbounded_String) is
begin
Vote_Bean'Class (Bean).Vote (Outcome);
end Op_Vote;
package Binding_Vote_Bean_3 is
new ASF.Events.Faces.Actions.Action_Method.Bind (Bean => Vote_Bean,
Method => Op_Vote,
Name => "vote");
Binding_Vote_Bean_Array : aliased constant Util.Beans.Methods.Method_Binding_Array
:= (1 => Binding_Vote_Bean_1.Proxy'Access,
2 => Binding_Vote_Bean_2.Proxy'Access,
3 => Binding_Vote_Bean_3.Proxy'Access
);
-- ------------------------------
-- This bean provides some methods that can be used in a Method_Expression.
-- ------------------------------
overriding
function Get_Method_Bindings (From : in Vote_Bean)
return Util.Beans.Methods.Method_Binding_Array_Access is
pragma Unreferenced (From);
begin
return Binding_Vote_Bean_Array'Access;
end Get_Method_Bindings;
-- ------------------------------
-- Get the bean attribute identified by the name.
-- ------------------------------
overriding
function Get_Value (From : in Vote_Bean;
Name : in String) return Util.Beans.Objects.Object is
begin
if Name = "permission" then
return Util.Beans.Objects.To_Object (From.Permission);
elsif Name = "entity_id" then
return Util.Beans.Objects.To_Object (Long_Long_Integer (From.Entity_Id));
elsif Name = "rating" then
return Util.Beans.Objects.To_Object (Long_Long_Integer (From.Rating));
elsif Name = "entity_type" then
return Util.Beans.Objects.To_Object (From.Entity_Type);
elsif Name = "total" then
return Util.Beans.Objects.To_Object (Long_Long_Integer (From.Total));
end if;
return Util.Beans.Objects.Null_Object;
end Get_Value;
-- ------------------------------
-- Set the value identified by the name
-- ------------------------------
overriding
procedure Set_Value (Item : in out Vote_Bean;
Name : in String;
Value : in Util.Beans.Objects.Object) is
begin
if Name = "permission" then
Item.Permission := Util.Beans.Objects.To_Unbounded_String (Value);
elsif Name = "entity_id" then
Item.Entity_Id := ADO.Identifier (Util.Beans.Objects.To_Long_Long_Integer (Value));
elsif Name = "rating" then
Item.Rating := Util.Beans.Objects.To_Integer (Value);
elsif Name = "entity_type" then
Item.Entity_Type := Util.Beans.Objects.To_Unbounded_String (Value);
elsif Name = "total" then
Item.Total := Util.Beans.Objects.To_Integer (Value);
end if;
end Set_Value;
end AWA.Votes.Models;
| 36.196512 | 92 | 0.583861 |
8b32dd51789fd4709cac95e8ea2d2941e302cb82 | 5,877 | ads | Ada | src/sdl-video-windows-manager.ads | alire-project/sdlada | 9593807925f5f6651d81514c7f2d163ab3156dc1 | [
"Zlib"
] | null | null | null | src/sdl-video-windows-manager.ads | alire-project/sdlada | 9593807925f5f6651d81514c7f2d163ab3156dc1 | [
"Zlib"
] | null | null | null | src/sdl-video-windows-manager.ads | alire-project/sdlada | 9593807925f5f6651d81514c7f2d163ab3156dc1 | [
"Zlib"
] | null | null | null | --------------------------------------------------------------------------------------------------------------------
-- Copyright (c) 2013-2018 Luke A. Guest
--
-- This software is provided 'as-is', without any express or implied
-- warranty. In no event will the authors be held liable for any damages
-- arising from the use of this software.
--
-- Permission is granted to anyone to use this software for any purpose,
-- including commercial applications, and to alter it and redistribute it
-- freely, subject to the following restrictions:
--
-- 1. The origin of this software must not be misrepresented; you must not
-- claim that you wrote the original software. If you use this software
-- in a product, an acknowledgment in the product documentation would be
-- appreciated but is not required.
--
-- 2. Altered source versions must be plainly marked as such, and must not be
-- misrepresented as being the original software.
--
-- 3. This notice may not be removed or altered from any source
-- distribution.
--------------------------------------------------------------------------------------------------------------------
-- SDL.Video.Windows.Manager
--
-- Access to the underlying window system.
--
-- Due to the nature of free OSes like Linux, one user may be using X11, another XCB, another Wayland and another
-- using Mir. We don't want to use build specific data for all these three, that makes sense for the varying OSes,
-- such as Linux, Windows, MacOS X, etc. So, if building on Windows, the compiler should only allow access to the
-- Windows/WinRT specific stuff, Linux, then X11/Wayland/Mir, etc.
--------------------------------------------------------------------------------------------------------------------
with Interfaces.C;
with SDL.Versions;
package SDL.Video.Windows.Manager is
type WM_Types is (WM_Unknown,
WM_Windows,
WM_X11,
WM_Direct_FB,
WM_Cocoa,
WM_UI_Kit,
WM_Wayland,
WM_Mir,
WM_Win_RT,
WM_Android) with
Convention => C;
type C_Address is access all Interfaces.Unsigned_32 with
Convention => C;
-- These are dummy types that (should) match what a real binding would provide so that the end user can
-- convert these using Unchecked_Conversion to pass into any other API's.
package Windows is
type HWNDs is new C_Address;
type HDCs is new C_Address;
end Windows;
-- WinRT only available since version 2.0.3.
package Win_RT is
type Inspectable is new C_Address;
end Win_RT;
package X11 is
type Display is new C_Address;
type Window is new Interfaces.Unsigned_32;
end X11;
package Direct_FB is
type Direct_FB is new C_Address;
type Direct_FB_Window is new C_Address;
type Direct_FB_Surface is new C_Address;
end Direct_FB;
package Cocoa is
type NS_Window is new C_Address;
end Cocoa;
package UI_Kit is
package C renames Interfaces.C;
type Window is new C_Address;
Frame_Buffer : C.unsigned;
Colour_Buffer : C.unsigned;
Resolve_Frame_Buffer : C.unsigned;
end UI_Kit;
-- Wayland only available since version 2.0.2.
package Wayland is
type Display is new C_Address;
type Surface is new C_Address;
type Shell_Surface is new C_Address;
end Wayland;
-- Mir only available since version 2.0.2.
package Mir is
type Connection is new C_Address;
type Surface is new C_Address;
end Mir;
-- Android only available since version 2.0.4.
package Android is
type Native_Window is new C_Address;
type EGL_Surface is new C_Address;
end Android;
type Information (WM : WM_Types) is
record
case WM is
when WM_Unknown =>
null;
when WM_Windows =>
HWND : Windows.HWNDs;
HDC : Windows.HDCs;
when WM_Win_RT =>
RT_Inspectable : Win_RT.Inspectable;
when WM_X11 =>
X11_Display : X11.Display;
X11_Window : X11.Window;
when WM_Direct_FB =>
DFB_Main_Interface : Direct_FB.Direct_FB;
DFB_Window : Direct_FB.Direct_FB_Window;
DFB_Surface : Direct_FB.Direct_FB_Surface;
when WM_Cocoa =>
Cocoa_Window : Cocoa.NS_Window;
when WM_UI_Kit =>
UIK_Window : UI_Kit.Window;
UIK_Frame_Buffer : UI_Kit.Window;
UIK_Colour_Buffer : UI_Kit.Window;
UIK_Resolve_Frame_Buffer : UI_Kit.Window;
when WM_Wayland =>
Wayland_Display : Wayland.Display;
Wayland_Surface : Wayland.Surface;
Wayland_Shell_Surface : Wayland.Shell_Surface;
when WM_Mir =>
Mir_Connection : Mir.Connection;
Mir_Surface : Mir.Surface;
when WM_Android =>
Android_Window : Android.Native_Window;
Android_Surface : Android.EGL_Surface;
end case;
end record with
Unchecked_Union;
type WM_Info is
record
Version : SDL.Versions.Version;
Sub_System : WM_Types;
Info : Information (WM => WM_Unknown);
end record with
Convention => C;
function Get_WM_Info (Win : in Window; Info : out WM_Info) return Boolean with
Inline => True;
end SDL.Video.Windows.Manager;
| 37.673077 | 116 | 0.566275 |
c7c8f22565109ec423c21931a777bcab8d19b749 | 26,989 | adb | Ada | src/portscan-tests.adb | kraileth/ravenadm | 02bb13117bafc8887e0c90a4effc63ffcdc90642 | [
"0BSD"
] | 18 | 2017-02-28T08:43:17.000Z | 2022-03-22T21:55:56.000Z | src/portscan-tests.adb | kraileth/ravenadm | 02bb13117bafc8887e0c90a4effc63ffcdc90642 | [
"0BSD"
] | 49 | 2017-10-28T11:18:05.000Z | 2022-01-16T16:23:32.000Z | src/portscan-tests.adb | kraileth/ravenadm | 02bb13117bafc8887e0c90a4effc63ffcdc90642 | [
"0BSD"
] | 5 | 2017-09-06T14:47:57.000Z | 2021-11-25T08:31:10.000Z | -- This file is covered by the Internet Software Consortium (ISC) License
-- Reference: ../License.txt
with Package_Manifests;
with PortScan.Log;
with Parameters;
with Unix;
with Ada.Characters.Latin_1;
with Ada.Directories;
with Ada.Exceptions;
package body PortScan.Tests is
package MAN renames Package_Manifests;
package LOG renames PortScan.Log;
package PM renames Parameters;
package LAT renames Ada.Characters.Latin_1;
package DIR renames Ada.Directories;
package EX renames Ada.Exceptions;
--------------------------------------------------------------------------------------------
-- exec_phase_check_plist
--------------------------------------------------------------------------------------------
function exec_check_plist
(specification : PSP.Portspecs;
log_handle : TIO.File_Type;
phase_name : String;
seq_id : port_id;
port_prefix : String;
rootdir : String) return Boolean
is
passed_check : Boolean := True;
namebase : constant String := specification.get_namebase;
variant : constant String := HT.USS (all_ports (seq_id).port_variant);
directory_list : entry_crate.Map;
dossier_list : entry_crate.Map;
begin
LOG.log_phase_begin (log_handle, phase_name);
TIO.Put_Line (log_handle, "====> Checking for package manifest issues");
begin
if not ingest_manifests (specification => specification,
log_handle => log_handle,
directory_list => directory_list,
dossier_list => dossier_list,
seq_id => seq_id,
namebase => namebase,
port_prefix => port_prefix,
rootdir => rootdir)
then
passed_check := False;
end if;
exception
when surprise : others =>
TIO.Put_Line (log_handle, "exec_check_plist/ingest_manifests: " &
EX.Exception_Information (surprise));
passed_check := False;
end;
begin
if orphaned_directories_detected (log_handle => log_handle,
directory_list => directory_list,
namebase => namebase,
port_prefix => port_prefix,
rootdir => rootdir)
then
passed_check := False;
end if;
exception
when surprise : others =>
TIO.Put_Line (log_handle, "exec_check_plist/orphaned_directories_detected: " &
EX.Exception_Information (surprise));
passed_check := False;
end;
begin
if missing_directories_detected (log_handle, directory_list) then
passed_check := False;
end if;
exception
when surprise : others =>
TIO.Put_Line (log_handle, "exec_check_plist/missing_directories_detected: " &
EX.Exception_Information (surprise));
passed_check := False;
end;
begin
if orphaned_files_detected (log_handle => log_handle,
dossier_list => dossier_list,
namebase => namebase,
port_prefix => port_prefix,
rootdir => rootdir)
then
passed_check := False;
end if;
exception
when surprise : others =>
TIO.Put_Line (log_handle, "exec_check_plist/orphaned_files_detected: " &
EX.Exception_Information (surprise));
passed_check := False;
end;
begin
if missing_files_detected (log_handle, dossier_list) then
passed_check := False;
end if;
exception
when surprise : others =>
TIO.Put_Line (log_handle, "exec_check_plist/missing_files_detected: " &
EX.Exception_Information (surprise));
passed_check := False;
end;
if passed_check then
TIO.Put_Line (log_handle, "====> No manifest issues found");
end if;
create_single_file_manifest (log_handle => log_handle,
namebase => namebase,
variant => variant,
port_prefix => port_prefix,
rootdir => rootdir);
LOG.log_phase_end (log_handle);
return passed_check;
end exec_check_plist;
--------------------------------------------------------------------------------------------
-- ingest_manifests
--------------------------------------------------------------------------------------------
function ingest_manifests
(specification : PSP.Portspecs;
log_handle : TIO.File_Type;
directory_list : in out entry_crate.Map;
dossier_list : in out entry_crate.Map;
seq_id : port_id;
namebase : String;
port_prefix : String;
rootdir : String) return Boolean
is
procedure eat_plist (position : subpackage_crate.Cursor);
procedure insert_directory (directory : String; subpackage : HT.Text);
result : Boolean := True;
procedure insert_directory (directory : String; subpackage : HT.Text)
is
numsep : Natural := HT.count_char (directory, LAT.Solidus);
canvas : HT.Text := HT.SUS (directory);
begin
for x in 1 .. numsep + 1 loop
declare
paint : String := HT.USS (canvas);
my_new_rec : entry_record := (subpackage, False);
begin
if paint /= "" then
if not directory_list.Contains (canvas) then
directory_list.Insert (canvas, my_new_rec);
end if;
canvas := HT.SUS (HT.head (paint, "/"));
end if;
end;
end loop;
end insert_directory;
procedure eat_plist (position : subpackage_crate.Cursor)
is
-- We cannot confidently use File_operations.get_file_contents because that function
-- allocates on the stack and attempting to read sufficiently large manifests result
-- in a Storage_Error during allocation
subpackage : HT.Text renames subpackage_crate.Element (position).subpackage;
manifest_file : String := "/construction/" & namebase & "/.manifest." &
HT.USS (subpackage) & ".mktmp";
handle : TIO.File_Type;
identifier : constant String := HT.USS (subpackage) & " manifest: ";
begin
TIO.Open (handle, TIO.In_File, rootdir & manifest_file);
loop
exit when TIO.End_Of_File (handle);
declare
line : constant String := TIO.Get_Line (handle);
new_rec : entry_record := (subpackage, False);
begin
if HT.leads (line, "@comment ") or else
HT.leads (line, "@desktop-file-utils") or else
HT.leads (line, "@terminfo") or else
HT.leads (line, "@fcfontsdir") or else
HT.leads (line, "@fontsdir") or else
HT.leads (line, "@fc") or else
HT.leads (line, "@rmtry ") or else
HT.leads (line, "@glib-schemas") or else
HT.leads (line, "@shared-mime-info") or else
HT.leads (line, "@group") or else
HT.leads (line, "@owner") or else
HT.leads (line, "@exec ") or else
HT.leads (line, "@unexec ") or else
HT.leads (line, "@postunexec ") or else
HT.leads (line, "@postexec ") or else
HT.leads (line, "@preexec ") or else
HT.leads (line, "@preunexec ")
then
null;
elsif HT.leads (line, "@dir") then
-- handle @dir and @dir(x,y,z)
declare
nokey : constant String := HT.part_2 (line, " ");
dir : constant String := convert_to_absolute_path (port_prefix, nokey);
dir_text : HT.Text := HT.SUS (dir);
excludeit : Boolean;
begin
if directory_list.Contains (dir_text) then
-- There is one case where a redundant @dir symbol is desired:
-- *) when a non-standard PREFIX is used. Pkg(8) needs to be given an
-- explicit command to remove the package's root directory.
excludeit := (LAT.Solidus & dir = port_prefix) and then
(port_prefix /= HT.USS (PM.configuration.dir_localbase));
if not excludeit then
result := False;
declare
spkg : String :=
HT.USS (directory_list.Element (dir_text).subpackage);
begin
if spkg /= "" then
TIO.Put_Line
(log_handle,
"Redundant @dir symbol, " & identifier & dir &
" will already be created by the " & spkg & " manifest");
else
TIO.Put_Line
(log_handle,
"Redundant @dir symbol, " & identifier & dir &
" will already be created by another manifest");
end if;
end;
end if;
else
insert_directory (dir, subpackage);
end if;
end;
else
declare
modline : String := modify_file_if_necessary (port_prefix, line);
ml_text : HT.Text := HT.SUS (modline);
begin
if dossier_list.Contains (ml_text) then
result := False;
declare
spkg : String := HT.USS (dossier_list.Element (ml_text).subpackage);
begin
TIO.Put_Line
(log_handle,
"Duplicate file entry, " & identifier & modline &
" already present in " & spkg & " manifest");
end;
else
dossier_list.Insert (ml_text, new_rec);
declare
plistdir : String := DIR.Containing_Directory (modline);
begin
insert_directory (plistdir, subpackage);
end;
end if;
end;
end if;
end;
end loop;
TIO.Close (handle);
exception
when issue : others =>
if TIO.Is_Open (handle) then
TIO.Close (handle);
end if;
TIO.Put_Line
(log_handle,
identifier & "check-plist error: " & EX.Exception_Message (issue));
end eat_plist;
begin
all_ports (seq_id).subpackages.Iterate (eat_plist'Access);
return result;
end ingest_manifests;
--------------------------------------------------------------------------------------------
-- directory_excluded
--------------------------------------------------------------------------------------------
function directory_excluded (port_prefix, candidate : String) return Boolean
is
-- mandatory candidate has ${STAGEDIR}/ stripped (no leading slash)
localbase : constant String := HT.substring (port_prefix, 1, 0);
lblen : constant Natural := localbase'Length;
begin
if candidate = localbase then
return True;
end if;
declare
shortcan : String := HT.substring (candidate, lblen + 1, 0);
begin
if shortcan = "bin" or else
shortcan = "etc" or else
shortcan = "etc/rc.d" or else
shortcan = "include" or else
shortcan = "lib" or else
shortcan = "lib/pkgconfig" or else
shortcan = "libdata" or else
shortcan = "libexec" or else
shortcan = "sbin" or else
shortcan = "share" or else
shortcan = "www"
then
return True;
end if;
if not HT.leads (shortcan, "share/") then
return False;
end if;
end;
declare
shortcan : String := HT.substring (candidate, lblen + 7, 0);
begin
if shortcan = "doc" or else
shortcan = "examples" or else
shortcan = "info" or else
shortcan = "locale" or else
shortcan = "man" or else
shortcan = "nls"
then
return True;
end if;
if shortcan'Length /= 8 or else
not HT.leads (shortcan, "man/man")
then
return False;
end if;
case shortcan (shortcan'Last) is
when '1' .. '9' | 'l' | 'n' => return True;
when others => return False;
end case;
end;
end directory_excluded;
--------------------------------------------------------------------------------------------
-- file_excluded
--------------------------------------------------------------------------------------------
function file_excluded (localbase, candidate : String) return Boolean is
begin
if HT.trails (candidate, "info/dir") then
-- removal of info files leaves entry uneasy to cleanup in info/dir
return True;
end if;
if candidate = "share/xml/catalog.ports" then
-- xmlcatmgr is constantly updating catalog.ports; ignore modification to that file
return True;
end if;
if HT.leads (candidate, localbase & "/share/fonts/") then
-- these files are cleaned up by deinstall script; don't consider as orphans
if HT.trails (candidate, "/fonts.dir") or else
HT.trails (candidate, "/fonts.scale")
then
return True;
end if;
end if;
return False;
end file_excluded;
--------------------------------------------------------------------------------------------
-- orphaned_directories_detected
--------------------------------------------------------------------------------------------
function orphaned_directories_detected
(log_handle : TIO.File_Type;
directory_list : in out entry_crate.Map;
namebase : String;
port_prefix : String;
rootdir : String) return Boolean
is
localbase : constant String := HT.substring (port_prefix, 1, 0);
stagedir : String := rootdir & "/construction/" & namebase & "/stage";
command : String := rootdir & "/usr/bin/find " & stagedir & " -type d -printf " &
HT.DQ ("%P\n");
status : Integer;
comres : String := HT.USS (Unix.piped_command (command, status));
markers : HT.Line_Markers;
lblen : constant Natural := localbase'Length;
result : Boolean := False;
errprefix : constant String := "Orphaned directory detected: ";
begin
if status /= 0 then
TIO.Put_Line ("orphaned_directories_detected: command error: " & comres);
return True;
end if;
HT.initialize_markers (comres, markers);
loop
exit when not HT.next_line_present (comres, markers);
declare
line : constant String := HT.extract_line (comres, markers);
plist_dir : HT.Text := HT.SUS (line);
begin
if line /= "" then
if directory_list.Contains (plist_dir) then
directory_list.Update_Element (Position => directory_list.Find (plist_dir),
Process => mark_verified'Access);
else
if not directory_excluded (port_prefix, line) then
if HT.leads (line, localbase) then
TIO.Put_Line (log_handle, errprefix & HT.substring (line, lblen + 1, 0));
else
TIO.Put_Line (log_handle, errprefix & line);
end if;
result := True;
end if;
end if;
end if;
end;
end loop;
return result;
end orphaned_directories_detected;
--------------------------------------------------------------------------------------------
-- mark_verified
--------------------------------------------------------------------------------------------
procedure mark_verified (key : HT.Text; Element : in out entry_record) is
begin
Element.verified := True;
end mark_verified;
--------------------------------------------------------------------------------------------
-- missing_directories_detected
--------------------------------------------------------------------------------------------
function missing_directories_detected
(log_handle : TIO.File_Type;
directory_list : in out entry_crate.Map) return Boolean
is
procedure check (position : entry_crate.Cursor);
result : Boolean := False;
procedure check (position : entry_crate.Cursor)
is
rec : entry_record renames entry_crate.Element (position);
plist_dir : String := HT.USS (entry_crate.Key (position));
begin
if not rec.verified then
TIO.Put_Line
(log_handle,
"Directory " & plist_dir & " listed on " & HT.USS (rec.subpackage) &
" manifest is not present in the stage directory.");
result := True;
end if;
end check;
begin
directory_list.Iterate (check'Access);
return result;
end missing_directories_detected;
--------------------------------------------------------------------------------------------
-- missing_files_detected
--------------------------------------------------------------------------------------------
function missing_files_detected
(log_handle : TIO.File_Type;
dossier_list : in out entry_crate.Map) return Boolean
is
procedure check (position : entry_crate.Cursor);
result : Boolean := False;
procedure check (position : entry_crate.Cursor)
is
rec : entry_record renames entry_crate.Element (position);
plist_file : String := HT.USS (entry_crate.Key (position));
begin
if not rec.verified then
TIO.Put_Line
(log_handle,
"File " & plist_file & " listed on " & HT.USS (rec.subpackage) &
" manifest is not present in the stage directory.");
result := True;
end if;
end check;
begin
dossier_list.Iterate (check'Access);
return result;
end missing_files_detected;
--------------------------------------------------------------------------------------------
-- orphaned_files_detected
--------------------------------------------------------------------------------------------
function orphaned_files_detected
(log_handle : TIO.File_Type;
dossier_list : in out entry_crate.Map;
namebase : String;
port_prefix : String;
rootdir : String) return Boolean
is
localbase : constant String := HT.substring (port_prefix, 1, 0);
stagedir : String := rootdir & "/construction/" & namebase & "/stage";
command : String := rootdir & "/usr/bin/find " & stagedir &
" \( -type f -o -type l \) -printf " & HT.DQ ("%P\n");
status : Integer;
comres : String := HT.USS (Unix.piped_command (command, status));
markers : HT.Line_Markers;
lblen : constant Natural := localbase'Length;
result : Boolean := False;
errprefix : constant String := "Orphaned file detected: ";
begin
if status /= 0 then
TIO.Put_Line ("orphaned_files_detected: command error: " & comres);
return True;
end if;
HT.initialize_markers (comres, markers);
loop
exit when not HT.next_line_present (comres, markers);
declare
line : constant String := HT.extract_line (comres, markers);
plist_file : HT.Text := HT.SUS (line);
begin
if not HT.IsBlank (plist_file) then
if dossier_list.Contains (plist_file) then
dossier_list.Update_Element (Position => dossier_list.Find (plist_file),
Process => mark_verified'Access);
else
if not file_excluded (localbase, line) then
if HT.leads (line, localbase) then
TIO.Put_Line (log_handle, errprefix & HT.substring (line, lblen + 1, 0));
else
TIO.Put_Line (log_handle, errprefix & line);
end if;
result := True;
end if;
end if;
end if;
end;
end loop;
return result;
end orphaned_files_detected;
--------------------------------------------------------------------------------------------
-- modify_file_if_necessary
--------------------------------------------------------------------------------------------
function modify_file_if_necessary (port_prefix, original : String) return String is
begin
if HT.leads (original, "@info ") then
return convert_to_absolute_path (port_prefix, HT.substring (original, 6, 0));
elsif HT.leads (original, "@sample") then
-- Handle both @sample and @sample(x,y,z)
declare
no_sample : constant String := HT.part_2 (original, " ");
begin
return convert_to_absolute_path (port_prefix, HT.part_1 (no_sample, " "));
end;
elsif HT.leads (original, "@shell ") then
return convert_to_absolute_path (port_prefix, HT.substring (original, 7, 0));
elsif HT.leads (original, "@xmlcatmgr ") then
return convert_to_absolute_path (port_prefix, HT.substring (original, 11, 0));
elsif HT.leads (original, "@(") then
return convert_to_absolute_path (port_prefix, HT.part_2 (original, ") "));
else
return convert_to_absolute_path (port_prefix, original);
end if;
end modify_file_if_necessary;
--------------------------------------------------------------------------------------------
-- convert_to_absolute_path
--------------------------------------------------------------------------------------------
function convert_to_absolute_path (port_prefix, raw : String) return String is
begin
if raw'Length < 2 then
return raw;
end if;
if raw (raw'First) = LAT.Solidus then
return HT.substring (raw, 1, 0);
end if;
return HT.substring (port_prefix, 1, 0) & LAT.Solidus & raw;
end convert_to_absolute_path;
--------------------------------------------------------------------------------------------
-- create_single_file_manifest
--------------------------------------------------------------------------------------------
procedure create_single_file_manifest
(log_handle : TIO.File_Type;
namebase : String;
variant : String;
port_prefix : String;
rootdir : String)
is
localbase : constant String := HT.substring (port_prefix, 1, 0);
stagedir : String := rootdir & "/construction/" & namebase & "/stage";
command : String := rootdir & "/usr/bin/find " & stagedir &
" \( -type f -o -type l \) ! -wholename " & HT.DQ ("*/share/licenses/*") &
" -printf " & HT.DQ ("%P\n");
status : Integer;
handle : TIO.File_Type;
markers : HT.Line_Markers;
comres : String := HT.USS (Unix.piped_command (command, status));
instdir : constant String := HT.USS (PM.configuration.dir_profile) & "/manifests";
dossier : constant String := instdir & "/" & namebase & "___" & variant & ".txt";
si_string : constant String := "====> Full manifest saved at " & dossier;
no_string : constant String := "====> Failed to create " & dossier & " manifest";
lblen : constant Natural := localbase'Length;
begin
if status /= 0 then
TIO.Put_Line ("create_single_file_manifest: command error: " & comres);
TIO.Put_Line (log_handle, no_string);
return;
end if;
begin
if not DIR.Exists (instdir) then
DIR.Create_Path (instdir);
end if;
TIO.Create (handle, TIO.Out_File, dossier);
exception
when TIO.Use_Error | TIO.Status_Error =>
TIO.Put_Line ("create_single_file_manifest: failed to create " & dossier);
TIO.Put_Line (log_handle, no_string);
return;
end;
HT.initialize_markers (comres, markers);
begin
loop
exit when not HT.next_line_present (comres, markers);
declare
line : constant String := HT.extract_line (comres, markers);
begin
if not file_excluded (localbase, line) then
if HT.leads (line, localbase) then
TIO.Put_Line (handle, HT.substring (line, lblen + 1, 0));
else
TIO.Put_Line (handle, line);
end if;
end if;
end;
end loop;
TIO.Close (handle);
TIO.Put_Line (log_handle, si_string);
MAN.sort_manifest (MAN.Filename (dossier));
return;
exception
when TIO.End_Error =>
if TIO.Is_Open (handle) then
TIO.Close (handle);
end if;
TIO.Put_Line (log_handle, no_string);
return;
end;
end create_single_file_manifest;
end PortScan.Tests;
| 40.646084 | 98 | 0.483641 |
1e7d8cc09415602d12c0e54682746c47cbbc4c2e | 35,507 | ads | Ada | source/amf/uml/amf-internals-uml_artifacts.ads | 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_artifacts.ads | 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_artifacts.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$
------------------------------------------------------------------------------
with AMF.Internals.UML_Classifiers;
with AMF.String_Collections;
with AMF.UML.Artifacts.Collections;
with AMF.UML.Classifier_Template_Parameters;
with AMF.UML.Classifiers.Collections;
with AMF.UML.Collaboration_Uses.Collections;
with AMF.UML.Constraints.Collections;
with AMF.UML.Dependencies.Collections;
with AMF.UML.Element_Imports.Collections;
with AMF.UML.Features.Collections;
with AMF.UML.Generalization_Sets.Collections;
with AMF.UML.Generalizations.Collections;
with AMF.UML.Manifestations.Collections;
with AMF.UML.Named_Elements.Collections;
with AMF.UML.Namespaces;
with AMF.UML.Operations.Collections;
with AMF.UML.Package_Imports.Collections;
with AMF.UML.Packageable_Elements.Collections;
with AMF.UML.Packages.Collections;
with AMF.UML.Parameterable_Elements.Collections;
with AMF.UML.Properties.Collections;
with AMF.UML.Redefinable_Elements.Collections;
with AMF.UML.Redefinable_Template_Signatures;
with AMF.UML.String_Expressions;
with AMF.UML.Substitutions.Collections;
with AMF.UML.Template_Bindings.Collections;
with AMF.UML.Template_Parameters;
with AMF.UML.Template_Signatures;
with AMF.UML.Types;
with AMF.UML.Use_Cases.Collections;
with AMF.Visitors;
package AMF.Internals.UML_Artifacts is
type UML_Artifact_Proxy is
limited new AMF.Internals.UML_Classifiers.UML_Classifier_Proxy
and AMF.UML.Artifacts.UML_Artifact with null record;
overriding function Get_File_Name
(Self : not null access constant UML_Artifact_Proxy)
return AMF.Optional_String;
-- Getter of Artifact::fileName.
--
-- A concrete name that is used to refer to the Artifact in a physical
-- context. Example: file system name, universal resource locator.
overriding procedure Set_File_Name
(Self : not null access UML_Artifact_Proxy;
To : AMF.Optional_String);
-- Setter of Artifact::fileName.
--
-- A concrete name that is used to refer to the Artifact in a physical
-- context. Example: file system name, universal resource locator.
overriding function Get_Manifestation
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Manifestations.Collections.Set_Of_UML_Manifestation;
-- Getter of Artifact::manifestation.
--
-- The set of model elements that are manifested in the Artifact. That is,
-- these model elements are utilized in the construction (or generation)
-- of the artifact.
overriding function Get_Nested_Artifact
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Artifacts.Collections.Set_Of_UML_Artifact;
-- Getter of Artifact::nestedArtifact.
--
-- The Artifacts that are defined (nested) within the Artifact. The
-- association is a specialization of the ownedMember association from
-- Namespace to NamedElement.
overriding function Get_Owned_Attribute
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Properties.Collections.Ordered_Set_Of_UML_Property;
-- Getter of Artifact::ownedAttribute.
--
-- The attributes or association ends defined for the Artifact. The
-- association is a specialization of the ownedMember association.
overriding function Get_Owned_Operation
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Operations.Collections.Ordered_Set_Of_UML_Operation;
-- Getter of Artifact::ownedOperation.
--
-- The Operations defined for the Artifact. The association is a
-- specialization of the ownedMember association.
overriding function Get_Attribute
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Properties.Collections.Set_Of_UML_Property;
-- Getter of Classifier::attribute.
--
-- Refers to all of the Properties that are direct (i.e. not inherited or
-- imported) attributes of the classifier.
overriding function Get_Collaboration_Use
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Collaboration_Uses.Collections.Set_Of_UML_Collaboration_Use;
-- Getter of Classifier::collaborationUse.
--
-- References the collaboration uses owned by the classifier.
overriding function Get_Feature
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Features.Collections.Set_Of_UML_Feature;
-- Getter of Classifier::feature.
--
-- Specifies each feature defined in the classifier.
-- Note that there may be members of the Classifier that are of the type
-- Feature but are not included in this association, e.g. inherited
-- features.
overriding function Get_General
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier;
-- Getter of Classifier::general.
--
-- Specifies the general Classifiers for this Classifier.
-- References the general classifier in the Generalization relationship.
overriding function Get_Generalization
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Generalizations.Collections.Set_Of_UML_Generalization;
-- Getter of Classifier::generalization.
--
-- Specifies the Generalization relationships for this Classifier. These
-- Generalizations navigaten to more general classifiers in the
-- generalization hierarchy.
overriding function Get_Inherited_Member
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element;
-- Getter of Classifier::inheritedMember.
--
-- Specifies all elements inherited by this classifier from the general
-- classifiers.
overriding function Get_Is_Abstract
(Self : not null access constant UML_Artifact_Proxy)
return Boolean;
-- Getter of Classifier::isAbstract.
--
-- If true, the Classifier does not provide a complete declaration and can
-- typically not be instantiated. An abstract classifier is intended to be
-- used by other classifiers e.g. as the target of general
-- metarelationships or generalization relationships.
overriding function Get_Is_Final_Specialization
(Self : not null access constant UML_Artifact_Proxy)
return Boolean;
-- Getter of Classifier::isFinalSpecialization.
--
-- If true, the Classifier cannot be specialized by generalization. Note
-- that this property is preserved through package merge operations; that
-- is, the capability to specialize a Classifier (i.e.,
-- isFinalSpecialization =false) must be preserved in the resulting
-- Classifier of a package merge operation where a Classifier with
-- isFinalSpecialization =false is merged with a matching Classifier with
-- isFinalSpecialization =true: the resulting Classifier will have
-- isFinalSpecialization =false.
overriding procedure Set_Is_Final_Specialization
(Self : not null access UML_Artifact_Proxy;
To : Boolean);
-- Setter of Classifier::isFinalSpecialization.
--
-- If true, the Classifier cannot be specialized by generalization. Note
-- that this property is preserved through package merge operations; that
-- is, the capability to specialize a Classifier (i.e.,
-- isFinalSpecialization =false) must be preserved in the resulting
-- Classifier of a package merge operation where a Classifier with
-- isFinalSpecialization =false is merged with a matching Classifier with
-- isFinalSpecialization =true: the resulting Classifier will have
-- isFinalSpecialization =false.
overriding function Get_Owned_Template_Signature
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Redefinable_Template_Signatures.UML_Redefinable_Template_Signature_Access;
-- Getter of Classifier::ownedTemplateSignature.
--
-- The optional template signature specifying the formal template
-- parameters.
overriding procedure Set_Owned_Template_Signature
(Self : not null access UML_Artifact_Proxy;
To : AMF.UML.Redefinable_Template_Signatures.UML_Redefinable_Template_Signature_Access);
-- Setter of Classifier::ownedTemplateSignature.
--
-- The optional template signature specifying the formal template
-- parameters.
overriding function Get_Owned_Use_Case
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Use_Cases.Collections.Set_Of_UML_Use_Case;
-- Getter of Classifier::ownedUseCase.
--
-- References the use cases owned by this classifier.
overriding function Get_Powertype_Extent
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Generalization_Sets.Collections.Set_Of_UML_Generalization_Set;
-- Getter of Classifier::powertypeExtent.
--
-- Designates the GeneralizationSet of which the associated Classifier is
-- a power type.
overriding function Get_Redefined_Classifier
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier;
-- Getter of Classifier::redefinedClassifier.
--
-- References the Classifiers that are redefined by this Classifier.
overriding function Get_Representation
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Collaboration_Uses.UML_Collaboration_Use_Access;
-- Getter of Classifier::representation.
--
-- References a collaboration use which indicates the collaboration that
-- represents this classifier.
overriding procedure Set_Representation
(Self : not null access UML_Artifact_Proxy;
To : AMF.UML.Collaboration_Uses.UML_Collaboration_Use_Access);
-- Setter of Classifier::representation.
--
-- References a collaboration use which indicates the collaboration that
-- represents this classifier.
overriding function Get_Substitution
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Substitutions.Collections.Set_Of_UML_Substitution;
-- Getter of Classifier::substitution.
--
-- References the substitutions that are owned by this Classifier.
overriding function Get_Template_Parameter
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Classifier_Template_Parameters.UML_Classifier_Template_Parameter_Access;
-- Getter of Classifier::templateParameter.
--
-- The template parameter that exposes this element as a formal parameter.
overriding procedure Set_Template_Parameter
(Self : not null access UML_Artifact_Proxy;
To : AMF.UML.Classifier_Template_Parameters.UML_Classifier_Template_Parameter_Access);
-- Setter of Classifier::templateParameter.
--
-- The template parameter that exposes this element as a formal parameter.
overriding function Get_Use_Case
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Use_Cases.Collections.Set_Of_UML_Use_Case;
-- Getter of Classifier::useCase.
--
-- The set of use cases for which this Classifier is the subject.
overriding function Get_Element_Import
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Element_Imports.Collections.Set_Of_UML_Element_Import;
-- Getter of Namespace::elementImport.
--
-- References the ElementImports owned by the Namespace.
overriding function Get_Imported_Member
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element;
-- Getter of Namespace::importedMember.
--
-- References the PackageableElements that are members of this Namespace
-- as a result of either PackageImports or ElementImports.
overriding function Get_Member
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element;
-- Getter of Namespace::member.
--
-- A collection of NamedElements identifiable within the Namespace, either
-- by being owned or by being introduced by importing or inheritance.
overriding function Get_Owned_Member
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element;
-- Getter of Namespace::ownedMember.
--
-- A collection of NamedElements owned by the Namespace.
overriding function Get_Owned_Rule
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Constraints.Collections.Set_Of_UML_Constraint;
-- Getter of Namespace::ownedRule.
--
-- Specifies a set of Constraints owned by this Namespace.
overriding function Get_Package_Import
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Package_Imports.Collections.Set_Of_UML_Package_Import;
-- Getter of Namespace::packageImport.
--
-- References the PackageImports owned by the Namespace.
overriding function Get_Client_Dependency
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Dependencies.Collections.Set_Of_UML_Dependency;
-- Getter of NamedElement::clientDependency.
--
-- Indicates the dependencies that reference the client.
overriding function Get_Name_Expression
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.String_Expressions.UML_String_Expression_Access;
-- Getter of NamedElement::nameExpression.
--
-- The string expression used to define the name of this named element.
overriding procedure Set_Name_Expression
(Self : not null access UML_Artifact_Proxy;
To : AMF.UML.String_Expressions.UML_String_Expression_Access);
-- Setter of NamedElement::nameExpression.
--
-- The string expression used to define the name of this named element.
overriding function Get_Namespace
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Namespaces.UML_Namespace_Access;
-- Getter of NamedElement::namespace.
--
-- Specifies the namespace that owns the NamedElement.
overriding function Get_Qualified_Name
(Self : not null access constant UML_Artifact_Proxy)
return AMF.Optional_String;
-- Getter of NamedElement::qualifiedName.
--
-- A name which allows the NamedElement to be identified within a
-- hierarchy of nested Namespaces. It is constructed from the names of the
-- containing namespaces starting at the root of the hierarchy and ending
-- with the name of the NamedElement itself.
overriding function Get_Package
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Packages.UML_Package_Access;
-- Getter of Type::package.
--
-- Specifies the owning package of this classifier, if any.
overriding procedure Set_Package
(Self : not null access UML_Artifact_Proxy;
To : AMF.UML.Packages.UML_Package_Access);
-- Setter of Type::package.
--
-- Specifies the owning package of this classifier, if any.
overriding function Get_Owning_Template_Parameter
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Template_Parameters.UML_Template_Parameter_Access;
-- Getter of ParameterableElement::owningTemplateParameter.
--
-- The formal template parameter that owns this element.
overriding procedure Set_Owning_Template_Parameter
(Self : not null access UML_Artifact_Proxy;
To : AMF.UML.Template_Parameters.UML_Template_Parameter_Access);
-- Setter of ParameterableElement::owningTemplateParameter.
--
-- The formal template parameter that owns this element.
overriding function Get_Template_Parameter
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Template_Parameters.UML_Template_Parameter_Access;
-- Getter of ParameterableElement::templateParameter.
--
-- The template parameter that exposes this element as a formal parameter.
overriding procedure Set_Template_Parameter
(Self : not null access UML_Artifact_Proxy;
To : AMF.UML.Template_Parameters.UML_Template_Parameter_Access);
-- Setter of ParameterableElement::templateParameter.
--
-- The template parameter that exposes this element as a formal parameter.
overriding function Get_Owned_Template_Signature
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Template_Signatures.UML_Template_Signature_Access;
-- Getter of TemplateableElement::ownedTemplateSignature.
--
-- The optional template signature specifying the formal template
-- parameters.
overriding procedure Set_Owned_Template_Signature
(Self : not null access UML_Artifact_Proxy;
To : AMF.UML.Template_Signatures.UML_Template_Signature_Access);
-- Setter of TemplateableElement::ownedTemplateSignature.
--
-- The optional template signature specifying the formal template
-- parameters.
overriding function Get_Template_Binding
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Template_Bindings.Collections.Set_Of_UML_Template_Binding;
-- Getter of TemplateableElement::templateBinding.
--
-- The optional bindings from this element to templates.
overriding function Get_Is_Leaf
(Self : not null access constant UML_Artifact_Proxy)
return Boolean;
-- Getter of RedefinableElement::isLeaf.
--
-- Indicates whether it is possible to further redefine a
-- RedefinableElement. If the value is true, then it is not possible to
-- further redefine the RedefinableElement. Note that this property is
-- preserved through package merge operations; that is, the capability to
-- redefine a RedefinableElement (i.e., isLeaf=false) must be preserved in
-- the resulting RedefinableElement of a package merge operation where a
-- RedefinableElement with isLeaf=false is merged with a matching
-- RedefinableElement with isLeaf=true: the resulting RedefinableElement
-- will have isLeaf=false. Default value is false.
overriding procedure Set_Is_Leaf
(Self : not null access UML_Artifact_Proxy;
To : Boolean);
-- Setter of RedefinableElement::isLeaf.
--
-- Indicates whether it is possible to further redefine a
-- RedefinableElement. If the value is true, then it is not possible to
-- further redefine the RedefinableElement. Note that this property is
-- preserved through package merge operations; that is, the capability to
-- redefine a RedefinableElement (i.e., isLeaf=false) must be preserved in
-- the resulting RedefinableElement of a package merge operation where a
-- RedefinableElement with isLeaf=false is merged with a matching
-- RedefinableElement with isLeaf=true: the resulting RedefinableElement
-- will have isLeaf=false. Default value is false.
overriding function Get_Redefined_Element
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Redefinable_Elements.Collections.Set_Of_UML_Redefinable_Element;
-- Getter of RedefinableElement::redefinedElement.
--
-- The redefinable element that is being redefined by this element.
overriding function Get_Redefinition_Context
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier;
-- Getter of RedefinableElement::redefinitionContext.
--
-- References the contexts that this element may be redefined from.
overriding function All_Features
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Features.Collections.Set_Of_UML_Feature;
-- Operation Classifier::allFeatures.
--
-- The query allFeatures() gives all of the features in the namespace of
-- the classifier. In general, through mechanisms such as inheritance,
-- this will be a larger set than feature.
overriding function Conforms_To
(Self : not null access constant UML_Artifact_Proxy;
Other : AMF.UML.Classifiers.UML_Classifier_Access)
return Boolean;
-- Operation Classifier::conformsTo.
--
-- The query conformsTo() gives true for a classifier that defines a type
-- that conforms to another. This is used, for example, in the
-- specification of signature conformance for operations.
overriding function General
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier;
-- Operation Classifier::general.
--
-- The general classifiers are the classifiers referenced by the
-- generalization relationships.
overriding function Has_Visibility_Of
(Self : not null access constant UML_Artifact_Proxy;
N : AMF.UML.Named_Elements.UML_Named_Element_Access)
return Boolean;
-- Operation Classifier::hasVisibilityOf.
--
-- The query hasVisibilityOf() determines whether a named element is
-- visible in the classifier. By default all are visible. It is only
-- called when the argument is something owned by a parent.
overriding function Inherit
(Self : not null access constant UML_Artifact_Proxy;
Inhs : AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element)
return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element;
-- Operation Classifier::inherit.
--
-- The query inherit() defines how to inherit a set of elements. Here the
-- operation is defined to inherit them all. It is intended to be
-- redefined in circumstances where inheritance is affected by
-- redefinition.
-- The inherit operation is overridden to exclude redefined properties.
overriding function Inheritable_Members
(Self : not null access constant UML_Artifact_Proxy;
C : AMF.UML.Classifiers.UML_Classifier_Access)
return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element;
-- Operation Classifier::inheritableMembers.
--
-- The query inheritableMembers() gives all of the members of a classifier
-- that may be inherited in one of its descendants, subject to whatever
-- visibility restrictions apply.
overriding function Inherited_Member
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element;
-- Operation Classifier::inheritedMember.
--
-- The inheritedMember association is derived by inheriting the
-- inheritable members of the parents.
-- The inheritedMember association is derived by inheriting the
-- inheritable members of the parents.
overriding function Is_Template
(Self : not null access constant UML_Artifact_Proxy)
return Boolean;
-- Operation Classifier::isTemplate.
--
-- The query isTemplate() returns whether this templateable element is
-- actually a template.
overriding function May_Specialize_Type
(Self : not null access constant UML_Artifact_Proxy;
C : AMF.UML.Classifiers.UML_Classifier_Access)
return Boolean;
-- Operation Classifier::maySpecializeType.
--
-- The query maySpecializeType() determines whether this classifier may
-- have a generalization relationship to classifiers of the specified
-- type. By default a classifier may specialize classifiers of the same or
-- a more general type. It is intended to be redefined by classifiers that
-- have different specialization constraints.
overriding function Exclude_Collisions
(Self : not null access constant UML_Artifact_Proxy;
Imps : AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element)
return AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element;
-- Operation Namespace::excludeCollisions.
--
-- The query excludeCollisions() excludes from a set of
-- PackageableElements any that would not be distinguishable from each
-- other in this namespace.
overriding function Get_Names_Of_Member
(Self : not null access constant UML_Artifact_Proxy;
Element : AMF.UML.Named_Elements.UML_Named_Element_Access)
return AMF.String_Collections.Set_Of_String;
-- Operation Namespace::getNamesOfMember.
--
-- The query getNamesOfMember() takes importing into account. It gives
-- back the set of names that an element would have in an importing
-- namespace, either because it is owned, or if not owned then imported
-- individually, or if not individually then from a package.
-- The query getNamesOfMember() gives a set of all of the names that a
-- member would have in a Namespace. In general a member can have multiple
-- names in a Namespace if it is imported more than once with different
-- aliases. The query takes account of importing. It gives back the set of
-- names that an element would have in an importing namespace, either
-- because it is owned, or if not owned then imported individually, or if
-- not individually then from a package.
overriding function Import_Members
(Self : not null access constant UML_Artifact_Proxy;
Imps : AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element)
return AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element;
-- Operation Namespace::importMembers.
--
-- The query importMembers() defines which of a set of PackageableElements
-- are actually imported into the namespace. This excludes hidden ones,
-- i.e., those which have names that conflict with names of owned members,
-- and also excludes elements which would have the same name when imported.
overriding function Imported_Member
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element;
-- Operation Namespace::importedMember.
--
-- The importedMember property is derived from the ElementImports and the
-- PackageImports. References the PackageableElements that are members of
-- this Namespace as a result of either PackageImports or ElementImports.
overriding function Members_Are_Distinguishable
(Self : not null access constant UML_Artifact_Proxy)
return Boolean;
-- Operation Namespace::membersAreDistinguishable.
--
-- The Boolean query membersAreDistinguishable() determines whether all of
-- the namespace's members are distinguishable within it.
overriding function Owned_Member
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element;
-- Operation Namespace::ownedMember.
--
-- Missing derivation for Namespace::/ownedMember : NamedElement
overriding function All_Owning_Packages
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Packages.Collections.Set_Of_UML_Package;
-- Operation NamedElement::allOwningPackages.
--
-- The query allOwningPackages() returns all the directly or indirectly
-- owning packages.
overriding function Is_Distinguishable_From
(Self : not null access constant UML_Artifact_Proxy;
N : AMF.UML.Named_Elements.UML_Named_Element_Access;
Ns : AMF.UML.Namespaces.UML_Namespace_Access)
return Boolean;
-- Operation NamedElement::isDistinguishableFrom.
--
-- The query isDistinguishableFrom() determines whether two NamedElements
-- may logically co-exist within a Namespace. By default, two named
-- elements are distinguishable if (a) they have unrelated types or (b)
-- they have related types but different names.
overriding function Namespace
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Namespaces.UML_Namespace_Access;
-- Operation NamedElement::namespace.
--
-- Missing derivation for NamedElement::/namespace : Namespace
overriding function Conforms_To
(Self : not null access constant UML_Artifact_Proxy;
Other : AMF.UML.Types.UML_Type_Access)
return Boolean;
-- Operation Type::conformsTo.
--
-- The query conformsTo() gives true for a type that conforms to another.
-- By default, two types do not conform to each other. This query is
-- intended to be redefined for specific conformance situations.
overriding function Is_Compatible_With
(Self : not null access constant UML_Artifact_Proxy;
P : AMF.UML.Parameterable_Elements.UML_Parameterable_Element_Access)
return Boolean;
-- Operation ParameterableElement::isCompatibleWith.
--
-- The query isCompatibleWith() determines if this parameterable element
-- is compatible with the specified parameterable element. By default
-- parameterable element P is compatible with parameterable element Q if
-- the kind of P is the same or a subtype as the kind of Q. Subclasses
-- should override this operation to specify different compatibility
-- constraints.
overriding function Is_Template_Parameter
(Self : not null access constant UML_Artifact_Proxy)
return Boolean;
-- Operation ParameterableElement::isTemplateParameter.
--
-- The query isTemplateParameter() determines if this parameterable
-- element is exposed as a formal template parameter.
overriding function Parameterable_Elements
(Self : not null access constant UML_Artifact_Proxy)
return AMF.UML.Parameterable_Elements.Collections.Set_Of_UML_Parameterable_Element;
-- Operation TemplateableElement::parameterableElements.
--
-- The query parameterableElements() returns the set of elements that may
-- be used as the parametered elements for a template parameter of this
-- templateable element. By default, this set includes all the owned
-- elements. Subclasses may override this operation if they choose to
-- restrict the set of parameterable elements.
overriding function Is_Consistent_With
(Self : not null access constant UML_Artifact_Proxy;
Redefinee : AMF.UML.Redefinable_Elements.UML_Redefinable_Element_Access)
return Boolean;
-- Operation RedefinableElement::isConsistentWith.
--
-- The query isConsistentWith() specifies, for any two RedefinableElements
-- in a context in which redefinition is possible, whether redefinition
-- would be logically consistent. By default, this is false; this
-- operation must be overridden for subclasses of RedefinableElement to
-- define the consistency conditions.
overriding function Is_Redefinition_Context_Valid
(Self : not null access constant UML_Artifact_Proxy;
Redefined : AMF.UML.Redefinable_Elements.UML_Redefinable_Element_Access)
return Boolean;
-- Operation RedefinableElement::isRedefinitionContextValid.
--
-- The query isRedefinitionContextValid() specifies whether the
-- redefinition contexts of this RedefinableElement are properly related
-- to the redefinition contexts of the specified RedefinableElement to
-- allow this element to redefine the other. By default at least one of
-- the redefinition contexts of this element must be a specialization of
-- at least one of the redefinition contexts of the specified element.
overriding procedure Enter_Element
(Self : not null access constant UML_Artifact_Proxy;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control);
-- Dispatch call to corresponding subprogram of visitor interface.
overriding procedure Leave_Element
(Self : not null access constant UML_Artifact_Proxy;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control);
-- Dispatch call to corresponding subprogram of visitor interface.
overriding procedure Visit_Element
(Self : not null access constant UML_Artifact_Proxy;
Iterator : in out AMF.Visitors.Abstract_Iterator'Class;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control);
-- Dispatch call to corresponding subprogram of iterator interface.
end AMF.Internals.UML_Artifacts;
| 46.781291 | 96 | 0.719999 |
224ee4b7051257215869a372a648fb8d2651eb97 | 6,125 | adb | Ada | src/bbqueue-buffers-framed.adb | skade/bbqueue-spark | a39f7f6ef9e2b027c4f68b17e70989ef57dbebcd | [
"MIT"
] | 8 | 2020-12-19T00:55:03.000Z | 2021-08-10T22:12:14.000Z | src/bbqueue-buffers-framed.adb | skade/bbqueue-spark | a39f7f6ef9e2b027c4f68b17e70989ef57dbebcd | [
"MIT"
] | 1 | 2022-02-15T10:41:18.000Z | 2022-02-15T10:41:18.000Z | src/bbqueue-buffers-framed.adb | skade/bbqueue-spark | a39f7f6ef9e2b027c4f68b17e70989ef57dbebcd | [
"MIT"
] | 2 | 2021-08-11T17:00:13.000Z | 2022-01-13T17:58:23.000Z | package body BBqueue.Buffers.framed
with SPARK_Mode
is
pragma Compile_Time_Error ((Count'Object_Size mod System.Storage_Unit) /= 0,
"Invalid Object_Size for Count");
procedure Write_Header (After_Hdr_Addr : System.Address;
Hdr_Size : Header_Count;
Value : Count);
procedure Read_Header (Before_Hdr_Addr : System.Address;
Hdr_Size : out Header_Count;
Frame_Size : out Framed_Count)
with Post => Hdr_Size = (Count'Object_Size / System.Storage_Unit);
function Header_Size (Unused : Count) return Header_Count
is (Count'Object_Size / System.Storage_Unit)
with Post => Header_Size'Result in 1 .. 9;
-- TODO: The size of the header can be optimized using variable-length
-- encoding.
------------------
-- Write_Header --
------------------
procedure Write_Header (After_Hdr_Addr : System.Address;
Hdr_Size : Header_Count;
Value : Count)
is
pragma SPARK_Mode (Off);
Header : Count
with Address =>
To_Address (To_Integer (After_Hdr_Addr) - Integer_Address (Hdr_Size));
begin
Header := Value;
end Write_Header;
-----------------
-- Read_Header --
-----------------
procedure Read_Header (Before_Hdr_Addr : System.Address;
Hdr_Size : out Header_Count;
Frame_Size : out Framed_Count)
is
pragma SPARK_Mode (Off);
Header : Count
with Address => Before_Hdr_Addr;
begin
Frame_Size := Header;
Hdr_Size := Header_Size (Frame_Size);
end Read_Header;
-----------
-- Grant --
-----------
procedure Grant (This : in out Framed_Buffer;
G : in out Write_Grant;
Size : Framed_Count)
is
Hdr_Size : constant Count := Header_Size (Size);
begin
if Size = 0 then
BBqueue.Buffers.Grant (This.Buffer, G.Grant, Size);
G.Header_Size := 0;
return;
end if;
-- Save the worst case header size
G.Header_Size := Hdr_Size;
-- Request Size + worst case header size
BBqueue.Buffers.Grant (This.Buffer, G.Grant, Size + Hdr_Size);
if State (G) = Valid then
pragma Assert (G.Grant.Slice.Length = Size + Hdr_Size);
-- Change the slice to skip the header
G.Grant.Slice.Length := G.Grant.Slice.Length - Hdr_Size;
G.Grant.Slice.Addr :=
To_Address (To_Integer (G.Grant.Slice.Addr) + Integer_Address (Hdr_Size));
else
-- Grant failed, no header
G.Header_Size := 0;
end if;
end Grant;
------------
-- Commit --
------------
procedure Commit (This : in out Framed_Buffer;
G : in out Write_Grant;
Size : Framed_Count := Framed_Count'Last)
is
begin
if Size = 0 then
-- Nothing to commit
BBqueue.Buffers.Commit (This.Buffer, G.Grant, 0);
else
-- Write the header in the buffer
Write_Header (Slice (G.Grant).Addr, G.Header_Size, Size);
-- Commit header + data
BBqueue.Buffers.Commit (This.Buffer, G.Grant, Size + G.Header_Size);
end if;
if State (G) = Empty then
G.Header_Size := 0;
end if;
end Commit;
--------------
-- Write_CB --
--------------
procedure Write_CB
(This : in out Framed_Buffer;
Size : Framed_Count;
Result : out Result_Kind)
is
G : Write_Grant := Empty;
begin
Grant (This, G, Size);
Result := State (G);
if Result = Valid then
declare
S : constant Slice_Rec := Slice (G);
B : Storage_Array (1 .. S.Length)
with Address => S.Addr;
To_Commit : Count;
begin
Process_Write (B, To_Commit);
Commit (This, G, To_Commit);
pragma Assert (State (G) = Empty);
end;
end if;
end Write_CB;
----------
-- Read --
----------
procedure Read (This : in out Framed_Buffer; G : in out Read_Grant) is
Frame_Size : Framed_Count;
Hdr_Size : Header_Count;
begin
BBqueue.Buffers.Read (This.Buffer, G.Grant);
if State (G) = Valid then
-- Get header size and value from the buffer
Read_Header (Slice (G.Grant).Addr, Hdr_Size, Frame_Size);
G.Header_Size := Hdr_Size;
-- Change the slice to skip the header and set the actuall value of
-- the frame.
G.Grant.Slice.Length := Frame_Size;
G.Grant.Slice.Addr :=
To_Address (To_Integer (G.Grant.Slice.Addr) + Integer_Address (Hdr_Size));
This.Current_Read_Size := Frame_Size;
end if;
end Read;
-------------
-- Release --
-------------
procedure Release (This : in out Framed_Buffer; G : in out Read_Grant) is
begin
BBqueue.Buffers.Release (This.Buffer,
G.Grant,
G.Header_Size + This.Current_Read_Size);
G.Header_Size := 0;
end Release;
-------------
-- Read_CB --
-------------
procedure Read_CB (This : in out Framed_Buffer; Result : out Result_Kind) is
G : Read_Grant := Empty;
procedure Call_CB (Addr : System.Address;
Length : Framed_Count);
procedure Call_CB (Addr : System.Address;
Length : Framed_Count)
is
pragma SPARK_Mode (Off);
B : Storage_Array (1 .. Length)
with Address => Addr;
begin
Process_Read (B);
end Call_CB;
begin
Read (This, G);
Result := State (G);
if Result = Valid then
Call_CB (Slice (G).Addr, This.Current_Read_Size);
Release (This, G);
pragma Assert (State (G) = Empty);
end if;
end Read_CB;
end BBqueue.Buffers.framed;
| 27.840909 | 85 | 0.533061 |
8b246e8babb7d710d0760dbd4ec3ad00bfeb57c7 | 746 | ads | Ada | 3-mid/physics/interface/source/physics-joint-ball.ads | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 20 | 2015-11-04T09:23:59.000Z | 2022-01-14T10:21:42.000Z | 3-mid/physics/interface/source/physics-joint-ball.ads | charlie5/lace-alire | 9ace9682cf4daac7adb9f980c2868d6225b8111c | [
"0BSD"
] | 2 | 2015-11-04T17:05:56.000Z | 2015-12-08T03:16:13.000Z | 3-mid/physics/interface/source/physics-joint-ball.ads | charlie5/lace-alire | 9ace9682cf4daac7adb9f980c2868d6225b8111c | [
"0BSD"
] | 1 | 2015-12-07T12:53:52.000Z | 2015-12-07T12:53:52.000Z | package physics.Joint.ball
--
-- An interface to a ball/socket joint.
--
is
type Item is limited interface
and Joint.item;
type View is access all Item'Class;
function lower_Limit (Self : in Item; DoF : in Degree_of_freedom) return Real is abstract;
function upper_Limit (Self : in Item; DoF : in Degree_of_freedom) return Real is abstract;
procedure lower_Limit_is (Self : in out Item; Now : in Real;
DoF : in Degree_of_freedom) is abstract;
procedure upper_Limit_is (Self : in out Item; Now : in Real;
DoF : in Degree_of_freedom) is abstract;
end physics.Joint.ball;
| 32.434783 | 106 | 0.58311 |
8b164e5e86ce46e80aee1cc1a0d4d778425473ab | 141 | ads | Ada | 3-mid/physics/implement/c_math/source/thin/c_math_c-binding.ads | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 20 | 2015-11-04T09:23:59.000Z | 2022-01-14T10:21:42.000Z | 3-mid/physics/implement/c_math/source/thin/c_math_c-binding.ads | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 2 | 2015-11-04T17:05:56.000Z | 2015-12-08T03:16:13.000Z | 3-mid/physics/implement/c_math/source/thin/c_math_c-binding.ads | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 1 | 2015-12-07T12:53:52.000Z | 2015-12-07T12:53:52.000Z | -- This file is generated by SWIG. Please do *not* modify by hand.
--
with Interfaces.C;
package c_math_c.Binding is
end c_math_c.Binding;
| 17.625 | 66 | 0.744681 |
9ad9535fd9457114a63082218e1577acf0b484db | 3,497 | ads | Ada | release/src-rt-6.x.4708/router/libncurses/Ada95/samples/sample-keyboard_handler.ads | ghsecuritylab/ATTOMATO | 4d48bb79f8d147f89a568cf18da9e0edc41f93fb | [
"FSFAP"
] | 11 | 2019-01-02T17:00:32.000Z | 2020-06-29T21:27:54.000Z | release/src-rt-6.x.4708/router/libncurses/Ada95/samples/sample-keyboard_handler.ads | ghsecuritylab/ATTOMATO | 4d48bb79f8d147f89a568cf18da9e0edc41f93fb | [
"FSFAP"
] | 4 | 2019-01-02T13:48:36.000Z | 2019-02-18T21:17:41.000Z | release/src-rt-6.x.4708/router/libncurses/Ada95/samples/sample-keyboard_handler.ads | ghsecuritylab/ATTOMATO | 4d48bb79f8d147f89a568cf18da9e0edc41f93fb | [
"FSFAP"
] | 6 | 2019-02-15T20:11:02.000Z | 2020-01-11T00:48:53.000Z | ------------------------------------------------------------------------------
-- --
-- GNAT ncurses Binding Samples --
-- --
-- Sample.Keyboard_Handler --
-- --
-- S P E C --
-- --
------------------------------------------------------------------------------
-- Copyright (c) 1998,2003 Free Software Foundation, Inc. --
-- --
-- Permission is hereby granted, free of charge, to any person obtaining a --
-- copy of this software and associated documentation files (the --
-- "Software"), to deal in the Software without restriction, including --
-- without limitation the rights to use, copy, modify, merge, publish, --
-- distribute, distribute with modifications, sublicense, and/or sell --
-- copies of the Software, and to permit persons to whom the Software is --
-- furnished to do so, subject to the following conditions: --
-- --
-- The above copyright notice and this permission notice shall be included --
-- in all copies or substantial portions of the Software. --
-- --
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS --
-- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF --
-- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. --
-- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, --
-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR --
-- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR --
-- THE USE OR OTHER DEALINGS IN THE SOFTWARE. --
-- --
-- Except as contained in this notice, the name(s) of the above copyright --
-- holders shall not be used in advertising or otherwise to promote the --
-- sale, use or other dealings in this Software without prior written --
-- authorization. --
------------------------------------------------------------------------------
-- Author: Juergen Pfeifer, 1996
-- Version Control
-- $Revision: 1.10 $
-- Binding Version 01.00
------------------------------------------------------------------------------
with Terminal_Interface.Curses; use Terminal_Interface.Curses;
-- This package contains a centralized keyboard handler used throughout
-- this example. The handler establishes a timeout mechanism that provides
-- periodical updates of the common header lines used in this example.
--
package Sample.Keyboard_Handler is
function Get_Key (Win : Window := Standard_Window) return Real_Key_Code;
-- The central routine for handling keystrokes.
procedure Init_Keyboard_Handler;
-- Initialize the keyboard
end Sample.Keyboard_Handler;
| 62.446429 | 78 | 0.46497 |
133a10966663e1e101ad6a7fe9a8d608e3f1e604 | 3,717 | ads | Ada | support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/g-sehash.ads | orb-zhuchen/Orb | 6da2404b949ac28bde786e08bf4debe4a27cd3a0 | [
"CNRI-Python-GPL-Compatible",
"MIT"
] | null | null | null | support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/g-sehash.ads | orb-zhuchen/Orb | 6da2404b949ac28bde786e08bf4debe4a27cd3a0 | [
"CNRI-Python-GPL-Compatible",
"MIT"
] | null | null | null | support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/g-sehash.ads | orb-zhuchen/Orb | 6da2404b949ac28bde786e08bf4debe4a27cd3a0 | [
"CNRI-Python-GPL-Compatible",
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT LIBRARY COMPONENTS --
-- --
-- G N A T . S E C U R E _ H A S H E S . S H A 1 --
-- --
-- S p e c --
-- --
-- Copyright (C) 2002-2019, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package provides supporting code for implementation of the SHA-1
-- secure hash function as described in FIPS PUB 180-3. The complete text
-- of FIPS PUB 180-3 can be found at:
-- http://csrc.nist.gov/publications/fips/fips180-3/fips180-3_final.pdf
-- This is an internal unit and should not be used directly in applications.
-- Use GNAT.SHA1 instead.
with GNAT.Byte_Swapping;
with Interfaces;
package GNAT.Secure_Hashes.SHA1 is
package Hash_State is new Hash_Function_State
(Word => Interfaces.Unsigned_32,
Swap => GNAT.Byte_Swapping.Swap4,
Hash_Bit_Order => System.High_Order_First);
-- SHA-1 operates on 32-bit big endian words
Block_Words : constant := 16;
-- Messages are processed in chunks of 16 words
procedure Transform
(H : in out Hash_State.State;
M : in out Message_State);
-- Transformation function applied for each block
Initial_State : constant Hash_State.State;
-- Initialization vector
private
Initial_State : constant Hash_State.State :=
(0 => 16#67452301#,
1 => 16#EFCDAB89#,
2 => 16#98BADCFE#,
3 => 16#10325476#,
4 => 16#C3D2E1F0#);
-- Initialization vector from FIPS PUB 180-3
end GNAT.Secure_Hashes.SHA1;
| 50.917808 | 78 | 0.468927 |
033b42de942ce93473cb816f15b9324499d304bc | 4,219 | ads | Ada | source/amf/utp/amf-utp-data_partitions.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | source/amf/utp/amf-utp-data_partitions.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | source/amf/utp/amf-utp-data_partitions.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 © 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.
------------------------------------------------------------------------------
limited with AMF.UML.Classifiers;
package AMF.Utp.Data_Partitions is
pragma Preelaborate;
type Utp_Data_Partition is limited interface;
type Utp_Data_Partition_Access is
access all Utp_Data_Partition'Class;
for Utp_Data_Partition_Access'Storage_Size use 0;
not overriding function Get_Base_Classifier
(Self : not null access constant Utp_Data_Partition)
return AMF.UML.Classifiers.UML_Classifier_Access is abstract;
-- Getter of DataPartition::base_Classifier.
--
not overriding procedure Set_Base_Classifier
(Self : not null access Utp_Data_Partition;
To : AMF.UML.Classifiers.UML_Classifier_Access) is abstract;
-- Setter of DataPartition::base_Classifier.
--
end AMF.Utp.Data_Partitions;
| 59.422535 | 78 | 0.451766 |
a0a8e4aaf1857cf964f109304ab32ecd8f62761d | 6,053 | ada | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/cc/cc3121a.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/cc/cc3121a.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/cc/cc3121a.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | -- CC3121A.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 AN UNCONSTRAINED FORMAL GENERIC PARAMETER OF MODE "IN"
-- HAVING AN ARRAY TYPE OR A TYPE WITH DISCRIMINANTS HAS THE CONSTRAINTS
-- OF THE ACTUAL PARAMETER.
-- TBN 9/29/86
WITH REPORT; USE REPORT;
PROCEDURE CC3121A IS
SUBTYPE INT IS INTEGER RANGE 1 .. 10;
TYPE ARRAY1 IS ARRAY (INT RANGE <>) OF INTEGER;
TYPE REC1 (D : INT) IS
RECORD
VAR1 : INTEGER := 1;
END RECORD;
TYPE REC2 (D : INT := 2) IS
RECORD
A : ARRAY1 (D .. IDENT_INT(4));
B : REC1 (D);
C : INTEGER := 1;
END RECORD;
TYPE ARRAY2 IS ARRAY (INT RANGE <>) OF REC2;
BEGIN
TEST ("CC3121A", "CHECK THAT AN UNCONSTRAINED FORMAL GENERIC " &
"PARAMETER OF MODE 'IN' HAVING AN ARRAY TYPE " &
"OR A TYPE WITH DISCRIMINANTS HAS THE " &
"CONSTRAINTS OF THE ACTUAL PARAMETER");
DECLARE
OBJ_ARA1 : ARRAY1 (IDENT_INT(2) .. 5);
GENERIC
VAR : ARRAY1;
PROCEDURE PROC;
PROCEDURE PROC IS
BEGIN
IF VAR'FIRST /= IDENT_INT(2) THEN
FAILED ("INCORRECT RESULTS FOR VAR'FIRST");
END IF;
IF VAR'LAST /= IDENT_INT(5) THEN
FAILED ("INCORRECT RESULTS FOR VAR'LAST");
END IF;
END PROC;
PROCEDURE PROC1 IS NEW PROC (OBJ_ARA1);
BEGIN
PROC1;
END;
-------------------------------------------------------------------
DECLARE
OBJ_REC2 : REC2;
GENERIC
VAR : REC2;
FUNCTION FUNC RETURN INTEGER;
FUNCTION FUNC RETURN INTEGER IS
BEGIN
IF VAR.D /= IDENT_INT(2) THEN
FAILED ("INCORRECT RESULTS FROM VAR.D");
END IF;
IF VAR.A'FIRST /= IDENT_INT(2) THEN
FAILED ("INCORRECT RESULTS FROM VAR.A'FIRST");
END IF;
IF VAR.A'LAST /= IDENT_INT(4) THEN
FAILED ("INCORRECT RESULTS FROM VAR.A'LAST");
END IF;
IF VAR.B.D /= IDENT_INT(2) THEN
FAILED ("INCORRECT RESULTS FROM VAR.B.D");
END IF;
RETURN IDENT_INT(1);
END FUNC;
FUNCTION FUNC1 IS NEW FUNC (OBJ_REC2);
BEGIN
IF FUNC1 /= IDENT_INT(1) THEN
FAILED ("INCORRECT RESULTS FROM FUNC1 CALL");
END IF;
END;
-------------------------------------------------------------------
DECLARE
OBJ_ARA2 : ARRAY2 (IDENT_INT(6) .. 8);
GENERIC
VAR : ARRAY2;
PROCEDURE PROC;
PROCEDURE PROC IS
BEGIN
IF VAR'FIRST /= IDENT_INT(6) THEN
FAILED ("INCORRECT RESULTS FOR VAR'FIRST");
END IF;
IF VAR'LAST /= IDENT_INT(8) THEN
FAILED ("INCORRECT RESULTS FOR VAR'LAST");
END IF;
IF VAR(6).D /= IDENT_INT(2) THEN
FAILED ("INCORRECT RESULTS FROM VAR(6).D");
END IF;
IF VAR(6).A'FIRST /= IDENT_INT(2) THEN
FAILED ("INCORRECT RESULTS FROM VAR(6).A'FIRST");
END IF;
IF VAR(6).A'LAST /= IDENT_INT(4) THEN
FAILED ("INCORRECT RESULTS FROM VAR(6).A'LAST");
END IF;
IF VAR(6).B.D /= IDENT_INT(2) THEN
FAILED ("INCORRECT RESULTS FROM VAR(6).B.D");
END IF;
END PROC;
PROCEDURE PROC2 IS NEW PROC (OBJ_ARA2);
BEGIN
PROC2;
END;
-------------------------------------------------------------------
DECLARE
OBJ_REC3 : REC2 (3);
GENERIC
VAR : REC2;
PACKAGE PAC IS
PAC_VAR : INTEGER := 1;
END PAC;
PACKAGE BODY PAC IS
BEGIN
IF VAR.D /= IDENT_INT(3) THEN
FAILED ("INCORRECT RESULTS FROM VAR.D");
END IF;
IF VAR.A'FIRST /= IDENT_INT(3) THEN
FAILED ("INCORRECT RESULTS FROM VAR.A'FIRST");
END IF;
IF VAR.A'LAST /= IDENT_INT(4) THEN
FAILED ("INCORRECT RESULTS FROM VAR.A'LAST");
END IF;
IF VAR.B.D /= IDENT_INT(3) THEN
FAILED ("INCORRECT RESULTS FROM VAR.B.D");
END IF;
END PAC;
PACKAGE PAC1 IS NEW PAC (OBJ_REC3);
BEGIN
NULL;
END;
-------------------------------------------------------------------
RESULT;
END CC3121A;
| 32.896739 | 79 | 0.490831 |
3894950b8b9efa79750ba52e9985075d57a6e080 | 6,248 | ads | Ada | src/gen/cups-cups_array_h.ads | persan/a-cups | f011dc18384de9afd07a53b67295974d8005cf21 | [
"Apache-2.0"
] | null | null | null | src/gen/cups-cups_array_h.ads | persan/a-cups | f011dc18384de9afd07a53b67295974d8005cf21 | [
"Apache-2.0"
] | null | null | null | src/gen/cups-cups_array_h.ads | persan/a-cups | f011dc18384de9afd07a53b67295974d8005cf21 | [
"Apache-2.0"
] | null | null | null | pragma Ada_2005;
pragma Style_Checks (Off);
with Interfaces.C; use Interfaces.C;
with System;
private package CUPS.cups_array_h is
-- * "$Id: array.h 10996 2013-05-29 11:51:34Z msweet $"
-- *
-- * Sorted array definitions for CUPS.
-- *
-- * Copyright 2007-2010 by Apple Inc.
-- * Copyright 1997-2007 by Easy Software Products.
-- *
-- * These coded instructions, statements, and computer programs are the
-- * property of Apple Inc. and are protected by Federal copyright
-- * law. Distribution and use rights are outlined in the file "LICENSE.txt"
-- * which should have been included with this file. If this file is
-- * file is missing or damaged, see the license at "http://www.cups.org/".
-- *
-- * This file is subject to the Apple OS-Developed Software exception.
--
-- * Include necessary headers...
--
-- * C++ magic...
--
-- * Types and structures...
--
-- skipped empty struct u_cups_array_s
-- skipped empty struct cups_array_t
--*** CUPS array type ***
type cups_array_func_t is access function
(arg1 : System.Address;
arg2 : System.Address;
arg3 : System.Address) return int;
pragma Convention (C, cups_array_func_t); -- cups/array.h:44
--*** Array comparison function ***
type cups_ahash_func_t is access function (arg1 : System.Address; arg2 : System.Address) return int;
pragma Convention (C, cups_ahash_func_t); -- cups/array.h:46
--*** Array hash function ***
type cups_acopy_func_t is access function (arg1 : System.Address; arg2 : System.Address) return System.Address;
pragma Convention (C, cups_acopy_func_t); -- cups/array.h:48
--*** Array element copy function ***
type cups_afree_func_t is access procedure (arg1 : System.Address; arg2 : System.Address);
pragma Convention (C, cups_afree_func_t); -- cups/array.h:50
--*** Array element free function ***
-- * Functions...
--
-- * "$Id: array.h 10996 2013-05-29 11:51:34Z msweet $"
-- *
-- * Sorted array definitions for CUPS.
-- *
-- * Copyright 2007-2010 by Apple Inc.
-- * Copyright 1997-2007 by Easy Software Products.
-- *
-- * These coded instructions, statements, and computer programs are the
-- * property of Apple Inc. and are protected by Federal copyright
-- * law. Distribution and use rights are outlined in the file "LICENSE.txt"
-- * which should have been included with this file. If this file is
-- * file is missing or damaged, see the license at "http://www.cups.org/".
-- *
-- * This file is subject to the Apple OS-Developed Software exception.
--
function cupsArrayAdd (a : System.Address; e : System.Address) return int; -- cups/array.h:58
pragma Import (C, cupsArrayAdd, "cupsArrayAdd");
procedure cupsArrayClear (a : System.Address); -- cups/array.h:59
pragma Import (C, cupsArrayClear, "cupsArrayClear");
function cupsArrayCount (a : System.Address) return int; -- cups/array.h:60
pragma Import (C, cupsArrayCount, "cupsArrayCount");
function cupsArrayCurrent (a : System.Address) return System.Address; -- cups/array.h:61
pragma Import (C, cupsArrayCurrent, "cupsArrayCurrent");
procedure cupsArrayDelete (a : System.Address); -- cups/array.h:62
pragma Import (C, cupsArrayDelete, "cupsArrayDelete");
function cupsArrayDup (a : System.Address) return System.Address; -- cups/array.h:63
pragma Import (C, cupsArrayDup, "cupsArrayDup");
function cupsArrayFind (a : System.Address; e : System.Address) return System.Address; -- cups/array.h:64
pragma Import (C, cupsArrayFind, "cupsArrayFind");
function cupsArrayFirst (a : System.Address) return System.Address; -- cups/array.h:65
pragma Import (C, cupsArrayFirst, "cupsArrayFirst");
function cupsArrayGetIndex (a : System.Address) return int; -- cups/array.h:66
pragma Import (C, cupsArrayGetIndex, "cupsArrayGetIndex");
function cupsArrayGetInsert (a : System.Address) return int; -- cups/array.h:67
pragma Import (C, cupsArrayGetInsert, "cupsArrayGetInsert");
function cupsArrayIndex (a : System.Address; n : int) return System.Address; -- cups/array.h:68
pragma Import (C, cupsArrayIndex, "cupsArrayIndex");
function cupsArrayInsert (a : System.Address; e : System.Address) return int; -- cups/array.h:69
pragma Import (C, cupsArrayInsert, "cupsArrayInsert");
function cupsArrayLast (a : System.Address) return System.Address; -- cups/array.h:70
pragma Import (C, cupsArrayLast, "cupsArrayLast");
function cupsArrayNew (f : cups_array_func_t; d : System.Address) return System.Address; -- cups/array.h:71
pragma Import (C, cupsArrayNew, "cupsArrayNew");
function cupsArrayNew2
(f : cups_array_func_t;
d : System.Address;
h : cups_ahash_func_t;
hsize : int) return System.Address; -- cups/array.h:72
pragma Import (C, cupsArrayNew2, "cupsArrayNew2");
function cupsArrayNew3
(f : cups_array_func_t;
d : System.Address;
h : cups_ahash_func_t;
hsize : int;
cf : cups_acopy_func_t;
ff : cups_afree_func_t) return System.Address; -- cups/array.h:74
pragma Import (C, cupsArrayNew3, "cupsArrayNew3");
function cupsArrayNext (a : System.Address) return System.Address; -- cups/array.h:78
pragma Import (C, cupsArrayNext, "cupsArrayNext");
function cupsArrayPrev (a : System.Address) return System.Address; -- cups/array.h:79
pragma Import (C, cupsArrayPrev, "cupsArrayPrev");
function cupsArrayRemove (a : System.Address; e : System.Address) return int; -- cups/array.h:80
pragma Import (C, cupsArrayRemove, "cupsArrayRemove");
function cupsArrayRestore (a : System.Address) return System.Address; -- cups/array.h:81
pragma Import (C, cupsArrayRestore, "cupsArrayRestore");
function cupsArraySave (a : System.Address) return int; -- cups/array.h:82
pragma Import (C, cupsArraySave, "cupsArraySave");
function cupsArrayUserData (a : System.Address) return System.Address; -- cups/array.h:83
pragma Import (C, cupsArrayUserData, "cupsArrayUserData");
-- * End of "$Id: array.h 10996 2013-05-29 11:51:34Z msweet $".
--
end CUPS.cups_array_h;
| 39.796178 | 114 | 0.68726 |
8b5e0a5ec30100f5452396a002cf85446bf1c266 | 424,187 | ads | Ada | SVD2ada/svd/stm32_svd-hrtim.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | SVD2ada/svd/stm32_svd-hrtim.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | SVD2ada/svd/stm32_svd-hrtim.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | pragma Style_Checks (Off);
-- This spec has been automatically generated from STM32F3x4.svd
pragma Restrictions (No_Elaboration_Code);
with HAL;
with System;
package STM32_SVD.HRTIM is
pragma Preelaborate;
---------------
-- Registers --
---------------
subtype CR1_AD1USRC_Field is HAL.UInt3;
subtype CR1_AD2USRC_Field is HAL.UInt3;
subtype CR1_AD3USRC_Field is HAL.UInt3;
subtype CR1_AD4USRC_Field is HAL.UInt3;
-- Control Register 1
type CR1_Register is record
-- Master Update Disable
MUDIS : Boolean := False;
-- Timer A Update Disable
TAUDIS : Boolean := False;
-- Timer B Update Disable
TBUDIS : Boolean := False;
-- Timer C Update Disable
TCUDIS : Boolean := False;
-- Timer D Update Disable
TDUDIS : Boolean := False;
-- Timer E Update Disable
TEUDIS : Boolean := False;
-- unspecified
Reserved_6_15 : HAL.UInt10 := 16#0#;
-- ADC Trigger 1 Update Source
AD1USRC : CR1_AD1USRC_Field := 16#0#;
-- ADC Trigger 2 Update Source
AD2USRC : CR1_AD2USRC_Field := 16#0#;
-- ADC Trigger 3 Update Source
AD3USRC : CR1_AD3USRC_Field := 16#0#;
-- ADC Trigger 4 Update Source
AD4USRC : CR1_AD4USRC_Field := 16#0#;
-- unspecified
Reserved_28_31 : HAL.UInt4 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CR1_Register use record
MUDIS at 0 range 0 .. 0;
TAUDIS at 0 range 1 .. 1;
TBUDIS at 0 range 2 .. 2;
TCUDIS at 0 range 3 .. 3;
TDUDIS at 0 range 4 .. 4;
TEUDIS at 0 range 5 .. 5;
Reserved_6_15 at 0 range 6 .. 15;
AD1USRC at 0 range 16 .. 18;
AD2USRC at 0 range 19 .. 21;
AD3USRC at 0 range 22 .. 24;
AD4USRC at 0 range 25 .. 27;
Reserved_28_31 at 0 range 28 .. 31;
end record;
-- Control Register 2
type CR2_Register is record
-- Master Timer Software update
MSWU : Boolean := False;
-- Timer A Software update
TASWU : Boolean := False;
-- Timer B Software Update
TBSWU : Boolean := False;
-- Timer C Software Update
TCSWU : Boolean := False;
-- Timer D Software Update
TDSWU : Boolean := False;
-- Timer E Software Update
TESWU : Boolean := False;
-- unspecified
Reserved_6_7 : HAL.UInt2 := 16#0#;
-- Master Counter software reset
MRST : Boolean := False;
-- Timer A counter software reset
TARST : Boolean := False;
-- Timer B counter software reset
TBRST : Boolean := False;
-- Timer C counter software reset
TCRST : Boolean := False;
-- Timer D counter software reset
TDRST : Boolean := False;
-- Timer E counter software reset
TERST : Boolean := False;
-- unspecified
Reserved_14_31 : HAL.UInt18 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CR2_Register use record
MSWU at 0 range 0 .. 0;
TASWU at 0 range 1 .. 1;
TBSWU at 0 range 2 .. 2;
TCSWU at 0 range 3 .. 3;
TDSWU at 0 range 4 .. 4;
TESWU at 0 range 5 .. 5;
Reserved_6_7 at 0 range 6 .. 7;
MRST at 0 range 8 .. 8;
TARST at 0 range 9 .. 9;
TBRST at 0 range 10 .. 10;
TCRST at 0 range 11 .. 11;
TDRST at 0 range 12 .. 12;
TERST at 0 range 13 .. 13;
Reserved_14_31 at 0 range 14 .. 31;
end record;
-- ISR_FLT array
type ISR_FLT_Field_Array is array (1 .. 5) of Boolean
with Component_Size => 1, Size => 5;
-- Type definition for ISR_FLT
type ISR_FLT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- FLT as a value
Val : HAL.UInt5;
when True =>
-- FLT as an array
Arr : ISR_FLT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 5;
for ISR_FLT_Field use record
Val at 0 range 0 .. 4;
Arr at 0 range 0 .. 4;
end record;
-- Interrupt Status Register
type ISR_Register is record
-- Read-only. Fault 1 Interrupt Flag
FLT : ISR_FLT_Field := (As_Array => False, Val => 16#0#);
-- System Fault Interrupt Flag
SYSFLT : Boolean := False;
-- unspecified
Reserved_6_15 : HAL.UInt10 := 16#0#;
-- Read-only. DLL Ready Interrupt Flag
DLLRDY : Boolean := False;
-- Read-only. Burst mode Period Interrupt Flag
BMPER : Boolean := False;
-- unspecified
Reserved_18_31 : HAL.UInt14 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for ISR_Register use record
FLT at 0 range 0 .. 4;
SYSFLT at 0 range 5 .. 5;
Reserved_6_15 at 0 range 6 .. 15;
DLLRDY at 0 range 16 .. 16;
BMPER at 0 range 17 .. 17;
Reserved_18_31 at 0 range 18 .. 31;
end record;
-- Interrupt Clear Register
type ICR_Register is record
-- Write-only. Fault 1 Interrupt Flag Clear
FLT1C : Boolean := False;
-- Write-only. Fault 2 Interrupt Flag Clear
FLT2C : Boolean := False;
-- Write-only. Fault 3 Interrupt Flag Clear
FLT3C : Boolean := False;
-- Write-only. Fault 4 Interrupt Flag Clear
FLT4C : Boolean := False;
-- Write-only. Fault 5 Interrupt Flag Clear
FLT5C : Boolean := False;
-- System Fault Interrupt Flag Clear
SYSFLTC : Boolean := False;
-- unspecified
Reserved_6_15 : HAL.UInt10 := 16#0#;
-- Write-only. DLL Ready Interrupt flag Clear
DLLRDYC : Boolean := False;
-- Write-only. Burst mode period flag Clear
BMPERC : Boolean := False;
-- unspecified
Reserved_18_31 : HAL.UInt14 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for ICR_Register use record
FLT1C at 0 range 0 .. 0;
FLT2C at 0 range 1 .. 1;
FLT3C at 0 range 2 .. 2;
FLT4C at 0 range 3 .. 3;
FLT5C at 0 range 4 .. 4;
SYSFLTC at 0 range 5 .. 5;
Reserved_6_15 at 0 range 6 .. 15;
DLLRDYC at 0 range 16 .. 16;
BMPERC at 0 range 17 .. 17;
Reserved_18_31 at 0 range 18 .. 31;
end record;
-- Interrupt Enable Register
type IER_Register is record
-- Fault 1 Interrupt Enable
FLT1IE : Boolean := False;
-- Fault 2 Interrupt Enable
FLT2IE : Boolean := False;
-- Fault 3 Interrupt Enable
FLT3IE : Boolean := False;
-- Fault 4 Interrupt Enable
FLT4IE : Boolean := False;
-- Fault 5 Interrupt Enable
FLT5IE : Boolean := False;
-- System Fault Interrupt Enable
SYSFLTE : Boolean := False;
-- unspecified
Reserved_6_15 : HAL.UInt10 := 16#0#;
-- DLL Ready Interrupt Enable
DLLRDYIE : Boolean := False;
-- Burst mode period Interrupt Enable
BMPERIE : Boolean := False;
-- unspecified
Reserved_18_31 : HAL.UInt14 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IER_Register use record
FLT1IE at 0 range 0 .. 0;
FLT2IE at 0 range 1 .. 1;
FLT3IE at 0 range 2 .. 2;
FLT4IE at 0 range 3 .. 3;
FLT5IE at 0 range 4 .. 4;
SYSFLTE at 0 range 5 .. 5;
Reserved_6_15 at 0 range 6 .. 15;
DLLRDYIE at 0 range 16 .. 16;
BMPERIE at 0 range 17 .. 17;
Reserved_18_31 at 0 range 18 .. 31;
end record;
-- Output Enable Register
type OENR_Register is record
-- Write-only. Timer A Output 1 Enable
TA1OEN : Boolean := False;
-- Write-only. Timer A Output 2 Enable
TA2OEN : Boolean := False;
-- Write-only. Timer B Output 1 Enable
TB1OEN : Boolean := False;
-- Write-only. Timer B Output 2 Enable
TB2OEN : Boolean := False;
-- Write-only. Timer C Output 1 Enable
TC1OEN : Boolean := False;
-- Write-only. Timer C Output 2 Enable
TC2OEN : Boolean := False;
-- Write-only. Timer D Output 1 Enable
TD1OEN : Boolean := False;
-- Write-only. Timer D Output 2 Enable
TD2OEN : Boolean := False;
-- Write-only. Timer E Output 1 Enable
TE1OEN : Boolean := False;
-- Write-only. Timer E Output 2 Enable
TE2OEN : Boolean := False;
-- unspecified
Reserved_10_31 : HAL.UInt22 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for OENR_Register use record
TA1OEN at 0 range 0 .. 0;
TA2OEN at 0 range 1 .. 1;
TB1OEN at 0 range 2 .. 2;
TB2OEN at 0 range 3 .. 3;
TC1OEN at 0 range 4 .. 4;
TC2OEN at 0 range 5 .. 5;
TD1OEN at 0 range 6 .. 6;
TD2OEN at 0 range 7 .. 7;
TE1OEN at 0 range 8 .. 8;
TE2OEN at 0 range 9 .. 9;
Reserved_10_31 at 0 range 10 .. 31;
end record;
-- DISR
type ODISR_Register is record
-- TA1ODIS
TA1ODIS : Boolean := False;
-- TA2ODIS
TA2ODIS : Boolean := False;
-- TB1ODIS
TB1ODIS : Boolean := False;
-- TB2ODIS
TB2ODIS : Boolean := False;
-- TC1ODIS
TC1ODIS : Boolean := False;
-- TC2ODIS
TC2ODIS : Boolean := False;
-- TD1ODIS
TD1ODIS : Boolean := False;
-- TD2ODIS
TD2ODIS : Boolean := False;
-- TE1ODIS
TE1ODIS : Boolean := False;
-- TE2ODIS
TE2ODIS : Boolean := False;
-- unspecified
Reserved_10_31 : HAL.UInt22 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for ODISR_Register use record
TA1ODIS at 0 range 0 .. 0;
TA2ODIS at 0 range 1 .. 1;
TB1ODIS at 0 range 2 .. 2;
TB2ODIS at 0 range 3 .. 3;
TC1ODIS at 0 range 4 .. 4;
TC2ODIS at 0 range 5 .. 5;
TD1ODIS at 0 range 6 .. 6;
TD2ODIS at 0 range 7 .. 7;
TE1ODIS at 0 range 8 .. 8;
TE2ODIS at 0 range 9 .. 9;
Reserved_10_31 at 0 range 10 .. 31;
end record;
-- Output Disable Status Register
type ODSR_Register is record
-- Read-only. Timer A Output 1 disable status
TA1ODS : Boolean;
-- Read-only. Timer A Output 2 disable status
TA2ODS : Boolean;
-- Read-only. Timer B Output 1 disable status
TB1ODS : Boolean;
-- Read-only. Timer B Output 2 disable status
TB2ODS : Boolean;
-- Read-only. Timer C Output 1 disable status
TC1ODS : Boolean;
-- Read-only. Timer C Output 2 disable status
TC2ODS : Boolean;
-- Read-only. Timer D Output 1 disable status
TD1ODS : Boolean;
-- Read-only. Timer D Output 2 disable status
TD2ODS : Boolean;
-- Read-only. Timer E Output 1 disable status
TE1ODS : Boolean;
-- Read-only. Timer E Output 2 disable status
TE2ODS : Boolean;
-- unspecified
Reserved_10_31 : HAL.UInt22;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for ODSR_Register use record
TA1ODS at 0 range 0 .. 0;
TA2ODS at 0 range 1 .. 1;
TB1ODS at 0 range 2 .. 2;
TB2ODS at 0 range 3 .. 3;
TC1ODS at 0 range 4 .. 4;
TC2ODS at 0 range 5 .. 5;
TD1ODS at 0 range 6 .. 6;
TD2ODS at 0 range 7 .. 7;
TE1ODS at 0 range 8 .. 8;
TE2ODS at 0 range 9 .. 9;
Reserved_10_31 at 0 range 10 .. 31;
end record;
subtype BMCR_BMCLK_Field is HAL.UInt4;
subtype BMCR_BMPRSC_Field is HAL.UInt4;
-- Burst Mode Control Register
type BMCR_Register is record
-- Burst Mode enable
BME : Boolean := False;
-- Burst Mode operating mode
BMOM : Boolean := False;
-- Burst Mode Clock source
BMCLK : BMCR_BMCLK_Field := 16#0#;
-- Burst Mode Prescaler
BMPRSC : BMCR_BMPRSC_Field := 16#0#;
-- Burst Mode Preload Enable
BMPREN : Boolean := False;
-- unspecified
Reserved_11_15 : HAL.UInt5 := 16#0#;
-- Master Timer Burst Mode
MTBM : Boolean := False;
-- Timer A Burst Mode
TABM : Boolean := False;
-- Timer B Burst Mode
TBBM : Boolean := False;
-- Timer C Burst Mode
TCBM : Boolean := False;
-- Timer D Burst Mode
TDBM : Boolean := False;
-- Timer E Burst Mode
TEBM : Boolean := False;
-- unspecified
Reserved_22_30 : HAL.UInt9 := 16#0#;
-- Burst Mode Status
BMSTAT : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for BMCR_Register use record
BME at 0 range 0 .. 0;
BMOM at 0 range 1 .. 1;
BMCLK at 0 range 2 .. 5;
BMPRSC at 0 range 6 .. 9;
BMPREN at 0 range 10 .. 10;
Reserved_11_15 at 0 range 11 .. 15;
MTBM at 0 range 16 .. 16;
TABM at 0 range 17 .. 17;
TBBM at 0 range 18 .. 18;
TCBM at 0 range 19 .. 19;
TDBM at 0 range 20 .. 20;
TEBM at 0 range 21 .. 21;
Reserved_22_30 at 0 range 22 .. 30;
BMSTAT at 0 range 31 .. 31;
end record;
-- BMTRGR_MSTCMP array
type BMTRGR_MSTCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for BMTRGR_MSTCMP
type BMTRGR_MSTCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MSTCMP as a value
Val : HAL.UInt4;
when True =>
-- MSTCMP as an array
Arr : BMTRGR_MSTCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for BMTRGR_MSTCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- BMTRGR_TACMP array
type BMTRGR_TACMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for BMTRGR_TACMP
type BMTRGR_TACMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TACMP as a value
Val : HAL.UInt2;
when True =>
-- TACMP as an array
Arr : BMTRGR_TACMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for BMTRGR_TACMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- BMTRGR_TBCMP array
type BMTRGR_TBCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for BMTRGR_TBCMP
type BMTRGR_TBCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TBCMP as a value
Val : HAL.UInt2;
when True =>
-- TBCMP as an array
Arr : BMTRGR_TBCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for BMTRGR_TBCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- BMTRGR_TCCMP array
type BMTRGR_TCCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for BMTRGR_TCCMP
type BMTRGR_TCCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TCCMP as a value
Val : HAL.UInt2;
when True =>
-- TCCMP as an array
Arr : BMTRGR_TCCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for BMTRGR_TCCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- BMTRGR_TDCMP array
type BMTRGR_TDCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for BMTRGR_TDCMP
type BMTRGR_TDCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TDCMP as a value
Val : HAL.UInt2;
when True =>
-- TDCMP as an array
Arr : BMTRGR_TDCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for BMTRGR_TDCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- BMTRGR_TECMP array
type BMTRGR_TECMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for BMTRGR_TECMP
type BMTRGR_TECMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TECMP as a value
Val : HAL.UInt2;
when True =>
-- TECMP as an array
Arr : BMTRGR_TECMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for BMTRGR_TECMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- BMTRGR_EEV array
type BMTRGR_EEV_Field_Array is array (7 .. 8) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for BMTRGR_EEV
type BMTRGR_EEV_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- EEV as a value
Val : HAL.UInt2;
when True =>
-- EEV as an array
Arr : BMTRGR_EEV_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for BMTRGR_EEV_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- BMTRGR
type BMTRGR_Register is record
-- SW
SW : Boolean := False;
-- MSTRST
MSTRST : Boolean := False;
-- MSTREP
MSTREP : Boolean := False;
-- MSTCMP1
MSTCMP : BMTRGR_MSTCMP_Field := (As_Array => False, Val => 16#0#);
-- TARST
TARST : Boolean := False;
-- TAREP
TAREP : Boolean := False;
-- TACMP1
TACMP : BMTRGR_TACMP_Field := (As_Array => False, Val => 16#0#);
-- TBRST
TBRST : Boolean := False;
-- TBREP
TBREP : Boolean := False;
-- TBCMP1
TBCMP : BMTRGR_TBCMP_Field := (As_Array => False, Val => 16#0#);
-- TCRST
TCRST : Boolean := False;
-- TCREP
TCREP : Boolean := False;
-- TCCMP1
TCCMP : BMTRGR_TCCMP_Field := (As_Array => False, Val => 16#0#);
-- TDRST
TDRST : Boolean := False;
-- TDREP
TDREP : Boolean := False;
-- TDCMP1
TDCMP : BMTRGR_TDCMP_Field := (As_Array => False, Val => 16#0#);
-- TERST
TERST : Boolean := False;
-- TEREP
TEREP : Boolean := False;
-- TECMP1
TECMP : BMTRGR_TECMP_Field := (As_Array => False, Val => 16#0#);
-- TAEEV7
TAEEV7 : Boolean := False;
-- TDEEV8
TDEEV8 : Boolean := False;
-- EEV7
EEV : BMTRGR_EEV_Field := (As_Array => False, Val => 16#0#);
-- OCHPEV
OCHPEV : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for BMTRGR_Register use record
SW at 0 range 0 .. 0;
MSTRST at 0 range 1 .. 1;
MSTREP at 0 range 2 .. 2;
MSTCMP at 0 range 3 .. 6;
TARST at 0 range 7 .. 7;
TAREP at 0 range 8 .. 8;
TACMP at 0 range 9 .. 10;
TBRST at 0 range 11 .. 11;
TBREP at 0 range 12 .. 12;
TBCMP at 0 range 13 .. 14;
TCRST at 0 range 15 .. 15;
TCREP at 0 range 16 .. 16;
TCCMP at 0 range 17 .. 18;
TDRST at 0 range 19 .. 19;
TDREP at 0 range 20 .. 20;
TDCMP at 0 range 21 .. 22;
TERST at 0 range 23 .. 23;
TEREP at 0 range 24 .. 24;
TECMP at 0 range 25 .. 26;
TAEEV7 at 0 range 27 .. 27;
TDEEV8 at 0 range 28 .. 28;
EEV at 0 range 29 .. 30;
OCHPEV at 0 range 31 .. 31;
end record;
subtype BMCMPR_BMCMP_Field is HAL.UInt16;
-- BMCMPR
type BMCMPR_Register is record
-- BMCMP
BMCMP : BMCMPR_BMCMP_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for BMCMPR_Register use record
BMCMP at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype BMPER_BMPER_Field is HAL.UInt16;
-- Burst Mode Period Register
type BMPER_Register is record
-- Burst mode Period
BMPER : BMPER_BMPER_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for BMPER_Register use record
BMPER at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype EECR1_EE1SRC_Field is HAL.UInt2;
subtype EECR1_EE1SNS_Field is HAL.UInt2;
subtype EECR1_EE2SRC_Field is HAL.UInt2;
subtype EECR1_EE2SNS_Field is HAL.UInt2;
subtype EECR1_EE3SRC_Field is HAL.UInt2;
subtype EECR1_EE3SNS_Field is HAL.UInt2;
subtype EECR1_EE4SRC_Field is HAL.UInt2;
subtype EECR1_EE4SNS_Field is HAL.UInt2;
subtype EECR1_EE5SRC_Field is HAL.UInt2;
subtype EECR1_EE5SNS_Field is HAL.UInt2;
-- Timer External Event Control Register 1
type EECR1_Register is record
-- External Event 1 Source
EE1SRC : EECR1_EE1SRC_Field := 16#0#;
-- External Event 1 Polarity
EE1POL : Boolean := False;
-- External Event 1 Sensitivity
EE1SNS : EECR1_EE1SNS_Field := 16#0#;
-- External Event 1 Fast mode
EE1FAST : Boolean := False;
-- External Event 2 Source
EE2SRC : EECR1_EE2SRC_Field := 16#0#;
-- External Event 2 Polarity
EE2POL : Boolean := False;
-- External Event 2 Sensitivity
EE2SNS : EECR1_EE2SNS_Field := 16#0#;
-- External Event 2 Fast mode
EE2FAST : Boolean := False;
-- External Event 3 Source
EE3SRC : EECR1_EE3SRC_Field := 16#0#;
-- External Event 3 Polarity
EE3POL : Boolean := False;
-- External Event 3 Sensitivity
EE3SNS : EECR1_EE3SNS_Field := 16#0#;
-- External Event 3 Fast mode
EE3FAST : Boolean := False;
-- External Event 4 Source
EE4SRC : EECR1_EE4SRC_Field := 16#0#;
-- External Event 4 Polarity
EE4POL : Boolean := False;
-- External Event 4 Sensitivity
EE4SNS : EECR1_EE4SNS_Field := 16#0#;
-- External Event 4 Fast mode
EE4FAST : Boolean := False;
-- External Event 5 Source
EE5SRC : EECR1_EE5SRC_Field := 16#0#;
-- External Event 5 Polarity
EE5POL : Boolean := False;
-- External Event 5 Sensitivity
EE5SNS : EECR1_EE5SNS_Field := 16#0#;
-- External Event 5 Fast mode
EE5FAST : Boolean := False;
-- unspecified
Reserved_30_31 : HAL.UInt2 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for EECR1_Register use record
EE1SRC at 0 range 0 .. 1;
EE1POL at 0 range 2 .. 2;
EE1SNS at 0 range 3 .. 4;
EE1FAST at 0 range 5 .. 5;
EE2SRC at 0 range 6 .. 7;
EE2POL at 0 range 8 .. 8;
EE2SNS at 0 range 9 .. 10;
EE2FAST at 0 range 11 .. 11;
EE3SRC at 0 range 12 .. 13;
EE3POL at 0 range 14 .. 14;
EE3SNS at 0 range 15 .. 16;
EE3FAST at 0 range 17 .. 17;
EE4SRC at 0 range 18 .. 19;
EE4POL at 0 range 20 .. 20;
EE4SNS at 0 range 21 .. 22;
EE4FAST at 0 range 23 .. 23;
EE5SRC at 0 range 24 .. 25;
EE5POL at 0 range 26 .. 26;
EE5SNS at 0 range 27 .. 28;
EE5FAST at 0 range 29 .. 29;
Reserved_30_31 at 0 range 30 .. 31;
end record;
subtype EECR2_EE6SRC_Field is HAL.UInt2;
subtype EECR2_EE6SNS_Field is HAL.UInt2;
subtype EECR2_EE7SRC_Field is HAL.UInt2;
subtype EECR2_EE7SNS_Field is HAL.UInt2;
subtype EECR2_EE8SRC_Field is HAL.UInt2;
subtype EECR2_EE8SNS_Field is HAL.UInt2;
subtype EECR2_EE9SRC_Field is HAL.UInt2;
subtype EECR2_EE9SNS_Field is HAL.UInt2;
subtype EECR2_EE10SRC_Field is HAL.UInt2;
subtype EECR2_EE10SNS_Field is HAL.UInt2;
-- Timer External Event Control Register 2
type EECR2_Register is record
-- External Event 6 Source
EE6SRC : EECR2_EE6SRC_Field := 16#0#;
-- External Event 6 Polarity
EE6POL : Boolean := False;
-- External Event 6 Sensitivity
EE6SNS : EECR2_EE6SNS_Field := 16#0#;
-- unspecified
Reserved_5_5 : HAL.Bit := 16#0#;
-- External Event 7 Source
EE7SRC : EECR2_EE7SRC_Field := 16#0#;
-- External Event 7 Polarity
EE7POL : Boolean := False;
-- External Event 7 Sensitivity
EE7SNS : EECR2_EE7SNS_Field := 16#0#;
-- unspecified
Reserved_11_11 : HAL.Bit := 16#0#;
-- External Event 8 Source
EE8SRC : EECR2_EE8SRC_Field := 16#0#;
-- External Event 8 Polarity
EE8POL : Boolean := False;
-- External Event 8 Sensitivity
EE8SNS : EECR2_EE8SNS_Field := 16#0#;
-- unspecified
Reserved_17_17 : HAL.Bit := 16#0#;
-- External Event 9 Source
EE9SRC : EECR2_EE9SRC_Field := 16#0#;
-- External Event 9 Polarity
EE9POL : Boolean := False;
-- External Event 9 Sensitivity
EE9SNS : EECR2_EE9SNS_Field := 16#0#;
-- unspecified
Reserved_23_23 : HAL.Bit := 16#0#;
-- External Event 10 Source
EE10SRC : EECR2_EE10SRC_Field := 16#0#;
-- External Event 10 Polarity
EE10POL : Boolean := False;
-- External Event 10 Sensitivity
EE10SNS : EECR2_EE10SNS_Field := 16#0#;
-- unspecified
Reserved_29_31 : HAL.UInt3 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for EECR2_Register use record
EE6SRC at 0 range 0 .. 1;
EE6POL at 0 range 2 .. 2;
EE6SNS at 0 range 3 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
EE7SRC at 0 range 6 .. 7;
EE7POL at 0 range 8 .. 8;
EE7SNS at 0 range 9 .. 10;
Reserved_11_11 at 0 range 11 .. 11;
EE8SRC at 0 range 12 .. 13;
EE8POL at 0 range 14 .. 14;
EE8SNS at 0 range 15 .. 16;
Reserved_17_17 at 0 range 17 .. 17;
EE9SRC at 0 range 18 .. 19;
EE9POL at 0 range 20 .. 20;
EE9SNS at 0 range 21 .. 22;
Reserved_23_23 at 0 range 23 .. 23;
EE10SRC at 0 range 24 .. 25;
EE10POL at 0 range 26 .. 26;
EE10SNS at 0 range 27 .. 28;
Reserved_29_31 at 0 range 29 .. 31;
end record;
subtype EECR3_EE6F_Field is HAL.UInt4;
subtype EECR3_EE7F_Field is HAL.UInt4;
subtype EECR3_EE8F_Field is HAL.UInt4;
subtype EECR3_EE9F_Field is HAL.UInt4;
subtype EECR3_EE10F_Field is HAL.UInt4;
subtype EECR3_EEVSD_Field is HAL.UInt2;
-- Timer External Event Control Register 3
type EECR3_Register is record
-- EE6F
EE6F : EECR3_EE6F_Field := 16#0#;
-- unspecified
Reserved_4_5 : HAL.UInt2 := 16#0#;
-- EE7F
EE7F : EECR3_EE7F_Field := 16#0#;
-- unspecified
Reserved_10_11 : HAL.UInt2 := 16#0#;
-- EE8F
EE8F : EECR3_EE8F_Field := 16#0#;
-- unspecified
Reserved_16_17 : HAL.UInt2 := 16#0#;
-- EE9F
EE9F : EECR3_EE9F_Field := 16#0#;
-- unspecified
Reserved_22_23 : HAL.UInt2 := 16#0#;
-- EE10F
EE10F : EECR3_EE10F_Field := 16#0#;
-- unspecified
Reserved_28_29 : HAL.UInt2 := 16#0#;
-- EEVSD
EEVSD : EECR3_EEVSD_Field := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for EECR3_Register use record
EE6F at 0 range 0 .. 3;
Reserved_4_5 at 0 range 4 .. 5;
EE7F at 0 range 6 .. 9;
Reserved_10_11 at 0 range 10 .. 11;
EE8F at 0 range 12 .. 15;
Reserved_16_17 at 0 range 16 .. 17;
EE9F at 0 range 18 .. 21;
Reserved_22_23 at 0 range 22 .. 23;
EE10F at 0 range 24 .. 27;
Reserved_28_29 at 0 range 28 .. 29;
EEVSD at 0 range 30 .. 31;
end record;
-- ADC1R_AD1MC array
type ADC1R_AD1MC_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for ADC1R_AD1MC
type ADC1R_AD1MC_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD1MC as a value
Val : HAL.UInt4;
when True =>
-- AD1MC as an array
Arr : ADC1R_AD1MC_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for ADC1R_AD1MC_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- ADC1R_AD1EEV array
type ADC1R_AD1EEV_Field_Array is array (1 .. 5) of Boolean
with Component_Size => 1, Size => 5;
-- Type definition for ADC1R_AD1EEV
type ADC1R_AD1EEV_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD1EEV as a value
Val : HAL.UInt5;
when True =>
-- AD1EEV as an array
Arr : ADC1R_AD1EEV_Field_Array;
end case;
end record
with Unchecked_Union, Size => 5;
for ADC1R_AD1EEV_Field use record
Val at 0 range 0 .. 4;
Arr at 0 range 0 .. 4;
end record;
-- ADC1R_AD1TAC array
type ADC1R_AD1TAC_Field_Array is array (2 .. 4) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for ADC1R_AD1TAC
type ADC1R_AD1TAC_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD1TAC as a value
Val : HAL.UInt3;
when True =>
-- AD1TAC as an array
Arr : ADC1R_AD1TAC_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for ADC1R_AD1TAC_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- ADC1R_AD1TBC array
type ADC1R_AD1TBC_Field_Array is array (2 .. 4) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for ADC1R_AD1TBC
type ADC1R_AD1TBC_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD1TBC as a value
Val : HAL.UInt3;
when True =>
-- AD1TBC as an array
Arr : ADC1R_AD1TBC_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for ADC1R_AD1TBC_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- ADC1R_AD1TCC array
type ADC1R_AD1TCC_Field_Array is array (2 .. 4) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for ADC1R_AD1TCC
type ADC1R_AD1TCC_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD1TCC as a value
Val : HAL.UInt3;
when True =>
-- AD1TCC as an array
Arr : ADC1R_AD1TCC_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for ADC1R_AD1TCC_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- ADC1R_AD1TDC array
type ADC1R_AD1TDC_Field_Array is array (2 .. 4) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for ADC1R_AD1TDC
type ADC1R_AD1TDC_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD1TDC as a value
Val : HAL.UInt3;
when True =>
-- AD1TDC as an array
Arr : ADC1R_AD1TDC_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for ADC1R_AD1TDC_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- ADC1R_AD1TEC array
type ADC1R_AD1TEC_Field_Array is array (2 .. 4) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for ADC1R_AD1TEC
type ADC1R_AD1TEC_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD1TEC as a value
Val : HAL.UInt3;
when True =>
-- AD1TEC as an array
Arr : ADC1R_AD1TEC_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for ADC1R_AD1TEC_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- ADC Trigger 1 Register
type ADC1R_Register is record
-- ADC trigger 1 on Master Compare 1
AD1MC : ADC1R_AD1MC_Field := (As_Array => False, Val => 16#0#);
-- ADC trigger 1 on Master Period
AD1MPER : Boolean := False;
-- ADC trigger 1 on External Event 1
AD1EEV : ADC1R_AD1EEV_Field := (As_Array => False, Val => 16#0#);
-- ADC trigger 1 on Timer A compare 2
AD1TAC : ADC1R_AD1TAC_Field := (As_Array => False, Val => 16#0#);
-- ADC trigger 1 on Timer A Period
AD1TAPER : Boolean := False;
-- ADC trigger 1 on Timer A Reset
AD1TARST : Boolean := False;
-- ADC trigger 1 on Timer B compare 2
AD1TBC : ADC1R_AD1TBC_Field := (As_Array => False, Val => 16#0#);
-- ADC trigger 1 on Timer B Period
AD1TBPER : Boolean := False;
-- ADC trigger 1 on Timer B Reset
AD1TBRST : Boolean := False;
-- ADC trigger 1 on Timer C compare 2
AD1TCC : ADC1R_AD1TCC_Field := (As_Array => False, Val => 16#0#);
-- ADC trigger 1 on Timer C Period
AD1TCPER : Boolean := False;
-- ADC trigger 1 on Timer D compare 2
AD1TDC : ADC1R_AD1TDC_Field := (As_Array => False, Val => 16#0#);
-- ADC trigger 1 on Timer D Period
AD1TDPER : Boolean := False;
-- ADC trigger 1 on Timer E compare 2
AD1TEC : ADC1R_AD1TEC_Field := (As_Array => False, Val => 16#0#);
-- ADC trigger 1 on Timer E Period
AD1TEPER : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for ADC1R_Register use record
AD1MC at 0 range 0 .. 3;
AD1MPER at 0 range 4 .. 4;
AD1EEV at 0 range 5 .. 9;
AD1TAC at 0 range 10 .. 12;
AD1TAPER at 0 range 13 .. 13;
AD1TARST at 0 range 14 .. 14;
AD1TBC at 0 range 15 .. 17;
AD1TBPER at 0 range 18 .. 18;
AD1TBRST at 0 range 19 .. 19;
AD1TCC at 0 range 20 .. 22;
AD1TCPER at 0 range 23 .. 23;
AD1TDC at 0 range 24 .. 26;
AD1TDPER at 0 range 27 .. 27;
AD1TEC at 0 range 28 .. 30;
AD1TEPER at 0 range 31 .. 31;
end record;
-- ADC2R_AD2MC array
type ADC2R_AD2MC_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for ADC2R_AD2MC
type ADC2R_AD2MC_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD2MC as a value
Val : HAL.UInt4;
when True =>
-- AD2MC as an array
Arr : ADC2R_AD2MC_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for ADC2R_AD2MC_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- ADC2R_AD2EEV array
type ADC2R_AD2EEV_Field_Array is array (6 .. 10) of Boolean
with Component_Size => 1, Size => 5;
-- Type definition for ADC2R_AD2EEV
type ADC2R_AD2EEV_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD2EEV as a value
Val : HAL.UInt5;
when True =>
-- AD2EEV as an array
Arr : ADC2R_AD2EEV_Field_Array;
end case;
end record
with Unchecked_Union, Size => 5;
for ADC2R_AD2EEV_Field use record
Val at 0 range 0 .. 4;
Arr at 0 range 0 .. 4;
end record;
-- ADC2R_AD2TAC array
type ADC2R_AD2TAC_Field_Array is array (2 .. 4) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for ADC2R_AD2TAC
type ADC2R_AD2TAC_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD2TAC as a value
Val : HAL.UInt3;
when True =>
-- AD2TAC as an array
Arr : ADC2R_AD2TAC_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for ADC2R_AD2TAC_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- ADC2R_AD2TBC array
type ADC2R_AD2TBC_Field_Array is array (2 .. 4) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for ADC2R_AD2TBC
type ADC2R_AD2TBC_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD2TBC as a value
Val : HAL.UInt3;
when True =>
-- AD2TBC as an array
Arr : ADC2R_AD2TBC_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for ADC2R_AD2TBC_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- ADC2R_AD2TCC array
type ADC2R_AD2TCC_Field_Array is array (2 .. 4) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for ADC2R_AD2TCC
type ADC2R_AD2TCC_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD2TCC as a value
Val : HAL.UInt3;
when True =>
-- AD2TCC as an array
Arr : ADC2R_AD2TCC_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for ADC2R_AD2TCC_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- ADC2R_AD2TDC array
type ADC2R_AD2TDC_Field_Array is array (2 .. 4) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for ADC2R_AD2TDC
type ADC2R_AD2TDC_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD2TDC as a value
Val : HAL.UInt3;
when True =>
-- AD2TDC as an array
Arr : ADC2R_AD2TDC_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for ADC2R_AD2TDC_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- ADC2R_AD2TEC array
type ADC2R_AD2TEC_Field_Array is array (2 .. 4) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for ADC2R_AD2TEC
type ADC2R_AD2TEC_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD2TEC as a value
Val : HAL.UInt3;
when True =>
-- AD2TEC as an array
Arr : ADC2R_AD2TEC_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for ADC2R_AD2TEC_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- ADC Trigger 2 Register
type ADC2R_Register is record
-- ADC trigger 2 on Master Compare 1
AD2MC : ADC2R_AD2MC_Field := (As_Array => False, Val => 16#0#);
-- ADC trigger 2 on Master Period
AD2MPER : Boolean := False;
-- ADC trigger 2 on External Event 6
AD2EEV : ADC2R_AD2EEV_Field := (As_Array => False, Val => 16#0#);
-- ADC trigger 2 on Timer A compare 2
AD2TAC : ADC2R_AD2TAC_Field := (As_Array => False, Val => 16#0#);
-- ADC trigger 2 on Timer A Period
AD2TAPER : Boolean := False;
-- ADC trigger 2 on Timer B compare 2
AD2TBC : ADC2R_AD2TBC_Field := (As_Array => False, Val => 16#0#);
-- ADC trigger 2 on Timer B Period
AD2TBPER : Boolean := False;
-- ADC trigger 2 on Timer C compare 2
AD2TCC : ADC2R_AD2TCC_Field := (As_Array => False, Val => 16#0#);
-- ADC trigger 2 on Timer C Period
AD2TCPER : Boolean := False;
-- ADC trigger 2 on Timer C Reset
AD2TCRST : Boolean := False;
-- ADC trigger 2 on Timer D compare 2
AD2TDC : ADC2R_AD2TDC_Field := (As_Array => False, Val => 16#0#);
-- ADC trigger 2 on Timer D Period
AD2TDPER : Boolean := False;
-- ADC trigger 2 on Timer D Reset
AD2TDRST : Boolean := False;
-- ADC trigger 2 on Timer E compare 2
AD2TEC : ADC2R_AD2TEC_Field := (As_Array => False, Val => 16#0#);
-- ADC trigger 2 on Timer E Reset
AD2TERST : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for ADC2R_Register use record
AD2MC at 0 range 0 .. 3;
AD2MPER at 0 range 4 .. 4;
AD2EEV at 0 range 5 .. 9;
AD2TAC at 0 range 10 .. 12;
AD2TAPER at 0 range 13 .. 13;
AD2TBC at 0 range 14 .. 16;
AD2TBPER at 0 range 17 .. 17;
AD2TCC at 0 range 18 .. 20;
AD2TCPER at 0 range 21 .. 21;
AD2TCRST at 0 range 22 .. 22;
AD2TDC at 0 range 23 .. 25;
AD2TDPER at 0 range 26 .. 26;
AD2TDRST at 0 range 27 .. 27;
AD2TEC at 0 range 28 .. 30;
AD2TERST at 0 range 31 .. 31;
end record;
-- ADC3R_AD1MC array
type ADC3R_AD1MC_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for ADC3R_AD1MC
type ADC3R_AD1MC_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD1MC as a value
Val : HAL.UInt4;
when True =>
-- AD1MC as an array
Arr : ADC3R_AD1MC_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for ADC3R_AD1MC_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- ADC3R_AD1EEV array
type ADC3R_AD1EEV_Field_Array is array (1 .. 5) of Boolean
with Component_Size => 1, Size => 5;
-- Type definition for ADC3R_AD1EEV
type ADC3R_AD1EEV_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD1EEV as a value
Val : HAL.UInt5;
when True =>
-- AD1EEV as an array
Arr : ADC3R_AD1EEV_Field_Array;
end case;
end record
with Unchecked_Union, Size => 5;
for ADC3R_AD1EEV_Field use record
Val at 0 range 0 .. 4;
Arr at 0 range 0 .. 4;
end record;
-- ADC3R_AD1TAC array
type ADC3R_AD1TAC_Field_Array is array (2 .. 4) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for ADC3R_AD1TAC
type ADC3R_AD1TAC_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD1TAC as a value
Val : HAL.UInt3;
when True =>
-- AD1TAC as an array
Arr : ADC3R_AD1TAC_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for ADC3R_AD1TAC_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- ADC3R_AD1TBC array
type ADC3R_AD1TBC_Field_Array is array (2 .. 4) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for ADC3R_AD1TBC
type ADC3R_AD1TBC_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD1TBC as a value
Val : HAL.UInt3;
when True =>
-- AD1TBC as an array
Arr : ADC3R_AD1TBC_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for ADC3R_AD1TBC_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- ADC3R_AD1TCC array
type ADC3R_AD1TCC_Field_Array is array (2 .. 4) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for ADC3R_AD1TCC
type ADC3R_AD1TCC_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD1TCC as a value
Val : HAL.UInt3;
when True =>
-- AD1TCC as an array
Arr : ADC3R_AD1TCC_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for ADC3R_AD1TCC_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- ADC3R_AD1TDC array
type ADC3R_AD1TDC_Field_Array is array (2 .. 4) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for ADC3R_AD1TDC
type ADC3R_AD1TDC_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD1TDC as a value
Val : HAL.UInt3;
when True =>
-- AD1TDC as an array
Arr : ADC3R_AD1TDC_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for ADC3R_AD1TDC_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- ADC3R_AD1TEC array
type ADC3R_AD1TEC_Field_Array is array (2 .. 4) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for ADC3R_AD1TEC
type ADC3R_AD1TEC_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD1TEC as a value
Val : HAL.UInt3;
when True =>
-- AD1TEC as an array
Arr : ADC3R_AD1TEC_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for ADC3R_AD1TEC_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- ADC Trigger 3 Register
type ADC3R_Register is record
-- AD1MC1
AD1MC : ADC3R_AD1MC_Field := (As_Array => False, Val => 16#0#);
-- AD1MPER
AD1MPER : Boolean := False;
-- AD1EEV1
AD1EEV : ADC3R_AD1EEV_Field := (As_Array => False, Val => 16#0#);
-- AD1TAC2
AD1TAC : ADC3R_AD1TAC_Field := (As_Array => False, Val => 16#0#);
-- AD1TAPER
AD1TAPER : Boolean := False;
-- AD1TARST
AD1TARST : Boolean := False;
-- AD1TBC2
AD1TBC : ADC3R_AD1TBC_Field := (As_Array => False, Val => 16#0#);
-- AD1TBPER
AD1TBPER : Boolean := False;
-- AD1TBRST
AD1TBRST : Boolean := False;
-- AD1TCC2
AD1TCC : ADC3R_AD1TCC_Field := (As_Array => False, Val => 16#0#);
-- AD1TCPER
AD1TCPER : Boolean := False;
-- AD1TDC2
AD1TDC : ADC3R_AD1TDC_Field := (As_Array => False, Val => 16#0#);
-- AD1TDPER
AD1TDPER : Boolean := False;
-- AD1TEC2
AD1TEC : ADC3R_AD1TEC_Field := (As_Array => False, Val => 16#0#);
-- AD1TEPER
AD1TEPER : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for ADC3R_Register use record
AD1MC at 0 range 0 .. 3;
AD1MPER at 0 range 4 .. 4;
AD1EEV at 0 range 5 .. 9;
AD1TAC at 0 range 10 .. 12;
AD1TAPER at 0 range 13 .. 13;
AD1TARST at 0 range 14 .. 14;
AD1TBC at 0 range 15 .. 17;
AD1TBPER at 0 range 18 .. 18;
AD1TBRST at 0 range 19 .. 19;
AD1TCC at 0 range 20 .. 22;
AD1TCPER at 0 range 23 .. 23;
AD1TDC at 0 range 24 .. 26;
AD1TDPER at 0 range 27 .. 27;
AD1TEC at 0 range 28 .. 30;
AD1TEPER at 0 range 31 .. 31;
end record;
-- ADC4R_AD2MC array
type ADC4R_AD2MC_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for ADC4R_AD2MC
type ADC4R_AD2MC_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD2MC as a value
Val : HAL.UInt4;
when True =>
-- AD2MC as an array
Arr : ADC4R_AD2MC_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for ADC4R_AD2MC_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- ADC4R_AD2EEV array
type ADC4R_AD2EEV_Field_Array is array (6 .. 10) of Boolean
with Component_Size => 1, Size => 5;
-- Type definition for ADC4R_AD2EEV
type ADC4R_AD2EEV_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD2EEV as a value
Val : HAL.UInt5;
when True =>
-- AD2EEV as an array
Arr : ADC4R_AD2EEV_Field_Array;
end case;
end record
with Unchecked_Union, Size => 5;
for ADC4R_AD2EEV_Field use record
Val at 0 range 0 .. 4;
Arr at 0 range 0 .. 4;
end record;
-- ADC4R_AD2TAC array
type ADC4R_AD2TAC_Field_Array is array (2 .. 4) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for ADC4R_AD2TAC
type ADC4R_AD2TAC_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD2TAC as a value
Val : HAL.UInt3;
when True =>
-- AD2TAC as an array
Arr : ADC4R_AD2TAC_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for ADC4R_AD2TAC_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- ADC4R_AD2TBC array
type ADC4R_AD2TBC_Field_Array is array (2 .. 4) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for ADC4R_AD2TBC
type ADC4R_AD2TBC_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD2TBC as a value
Val : HAL.UInt3;
when True =>
-- AD2TBC as an array
Arr : ADC4R_AD2TBC_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for ADC4R_AD2TBC_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- ADC4R_AD2TCC array
type ADC4R_AD2TCC_Field_Array is array (2 .. 4) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for ADC4R_AD2TCC
type ADC4R_AD2TCC_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD2TCC as a value
Val : HAL.UInt3;
when True =>
-- AD2TCC as an array
Arr : ADC4R_AD2TCC_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for ADC4R_AD2TCC_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- ADC4R_AD2TDC array
type ADC4R_AD2TDC_Field_Array is array (2 .. 4) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for ADC4R_AD2TDC
type ADC4R_AD2TDC_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD2TDC as a value
Val : HAL.UInt3;
when True =>
-- AD2TDC as an array
Arr : ADC4R_AD2TDC_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for ADC4R_AD2TDC_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- ADC4R_AD2TEC array
type ADC4R_AD2TEC_Field_Array is array (2 .. 4) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for ADC4R_AD2TEC
type ADC4R_AD2TEC_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AD2TEC as a value
Val : HAL.UInt3;
when True =>
-- AD2TEC as an array
Arr : ADC4R_AD2TEC_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for ADC4R_AD2TEC_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- ADC Trigger 4 Register
type ADC4R_Register is record
-- AD2MC1
AD2MC : ADC4R_AD2MC_Field := (As_Array => False, Val => 16#0#);
-- AD2MPER
AD2MPER : Boolean := False;
-- AD2EEV6
AD2EEV : ADC4R_AD2EEV_Field := (As_Array => False, Val => 16#0#);
-- AD2TAC2
AD2TAC : ADC4R_AD2TAC_Field := (As_Array => False, Val => 16#0#);
-- AD2TAPER
AD2TAPER : Boolean := False;
-- AD2TBC2
AD2TBC : ADC4R_AD2TBC_Field := (As_Array => False, Val => 16#0#);
-- AD2TBPER
AD2TBPER : Boolean := False;
-- AD2TCC2
AD2TCC : ADC4R_AD2TCC_Field := (As_Array => False, Val => 16#0#);
-- AD2TCPER
AD2TCPER : Boolean := False;
-- AD2TCRST
AD2TCRST : Boolean := False;
-- AD2TDC2
AD2TDC : ADC4R_AD2TDC_Field := (As_Array => False, Val => 16#0#);
-- AD2TDPER
AD2TDPER : Boolean := False;
-- AD2TDRST
AD2TDRST : Boolean := False;
-- AD2TEC2
AD2TEC : ADC4R_AD2TEC_Field := (As_Array => False, Val => 16#0#);
-- AD2TERST
AD2TERST : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for ADC4R_Register use record
AD2MC at 0 range 0 .. 3;
AD2MPER at 0 range 4 .. 4;
AD2EEV at 0 range 5 .. 9;
AD2TAC at 0 range 10 .. 12;
AD2TAPER at 0 range 13 .. 13;
AD2TBC at 0 range 14 .. 16;
AD2TBPER at 0 range 17 .. 17;
AD2TCC at 0 range 18 .. 20;
AD2TCPER at 0 range 21 .. 21;
AD2TCRST at 0 range 22 .. 22;
AD2TDC at 0 range 23 .. 25;
AD2TDPER at 0 range 26 .. 26;
AD2TDRST at 0 range 27 .. 27;
AD2TEC at 0 range 28 .. 30;
AD2TERST at 0 range 31 .. 31;
end record;
subtype DLLCR_CALRTE_Field is HAL.UInt2;
-- DLL Control Register
type DLLCR_Register is record
-- DLL Calibration Start
CAL : Boolean := False;
-- DLL Calibration Enable
CALEN : Boolean := False;
-- DLL Calibration rate
CALRTE : DLLCR_CALRTE_Field := 16#0#;
-- unspecified
Reserved_4_31 : HAL.UInt28 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for DLLCR_Register use record
CAL at 0 range 0 .. 0;
CALEN at 0 range 1 .. 1;
CALRTE at 0 range 2 .. 3;
Reserved_4_31 at 0 range 4 .. 31;
end record;
subtype FLTINR1_FLT1F_Field is HAL.UInt4;
subtype FLTINR1_FLT2F_Field is HAL.UInt4;
subtype FLTINR1_FLT3F_Field is HAL.UInt4;
subtype FLTINR1_FLT4F_Field is HAL.UInt4;
-- HRTIM Fault Input Register 1
type FLTINR1_Register is record
-- FLT1E
FLT1E : Boolean := False;
-- FLT1P
FLT1P : Boolean := False;
-- FLT1SRC
FLT1SRC : Boolean := False;
-- FLT1F
FLT1F : FLTINR1_FLT1F_Field := 16#0#;
-- FLT1LCK
FLT1LCK : Boolean := False;
-- FLT2E
FLT2E : Boolean := False;
-- FLT2P
FLT2P : Boolean := False;
-- FLT2SRC
FLT2SRC : Boolean := False;
-- FLT2F
FLT2F : FLTINR1_FLT2F_Field := 16#0#;
-- FLT2LCK
FLT2LCK : Boolean := False;
-- FLT3E
FLT3E : Boolean := False;
-- FLT3P
FLT3P : Boolean := False;
-- FLT3SRC
FLT3SRC : Boolean := False;
-- FLT3F
FLT3F : FLTINR1_FLT3F_Field := 16#0#;
-- FLT3LCK
FLT3LCK : Boolean := False;
-- FLT4E
FLT4E : Boolean := False;
-- FLT4P
FLT4P : Boolean := False;
-- FLT4SRC
FLT4SRC : Boolean := False;
-- FLT4F
FLT4F : FLTINR1_FLT4F_Field := 16#0#;
-- FLT4LCK
FLT4LCK : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for FLTINR1_Register use record
FLT1E at 0 range 0 .. 0;
FLT1P at 0 range 1 .. 1;
FLT1SRC at 0 range 2 .. 2;
FLT1F at 0 range 3 .. 6;
FLT1LCK at 0 range 7 .. 7;
FLT2E at 0 range 8 .. 8;
FLT2P at 0 range 9 .. 9;
FLT2SRC at 0 range 10 .. 10;
FLT2F at 0 range 11 .. 14;
FLT2LCK at 0 range 15 .. 15;
FLT3E at 0 range 16 .. 16;
FLT3P at 0 range 17 .. 17;
FLT3SRC at 0 range 18 .. 18;
FLT3F at 0 range 19 .. 22;
FLT3LCK at 0 range 23 .. 23;
FLT4E at 0 range 24 .. 24;
FLT4P at 0 range 25 .. 25;
FLT4SRC at 0 range 26 .. 26;
FLT4F at 0 range 27 .. 30;
FLT4LCK at 0 range 31 .. 31;
end record;
subtype FLTINR2_FLT5F_Field is HAL.UInt4;
subtype FLTINR2_FLTSD_Field is HAL.UInt2;
-- HRTIM Fault Input Register 2
type FLTINR2_Register is record
-- FLT5E
FLT5E : Boolean := False;
-- FLT5P
FLT5P : Boolean := False;
-- FLT5SRC
FLT5SRC : Boolean := False;
-- FLT5F
FLT5F : FLTINR2_FLT5F_Field := 16#0#;
-- FLT5LCK
FLT5LCK : Boolean := False;
-- unspecified
Reserved_8_23 : HAL.UInt16 := 16#0#;
-- FLTSD
FLTSD : FLTINR2_FLTSD_Field := 16#0#;
-- unspecified
Reserved_26_31 : HAL.UInt6 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for FLTINR2_Register use record
FLT5E at 0 range 0 .. 0;
FLT5P at 0 range 1 .. 1;
FLT5SRC at 0 range 2 .. 2;
FLT5F at 0 range 3 .. 6;
FLT5LCK at 0 range 7 .. 7;
Reserved_8_23 at 0 range 8 .. 23;
FLTSD at 0 range 24 .. 25;
Reserved_26_31 at 0 range 26 .. 31;
end record;
-- BDMUPR_MCMP array
type BDMUPR_MCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for BDMUPR_MCMP
type BDMUPR_MCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MCMP as a value
Val : HAL.UInt4;
when True =>
-- MCMP as an array
Arr : BDMUPR_MCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for BDMUPR_MCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- BDMUPR
type BDMUPR_Register is record
-- MCR
MCR : Boolean := False;
-- MICR
MICR : Boolean := False;
-- MDIER
MDIER : Boolean := False;
-- MCNT
MCNT : Boolean := False;
-- MPER
MPER : Boolean := False;
-- MREP
MREP : Boolean := False;
-- MCMP1
MCMP : BDMUPR_MCMP_Field := (As_Array => False, Val => 16#0#);
-- unspecified
Reserved_10_31 : HAL.UInt22 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for BDMUPR_Register use record
MCR at 0 range 0 .. 0;
MICR at 0 range 1 .. 1;
MDIER at 0 range 2 .. 2;
MCNT at 0 range 3 .. 3;
MPER at 0 range 4 .. 4;
MREP at 0 range 5 .. 5;
MCMP at 0 range 6 .. 9;
Reserved_10_31 at 0 range 10 .. 31;
end record;
-- BDTAUPR_TIMxCMP array
type BDTAUPR_TIMxCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for BDTAUPR_TIMxCMP
type BDTAUPR_TIMxCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMxCMP as a value
Val : HAL.UInt4;
when True =>
-- TIMxCMP as an array
Arr : BDTAUPR_TIMxCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for BDTAUPR_TIMxCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- BDTAUPR_TIMxEEFR array
type BDTAUPR_TIMxEEFR_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for BDTAUPR_TIMxEEFR
type BDTAUPR_TIMxEEFR_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMxEEFR as a value
Val : HAL.UInt2;
when True =>
-- TIMxEEFR as an array
Arr : BDTAUPR_TIMxEEFR_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for BDTAUPR_TIMxEEFR_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- Burst DMA Timerx update Register
type BDTAUPR_Register is record
-- HRTIM_TIMxCR register update enable
TIMxCR : Boolean := False;
-- HRTIM_TIMxICR register update enable
TIMxICR : Boolean := False;
-- HRTIM_TIMxDIER register update enable
TIMxDIER : Boolean := False;
-- HRTIM_CNTxR register update enable
TIMxCNT : Boolean := False;
-- HRTIM_PERxR register update enable
TIMxPER : Boolean := False;
-- HRTIM_REPxR register update enable
TIMxREP : Boolean := False;
-- HRTIM_CMP1xR register update enable
TIMxCMP : BDTAUPR_TIMxCMP_Field :=
(As_Array => False, Val => 16#0#);
-- HRTIM_DTxR register update enable
TIMxDTR : Boolean := False;
-- HRTIM_SET1xR register update enable
TIMxSET1R : Boolean := False;
-- HRTIM_RST1xR register update enable
TIMxRST1R : Boolean := False;
-- HRTIM_SET2xR register update enable
TIMxSET2R : Boolean := False;
-- HRTIM_RST2xR register update enable
TIMxRST2R : Boolean := False;
-- HRTIM_EEFxR1 register update enable
TIMxEEFR : BDTAUPR_TIMxEEFR_Field :=
(As_Array => False, Val => 16#0#);
-- HRTIM_RSTxR register update enable
TIMxRSTR : Boolean := False;
-- HRTIM_CHPxR register update enable
TIMxCHPR : Boolean := False;
-- HRTIM_OUTxR register update enable
TIMxOUTR : Boolean := False;
-- HRTIM_FLTxR register update enable
TIMxFLTR : Boolean := False;
-- unspecified
Reserved_21_31 : HAL.UInt11 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for BDTAUPR_Register use record
TIMxCR at 0 range 0 .. 0;
TIMxICR at 0 range 1 .. 1;
TIMxDIER at 0 range 2 .. 2;
TIMxCNT at 0 range 3 .. 3;
TIMxPER at 0 range 4 .. 4;
TIMxREP at 0 range 5 .. 5;
TIMxCMP at 0 range 6 .. 9;
TIMxDTR at 0 range 10 .. 10;
TIMxSET1R at 0 range 11 .. 11;
TIMxRST1R at 0 range 12 .. 12;
TIMxSET2R at 0 range 13 .. 13;
TIMxRST2R at 0 range 14 .. 14;
TIMxEEFR at 0 range 15 .. 16;
TIMxRSTR at 0 range 17 .. 17;
TIMxCHPR at 0 range 18 .. 18;
TIMxOUTR at 0 range 19 .. 19;
TIMxFLTR at 0 range 20 .. 20;
Reserved_21_31 at 0 range 21 .. 31;
end record;
-- BDTBUPR_TIMxCMP array
type BDTBUPR_TIMxCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for BDTBUPR_TIMxCMP
type BDTBUPR_TIMxCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMxCMP as a value
Val : HAL.UInt4;
when True =>
-- TIMxCMP as an array
Arr : BDTBUPR_TIMxCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for BDTBUPR_TIMxCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- BDTBUPR_TIMxEEFR array
type BDTBUPR_TIMxEEFR_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for BDTBUPR_TIMxEEFR
type BDTBUPR_TIMxEEFR_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMxEEFR as a value
Val : HAL.UInt2;
when True =>
-- TIMxEEFR as an array
Arr : BDTBUPR_TIMxEEFR_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for BDTBUPR_TIMxEEFR_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- Burst DMA Timerx update Register
type BDTBUPR_Register is record
-- HRTIM_TIMxCR register update enable
TIMxCR : Boolean := False;
-- HRTIM_TIMxICR register update enable
TIMxICR : Boolean := False;
-- HRTIM_TIMxDIER register update enable
TIMxDIER : Boolean := False;
-- HRTIM_CNTxR register update enable
TIMxCNT : Boolean := False;
-- HRTIM_PERxR register update enable
TIMxPER : Boolean := False;
-- HRTIM_REPxR register update enable
TIMxREP : Boolean := False;
-- HRTIM_CMP1xR register update enable
TIMxCMP : BDTBUPR_TIMxCMP_Field :=
(As_Array => False, Val => 16#0#);
-- HRTIM_DTxR register update enable
TIMxDTR : Boolean := False;
-- HRTIM_SET1xR register update enable
TIMxSET1R : Boolean := False;
-- HRTIM_RST1xR register update enable
TIMxRST1R : Boolean := False;
-- HRTIM_SET2xR register update enable
TIMxSET2R : Boolean := False;
-- HRTIM_RST2xR register update enable
TIMxRST2R : Boolean := False;
-- HRTIM_EEFxR1 register update enable
TIMxEEFR : BDTBUPR_TIMxEEFR_Field :=
(As_Array => False, Val => 16#0#);
-- HRTIM_RSTxR register update enable
TIMxRSTR : Boolean := False;
-- HRTIM_CHPxR register update enable
TIMxCHPR : Boolean := False;
-- HRTIM_OUTxR register update enable
TIMxOUTR : Boolean := False;
-- HRTIM_FLTxR register update enable
TIMxFLTR : Boolean := False;
-- unspecified
Reserved_21_31 : HAL.UInt11 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for BDTBUPR_Register use record
TIMxCR at 0 range 0 .. 0;
TIMxICR at 0 range 1 .. 1;
TIMxDIER at 0 range 2 .. 2;
TIMxCNT at 0 range 3 .. 3;
TIMxPER at 0 range 4 .. 4;
TIMxREP at 0 range 5 .. 5;
TIMxCMP at 0 range 6 .. 9;
TIMxDTR at 0 range 10 .. 10;
TIMxSET1R at 0 range 11 .. 11;
TIMxRST1R at 0 range 12 .. 12;
TIMxSET2R at 0 range 13 .. 13;
TIMxRST2R at 0 range 14 .. 14;
TIMxEEFR at 0 range 15 .. 16;
TIMxRSTR at 0 range 17 .. 17;
TIMxCHPR at 0 range 18 .. 18;
TIMxOUTR at 0 range 19 .. 19;
TIMxFLTR at 0 range 20 .. 20;
Reserved_21_31 at 0 range 21 .. 31;
end record;
-- BDTCUPR_TIMxCMP array
type BDTCUPR_TIMxCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for BDTCUPR_TIMxCMP
type BDTCUPR_TIMxCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMxCMP as a value
Val : HAL.UInt4;
when True =>
-- TIMxCMP as an array
Arr : BDTCUPR_TIMxCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for BDTCUPR_TIMxCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- BDTCUPR_TIMxEEFR array
type BDTCUPR_TIMxEEFR_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for BDTCUPR_TIMxEEFR
type BDTCUPR_TIMxEEFR_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMxEEFR as a value
Val : HAL.UInt2;
when True =>
-- TIMxEEFR as an array
Arr : BDTCUPR_TIMxEEFR_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for BDTCUPR_TIMxEEFR_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- Burst DMA Timerx update Register
type BDTCUPR_Register is record
-- HRTIM_TIMxCR register update enable
TIMxCR : Boolean := False;
-- HRTIM_TIMxICR register update enable
TIMxICR : Boolean := False;
-- HRTIM_TIMxDIER register update enable
TIMxDIER : Boolean := False;
-- HRTIM_CNTxR register update enable
TIMxCNT : Boolean := False;
-- HRTIM_PERxR register update enable
TIMxPER : Boolean := False;
-- HRTIM_REPxR register update enable
TIMxREP : Boolean := False;
-- HRTIM_CMP1xR register update enable
TIMxCMP : BDTCUPR_TIMxCMP_Field :=
(As_Array => False, Val => 16#0#);
-- HRTIM_DTxR register update enable
TIMxDTR : Boolean := False;
-- HRTIM_SET1xR register update enable
TIMxSET1R : Boolean := False;
-- HRTIM_RST1xR register update enable
TIMxRST1R : Boolean := False;
-- HRTIM_SET2xR register update enable
TIMxSET2R : Boolean := False;
-- HRTIM_RST2xR register update enable
TIMxRST2R : Boolean := False;
-- HRTIM_EEFxR1 register update enable
TIMxEEFR : BDTCUPR_TIMxEEFR_Field :=
(As_Array => False, Val => 16#0#);
-- HRTIM_RSTxR register update enable
TIMxRSTR : Boolean := False;
-- HRTIM_CHPxR register update enable
TIMxCHPR : Boolean := False;
-- HRTIM_OUTxR register update enable
TIMxOUTR : Boolean := False;
-- HRTIM_FLTxR register update enable
TIMxFLTR : Boolean := False;
-- unspecified
Reserved_21_31 : HAL.UInt11 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for BDTCUPR_Register use record
TIMxCR at 0 range 0 .. 0;
TIMxICR at 0 range 1 .. 1;
TIMxDIER at 0 range 2 .. 2;
TIMxCNT at 0 range 3 .. 3;
TIMxPER at 0 range 4 .. 4;
TIMxREP at 0 range 5 .. 5;
TIMxCMP at 0 range 6 .. 9;
TIMxDTR at 0 range 10 .. 10;
TIMxSET1R at 0 range 11 .. 11;
TIMxRST1R at 0 range 12 .. 12;
TIMxSET2R at 0 range 13 .. 13;
TIMxRST2R at 0 range 14 .. 14;
TIMxEEFR at 0 range 15 .. 16;
TIMxRSTR at 0 range 17 .. 17;
TIMxCHPR at 0 range 18 .. 18;
TIMxOUTR at 0 range 19 .. 19;
TIMxFLTR at 0 range 20 .. 20;
Reserved_21_31 at 0 range 21 .. 31;
end record;
-- BDTDUPR_TIMxCMP array
type BDTDUPR_TIMxCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for BDTDUPR_TIMxCMP
type BDTDUPR_TIMxCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMxCMP as a value
Val : HAL.UInt4;
when True =>
-- TIMxCMP as an array
Arr : BDTDUPR_TIMxCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for BDTDUPR_TIMxCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- BDTDUPR_TIMxEEFR array
type BDTDUPR_TIMxEEFR_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for BDTDUPR_TIMxEEFR
type BDTDUPR_TIMxEEFR_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMxEEFR as a value
Val : HAL.UInt2;
when True =>
-- TIMxEEFR as an array
Arr : BDTDUPR_TIMxEEFR_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for BDTDUPR_TIMxEEFR_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- Burst DMA Timerx update Register
type BDTDUPR_Register is record
-- HRTIM_TIMxCR register update enable
TIMxCR : Boolean := False;
-- HRTIM_TIMxICR register update enable
TIMxICR : Boolean := False;
-- HRTIM_TIMxDIER register update enable
TIMxDIER : Boolean := False;
-- HRTIM_CNTxR register update enable
TIMxCNT : Boolean := False;
-- HRTIM_PERxR register update enable
TIMxPER : Boolean := False;
-- HRTIM_REPxR register update enable
TIMxREP : Boolean := False;
-- HRTIM_CMP1xR register update enable
TIMxCMP : BDTDUPR_TIMxCMP_Field :=
(As_Array => False, Val => 16#0#);
-- HRTIM_DTxR register update enable
TIMxDTR : Boolean := False;
-- HRTIM_SET1xR register update enable
TIMxSET1R : Boolean := False;
-- HRTIM_RST1xR register update enable
TIMxRST1R : Boolean := False;
-- HRTIM_SET2xR register update enable
TIMxSET2R : Boolean := False;
-- HRTIM_RST2xR register update enable
TIMxRST2R : Boolean := False;
-- HRTIM_EEFxR1 register update enable
TIMxEEFR : BDTDUPR_TIMxEEFR_Field :=
(As_Array => False, Val => 16#0#);
-- HRTIM_RSTxR register update enable
TIMxRSTR : Boolean := False;
-- HRTIM_CHPxR register update enable
TIMxCHPR : Boolean := False;
-- HRTIM_OUTxR register update enable
TIMxOUTR : Boolean := False;
-- HRTIM_FLTxR register update enable
TIMxFLTR : Boolean := False;
-- unspecified
Reserved_21_31 : HAL.UInt11 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for BDTDUPR_Register use record
TIMxCR at 0 range 0 .. 0;
TIMxICR at 0 range 1 .. 1;
TIMxDIER at 0 range 2 .. 2;
TIMxCNT at 0 range 3 .. 3;
TIMxPER at 0 range 4 .. 4;
TIMxREP at 0 range 5 .. 5;
TIMxCMP at 0 range 6 .. 9;
TIMxDTR at 0 range 10 .. 10;
TIMxSET1R at 0 range 11 .. 11;
TIMxRST1R at 0 range 12 .. 12;
TIMxSET2R at 0 range 13 .. 13;
TIMxRST2R at 0 range 14 .. 14;
TIMxEEFR at 0 range 15 .. 16;
TIMxRSTR at 0 range 17 .. 17;
TIMxCHPR at 0 range 18 .. 18;
TIMxOUTR at 0 range 19 .. 19;
TIMxFLTR at 0 range 20 .. 20;
Reserved_21_31 at 0 range 21 .. 31;
end record;
-- BDTEUPR_TIMxCMP array
type BDTEUPR_TIMxCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for BDTEUPR_TIMxCMP
type BDTEUPR_TIMxCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMxCMP as a value
Val : HAL.UInt4;
when True =>
-- TIMxCMP as an array
Arr : BDTEUPR_TIMxCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for BDTEUPR_TIMxCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- BDTEUPR_TIMxEEFR array
type BDTEUPR_TIMxEEFR_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for BDTEUPR_TIMxEEFR
type BDTEUPR_TIMxEEFR_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMxEEFR as a value
Val : HAL.UInt2;
when True =>
-- TIMxEEFR as an array
Arr : BDTEUPR_TIMxEEFR_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for BDTEUPR_TIMxEEFR_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- Burst DMA Timerx update Register
type BDTEUPR_Register is record
-- HRTIM_TIMxCR register update enable
TIMxCR : Boolean := False;
-- HRTIM_TIMxICR register update enable
TIMxICR : Boolean := False;
-- HRTIM_TIMxDIER register update enable
TIMxDIER : Boolean := False;
-- HRTIM_CNTxR register update enable
TIMxCNT : Boolean := False;
-- HRTIM_PERxR register update enable
TIMxPER : Boolean := False;
-- HRTIM_REPxR register update enable
TIMxREP : Boolean := False;
-- HRTIM_CMP1xR register update enable
TIMxCMP : BDTEUPR_TIMxCMP_Field :=
(As_Array => False, Val => 16#0#);
-- HRTIM_DTxR register update enable
TIMxDTR : Boolean := False;
-- HRTIM_SET1xR register update enable
TIMxSET1R : Boolean := False;
-- HRTIM_RST1xR register update enable
TIMxRST1R : Boolean := False;
-- HRTIM_SET2xR register update enable
TIMxSET2R : Boolean := False;
-- HRTIM_RST2xR register update enable
TIMxRST2R : Boolean := False;
-- HRTIM_EEFxR1 register update enable
TIMxEEFR : BDTEUPR_TIMxEEFR_Field :=
(As_Array => False, Val => 16#0#);
-- HRTIM_RSTxR register update enable
TIMxRSTR : Boolean := False;
-- HRTIM_CHPxR register update enable
TIMxCHPR : Boolean := False;
-- HRTIM_OUTxR register update enable
TIMxOUTR : Boolean := False;
-- HRTIM_FLTxR register update enable
TIMxFLTR : Boolean := False;
-- unspecified
Reserved_21_31 : HAL.UInt11 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for BDTEUPR_Register use record
TIMxCR at 0 range 0 .. 0;
TIMxICR at 0 range 1 .. 1;
TIMxDIER at 0 range 2 .. 2;
TIMxCNT at 0 range 3 .. 3;
TIMxPER at 0 range 4 .. 4;
TIMxREP at 0 range 5 .. 5;
TIMxCMP at 0 range 6 .. 9;
TIMxDTR at 0 range 10 .. 10;
TIMxSET1R at 0 range 11 .. 11;
TIMxRST1R at 0 range 12 .. 12;
TIMxSET2R at 0 range 13 .. 13;
TIMxRST2R at 0 range 14 .. 14;
TIMxEEFR at 0 range 15 .. 16;
TIMxRSTR at 0 range 17 .. 17;
TIMxCHPR at 0 range 18 .. 18;
TIMxOUTR at 0 range 19 .. 19;
TIMxFLTR at 0 range 20 .. 20;
Reserved_21_31 at 0 range 21 .. 31;
end record;
subtype MCR_CKPSC_Field is HAL.UInt3;
subtype MCR_SYNCIN_Field is HAL.UInt2;
subtype MCR_SYNCOUT_Field is HAL.UInt2;
subtype MCR_SYNCSRC_Field is HAL.UInt2;
subtype MCR_DACSYNC_Field is HAL.UInt2;
subtype MCR_BRSTDMA_Field is HAL.UInt2;
-- Master Timer Control Register
type MCR_Register is record
-- HRTIM Master Clock prescaler
CKPSC : MCR_CKPSC_Field := 16#0#;
-- Master Continuous mode
CONT : Boolean := False;
-- Master Re-triggerable mode
RETRIG : Boolean := False;
-- Half mode enable
HALF : Boolean := False;
-- unspecified
Reserved_6_7 : HAL.UInt2 := 16#0#;
-- ynchronization input
SYNCIN : MCR_SYNCIN_Field := 16#0#;
-- Synchronization Resets Master
SYNCRSTM : Boolean := False;
-- Synchronization Starts Master
SYNCSTRTM : Boolean := False;
-- Synchronization output
SYNCOUT : MCR_SYNCOUT_Field := 16#0#;
-- Synchronization source
SYNCSRC : MCR_SYNCSRC_Field := 16#0#;
-- Master Counter enable
MCEN : Boolean := False;
-- Timer A counter enable
TACEN : Boolean := False;
-- Timer B counter enable
TBCEN : Boolean := False;
-- Timer C counter enable
TCCEN : Boolean := False;
-- Timer D counter enable
TDCEN : Boolean := False;
-- Timer E counter enable
TECEN : Boolean := False;
-- unspecified
Reserved_22_24 : HAL.UInt3 := 16#0#;
-- AC Synchronization
DACSYNC : MCR_DACSYNC_Field := 16#0#;
-- Preload enable
PREEN : Boolean := False;
-- unspecified
Reserved_28_28 : HAL.Bit := 16#0#;
-- Master Timer Repetition update
MREPU : Boolean := False;
-- Burst DMA Update
BRSTDMA : MCR_BRSTDMA_Field := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for MCR_Register use record
CKPSC at 0 range 0 .. 2;
CONT at 0 range 3 .. 3;
RETRIG at 0 range 4 .. 4;
HALF at 0 range 5 .. 5;
Reserved_6_7 at 0 range 6 .. 7;
SYNCIN at 0 range 8 .. 9;
SYNCRSTM at 0 range 10 .. 10;
SYNCSTRTM at 0 range 11 .. 11;
SYNCOUT at 0 range 12 .. 13;
SYNCSRC at 0 range 14 .. 15;
MCEN at 0 range 16 .. 16;
TACEN at 0 range 17 .. 17;
TBCEN at 0 range 18 .. 18;
TCCEN at 0 range 19 .. 19;
TDCEN at 0 range 20 .. 20;
TECEN at 0 range 21 .. 21;
Reserved_22_24 at 0 range 22 .. 24;
DACSYNC at 0 range 25 .. 26;
PREEN at 0 range 27 .. 27;
Reserved_28_28 at 0 range 28 .. 28;
MREPU at 0 range 29 .. 29;
BRSTDMA at 0 range 30 .. 31;
end record;
-- MISR_MCMP array
type MISR_MCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for MISR_MCMP
type MISR_MCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MCMP as a value
Val : HAL.UInt4;
when True =>
-- MCMP as an array
Arr : MISR_MCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for MISR_MCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- Master Timer Interrupt Status Register
type MISR_Register is record
-- Read-only. Master Compare 1 Interrupt Flag
MCMP : MISR_MCMP_Field;
-- Read-only. Master Repetition Interrupt Flag
MREP : Boolean;
-- Read-only. Sync Input Interrupt Flag
SYNC : Boolean;
-- Read-only. Master Update Interrupt Flag
MUPD : Boolean;
-- unspecified
Reserved_7_31 : HAL.UInt25;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for MISR_Register use record
MCMP at 0 range 0 .. 3;
MREP at 0 range 4 .. 4;
SYNC at 0 range 5 .. 5;
MUPD at 0 range 6 .. 6;
Reserved_7_31 at 0 range 7 .. 31;
end record;
-- Master Timer Interrupt Clear Register
type MICR_Register is record
-- Write-only. Master Compare 1 Interrupt flag clear
MCMP1C : Boolean := False;
-- Write-only. Master Compare 2 Interrupt flag clear
MCMP2C : Boolean := False;
-- Write-only. Master Compare 3 Interrupt flag clear
MCMP3C : Boolean := False;
-- Write-only. Master Compare 4 Interrupt flag clear
MCMP4C : Boolean := False;
-- Write-only. Repetition Interrupt flag clear
MREPC : Boolean := False;
-- Write-only. Sync Input Interrupt flag clear
SYNCC : Boolean := False;
-- Write-only. Master update Interrupt flag clear
MUPDC : Boolean := False;
-- unspecified
Reserved_7_31 : HAL.UInt25 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for MICR_Register use record
MCMP1C at 0 range 0 .. 0;
MCMP2C at 0 range 1 .. 1;
MCMP3C at 0 range 2 .. 2;
MCMP4C at 0 range 3 .. 3;
MREPC at 0 range 4 .. 4;
SYNCC at 0 range 5 .. 5;
MUPDC at 0 range 6 .. 6;
Reserved_7_31 at 0 range 7 .. 31;
end record;
-- MDIER
type MDIER_Register is record
-- MCMP1IE
MCMP1IE : Boolean := False;
-- MCMP2IE
MCMP2IE : Boolean := False;
-- MCMP3IE
MCMP3IE : Boolean := False;
-- MCMP4IE
MCMP4IE : Boolean := False;
-- MREPIE
MREPIE : Boolean := False;
-- SYNCIE
SYNCIE : Boolean := False;
-- MUPDIE
MUPDIE : Boolean := False;
-- unspecified
Reserved_7_15 : HAL.UInt9 := 16#0#;
-- MCMP1DE
MCMP1DE : Boolean := False;
-- MCMP2DE
MCMP2DE : Boolean := False;
-- MCMP3DE
MCMP3DE : Boolean := False;
-- MCMP4DE
MCMP4DE : Boolean := False;
-- MREPDE
MREPDE : Boolean := False;
-- SYNCDE
SYNCDE : Boolean := False;
-- MUPDDE
MUPDDE : Boolean := False;
-- unspecified
Reserved_23_31 : HAL.UInt9 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for MDIER_Register use record
MCMP1IE at 0 range 0 .. 0;
MCMP2IE at 0 range 1 .. 1;
MCMP3IE at 0 range 2 .. 2;
MCMP4IE at 0 range 3 .. 3;
MREPIE at 0 range 4 .. 4;
SYNCIE at 0 range 5 .. 5;
MUPDIE at 0 range 6 .. 6;
Reserved_7_15 at 0 range 7 .. 15;
MCMP1DE at 0 range 16 .. 16;
MCMP2DE at 0 range 17 .. 17;
MCMP3DE at 0 range 18 .. 18;
MCMP4DE at 0 range 19 .. 19;
MREPDE at 0 range 20 .. 20;
SYNCDE at 0 range 21 .. 21;
MUPDDE at 0 range 22 .. 22;
Reserved_23_31 at 0 range 23 .. 31;
end record;
subtype MCNTR_MCNT_Field is HAL.UInt16;
-- Master Timer Counter Register
type MCNTR_Register is record
-- Counter value
MCNT : MCNTR_MCNT_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for MCNTR_Register use record
MCNT at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype MPER_MPER_Field is HAL.UInt16;
-- Master Timer Period Register
type MPER_Register is record
-- Master Timer Period value
MPER : MPER_MPER_Field := 16#FFFF#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for MPER_Register use record
MPER at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype MREP_MREP_Field is HAL.UInt8;
-- Master Timer Repetition Register
type MREP_Register is record
-- Master Timer Repetition counter value
MREP : MREP_MREP_Field := 16#0#;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for MREP_Register use record
MREP at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
subtype MCMP1R_MCMP1_Field is HAL.UInt16;
-- Master Timer Compare 1 Register
type MCMP1R_Register is record
-- Master Timer Compare 1 value
MCMP1 : MCMP1R_MCMP1_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for MCMP1R_Register use record
MCMP1 at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype MCMP2R_MCMP2_Field is HAL.UInt16;
-- Master Timer Compare 2 Register
type MCMP2R_Register is record
-- Master Timer Compare 2 value
MCMP2 : MCMP2R_MCMP2_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for MCMP2R_Register use record
MCMP2 at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype MCMP3R_MCMP3_Field is HAL.UInt16;
-- Master Timer Compare 3 Register
type MCMP3R_Register is record
-- Master Timer Compare 3 value
MCMP3 : MCMP3R_MCMP3_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for MCMP3R_Register use record
MCMP3 at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype MCMP4R_MCMP4_Field is HAL.UInt16;
-- Master Timer Compare 4 Register
type MCMP4R_Register is record
-- Master Timer Compare 4 value
MCMP4 : MCMP4R_MCMP4_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for MCMP4R_Register use record
MCMP4 at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype TIMACR_CKPSCx_Field is HAL.UInt3;
-- TIMACR_DELCMP array element
subtype TIMACR_DELCMP_Element is HAL.UInt2;
-- TIMACR_DELCMP array
type TIMACR_DELCMP_Field_Array is array (2 .. 3) of TIMACR_DELCMP_Element
with Component_Size => 2, Size => 4;
-- Type definition for TIMACR_DELCMP
type TIMACR_DELCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- DELCMP as a value
Val : HAL.UInt4;
when True =>
-- DELCMP as an array
Arr : TIMACR_DELCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for TIMACR_DELCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
subtype TIMACR_DACSYNC_Field is HAL.UInt2;
subtype TIMACR_UPDGAT_Field is HAL.UInt4;
-- Timerx Control Register
type TIMACR_Register is record
-- HRTIM Timer x Clock prescaler
CKPSCx : TIMACR_CKPSCx_Field := 16#0#;
-- Continuous mode
CONT : Boolean := False;
-- Re-triggerable mode
RETRIG : Boolean := False;
-- Half mode enable
HALF : Boolean := False;
-- Push-Pull mode enable
PSHPLL : Boolean := False;
-- unspecified
Reserved_7_9 : HAL.UInt3 := 16#0#;
-- Synchronization Resets Timer x
SYNCRSTx : Boolean := False;
-- Synchronization Starts Timer x
SYNCSTRTx : Boolean := False;
-- Delayed CMP2 mode
DELCMP : TIMACR_DELCMP_Field :=
(As_Array => False, Val => 16#0#);
-- unspecified
Reserved_16_16 : HAL.Bit := 16#0#;
-- Timer x Repetition update
TxREPU : Boolean := False;
-- Timerx reset update
TxRSTU : Boolean := False;
-- unspecified
Reserved_19_19 : HAL.Bit := 16#0#;
-- TBU
TBU : Boolean := False;
-- TCU
TCU : Boolean := False;
-- TDU
TDU : Boolean := False;
-- TEU
TEU : Boolean := False;
-- Master Timer update
MSTU : Boolean := False;
-- AC Synchronization
DACSYNC : TIMACR_DACSYNC_Field := 16#0#;
-- Preload enable
PREEN : Boolean := False;
-- Update Gating
UPDGAT : TIMACR_UPDGAT_Field := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for TIMACR_Register use record
CKPSCx at 0 range 0 .. 2;
CONT at 0 range 3 .. 3;
RETRIG at 0 range 4 .. 4;
HALF at 0 range 5 .. 5;
PSHPLL at 0 range 6 .. 6;
Reserved_7_9 at 0 range 7 .. 9;
SYNCRSTx at 0 range 10 .. 10;
SYNCSTRTx at 0 range 11 .. 11;
DELCMP at 0 range 12 .. 15;
Reserved_16_16 at 0 range 16 .. 16;
TxREPU at 0 range 17 .. 17;
TxRSTU at 0 range 18 .. 18;
Reserved_19_19 at 0 range 19 .. 19;
TBU at 0 range 20 .. 20;
TCU at 0 range 21 .. 21;
TDU at 0 range 22 .. 22;
TEU at 0 range 23 .. 23;
MSTU at 0 range 24 .. 24;
DACSYNC at 0 range 25 .. 26;
PREEN at 0 range 27 .. 27;
UPDGAT at 0 range 28 .. 31;
end record;
-- TIMAISR_CMP array
type TIMAISR_CMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for TIMAISR_CMP
type TIMAISR_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt4;
when True =>
-- CMP as an array
Arr : TIMAISR_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for TIMAISR_CMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- TIMAISR_CPT array
type TIMAISR_CPT_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for TIMAISR_CPT
type TIMAISR_CPT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CPT as a value
Val : HAL.UInt2;
when True =>
-- CPT as an array
Arr : TIMAISR_CPT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for TIMAISR_CPT_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- Timerx Interrupt Status Register
type TIMAISR_Register is record
-- Read-only. Compare 1 Interrupt Flag
CMP : TIMAISR_CMP_Field;
-- Read-only. Repetition Interrupt Flag
REP : Boolean;
-- unspecified
Reserved_5_5 : HAL.Bit;
-- Read-only. Update Interrupt Flag
UPD : Boolean;
-- Read-only. Capture1 Interrupt Flag
CPT : TIMAISR_CPT_Field;
-- Read-only. Output 1 Set Interrupt Flag
SETx1 : Boolean;
-- Read-only. Output 1 Reset Interrupt Flag
RSTx1 : Boolean;
-- Read-only. Output 2 Set Interrupt Flag
SETx2 : Boolean;
-- Read-only. Output 2 Reset Interrupt Flag
RSTx2 : Boolean;
-- Read-only. Reset Interrupt Flag
RST : Boolean;
-- Read-only. Delayed Protection Flag
DLYPRT : Boolean;
-- unspecified
Reserved_15_15 : HAL.Bit;
-- Read-only. Current Push Pull Status
CPPSTAT : Boolean;
-- Read-only. Idle Push Pull Status
IPPSTAT : Boolean;
-- Read-only. Output 1 State
O1STAT : Boolean;
-- Read-only. Output 2 State
O2STAT : Boolean;
-- Read-only. Output 1 Copy
O1CPY : Boolean;
-- Read-only. Output 2 Copy
O2CPY : Boolean;
-- unspecified
Reserved_22_31 : HAL.UInt10;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for TIMAISR_Register use record
CMP at 0 range 0 .. 3;
REP at 0 range 4 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
UPD at 0 range 6 .. 6;
CPT at 0 range 7 .. 8;
SETx1 at 0 range 9 .. 9;
RSTx1 at 0 range 10 .. 10;
SETx2 at 0 range 11 .. 11;
RSTx2 at 0 range 12 .. 12;
RST at 0 range 13 .. 13;
DLYPRT at 0 range 14 .. 14;
Reserved_15_15 at 0 range 15 .. 15;
CPPSTAT at 0 range 16 .. 16;
IPPSTAT at 0 range 17 .. 17;
O1STAT at 0 range 18 .. 18;
O2STAT at 0 range 19 .. 19;
O1CPY at 0 range 20 .. 20;
O2CPY at 0 range 21 .. 21;
Reserved_22_31 at 0 range 22 .. 31;
end record;
-- Timerx Interrupt Clear Register
type TIMAICR_Register is record
-- Write-only. Compare 1 Interrupt flag Clear
CMP1C : Boolean := False;
-- Write-only. Compare 2 Interrupt flag Clear
CMP2C : Boolean := False;
-- Write-only. Compare 3 Interrupt flag Clear
CMP3C : Boolean := False;
-- Write-only. Compare 4 Interrupt flag Clear
CMP4C : Boolean := False;
-- Write-only. Repetition Interrupt flag Clear
REPC : Boolean := False;
-- unspecified
Reserved_5_5 : HAL.Bit := 16#0#;
-- Write-only. Update Interrupt flag Clear
UPDC : Boolean := False;
-- Write-only. Capture1 Interrupt flag Clear
CPT1C : Boolean := False;
-- Write-only. Capture2 Interrupt flag Clear
CPT2C : Boolean := False;
-- Write-only. Output 1 Set flag Clear
SET1xC : Boolean := False;
-- Write-only. Output 1 Reset flag Clear
RSTx1C : Boolean := False;
-- Write-only. Output 2 Set flag Clear
SET2xC : Boolean := False;
-- Write-only. Output 2 Reset flag Clear
RSTx2C : Boolean := False;
-- Write-only. Reset Interrupt flag Clear
RSTC : Boolean := False;
-- Write-only. Delayed Protection Flag Clear
DLYPRTC : Boolean := False;
-- unspecified
Reserved_15_31 : HAL.UInt17 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for TIMAICR_Register use record
CMP1C at 0 range 0 .. 0;
CMP2C at 0 range 1 .. 1;
CMP3C at 0 range 2 .. 2;
CMP4C at 0 range 3 .. 3;
REPC at 0 range 4 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
UPDC at 0 range 6 .. 6;
CPT1C at 0 range 7 .. 7;
CPT2C at 0 range 8 .. 8;
SET1xC at 0 range 9 .. 9;
RSTx1C at 0 range 10 .. 10;
SET2xC at 0 range 11 .. 11;
RSTx2C at 0 range 12 .. 12;
RSTC at 0 range 13 .. 13;
DLYPRTC at 0 range 14 .. 14;
Reserved_15_31 at 0 range 15 .. 31;
end record;
-- TIMxDIER
type TIMADIER_Register is record
-- CMP1IE
CMP1IE : Boolean := False;
-- CMP2IE
CMP2IE : Boolean := False;
-- CMP3IE
CMP3IE : Boolean := False;
-- CMP4IE
CMP4IE : Boolean := False;
-- REPIE
REPIE : Boolean := False;
-- unspecified
Reserved_5_5 : HAL.Bit := 16#0#;
-- UPDIE
UPDIE : Boolean := False;
-- CPT1IE
CPT1IE : Boolean := False;
-- CPT2IE
CPT2IE : Boolean := False;
-- SET1xIE
SET1xIE : Boolean := False;
-- RSTx1IE
RSTx1IE : Boolean := False;
-- SETx2IE
SETx2IE : Boolean := False;
-- RSTx2IE
RSTx2IE : Boolean := False;
-- RSTIE
RSTIE : Boolean := False;
-- DLYPRTIE
DLYPRTIE : Boolean := False;
-- unspecified
Reserved_15_15 : HAL.Bit := 16#0#;
-- CMP1DE
CMP1DE : Boolean := False;
-- CMP2DE
CMP2DE : Boolean := False;
-- CMP3DE
CMP3DE : Boolean := False;
-- CMP4DE
CMP4DE : Boolean := False;
-- REPDE
REPDE : Boolean := False;
-- unspecified
Reserved_21_21 : HAL.Bit := 16#0#;
-- UPDDE
UPDDE : Boolean := False;
-- CPT1DE
CPT1DE : Boolean := False;
-- CPT2DE
CPT2DE : Boolean := False;
-- SET1xDE
SET1xDE : Boolean := False;
-- RSTx1DE
RSTx1DE : Boolean := False;
-- SETx2DE
SETx2DE : Boolean := False;
-- RSTx2DE
RSTx2DE : Boolean := False;
-- RSTDE
RSTDE : Boolean := False;
-- DLYPRTDE
DLYPRTDE : Boolean := False;
-- unspecified
Reserved_31_31 : HAL.Bit := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for TIMADIER_Register use record
CMP1IE at 0 range 0 .. 0;
CMP2IE at 0 range 1 .. 1;
CMP3IE at 0 range 2 .. 2;
CMP4IE at 0 range 3 .. 3;
REPIE at 0 range 4 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
UPDIE at 0 range 6 .. 6;
CPT1IE at 0 range 7 .. 7;
CPT2IE at 0 range 8 .. 8;
SET1xIE at 0 range 9 .. 9;
RSTx1IE at 0 range 10 .. 10;
SETx2IE at 0 range 11 .. 11;
RSTx2IE at 0 range 12 .. 12;
RSTIE at 0 range 13 .. 13;
DLYPRTIE at 0 range 14 .. 14;
Reserved_15_15 at 0 range 15 .. 15;
CMP1DE at 0 range 16 .. 16;
CMP2DE at 0 range 17 .. 17;
CMP3DE at 0 range 18 .. 18;
CMP4DE at 0 range 19 .. 19;
REPDE at 0 range 20 .. 20;
Reserved_21_21 at 0 range 21 .. 21;
UPDDE at 0 range 22 .. 22;
CPT1DE at 0 range 23 .. 23;
CPT2DE at 0 range 24 .. 24;
SET1xDE at 0 range 25 .. 25;
RSTx1DE at 0 range 26 .. 26;
SETx2DE at 0 range 27 .. 27;
RSTx2DE at 0 range 28 .. 28;
RSTDE at 0 range 29 .. 29;
DLYPRTDE at 0 range 30 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype CNTAR_CNTx_Field is HAL.UInt16;
-- Timerx Counter Register
type CNTAR_Register is record
-- Timerx Counter value
CNTx : CNTAR_CNTx_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CNTAR_Register use record
CNTx at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype PERAR_PERx_Field is HAL.UInt16;
-- Timerx Period Register
type PERAR_Register is record
-- Timerx Period value
PERx : PERAR_PERx_Field := 16#FFFF#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for PERAR_Register use record
PERx at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype REPAR_REPx_Field is HAL.UInt8;
-- Timerx Repetition Register
type REPAR_Register is record
-- Timerx Repetition counter value
REPx : REPAR_REPx_Field := 16#0#;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for REPAR_Register use record
REPx at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
subtype CMP1AR_CMP1x_Field is HAL.UInt16;
-- Timerx Compare 1 Register
type CMP1AR_Register is record
-- Timerx Compare 1 value
CMP1x : CMP1AR_CMP1x_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CMP1AR_Register use record
CMP1x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CMP1CAR_CMP1x_Field is HAL.UInt16;
subtype CMP1CAR_REPx_Field is HAL.UInt8;
-- Timerx Compare 1 Compound Register
type CMP1CAR_Register is record
-- Timerx Compare 1 value
CMP1x : CMP1CAR_CMP1x_Field := 16#0#;
-- Timerx Repetition value (aliased from HRTIM_REPx register)
REPx : CMP1CAR_REPx_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 CMP1CAR_Register use record
CMP1x at 0 range 0 .. 15;
REPx at 0 range 16 .. 23;
Reserved_24_31 at 0 range 24 .. 31;
end record;
subtype CMP2AR_CMP2x_Field is HAL.UInt16;
-- Timerx Compare 2 Register
type CMP2AR_Register is record
-- Timerx Compare 2 value
CMP2x : CMP2AR_CMP2x_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CMP2AR_Register use record
CMP2x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CMP3AR_CMP3x_Field is HAL.UInt16;
-- Timerx Compare 3 Register
type CMP3AR_Register is record
-- Timerx Compare 3 value
CMP3x : CMP3AR_CMP3x_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CMP3AR_Register use record
CMP3x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CMP4AR_CMP4x_Field is HAL.UInt16;
-- Timerx Compare 4 Register
type CMP4AR_Register is record
-- Timerx Compare 4 value
CMP4x : CMP4AR_CMP4x_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CMP4AR_Register use record
CMP4x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CPT1AR_CPT1x_Field is HAL.UInt16;
-- Timerx Capture 1 Register
type CPT1AR_Register is record
-- Read-only. Timerx Capture 1 value
CPT1x : CPT1AR_CPT1x_Field;
-- unspecified
Reserved_16_31 : HAL.UInt16;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CPT1AR_Register use record
CPT1x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CPT2AR_CPT2x_Field is HAL.UInt16;
-- Timerx Capture 2 Register
type CPT2AR_Register is record
-- Read-only. Timerx Capture 2 value
CPT2x : CPT2AR_CPT2x_Field;
-- unspecified
Reserved_16_31 : HAL.UInt16;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CPT2AR_Register use record
CPT2x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype DTAR_DTRx_Field is HAL.UInt9;
subtype DTAR_DTPRSC_Field is HAL.UInt3;
subtype DTAR_DTFx_Field is HAL.UInt9;
-- Timerx Deadtime Register
type DTAR_Register is record
-- Deadtime Rising value
DTRx : DTAR_DTRx_Field := 16#0#;
-- Sign Deadtime Rising value
SDTRx : Boolean := False;
-- Deadtime Prescaler
DTPRSC : DTAR_DTPRSC_Field := 16#0#;
-- unspecified
Reserved_13_13 : HAL.Bit := 16#0#;
-- Deadtime Rising Sign Lock
DTRSLKx : Boolean := False;
-- Deadtime Rising Lock
DTRLKx : Boolean := False;
-- Deadtime Falling value
DTFx : DTAR_DTFx_Field := 16#0#;
-- Sign Deadtime Falling value
SDTFx : Boolean := False;
-- unspecified
Reserved_26_29 : HAL.UInt4 := 16#0#;
-- Deadtime Falling Sign Lock
DTFSLKx : Boolean := False;
-- Deadtime Falling Lock
DTFLKx : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for DTAR_Register use record
DTRx at 0 range 0 .. 8;
SDTRx at 0 range 9 .. 9;
DTPRSC at 0 range 10 .. 12;
Reserved_13_13 at 0 range 13 .. 13;
DTRSLKx at 0 range 14 .. 14;
DTRLKx at 0 range 15 .. 15;
DTFx at 0 range 16 .. 24;
SDTFx at 0 range 25 .. 25;
Reserved_26_29 at 0 range 26 .. 29;
DTFSLKx at 0 range 30 .. 30;
DTFLKx at 0 range 31 .. 31;
end record;
-- SETA1R_CMP array
type SETA1R_CMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for SETA1R_CMP
type SETA1R_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt4;
when True =>
-- CMP as an array
Arr : SETA1R_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for SETA1R_CMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- SETA1R_MSTCMP array
type SETA1R_MSTCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for SETA1R_MSTCMP
type SETA1R_MSTCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MSTCMP as a value
Val : HAL.UInt4;
when True =>
-- MSTCMP as an array
Arr : SETA1R_MSTCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for SETA1R_MSTCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- SETA1R_TIMEVNT array
type SETA1R_TIMEVNT_Field_Array is array (1 .. 9) of Boolean
with Component_Size => 1, Size => 9;
-- Type definition for SETA1R_TIMEVNT
type SETA1R_TIMEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMEVNT as a value
Val : HAL.UInt9;
when True =>
-- TIMEVNT as an array
Arr : SETA1R_TIMEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 9;
for SETA1R_TIMEVNT_Field use record
Val at 0 range 0 .. 8;
Arr at 0 range 0 .. 8;
end record;
-- SETA1R_EXTEVNT array
type SETA1R_EXTEVNT_Field_Array is array (1 .. 10) of Boolean
with Component_Size => 1, Size => 10;
-- Type definition for SETA1R_EXTEVNT
type SETA1R_EXTEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- EXTEVNT as a value
Val : HAL.UInt10;
when True =>
-- EXTEVNT as an array
Arr : SETA1R_EXTEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 10;
for SETA1R_EXTEVNT_Field use record
Val at 0 range 0 .. 9;
Arr at 0 range 0 .. 9;
end record;
-- Timerx Output1 Set Register
type SETA1R_Register is record
-- Software Set trigger
SST : Boolean := False;
-- Timer A resynchronizaton
RESYNC : Boolean := False;
-- Timer A Period
PER : Boolean := False;
-- Timer A compare 1
CMP : SETA1R_CMP_Field := (As_Array => False, Val => 16#0#);
-- Master Period
MSTPER : Boolean := False;
-- Master Compare 1
MSTCMP : SETA1R_MSTCMP_Field := (As_Array => False, Val => 16#0#);
-- Timer Event 1
TIMEVNT : SETA1R_TIMEVNT_Field := (As_Array => False, Val => 16#0#);
-- External Event 1
EXTEVNT : SETA1R_EXTEVNT_Field := (As_Array => False, Val => 16#0#);
-- Registers update (transfer preload to active)
UPDATE : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for SETA1R_Register use record
SST at 0 range 0 .. 0;
RESYNC at 0 range 1 .. 1;
PER at 0 range 2 .. 2;
CMP at 0 range 3 .. 6;
MSTPER at 0 range 7 .. 7;
MSTCMP at 0 range 8 .. 11;
TIMEVNT at 0 range 12 .. 20;
EXTEVNT at 0 range 21 .. 30;
UPDATE at 0 range 31 .. 31;
end record;
-- RSTA1R_CMP array
type RSTA1R_CMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for RSTA1R_CMP
type RSTA1R_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt4;
when True =>
-- CMP as an array
Arr : RSTA1R_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for RSTA1R_CMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- RSTA1R_MSTCMP array
type RSTA1R_MSTCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for RSTA1R_MSTCMP
type RSTA1R_MSTCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MSTCMP as a value
Val : HAL.UInt4;
when True =>
-- MSTCMP as an array
Arr : RSTA1R_MSTCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for RSTA1R_MSTCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- RSTA1R_TIMEVNT array
type RSTA1R_TIMEVNT_Field_Array is array (1 .. 9) of Boolean
with Component_Size => 1, Size => 9;
-- Type definition for RSTA1R_TIMEVNT
type RSTA1R_TIMEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMEVNT as a value
Val : HAL.UInt9;
when True =>
-- TIMEVNT as an array
Arr : RSTA1R_TIMEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 9;
for RSTA1R_TIMEVNT_Field use record
Val at 0 range 0 .. 8;
Arr at 0 range 0 .. 8;
end record;
-- RSTA1R_EXTEVNT array
type RSTA1R_EXTEVNT_Field_Array is array (1 .. 10) of Boolean
with Component_Size => 1, Size => 10;
-- Type definition for RSTA1R_EXTEVNT
type RSTA1R_EXTEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- EXTEVNT as a value
Val : HAL.UInt10;
when True =>
-- EXTEVNT as an array
Arr : RSTA1R_EXTEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 10;
for RSTA1R_EXTEVNT_Field use record
Val at 0 range 0 .. 9;
Arr at 0 range 0 .. 9;
end record;
-- Timerx Output1 Reset Register
type RSTA1R_Register is record
-- SRT
SRT : Boolean := False;
-- RESYNC
RESYNC : Boolean := False;
-- PER
PER : Boolean := False;
-- CMP1
CMP : RSTA1R_CMP_Field := (As_Array => False, Val => 16#0#);
-- MSTPER
MSTPER : Boolean := False;
-- MSTCMP1
MSTCMP : RSTA1R_MSTCMP_Field := (As_Array => False, Val => 16#0#);
-- TIMEVNT1
TIMEVNT : RSTA1R_TIMEVNT_Field := (As_Array => False, Val => 16#0#);
-- EXTEVNT1
EXTEVNT : RSTA1R_EXTEVNT_Field := (As_Array => False, Val => 16#0#);
-- UPDATE
UPDATE : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for RSTA1R_Register use record
SRT at 0 range 0 .. 0;
RESYNC at 0 range 1 .. 1;
PER at 0 range 2 .. 2;
CMP at 0 range 3 .. 6;
MSTPER at 0 range 7 .. 7;
MSTCMP at 0 range 8 .. 11;
TIMEVNT at 0 range 12 .. 20;
EXTEVNT at 0 range 21 .. 30;
UPDATE at 0 range 31 .. 31;
end record;
-- SETA2R_CMP array
type SETA2R_CMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for SETA2R_CMP
type SETA2R_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt4;
when True =>
-- CMP as an array
Arr : SETA2R_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for SETA2R_CMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- SETA2R_MSTCMP array
type SETA2R_MSTCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for SETA2R_MSTCMP
type SETA2R_MSTCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MSTCMP as a value
Val : HAL.UInt4;
when True =>
-- MSTCMP as an array
Arr : SETA2R_MSTCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for SETA2R_MSTCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- SETA2R_TIMEVNT array
type SETA2R_TIMEVNT_Field_Array is array (1 .. 9) of Boolean
with Component_Size => 1, Size => 9;
-- Type definition for SETA2R_TIMEVNT
type SETA2R_TIMEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMEVNT as a value
Val : HAL.UInt9;
when True =>
-- TIMEVNT as an array
Arr : SETA2R_TIMEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 9;
for SETA2R_TIMEVNT_Field use record
Val at 0 range 0 .. 8;
Arr at 0 range 0 .. 8;
end record;
-- SETA2R_EXTEVNT array
type SETA2R_EXTEVNT_Field_Array is array (1 .. 10) of Boolean
with Component_Size => 1, Size => 10;
-- Type definition for SETA2R_EXTEVNT
type SETA2R_EXTEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- EXTEVNT as a value
Val : HAL.UInt10;
when True =>
-- EXTEVNT as an array
Arr : SETA2R_EXTEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 10;
for SETA2R_EXTEVNT_Field use record
Val at 0 range 0 .. 9;
Arr at 0 range 0 .. 9;
end record;
-- Timerx Output2 Set Register
type SETA2R_Register is record
-- SST
SST : Boolean := False;
-- RESYNC
RESYNC : Boolean := False;
-- PER
PER : Boolean := False;
-- CMP1
CMP : SETA2R_CMP_Field := (As_Array => False, Val => 16#0#);
-- MSTPER
MSTPER : Boolean := False;
-- MSTCMP1
MSTCMP : SETA2R_MSTCMP_Field := (As_Array => False, Val => 16#0#);
-- TIMEVNT1
TIMEVNT : SETA2R_TIMEVNT_Field := (As_Array => False, Val => 16#0#);
-- EXTEVNT1
EXTEVNT : SETA2R_EXTEVNT_Field := (As_Array => False, Val => 16#0#);
-- UPDATE
UPDATE : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for SETA2R_Register use record
SST at 0 range 0 .. 0;
RESYNC at 0 range 1 .. 1;
PER at 0 range 2 .. 2;
CMP at 0 range 3 .. 6;
MSTPER at 0 range 7 .. 7;
MSTCMP at 0 range 8 .. 11;
TIMEVNT at 0 range 12 .. 20;
EXTEVNT at 0 range 21 .. 30;
UPDATE at 0 range 31 .. 31;
end record;
-- RSTA2R_CMP array
type RSTA2R_CMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for RSTA2R_CMP
type RSTA2R_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt4;
when True =>
-- CMP as an array
Arr : RSTA2R_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for RSTA2R_CMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- RSTA2R_MSTCMP array
type RSTA2R_MSTCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for RSTA2R_MSTCMP
type RSTA2R_MSTCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MSTCMP as a value
Val : HAL.UInt4;
when True =>
-- MSTCMP as an array
Arr : RSTA2R_MSTCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for RSTA2R_MSTCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- RSTA2R_TIMEVNT array
type RSTA2R_TIMEVNT_Field_Array is array (1 .. 9) of Boolean
with Component_Size => 1, Size => 9;
-- Type definition for RSTA2R_TIMEVNT
type RSTA2R_TIMEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMEVNT as a value
Val : HAL.UInt9;
when True =>
-- TIMEVNT as an array
Arr : RSTA2R_TIMEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 9;
for RSTA2R_TIMEVNT_Field use record
Val at 0 range 0 .. 8;
Arr at 0 range 0 .. 8;
end record;
-- RSTA2R_EXTEVNT array
type RSTA2R_EXTEVNT_Field_Array is array (1 .. 10) of Boolean
with Component_Size => 1, Size => 10;
-- Type definition for RSTA2R_EXTEVNT
type RSTA2R_EXTEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- EXTEVNT as a value
Val : HAL.UInt10;
when True =>
-- EXTEVNT as an array
Arr : RSTA2R_EXTEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 10;
for RSTA2R_EXTEVNT_Field use record
Val at 0 range 0 .. 9;
Arr at 0 range 0 .. 9;
end record;
-- Timerx Output2 Reset Register
type RSTA2R_Register is record
-- SRT
SRT : Boolean := False;
-- RESYNC
RESYNC : Boolean := False;
-- PER
PER : Boolean := False;
-- CMP1
CMP : RSTA2R_CMP_Field := (As_Array => False, Val => 16#0#);
-- MSTPER
MSTPER : Boolean := False;
-- MSTCMP1
MSTCMP : RSTA2R_MSTCMP_Field := (As_Array => False, Val => 16#0#);
-- TIMEVNT1
TIMEVNT : RSTA2R_TIMEVNT_Field := (As_Array => False, Val => 16#0#);
-- EXTEVNT1
EXTEVNT : RSTA2R_EXTEVNT_Field := (As_Array => False, Val => 16#0#);
-- UPDATE
UPDATE : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for RSTA2R_Register use record
SRT at 0 range 0 .. 0;
RESYNC at 0 range 1 .. 1;
PER at 0 range 2 .. 2;
CMP at 0 range 3 .. 6;
MSTPER at 0 range 7 .. 7;
MSTCMP at 0 range 8 .. 11;
TIMEVNT at 0 range 12 .. 20;
EXTEVNT at 0 range 21 .. 30;
UPDATE at 0 range 31 .. 31;
end record;
subtype EEFAR1_EE1FLTR_Field is HAL.UInt4;
subtype EEFAR1_EE2FLTR_Field is HAL.UInt4;
subtype EEFAR1_EE3FLTR_Field is HAL.UInt4;
subtype EEFAR1_EE4FLTR_Field is HAL.UInt4;
subtype EEFAR1_EE5FLTR_Field is HAL.UInt4;
-- Timerx External Event Filtering Register 1
type EEFAR1_Register is record
-- External Event 1 latch
EE1LTCH : Boolean := False;
-- External Event 1 filter
EE1FLTR : EEFAR1_EE1FLTR_Field := 16#0#;
-- unspecified
Reserved_5_5 : HAL.Bit := 16#0#;
-- External Event 2 latch
EE2LTCH : Boolean := False;
-- External Event 2 filter
EE2FLTR : EEFAR1_EE2FLTR_Field := 16#0#;
-- unspecified
Reserved_11_11 : HAL.Bit := 16#0#;
-- External Event 3 latch
EE3LTCH : Boolean := False;
-- External Event 3 filter
EE3FLTR : EEFAR1_EE3FLTR_Field := 16#0#;
-- unspecified
Reserved_17_17 : HAL.Bit := 16#0#;
-- External Event 4 latch
EE4LTCH : Boolean := False;
-- External Event 4 filter
EE4FLTR : EEFAR1_EE4FLTR_Field := 16#0#;
-- unspecified
Reserved_23_23 : HAL.Bit := 16#0#;
-- External Event 5 latch
EE5LTCH : Boolean := False;
-- External Event 5 filter
EE5FLTR : EEFAR1_EE5FLTR_Field := 16#0#;
-- unspecified
Reserved_29_31 : HAL.UInt3 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for EEFAR1_Register use record
EE1LTCH at 0 range 0 .. 0;
EE1FLTR at 0 range 1 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
EE2LTCH at 0 range 6 .. 6;
EE2FLTR at 0 range 7 .. 10;
Reserved_11_11 at 0 range 11 .. 11;
EE3LTCH at 0 range 12 .. 12;
EE3FLTR at 0 range 13 .. 16;
Reserved_17_17 at 0 range 17 .. 17;
EE4LTCH at 0 range 18 .. 18;
EE4FLTR at 0 range 19 .. 22;
Reserved_23_23 at 0 range 23 .. 23;
EE5LTCH at 0 range 24 .. 24;
EE5FLTR at 0 range 25 .. 28;
Reserved_29_31 at 0 range 29 .. 31;
end record;
subtype EEFAR2_EE6FLTR_Field is HAL.UInt4;
subtype EEFAR2_EE7FLTR_Field is HAL.UInt4;
subtype EEFAR2_EE8FLTR_Field is HAL.UInt4;
subtype EEFAR2_EE9FLTR_Field is HAL.UInt4;
subtype EEFAR2_EE10FLTR_Field is HAL.UInt4;
-- Timerx External Event Filtering Register 2
type EEFAR2_Register is record
-- External Event 6 latch
EE6LTCH : Boolean := False;
-- External Event 6 filter
EE6FLTR : EEFAR2_EE6FLTR_Field := 16#0#;
-- unspecified
Reserved_5_5 : HAL.Bit := 16#0#;
-- External Event 7 latch
EE7LTCH : Boolean := False;
-- External Event 7 filter
EE7FLTR : EEFAR2_EE7FLTR_Field := 16#0#;
-- unspecified
Reserved_11_11 : HAL.Bit := 16#0#;
-- External Event 8 latch
EE8LTCH : Boolean := False;
-- External Event 8 filter
EE8FLTR : EEFAR2_EE8FLTR_Field := 16#0#;
-- unspecified
Reserved_17_17 : HAL.Bit := 16#0#;
-- External Event 9 latch
EE9LTCH : Boolean := False;
-- External Event 9 filter
EE9FLTR : EEFAR2_EE9FLTR_Field := 16#0#;
-- unspecified
Reserved_23_23 : HAL.Bit := 16#0#;
-- External Event 10 latch
EE10LTCH : Boolean := False;
-- External Event 10 filter
EE10FLTR : EEFAR2_EE10FLTR_Field := 16#0#;
-- unspecified
Reserved_29_31 : HAL.UInt3 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for EEFAR2_Register use record
EE6LTCH at 0 range 0 .. 0;
EE6FLTR at 0 range 1 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
EE7LTCH at 0 range 6 .. 6;
EE7FLTR at 0 range 7 .. 10;
Reserved_11_11 at 0 range 11 .. 11;
EE8LTCH at 0 range 12 .. 12;
EE8FLTR at 0 range 13 .. 16;
Reserved_17_17 at 0 range 17 .. 17;
EE9LTCH at 0 range 18 .. 18;
EE9FLTR at 0 range 19 .. 22;
Reserved_23_23 at 0 range 23 .. 23;
EE10LTCH at 0 range 24 .. 24;
EE10FLTR at 0 range 25 .. 28;
Reserved_29_31 at 0 range 29 .. 31;
end record;
-- RSTAR_CMP array
type RSTAR_CMP_Field_Array is array (2 .. 3) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for RSTAR_CMP
type RSTAR_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt2;
when True =>
-- CMP as an array
Arr : RSTAR_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for RSTAR_CMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- RSTAR_MSTCMP array
type RSTAR_MSTCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for RSTAR_MSTCMP
type RSTAR_MSTCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MSTCMP as a value
Val : HAL.UInt4;
when True =>
-- MSTCMP as an array
Arr : RSTAR_MSTCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for RSTAR_MSTCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- RSTAR_EXTEVNT array
type RSTAR_EXTEVNT_Field_Array is array (1 .. 10) of Boolean
with Component_Size => 1, Size => 10;
-- Type definition for RSTAR_EXTEVNT
type RSTAR_EXTEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- EXTEVNT as a value
Val : HAL.UInt10;
when True =>
-- EXTEVNT as an array
Arr : RSTAR_EXTEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 10;
for RSTAR_EXTEVNT_Field use record
Val at 0 range 0 .. 9;
Arr at 0 range 0 .. 9;
end record;
-- RSTAR_TIMBCMP array
type RSTAR_TIMBCMP_Field_Array is array (1 .. 3) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for RSTAR_TIMBCMP
type RSTAR_TIMBCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMBCMP as a value
Val : HAL.UInt3;
when True =>
-- TIMBCMP as an array
Arr : RSTAR_TIMBCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for RSTAR_TIMBCMP_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- RSTAR_TIMCCMP array
type RSTAR_TIMCCMP_Field_Array is array (1 .. 3) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for RSTAR_TIMCCMP
type RSTAR_TIMCCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMCCMP as a value
Val : HAL.UInt3;
when True =>
-- TIMCCMP as an array
Arr : RSTAR_TIMCCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for RSTAR_TIMCCMP_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- RSTAR_TIMDCMP array
type RSTAR_TIMDCMP_Field_Array is array (1 .. 3) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for RSTAR_TIMDCMP
type RSTAR_TIMDCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMDCMP as a value
Val : HAL.UInt3;
when True =>
-- TIMDCMP as an array
Arr : RSTAR_TIMDCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for RSTAR_TIMDCMP_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- RSTAR_TIMECMP array
type RSTAR_TIMECMP_Field_Array is array (1 .. 3) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for RSTAR_TIMECMP
type RSTAR_TIMECMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMECMP as a value
Val : HAL.UInt3;
when True =>
-- TIMECMP as an array
Arr : RSTAR_TIMECMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for RSTAR_TIMECMP_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- TimerA Reset Register
type RSTAR_Register is record
-- unspecified
Reserved_0_0 : HAL.Bit := 16#0#;
-- Timer A Update reset
UPDT : Boolean := False;
-- Timer A compare 2 reset
CMP : RSTAR_CMP_Field := (As_Array => False, Val => 16#0#);
-- Master timer Period
MSTPER : Boolean := False;
-- Master compare 1
MSTCMP : RSTAR_MSTCMP_Field :=
(As_Array => False, Val => 16#0#);
-- External Event 1
EXTEVNT : RSTAR_EXTEVNT_Field :=
(As_Array => False, Val => 16#0#);
-- Timer B Compare 1
TIMBCMP : RSTAR_TIMBCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer C Compare 1
TIMCCMP : RSTAR_TIMCCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer D Compare 1
TIMDCMP : RSTAR_TIMDCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer E Compare 1
TIMECMP : RSTAR_TIMECMP_Field :=
(As_Array => False, Val => 16#0#);
-- unspecified
Reserved_31_31 : HAL.Bit := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for RSTAR_Register use record
Reserved_0_0 at 0 range 0 .. 0;
UPDT at 0 range 1 .. 1;
CMP at 0 range 2 .. 3;
MSTPER at 0 range 4 .. 4;
MSTCMP at 0 range 5 .. 8;
EXTEVNT at 0 range 9 .. 18;
TIMBCMP at 0 range 19 .. 21;
TIMCCMP at 0 range 22 .. 24;
TIMDCMP at 0 range 25 .. 27;
TIMECMP at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype CHPAR_CHPFRQ_Field is HAL.UInt4;
subtype CHPAR_CHPDTY_Field is HAL.UInt3;
subtype CHPAR_STRTPW_Field is HAL.UInt4;
-- Timerx Chopper Register
type CHPAR_Register is record
-- Timerx carrier frequency value
CHPFRQ : CHPAR_CHPFRQ_Field := 16#0#;
-- Timerx chopper duty cycle value
CHPDTY : CHPAR_CHPDTY_Field := 16#0#;
-- STRTPW
STRTPW : CHPAR_STRTPW_Field := 16#0#;
-- unspecified
Reserved_11_31 : HAL.UInt21 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CHPAR_Register use record
CHPFRQ at 0 range 0 .. 3;
CHPDTY at 0 range 4 .. 6;
STRTPW at 0 range 7 .. 10;
Reserved_11_31 at 0 range 11 .. 31;
end record;
-- CPT1ACR_TBCMP array
type CPT1ACR_TBCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT1ACR_TBCMP
type CPT1ACR_TBCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TBCMP as a value
Val : HAL.UInt2;
when True =>
-- TBCMP as an array
Arr : CPT1ACR_TBCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT1ACR_TBCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT1ACR_TCCMP array
type CPT1ACR_TCCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT1ACR_TCCMP
type CPT1ACR_TCCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TCCMP as a value
Val : HAL.UInt2;
when True =>
-- TCCMP as an array
Arr : CPT1ACR_TCCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT1ACR_TCCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT1ACR_TDCMP array
type CPT1ACR_TDCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT1ACR_TDCMP
type CPT1ACR_TDCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TDCMP as a value
Val : HAL.UInt2;
when True =>
-- TDCMP as an array
Arr : CPT1ACR_TDCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT1ACR_TDCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT1ACR_TECMP array
type CPT1ACR_TECMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT1ACR_TECMP
type CPT1ACR_TECMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TECMP as a value
Val : HAL.UInt2;
when True =>
-- TECMP as an array
Arr : CPT1ACR_TECMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT1ACR_TECMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- Timerx Capture 2 Control Register
type CPT1ACR_Register is record
-- Software Capture
SWCPT : Boolean := False;
-- Update Capture
UDPCPT : Boolean := False;
-- External Event 1 Capture
EXEV1CPT : Boolean := False;
-- External Event 2 Capture
EXEV2CPT : Boolean := False;
-- External Event 3 Capture
EXEV3CPT : Boolean := False;
-- External Event 4 Capture
EXEV4CPT : Boolean := False;
-- External Event 5 Capture
EXEV5CPT : Boolean := False;
-- External Event 6 Capture
EXEV6CPT : Boolean := False;
-- External Event 7 Capture
EXEV7CPT : Boolean := False;
-- External Event 8 Capture
EXEV8CPT : Boolean := False;
-- External Event 9 Capture
EXEV9CPT : Boolean := False;
-- External Event 10 Capture
EXEV10CPT : Boolean := False;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Timer B output 1 Set
TB1SET : Boolean := False;
-- Timer B output 1 Reset
TB1RST : Boolean := False;
-- Timer B Compare 1
TBCMP : CPT1ACR_TBCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer C output 1 Set
TC1SET : Boolean := False;
-- Timer C output 1 Reset
TC1RST : Boolean := False;
-- Timer C Compare 1
TCCMP : CPT1ACR_TCCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer D output 1 Set
TD1SET : Boolean := False;
-- Timer D output 1 Reset
TD1RST : Boolean := False;
-- Timer D Compare 1
TDCMP : CPT1ACR_TDCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer E output 1 Set
TE1SET : Boolean := False;
-- Timer E output 1 Reset
TE1RST : Boolean := False;
-- Timer E Compare 1
TECMP : CPT1ACR_TECMP_Field :=
(As_Array => False, Val => 16#0#);
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CPT1ACR_Register use record
SWCPT at 0 range 0 .. 0;
UDPCPT at 0 range 1 .. 1;
EXEV1CPT at 0 range 2 .. 2;
EXEV2CPT at 0 range 3 .. 3;
EXEV3CPT at 0 range 4 .. 4;
EXEV4CPT at 0 range 5 .. 5;
EXEV5CPT at 0 range 6 .. 6;
EXEV6CPT at 0 range 7 .. 7;
EXEV7CPT at 0 range 8 .. 8;
EXEV8CPT at 0 range 9 .. 9;
EXEV9CPT at 0 range 10 .. 10;
EXEV10CPT at 0 range 11 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
TB1SET at 0 range 16 .. 16;
TB1RST at 0 range 17 .. 17;
TBCMP at 0 range 18 .. 19;
TC1SET at 0 range 20 .. 20;
TC1RST at 0 range 21 .. 21;
TCCMP at 0 range 22 .. 23;
TD1SET at 0 range 24 .. 24;
TD1RST at 0 range 25 .. 25;
TDCMP at 0 range 26 .. 27;
TE1SET at 0 range 28 .. 28;
TE1RST at 0 range 29 .. 29;
TECMP at 0 range 30 .. 31;
end record;
-- CPT2ACR_TBCMP array
type CPT2ACR_TBCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT2ACR_TBCMP
type CPT2ACR_TBCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TBCMP as a value
Val : HAL.UInt2;
when True =>
-- TBCMP as an array
Arr : CPT2ACR_TBCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT2ACR_TBCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT2ACR_TCCMP array
type CPT2ACR_TCCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT2ACR_TCCMP
type CPT2ACR_TCCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TCCMP as a value
Val : HAL.UInt2;
when True =>
-- TCCMP as an array
Arr : CPT2ACR_TCCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT2ACR_TCCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT2ACR_TDCMP array
type CPT2ACR_TDCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT2ACR_TDCMP
type CPT2ACR_TDCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TDCMP as a value
Val : HAL.UInt2;
when True =>
-- TDCMP as an array
Arr : CPT2ACR_TDCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT2ACR_TDCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT2ACR_TECMP array
type CPT2ACR_TECMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT2ACR_TECMP
type CPT2ACR_TECMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TECMP as a value
Val : HAL.UInt2;
when True =>
-- TECMP as an array
Arr : CPT2ACR_TECMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT2ACR_TECMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT2xCR
type CPT2ACR_Register is record
-- Software Capture
SWCPT : Boolean := False;
-- Update Capture
UDPCPT : Boolean := False;
-- External Event 1 Capture
EXEV1CPT : Boolean := False;
-- External Event 2 Capture
EXEV2CPT : Boolean := False;
-- External Event 3 Capture
EXEV3CPT : Boolean := False;
-- External Event 4 Capture
EXEV4CPT : Boolean := False;
-- External Event 5 Capture
EXEV5CPT : Boolean := False;
-- External Event 6 Capture
EXEV6CPT : Boolean := False;
-- External Event 7 Capture
EXEV7CPT : Boolean := False;
-- External Event 8 Capture
EXEV8CPT : Boolean := False;
-- External Event 9 Capture
EXEV9CPT : Boolean := False;
-- External Event 10 Capture
EXEV10CPT : Boolean := False;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Timer B output 1 Set
TB1SET : Boolean := False;
-- Timer B output 1 Reset
TB1RST : Boolean := False;
-- Timer B Compare 1
TBCMP : CPT2ACR_TBCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer C output 1 Set
TC1SET : Boolean := False;
-- Timer C output 1 Reset
TC1RST : Boolean := False;
-- Timer C Compare 1
TCCMP : CPT2ACR_TCCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer D output 1 Set
TD1SET : Boolean := False;
-- Timer D output 1 Reset
TD1RST : Boolean := False;
-- Timer D Compare 1
TDCMP : CPT2ACR_TDCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer E output 1 Set
TE1SET : Boolean := False;
-- Timer E output 1 Reset
TE1RST : Boolean := False;
-- Timer E Compare 1
TECMP : CPT2ACR_TECMP_Field :=
(As_Array => False, Val => 16#0#);
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CPT2ACR_Register use record
SWCPT at 0 range 0 .. 0;
UDPCPT at 0 range 1 .. 1;
EXEV1CPT at 0 range 2 .. 2;
EXEV2CPT at 0 range 3 .. 3;
EXEV3CPT at 0 range 4 .. 4;
EXEV4CPT at 0 range 5 .. 5;
EXEV5CPT at 0 range 6 .. 6;
EXEV6CPT at 0 range 7 .. 7;
EXEV7CPT at 0 range 8 .. 8;
EXEV8CPT at 0 range 9 .. 9;
EXEV9CPT at 0 range 10 .. 10;
EXEV10CPT at 0 range 11 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
TB1SET at 0 range 16 .. 16;
TB1RST at 0 range 17 .. 17;
TBCMP at 0 range 18 .. 19;
TC1SET at 0 range 20 .. 20;
TC1RST at 0 range 21 .. 21;
TCCMP at 0 range 22 .. 23;
TD1SET at 0 range 24 .. 24;
TD1RST at 0 range 25 .. 25;
TDCMP at 0 range 26 .. 27;
TE1SET at 0 range 28 .. 28;
TE1RST at 0 range 29 .. 29;
TECMP at 0 range 30 .. 31;
end record;
subtype OUTAR_FAULT1_Field is HAL.UInt2;
subtype OUTAR_DLYPRT_Field is HAL.UInt3;
subtype OUTAR_FAULT2_Field is HAL.UInt2;
-- Timerx Output Register
type OUTAR_Register is record
-- unspecified
Reserved_0_0 : HAL.Bit := 16#0#;
-- Output 1 polarity
POL1 : Boolean := False;
-- Output 1 Idle mode
IDLEM1 : Boolean := False;
-- Output 1 Idle State
IDLES1 : Boolean := False;
-- Output 1 Fault state
FAULT1 : OUTAR_FAULT1_Field := 16#0#;
-- Output 1 Chopper enable
CHP1 : Boolean := False;
-- Output 1 Deadtime upon burst mode Idle entry
DIDL1 : Boolean := False;
-- Deadtime enable
DTEN : Boolean := False;
-- Delayed Protection Enable
DLYPRTEN : Boolean := False;
-- Delayed Protection
DLYPRT : OUTAR_DLYPRT_Field := 16#0#;
-- unspecified
Reserved_13_16 : HAL.UInt4 := 16#0#;
-- Output 2 polarity
POL2 : Boolean := False;
-- Output 2 Idle mode
IDLEM2 : Boolean := False;
-- Output 2 Idle State
IDLES2 : Boolean := False;
-- Output 2 Fault state
FAULT2 : OUTAR_FAULT2_Field := 16#0#;
-- Output 2 Chopper enable
CHP2 : Boolean := False;
-- Output 2 Deadtime upon burst mode Idle entry
DIDL2 : Boolean := False;
-- unspecified
Reserved_24_31 : HAL.UInt8 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for OUTAR_Register use record
Reserved_0_0 at 0 range 0 .. 0;
POL1 at 0 range 1 .. 1;
IDLEM1 at 0 range 2 .. 2;
IDLES1 at 0 range 3 .. 3;
FAULT1 at 0 range 4 .. 5;
CHP1 at 0 range 6 .. 6;
DIDL1 at 0 range 7 .. 7;
DTEN at 0 range 8 .. 8;
DLYPRTEN at 0 range 9 .. 9;
DLYPRT at 0 range 10 .. 12;
Reserved_13_16 at 0 range 13 .. 16;
POL2 at 0 range 17 .. 17;
IDLEM2 at 0 range 18 .. 18;
IDLES2 at 0 range 19 .. 19;
FAULT2 at 0 range 20 .. 21;
CHP2 at 0 range 22 .. 22;
DIDL2 at 0 range 23 .. 23;
Reserved_24_31 at 0 range 24 .. 31;
end record;
-- Timerx Fault Register
type FLTAR_Register is record
-- Fault 1 enable
FLT1EN : Boolean := False;
-- Fault 2 enable
FLT2EN : Boolean := False;
-- Fault 3 enable
FLT3EN : Boolean := False;
-- Fault 4 enable
FLT4EN : Boolean := False;
-- Fault 5 enable
FLT5EN : Boolean := False;
-- unspecified
Reserved_5_30 : HAL.UInt26 := 16#0#;
-- Fault sources Lock
FLTLCK : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for FLTAR_Register use record
FLT1EN at 0 range 0 .. 0;
FLT2EN at 0 range 1 .. 1;
FLT3EN at 0 range 2 .. 2;
FLT4EN at 0 range 3 .. 3;
FLT5EN at 0 range 4 .. 4;
Reserved_5_30 at 0 range 5 .. 30;
FLTLCK at 0 range 31 .. 31;
end record;
subtype TIMBCR_CKPSCx_Field is HAL.UInt3;
-- TIMBCR_DELCMP array element
subtype TIMBCR_DELCMP_Element is HAL.UInt2;
-- TIMBCR_DELCMP array
type TIMBCR_DELCMP_Field_Array is array (2 .. 3) of TIMBCR_DELCMP_Element
with Component_Size => 2, Size => 4;
-- Type definition for TIMBCR_DELCMP
type TIMBCR_DELCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- DELCMP as a value
Val : HAL.UInt4;
when True =>
-- DELCMP as an array
Arr : TIMBCR_DELCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for TIMBCR_DELCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
subtype TIMBCR_DACSYNC_Field is HAL.UInt2;
subtype TIMBCR_UPDGAT_Field is HAL.UInt4;
-- Timerx Control Register
type TIMBCR_Register is record
-- HRTIM Timer x Clock prescaler
CKPSCx : TIMBCR_CKPSCx_Field := 16#0#;
-- Continuous mode
CONT : Boolean := False;
-- Re-triggerable mode
RETRIG : Boolean := False;
-- Half mode enable
HALF : Boolean := False;
-- Push-Pull mode enable
PSHPLL : Boolean := False;
-- unspecified
Reserved_7_9 : HAL.UInt3 := 16#0#;
-- Synchronization Resets Timer x
SYNCRSTx : Boolean := False;
-- Synchronization Starts Timer x
SYNCSTRTx : Boolean := False;
-- Delayed CMP2 mode
DELCMP : TIMBCR_DELCMP_Field :=
(As_Array => False, Val => 16#0#);
-- unspecified
Reserved_16_16 : HAL.Bit := 16#0#;
-- Timer x Repetition update
TxREPU : Boolean := False;
-- Timerx reset update
TxRSTU : Boolean := False;
-- TAU
TAU : Boolean := False;
-- unspecified
Reserved_20_20 : HAL.Bit := 16#0#;
-- TCU
TCU : Boolean := False;
-- TDU
TDU : Boolean := False;
-- TEU
TEU : Boolean := False;
-- Master Timer update
MSTU : Boolean := False;
-- AC Synchronization
DACSYNC : TIMBCR_DACSYNC_Field := 16#0#;
-- Preload enable
PREEN : Boolean := False;
-- Update Gating
UPDGAT : TIMBCR_UPDGAT_Field := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for TIMBCR_Register use record
CKPSCx at 0 range 0 .. 2;
CONT at 0 range 3 .. 3;
RETRIG at 0 range 4 .. 4;
HALF at 0 range 5 .. 5;
PSHPLL at 0 range 6 .. 6;
Reserved_7_9 at 0 range 7 .. 9;
SYNCRSTx at 0 range 10 .. 10;
SYNCSTRTx at 0 range 11 .. 11;
DELCMP at 0 range 12 .. 15;
Reserved_16_16 at 0 range 16 .. 16;
TxREPU at 0 range 17 .. 17;
TxRSTU at 0 range 18 .. 18;
TAU at 0 range 19 .. 19;
Reserved_20_20 at 0 range 20 .. 20;
TCU at 0 range 21 .. 21;
TDU at 0 range 22 .. 22;
TEU at 0 range 23 .. 23;
MSTU at 0 range 24 .. 24;
DACSYNC at 0 range 25 .. 26;
PREEN at 0 range 27 .. 27;
UPDGAT at 0 range 28 .. 31;
end record;
-- TIMBISR_CMP array
type TIMBISR_CMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for TIMBISR_CMP
type TIMBISR_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt4;
when True =>
-- CMP as an array
Arr : TIMBISR_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for TIMBISR_CMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- TIMBISR_CPT array
type TIMBISR_CPT_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for TIMBISR_CPT
type TIMBISR_CPT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CPT as a value
Val : HAL.UInt2;
when True =>
-- CPT as an array
Arr : TIMBISR_CPT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for TIMBISR_CPT_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- Timerx Interrupt Status Register
type TIMBISR_Register is record
-- Read-only. Compare 1 Interrupt Flag
CMP : TIMBISR_CMP_Field;
-- Read-only. Repetition Interrupt Flag
REP : Boolean;
-- unspecified
Reserved_5_5 : HAL.Bit;
-- Read-only. Update Interrupt Flag
UPD : Boolean;
-- Read-only. Capture1 Interrupt Flag
CPT : TIMBISR_CPT_Field;
-- Read-only. Output 1 Set Interrupt Flag
SETx1 : Boolean;
-- Read-only. Output 1 Reset Interrupt Flag
RSTx1 : Boolean;
-- Read-only. Output 2 Set Interrupt Flag
SETx2 : Boolean;
-- Read-only. Output 2 Reset Interrupt Flag
RSTx2 : Boolean;
-- Read-only. Reset Interrupt Flag
RST : Boolean;
-- Read-only. Delayed Protection Flag
DLYPRT : Boolean;
-- unspecified
Reserved_15_15 : HAL.Bit;
-- Read-only. Current Push Pull Status
CPPSTAT : Boolean;
-- Read-only. Idle Push Pull Status
IPPSTAT : Boolean;
-- Read-only. Output 1 State
O1STAT : Boolean;
-- Read-only. Output 2 State
O2STAT : Boolean;
-- Read-only. Output 1 Copy
O1CPY : Boolean;
-- Read-only. Output 2 Copy
O2CPY : Boolean;
-- unspecified
Reserved_22_31 : HAL.UInt10;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for TIMBISR_Register use record
CMP at 0 range 0 .. 3;
REP at 0 range 4 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
UPD at 0 range 6 .. 6;
CPT at 0 range 7 .. 8;
SETx1 at 0 range 9 .. 9;
RSTx1 at 0 range 10 .. 10;
SETx2 at 0 range 11 .. 11;
RSTx2 at 0 range 12 .. 12;
RST at 0 range 13 .. 13;
DLYPRT at 0 range 14 .. 14;
Reserved_15_15 at 0 range 15 .. 15;
CPPSTAT at 0 range 16 .. 16;
IPPSTAT at 0 range 17 .. 17;
O1STAT at 0 range 18 .. 18;
O2STAT at 0 range 19 .. 19;
O1CPY at 0 range 20 .. 20;
O2CPY at 0 range 21 .. 21;
Reserved_22_31 at 0 range 22 .. 31;
end record;
-- Timerx Interrupt Clear Register
type TIMBICR_Register is record
-- Write-only. Compare 1 Interrupt flag Clear
CMP1C : Boolean := False;
-- Write-only. Compare 2 Interrupt flag Clear
CMP2C : Boolean := False;
-- Write-only. Compare 3 Interrupt flag Clear
CMP3C : Boolean := False;
-- Write-only. Compare 4 Interrupt flag Clear
CMP4C : Boolean := False;
-- Write-only. Repetition Interrupt flag Clear
REPC : Boolean := False;
-- unspecified
Reserved_5_5 : HAL.Bit := 16#0#;
-- Write-only. Update Interrupt flag Clear
UPDC : Boolean := False;
-- Write-only. Capture1 Interrupt flag Clear
CPT1C : Boolean := False;
-- Write-only. Capture2 Interrupt flag Clear
CPT2C : Boolean := False;
-- Write-only. Output 1 Set flag Clear
SET1xC : Boolean := False;
-- Write-only. Output 1 Reset flag Clear
RSTx1C : Boolean := False;
-- Write-only. Output 2 Set flag Clear
SET2xC : Boolean := False;
-- Write-only. Output 2 Reset flag Clear
RSTx2C : Boolean := False;
-- Write-only. Reset Interrupt flag Clear
RSTC : Boolean := False;
-- Write-only. Delayed Protection Flag Clear
DLYPRTC : Boolean := False;
-- unspecified
Reserved_15_31 : HAL.UInt17 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for TIMBICR_Register use record
CMP1C at 0 range 0 .. 0;
CMP2C at 0 range 1 .. 1;
CMP3C at 0 range 2 .. 2;
CMP4C at 0 range 3 .. 3;
REPC at 0 range 4 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
UPDC at 0 range 6 .. 6;
CPT1C at 0 range 7 .. 7;
CPT2C at 0 range 8 .. 8;
SET1xC at 0 range 9 .. 9;
RSTx1C at 0 range 10 .. 10;
SET2xC at 0 range 11 .. 11;
RSTx2C at 0 range 12 .. 12;
RSTC at 0 range 13 .. 13;
DLYPRTC at 0 range 14 .. 14;
Reserved_15_31 at 0 range 15 .. 31;
end record;
-- TIMxDIER
type TIMBDIER_Register is record
-- CMP1IE
CMP1IE : Boolean := False;
-- CMP2IE
CMP2IE : Boolean := False;
-- CMP3IE
CMP3IE : Boolean := False;
-- CMP4IE
CMP4IE : Boolean := False;
-- REPIE
REPIE : Boolean := False;
-- unspecified
Reserved_5_5 : HAL.Bit := 16#0#;
-- UPDIE
UPDIE : Boolean := False;
-- CPT1IE
CPT1IE : Boolean := False;
-- CPT2IE
CPT2IE : Boolean := False;
-- SET1xIE
SET1xIE : Boolean := False;
-- RSTx1IE
RSTx1IE : Boolean := False;
-- SETx2IE
SETx2IE : Boolean := False;
-- RSTx2IE
RSTx2IE : Boolean := False;
-- RSTIE
RSTIE : Boolean := False;
-- DLYPRTIE
DLYPRTIE : Boolean := False;
-- unspecified
Reserved_15_15 : HAL.Bit := 16#0#;
-- CMP1DE
CMP1DE : Boolean := False;
-- CMP2DE
CMP2DE : Boolean := False;
-- CMP3DE
CMP3DE : Boolean := False;
-- CMP4DE
CMP4DE : Boolean := False;
-- REPDE
REPDE : Boolean := False;
-- unspecified
Reserved_21_21 : HAL.Bit := 16#0#;
-- UPDDE
UPDDE : Boolean := False;
-- CPT1DE
CPT1DE : Boolean := False;
-- CPT2DE
CPT2DE : Boolean := False;
-- SET1xDE
SET1xDE : Boolean := False;
-- RSTx1DE
RSTx1DE : Boolean := False;
-- SETx2DE
SETx2DE : Boolean := False;
-- RSTx2DE
RSTx2DE : Boolean := False;
-- RSTDE
RSTDE : Boolean := False;
-- DLYPRTDE
DLYPRTDE : Boolean := False;
-- unspecified
Reserved_31_31 : HAL.Bit := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for TIMBDIER_Register use record
CMP1IE at 0 range 0 .. 0;
CMP2IE at 0 range 1 .. 1;
CMP3IE at 0 range 2 .. 2;
CMP4IE at 0 range 3 .. 3;
REPIE at 0 range 4 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
UPDIE at 0 range 6 .. 6;
CPT1IE at 0 range 7 .. 7;
CPT2IE at 0 range 8 .. 8;
SET1xIE at 0 range 9 .. 9;
RSTx1IE at 0 range 10 .. 10;
SETx2IE at 0 range 11 .. 11;
RSTx2IE at 0 range 12 .. 12;
RSTIE at 0 range 13 .. 13;
DLYPRTIE at 0 range 14 .. 14;
Reserved_15_15 at 0 range 15 .. 15;
CMP1DE at 0 range 16 .. 16;
CMP2DE at 0 range 17 .. 17;
CMP3DE at 0 range 18 .. 18;
CMP4DE at 0 range 19 .. 19;
REPDE at 0 range 20 .. 20;
Reserved_21_21 at 0 range 21 .. 21;
UPDDE at 0 range 22 .. 22;
CPT1DE at 0 range 23 .. 23;
CPT2DE at 0 range 24 .. 24;
SET1xDE at 0 range 25 .. 25;
RSTx1DE at 0 range 26 .. 26;
SETx2DE at 0 range 27 .. 27;
RSTx2DE at 0 range 28 .. 28;
RSTDE at 0 range 29 .. 29;
DLYPRTDE at 0 range 30 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype CNTR_CNTx_Field is HAL.UInt16;
-- Timerx Counter Register
type CNTR_Register is record
-- Timerx Counter value
CNTx : CNTR_CNTx_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CNTR_Register use record
CNTx at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype PERBR_PERx_Field is HAL.UInt16;
-- Timerx Period Register
type PERBR_Register is record
-- Timerx Period value
PERx : PERBR_PERx_Field := 16#FFFF#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for PERBR_Register use record
PERx at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype REPBR_REPx_Field is HAL.UInt8;
-- Timerx Repetition Register
type REPBR_Register is record
-- Timerx Repetition counter value
REPx : REPBR_REPx_Field := 16#0#;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for REPBR_Register use record
REPx at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
subtype CMP1BR_CMP1x_Field is HAL.UInt16;
-- Timerx Compare 1 Register
type CMP1BR_Register is record
-- Timerx Compare 1 value
CMP1x : CMP1BR_CMP1x_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CMP1BR_Register use record
CMP1x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CMP1CBR_CMP1x_Field is HAL.UInt16;
subtype CMP1CBR_REPx_Field is HAL.UInt8;
-- Timerx Compare 1 Compound Register
type CMP1CBR_Register is record
-- Timerx Compare 1 value
CMP1x : CMP1CBR_CMP1x_Field := 16#0#;
-- Timerx Repetition value (aliased from HRTIM_REPx register)
REPx : CMP1CBR_REPx_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 CMP1CBR_Register use record
CMP1x at 0 range 0 .. 15;
REPx at 0 range 16 .. 23;
Reserved_24_31 at 0 range 24 .. 31;
end record;
subtype CMP2BR_CMP2x_Field is HAL.UInt16;
-- Timerx Compare 2 Register
type CMP2BR_Register is record
-- Timerx Compare 2 value
CMP2x : CMP2BR_CMP2x_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CMP2BR_Register use record
CMP2x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CMP3BR_CMP3x_Field is HAL.UInt16;
-- Timerx Compare 3 Register
type CMP3BR_Register is record
-- Timerx Compare 3 value
CMP3x : CMP3BR_CMP3x_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CMP3BR_Register use record
CMP3x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CMP4BR_CMP4x_Field is HAL.UInt16;
-- Timerx Compare 4 Register
type CMP4BR_Register is record
-- Timerx Compare 4 value
CMP4x : CMP4BR_CMP4x_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CMP4BR_Register use record
CMP4x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CPT1BR_CPT1x_Field is HAL.UInt16;
-- Timerx Capture 1 Register
type CPT1BR_Register is record
-- Read-only. Timerx Capture 1 value
CPT1x : CPT1BR_CPT1x_Field;
-- unspecified
Reserved_16_31 : HAL.UInt16;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CPT1BR_Register use record
CPT1x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CPT2BR_CPT2x_Field is HAL.UInt16;
-- Timerx Capture 2 Register
type CPT2BR_Register is record
-- Read-only. Timerx Capture 2 value
CPT2x : CPT2BR_CPT2x_Field;
-- unspecified
Reserved_16_31 : HAL.UInt16;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CPT2BR_Register use record
CPT2x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype DTBR_DTRx_Field is HAL.UInt9;
subtype DTBR_DTPRSC_Field is HAL.UInt3;
subtype DTBR_DTFx_Field is HAL.UInt9;
-- Timerx Deadtime Register
type DTBR_Register is record
-- Deadtime Rising value
DTRx : DTBR_DTRx_Field := 16#0#;
-- Sign Deadtime Rising value
SDTRx : Boolean := False;
-- Deadtime Prescaler
DTPRSC : DTBR_DTPRSC_Field := 16#0#;
-- unspecified
Reserved_13_13 : HAL.Bit := 16#0#;
-- Deadtime Rising Sign Lock
DTRSLKx : Boolean := False;
-- Deadtime Rising Lock
DTRLKx : Boolean := False;
-- Deadtime Falling value
DTFx : DTBR_DTFx_Field := 16#0#;
-- Sign Deadtime Falling value
SDTFx : Boolean := False;
-- unspecified
Reserved_26_29 : HAL.UInt4 := 16#0#;
-- Deadtime Falling Sign Lock
DTFSLKx : Boolean := False;
-- Deadtime Falling Lock
DTFLKx : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for DTBR_Register use record
DTRx at 0 range 0 .. 8;
SDTRx at 0 range 9 .. 9;
DTPRSC at 0 range 10 .. 12;
Reserved_13_13 at 0 range 13 .. 13;
DTRSLKx at 0 range 14 .. 14;
DTRLKx at 0 range 15 .. 15;
DTFx at 0 range 16 .. 24;
SDTFx at 0 range 25 .. 25;
Reserved_26_29 at 0 range 26 .. 29;
DTFSLKx at 0 range 30 .. 30;
DTFLKx at 0 range 31 .. 31;
end record;
-- SETB1R_CMP array
type SETB1R_CMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for SETB1R_CMP
type SETB1R_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt4;
when True =>
-- CMP as an array
Arr : SETB1R_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for SETB1R_CMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- SETB1R_MSTCMP array
type SETB1R_MSTCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for SETB1R_MSTCMP
type SETB1R_MSTCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MSTCMP as a value
Val : HAL.UInt4;
when True =>
-- MSTCMP as an array
Arr : SETB1R_MSTCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for SETB1R_MSTCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- SETB1R_TIMEVNT array
type SETB1R_TIMEVNT_Field_Array is array (1 .. 9) of Boolean
with Component_Size => 1, Size => 9;
-- Type definition for SETB1R_TIMEVNT
type SETB1R_TIMEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMEVNT as a value
Val : HAL.UInt9;
when True =>
-- TIMEVNT as an array
Arr : SETB1R_TIMEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 9;
for SETB1R_TIMEVNT_Field use record
Val at 0 range 0 .. 8;
Arr at 0 range 0 .. 8;
end record;
-- SETB1R_EXTEVNT array
type SETB1R_EXTEVNT_Field_Array is array (1 .. 10) of Boolean
with Component_Size => 1, Size => 10;
-- Type definition for SETB1R_EXTEVNT
type SETB1R_EXTEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- EXTEVNT as a value
Val : HAL.UInt10;
when True =>
-- EXTEVNT as an array
Arr : SETB1R_EXTEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 10;
for SETB1R_EXTEVNT_Field use record
Val at 0 range 0 .. 9;
Arr at 0 range 0 .. 9;
end record;
-- Timerx Output1 Set Register
type SETB1R_Register is record
-- Software Set trigger
SST : Boolean := False;
-- Timer A resynchronizaton
RESYNC : Boolean := False;
-- Timer A Period
PER : Boolean := False;
-- Timer A compare 1
CMP : SETB1R_CMP_Field := (As_Array => False, Val => 16#0#);
-- Master Period
MSTPER : Boolean := False;
-- Master Compare 1
MSTCMP : SETB1R_MSTCMP_Field := (As_Array => False, Val => 16#0#);
-- Timer Event 1
TIMEVNT : SETB1R_TIMEVNT_Field := (As_Array => False, Val => 16#0#);
-- External Event 1
EXTEVNT : SETB1R_EXTEVNT_Field := (As_Array => False, Val => 16#0#);
-- Registers update (transfer preload to active)
UPDATE : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for SETB1R_Register use record
SST at 0 range 0 .. 0;
RESYNC at 0 range 1 .. 1;
PER at 0 range 2 .. 2;
CMP at 0 range 3 .. 6;
MSTPER at 0 range 7 .. 7;
MSTCMP at 0 range 8 .. 11;
TIMEVNT at 0 range 12 .. 20;
EXTEVNT at 0 range 21 .. 30;
UPDATE at 0 range 31 .. 31;
end record;
-- RSTB1R_CMP array
type RSTB1R_CMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for RSTB1R_CMP
type RSTB1R_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt4;
when True =>
-- CMP as an array
Arr : RSTB1R_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for RSTB1R_CMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- RSTB1R_MSTCMP array
type RSTB1R_MSTCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for RSTB1R_MSTCMP
type RSTB1R_MSTCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MSTCMP as a value
Val : HAL.UInt4;
when True =>
-- MSTCMP as an array
Arr : RSTB1R_MSTCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for RSTB1R_MSTCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- RSTB1R_TIMEVNT array
type RSTB1R_TIMEVNT_Field_Array is array (1 .. 9) of Boolean
with Component_Size => 1, Size => 9;
-- Type definition for RSTB1R_TIMEVNT
type RSTB1R_TIMEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMEVNT as a value
Val : HAL.UInt9;
when True =>
-- TIMEVNT as an array
Arr : RSTB1R_TIMEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 9;
for RSTB1R_TIMEVNT_Field use record
Val at 0 range 0 .. 8;
Arr at 0 range 0 .. 8;
end record;
-- RSTB1R_EXTEVNT array
type RSTB1R_EXTEVNT_Field_Array is array (1 .. 10) of Boolean
with Component_Size => 1, Size => 10;
-- Type definition for RSTB1R_EXTEVNT
type RSTB1R_EXTEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- EXTEVNT as a value
Val : HAL.UInt10;
when True =>
-- EXTEVNT as an array
Arr : RSTB1R_EXTEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 10;
for RSTB1R_EXTEVNT_Field use record
Val at 0 range 0 .. 9;
Arr at 0 range 0 .. 9;
end record;
-- Timerx Output1 Reset Register
type RSTB1R_Register is record
-- SRT
SRT : Boolean := False;
-- RESYNC
RESYNC : Boolean := False;
-- PER
PER : Boolean := False;
-- CMP1
CMP : RSTB1R_CMP_Field := (As_Array => False, Val => 16#0#);
-- MSTPER
MSTPER : Boolean := False;
-- MSTCMP1
MSTCMP : RSTB1R_MSTCMP_Field := (As_Array => False, Val => 16#0#);
-- TIMEVNT1
TIMEVNT : RSTB1R_TIMEVNT_Field := (As_Array => False, Val => 16#0#);
-- EXTEVNT1
EXTEVNT : RSTB1R_EXTEVNT_Field := (As_Array => False, Val => 16#0#);
-- UPDATE
UPDATE : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for RSTB1R_Register use record
SRT at 0 range 0 .. 0;
RESYNC at 0 range 1 .. 1;
PER at 0 range 2 .. 2;
CMP at 0 range 3 .. 6;
MSTPER at 0 range 7 .. 7;
MSTCMP at 0 range 8 .. 11;
TIMEVNT at 0 range 12 .. 20;
EXTEVNT at 0 range 21 .. 30;
UPDATE at 0 range 31 .. 31;
end record;
-- SETB2R_CMP array
type SETB2R_CMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for SETB2R_CMP
type SETB2R_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt4;
when True =>
-- CMP as an array
Arr : SETB2R_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for SETB2R_CMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- SETB2R_MSTCMP array
type SETB2R_MSTCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for SETB2R_MSTCMP
type SETB2R_MSTCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MSTCMP as a value
Val : HAL.UInt4;
when True =>
-- MSTCMP as an array
Arr : SETB2R_MSTCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for SETB2R_MSTCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- SETB2R_TIMEVNT array
type SETB2R_TIMEVNT_Field_Array is array (1 .. 9) of Boolean
with Component_Size => 1, Size => 9;
-- Type definition for SETB2R_TIMEVNT
type SETB2R_TIMEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMEVNT as a value
Val : HAL.UInt9;
when True =>
-- TIMEVNT as an array
Arr : SETB2R_TIMEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 9;
for SETB2R_TIMEVNT_Field use record
Val at 0 range 0 .. 8;
Arr at 0 range 0 .. 8;
end record;
-- SETB2R_EXTEVNT array
type SETB2R_EXTEVNT_Field_Array is array (1 .. 10) of Boolean
with Component_Size => 1, Size => 10;
-- Type definition for SETB2R_EXTEVNT
type SETB2R_EXTEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- EXTEVNT as a value
Val : HAL.UInt10;
when True =>
-- EXTEVNT as an array
Arr : SETB2R_EXTEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 10;
for SETB2R_EXTEVNT_Field use record
Val at 0 range 0 .. 9;
Arr at 0 range 0 .. 9;
end record;
-- Timerx Output2 Set Register
type SETB2R_Register is record
-- SST
SST : Boolean := False;
-- RESYNC
RESYNC : Boolean := False;
-- PER
PER : Boolean := False;
-- CMP1
CMP : SETB2R_CMP_Field := (As_Array => False, Val => 16#0#);
-- MSTPER
MSTPER : Boolean := False;
-- MSTCMP1
MSTCMP : SETB2R_MSTCMP_Field := (As_Array => False, Val => 16#0#);
-- TIMEVNT1
TIMEVNT : SETB2R_TIMEVNT_Field := (As_Array => False, Val => 16#0#);
-- EXTEVNT1
EXTEVNT : SETB2R_EXTEVNT_Field := (As_Array => False, Val => 16#0#);
-- UPDATE
UPDATE : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for SETB2R_Register use record
SST at 0 range 0 .. 0;
RESYNC at 0 range 1 .. 1;
PER at 0 range 2 .. 2;
CMP at 0 range 3 .. 6;
MSTPER at 0 range 7 .. 7;
MSTCMP at 0 range 8 .. 11;
TIMEVNT at 0 range 12 .. 20;
EXTEVNT at 0 range 21 .. 30;
UPDATE at 0 range 31 .. 31;
end record;
-- RSTB2R_CMP array
type RSTB2R_CMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for RSTB2R_CMP
type RSTB2R_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt4;
when True =>
-- CMP as an array
Arr : RSTB2R_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for RSTB2R_CMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- RSTB2R_MSTCMP array
type RSTB2R_MSTCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for RSTB2R_MSTCMP
type RSTB2R_MSTCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MSTCMP as a value
Val : HAL.UInt4;
when True =>
-- MSTCMP as an array
Arr : RSTB2R_MSTCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for RSTB2R_MSTCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- RSTB2R_TIMEVNT array
type RSTB2R_TIMEVNT_Field_Array is array (1 .. 9) of Boolean
with Component_Size => 1, Size => 9;
-- Type definition for RSTB2R_TIMEVNT
type RSTB2R_TIMEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMEVNT as a value
Val : HAL.UInt9;
when True =>
-- TIMEVNT as an array
Arr : RSTB2R_TIMEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 9;
for RSTB2R_TIMEVNT_Field use record
Val at 0 range 0 .. 8;
Arr at 0 range 0 .. 8;
end record;
-- RSTB2R_EXTEVNT array
type RSTB2R_EXTEVNT_Field_Array is array (1 .. 10) of Boolean
with Component_Size => 1, Size => 10;
-- Type definition for RSTB2R_EXTEVNT
type RSTB2R_EXTEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- EXTEVNT as a value
Val : HAL.UInt10;
when True =>
-- EXTEVNT as an array
Arr : RSTB2R_EXTEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 10;
for RSTB2R_EXTEVNT_Field use record
Val at 0 range 0 .. 9;
Arr at 0 range 0 .. 9;
end record;
-- Timerx Output2 Reset Register
type RSTB2R_Register is record
-- SRT
SRT : Boolean := False;
-- RESYNC
RESYNC : Boolean := False;
-- PER
PER : Boolean := False;
-- CMP1
CMP : RSTB2R_CMP_Field := (As_Array => False, Val => 16#0#);
-- MSTPER
MSTPER : Boolean := False;
-- MSTCMP1
MSTCMP : RSTB2R_MSTCMP_Field := (As_Array => False, Val => 16#0#);
-- TIMEVNT1
TIMEVNT : RSTB2R_TIMEVNT_Field := (As_Array => False, Val => 16#0#);
-- EXTEVNT1
EXTEVNT : RSTB2R_EXTEVNT_Field := (As_Array => False, Val => 16#0#);
-- UPDATE
UPDATE : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for RSTB2R_Register use record
SRT at 0 range 0 .. 0;
RESYNC at 0 range 1 .. 1;
PER at 0 range 2 .. 2;
CMP at 0 range 3 .. 6;
MSTPER at 0 range 7 .. 7;
MSTCMP at 0 range 8 .. 11;
TIMEVNT at 0 range 12 .. 20;
EXTEVNT at 0 range 21 .. 30;
UPDATE at 0 range 31 .. 31;
end record;
subtype EEFBR1_EE1FLTR_Field is HAL.UInt4;
subtype EEFBR1_EE2FLTR_Field is HAL.UInt4;
subtype EEFBR1_EE3FLTR_Field is HAL.UInt4;
subtype EEFBR1_EE4FLTR_Field is HAL.UInt4;
subtype EEFBR1_EE5FLTR_Field is HAL.UInt4;
-- Timerx External Event Filtering Register 1
type EEFBR1_Register is record
-- External Event 1 latch
EE1LTCH : Boolean := False;
-- External Event 1 filter
EE1FLTR : EEFBR1_EE1FLTR_Field := 16#0#;
-- unspecified
Reserved_5_5 : HAL.Bit := 16#0#;
-- External Event 2 latch
EE2LTCH : Boolean := False;
-- External Event 2 filter
EE2FLTR : EEFBR1_EE2FLTR_Field := 16#0#;
-- unspecified
Reserved_11_11 : HAL.Bit := 16#0#;
-- External Event 3 latch
EE3LTCH : Boolean := False;
-- External Event 3 filter
EE3FLTR : EEFBR1_EE3FLTR_Field := 16#0#;
-- unspecified
Reserved_17_17 : HAL.Bit := 16#0#;
-- External Event 4 latch
EE4LTCH : Boolean := False;
-- External Event 4 filter
EE4FLTR : EEFBR1_EE4FLTR_Field := 16#0#;
-- unspecified
Reserved_23_23 : HAL.Bit := 16#0#;
-- External Event 5 latch
EE5LTCH : Boolean := False;
-- External Event 5 filter
EE5FLTR : EEFBR1_EE5FLTR_Field := 16#0#;
-- unspecified
Reserved_29_31 : HAL.UInt3 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for EEFBR1_Register use record
EE1LTCH at 0 range 0 .. 0;
EE1FLTR at 0 range 1 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
EE2LTCH at 0 range 6 .. 6;
EE2FLTR at 0 range 7 .. 10;
Reserved_11_11 at 0 range 11 .. 11;
EE3LTCH at 0 range 12 .. 12;
EE3FLTR at 0 range 13 .. 16;
Reserved_17_17 at 0 range 17 .. 17;
EE4LTCH at 0 range 18 .. 18;
EE4FLTR at 0 range 19 .. 22;
Reserved_23_23 at 0 range 23 .. 23;
EE5LTCH at 0 range 24 .. 24;
EE5FLTR at 0 range 25 .. 28;
Reserved_29_31 at 0 range 29 .. 31;
end record;
subtype EEFBR2_EE6FLTR_Field is HAL.UInt4;
subtype EEFBR2_EE7FLTR_Field is HAL.UInt4;
subtype EEFBR2_EE8FLTR_Field is HAL.UInt4;
subtype EEFBR2_EE9FLTR_Field is HAL.UInt4;
subtype EEFBR2_EE10FLTR_Field is HAL.UInt4;
-- Timerx External Event Filtering Register 2
type EEFBR2_Register is record
-- External Event 6 latch
EE6LTCH : Boolean := False;
-- External Event 6 filter
EE6FLTR : EEFBR2_EE6FLTR_Field := 16#0#;
-- unspecified
Reserved_5_5 : HAL.Bit := 16#0#;
-- External Event 7 latch
EE7LTCH : Boolean := False;
-- External Event 7 filter
EE7FLTR : EEFBR2_EE7FLTR_Field := 16#0#;
-- unspecified
Reserved_11_11 : HAL.Bit := 16#0#;
-- External Event 8 latch
EE8LTCH : Boolean := False;
-- External Event 8 filter
EE8FLTR : EEFBR2_EE8FLTR_Field := 16#0#;
-- unspecified
Reserved_17_17 : HAL.Bit := 16#0#;
-- External Event 9 latch
EE9LTCH : Boolean := False;
-- External Event 9 filter
EE9FLTR : EEFBR2_EE9FLTR_Field := 16#0#;
-- unspecified
Reserved_23_23 : HAL.Bit := 16#0#;
-- External Event 10 latch
EE10LTCH : Boolean := False;
-- External Event 10 filter
EE10FLTR : EEFBR2_EE10FLTR_Field := 16#0#;
-- unspecified
Reserved_29_31 : HAL.UInt3 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for EEFBR2_Register use record
EE6LTCH at 0 range 0 .. 0;
EE6FLTR at 0 range 1 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
EE7LTCH at 0 range 6 .. 6;
EE7FLTR at 0 range 7 .. 10;
Reserved_11_11 at 0 range 11 .. 11;
EE8LTCH at 0 range 12 .. 12;
EE8FLTR at 0 range 13 .. 16;
Reserved_17_17 at 0 range 17 .. 17;
EE9LTCH at 0 range 18 .. 18;
EE9FLTR at 0 range 19 .. 22;
Reserved_23_23 at 0 range 23 .. 23;
EE10LTCH at 0 range 24 .. 24;
EE10FLTR at 0 range 25 .. 28;
Reserved_29_31 at 0 range 29 .. 31;
end record;
-- RSTBR_CMP array
type RSTBR_CMP_Field_Array is array (2 .. 3) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for RSTBR_CMP
type RSTBR_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt2;
when True =>
-- CMP as an array
Arr : RSTBR_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for RSTBR_CMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- RSTBR_MSTCMP array
type RSTBR_MSTCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for RSTBR_MSTCMP
type RSTBR_MSTCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MSTCMP as a value
Val : HAL.UInt4;
when True =>
-- MSTCMP as an array
Arr : RSTBR_MSTCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for RSTBR_MSTCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- RSTBR_EXTEVNT array
type RSTBR_EXTEVNT_Field_Array is array (1 .. 10) of Boolean
with Component_Size => 1, Size => 10;
-- Type definition for RSTBR_EXTEVNT
type RSTBR_EXTEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- EXTEVNT as a value
Val : HAL.UInt10;
when True =>
-- EXTEVNT as an array
Arr : RSTBR_EXTEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 10;
for RSTBR_EXTEVNT_Field use record
Val at 0 range 0 .. 9;
Arr at 0 range 0 .. 9;
end record;
-- RSTBR_TIMACMP array
type RSTBR_TIMACMP_Field_Array is array (1 .. 3) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for RSTBR_TIMACMP
type RSTBR_TIMACMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMACMP as a value
Val : HAL.UInt3;
when True =>
-- TIMACMP as an array
Arr : RSTBR_TIMACMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for RSTBR_TIMACMP_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- RSTBR_TIMCCMP array
type RSTBR_TIMCCMP_Field_Array is array (1 .. 3) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for RSTBR_TIMCCMP
type RSTBR_TIMCCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMCCMP as a value
Val : HAL.UInt3;
when True =>
-- TIMCCMP as an array
Arr : RSTBR_TIMCCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for RSTBR_TIMCCMP_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- RSTBR_TIMDCMP array
type RSTBR_TIMDCMP_Field_Array is array (1 .. 3) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for RSTBR_TIMDCMP
type RSTBR_TIMDCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMDCMP as a value
Val : HAL.UInt3;
when True =>
-- TIMDCMP as an array
Arr : RSTBR_TIMDCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for RSTBR_TIMDCMP_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- RSTBR_TIMECMP array
type RSTBR_TIMECMP_Field_Array is array (1 .. 3) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for RSTBR_TIMECMP
type RSTBR_TIMECMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMECMP as a value
Val : HAL.UInt3;
when True =>
-- TIMECMP as an array
Arr : RSTBR_TIMECMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for RSTBR_TIMECMP_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- TimerA Reset Register
type RSTBR_Register is record
-- unspecified
Reserved_0_0 : HAL.Bit := 16#0#;
-- Timer A Update reset
UPDT : Boolean := False;
-- Timer A compare 2 reset
CMP : RSTBR_CMP_Field := (As_Array => False, Val => 16#0#);
-- Master timer Period
MSTPER : Boolean := False;
-- Master compare 1
MSTCMP : RSTBR_MSTCMP_Field :=
(As_Array => False, Val => 16#0#);
-- External Event 1
EXTEVNT : RSTBR_EXTEVNT_Field :=
(As_Array => False, Val => 16#0#);
-- Timer A Compare 1
TIMACMP : RSTBR_TIMACMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer C Compare 1
TIMCCMP : RSTBR_TIMCCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer D Compare 1
TIMDCMP : RSTBR_TIMDCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer E Compare 1
TIMECMP : RSTBR_TIMECMP_Field :=
(As_Array => False, Val => 16#0#);
-- unspecified
Reserved_31_31 : HAL.Bit := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for RSTBR_Register use record
Reserved_0_0 at 0 range 0 .. 0;
UPDT at 0 range 1 .. 1;
CMP at 0 range 2 .. 3;
MSTPER at 0 range 4 .. 4;
MSTCMP at 0 range 5 .. 8;
EXTEVNT at 0 range 9 .. 18;
TIMACMP at 0 range 19 .. 21;
TIMCCMP at 0 range 22 .. 24;
TIMDCMP at 0 range 25 .. 27;
TIMECMP at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype CHPBR_CHPFRQ_Field is HAL.UInt4;
subtype CHPBR_CHPDTY_Field is HAL.UInt3;
subtype CHPBR_STRTPW_Field is HAL.UInt4;
-- Timerx Chopper Register
type CHPBR_Register is record
-- Timerx carrier frequency value
CHPFRQ : CHPBR_CHPFRQ_Field := 16#0#;
-- Timerx chopper duty cycle value
CHPDTY : CHPBR_CHPDTY_Field := 16#0#;
-- STRTPW
STRTPW : CHPBR_STRTPW_Field := 16#0#;
-- unspecified
Reserved_11_31 : HAL.UInt21 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CHPBR_Register use record
CHPFRQ at 0 range 0 .. 3;
CHPDTY at 0 range 4 .. 6;
STRTPW at 0 range 7 .. 10;
Reserved_11_31 at 0 range 11 .. 31;
end record;
-- CPT1BCR_TACMP array
type CPT1BCR_TACMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT1BCR_TACMP
type CPT1BCR_TACMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TACMP as a value
Val : HAL.UInt2;
when True =>
-- TACMP as an array
Arr : CPT1BCR_TACMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT1BCR_TACMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT1BCR_TCCMP array
type CPT1BCR_TCCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT1BCR_TCCMP
type CPT1BCR_TCCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TCCMP as a value
Val : HAL.UInt2;
when True =>
-- TCCMP as an array
Arr : CPT1BCR_TCCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT1BCR_TCCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT1BCR_TDCMP array
type CPT1BCR_TDCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT1BCR_TDCMP
type CPT1BCR_TDCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TDCMP as a value
Val : HAL.UInt2;
when True =>
-- TDCMP as an array
Arr : CPT1BCR_TDCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT1BCR_TDCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT1BCR_TECMP array
type CPT1BCR_TECMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT1BCR_TECMP
type CPT1BCR_TECMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TECMP as a value
Val : HAL.UInt2;
when True =>
-- TECMP as an array
Arr : CPT1BCR_TECMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT1BCR_TECMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- Timerx Capture 2 Control Register
type CPT1BCR_Register is record
-- Software Capture
SWCPT : Boolean := False;
-- Update Capture
UDPCPT : Boolean := False;
-- External Event 1 Capture
EXEV1CPT : Boolean := False;
-- External Event 2 Capture
EXEV2CPT : Boolean := False;
-- External Event 3 Capture
EXEV3CPT : Boolean := False;
-- External Event 4 Capture
EXEV4CPT : Boolean := False;
-- External Event 5 Capture
EXEV5CPT : Boolean := False;
-- External Event 6 Capture
EXEV6CPT : Boolean := False;
-- External Event 7 Capture
EXEV7CPT : Boolean := False;
-- External Event 8 Capture
EXEV8CPT : Boolean := False;
-- External Event 9 Capture
EXEV9CPT : Boolean := False;
-- External Event 10 Capture
EXEV10CPT : Boolean := False;
-- Timer A output 1 Set
TA1SET : Boolean := False;
-- Timer A output 1 Reset
TA1RST : Boolean := False;
-- Timer A Compare 1
TACMP : CPT1BCR_TACMP_Field :=
(As_Array => False, Val => 16#0#);
-- unspecified
Reserved_16_19 : HAL.UInt4 := 16#0#;
-- Timer C output 1 Set
TC1SET : Boolean := False;
-- Timer C output 1 Reset
TC1RST : Boolean := False;
-- Timer C Compare 1
TCCMP : CPT1BCR_TCCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer D output 1 Set
TD1SET : Boolean := False;
-- Timer D output 1 Reset
TD1RST : Boolean := False;
-- Timer D Compare 1
TDCMP : CPT1BCR_TDCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer E output 1 Set
TE1SET : Boolean := False;
-- Timer E output 1 Reset
TE1RST : Boolean := False;
-- Timer E Compare 1
TECMP : CPT1BCR_TECMP_Field :=
(As_Array => False, Val => 16#0#);
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CPT1BCR_Register use record
SWCPT at 0 range 0 .. 0;
UDPCPT at 0 range 1 .. 1;
EXEV1CPT at 0 range 2 .. 2;
EXEV2CPT at 0 range 3 .. 3;
EXEV3CPT at 0 range 4 .. 4;
EXEV4CPT at 0 range 5 .. 5;
EXEV5CPT at 0 range 6 .. 6;
EXEV6CPT at 0 range 7 .. 7;
EXEV7CPT at 0 range 8 .. 8;
EXEV8CPT at 0 range 9 .. 9;
EXEV9CPT at 0 range 10 .. 10;
EXEV10CPT at 0 range 11 .. 11;
TA1SET at 0 range 12 .. 12;
TA1RST at 0 range 13 .. 13;
TACMP at 0 range 14 .. 15;
Reserved_16_19 at 0 range 16 .. 19;
TC1SET at 0 range 20 .. 20;
TC1RST at 0 range 21 .. 21;
TCCMP at 0 range 22 .. 23;
TD1SET at 0 range 24 .. 24;
TD1RST at 0 range 25 .. 25;
TDCMP at 0 range 26 .. 27;
TE1SET at 0 range 28 .. 28;
TE1RST at 0 range 29 .. 29;
TECMP at 0 range 30 .. 31;
end record;
-- CPT2BCR_TACMP array
type CPT2BCR_TACMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT2BCR_TACMP
type CPT2BCR_TACMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TACMP as a value
Val : HAL.UInt2;
when True =>
-- TACMP as an array
Arr : CPT2BCR_TACMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT2BCR_TACMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT2BCR_TCCMP array
type CPT2BCR_TCCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT2BCR_TCCMP
type CPT2BCR_TCCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TCCMP as a value
Val : HAL.UInt2;
when True =>
-- TCCMP as an array
Arr : CPT2BCR_TCCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT2BCR_TCCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT2BCR_TDCMP array
type CPT2BCR_TDCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT2BCR_TDCMP
type CPT2BCR_TDCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TDCMP as a value
Val : HAL.UInt2;
when True =>
-- TDCMP as an array
Arr : CPT2BCR_TDCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT2BCR_TDCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT2BCR_TECMP array
type CPT2BCR_TECMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT2BCR_TECMP
type CPT2BCR_TECMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TECMP as a value
Val : HAL.UInt2;
when True =>
-- TECMP as an array
Arr : CPT2BCR_TECMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT2BCR_TECMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT2xCR
type CPT2BCR_Register is record
-- Software Capture
SWCPT : Boolean := False;
-- Update Capture
UDPCPT : Boolean := False;
-- External Event 1 Capture
EXEV1CPT : Boolean := False;
-- External Event 2 Capture
EXEV2CPT : Boolean := False;
-- External Event 3 Capture
EXEV3CPT : Boolean := False;
-- External Event 4 Capture
EXEV4CPT : Boolean := False;
-- External Event 5 Capture
EXEV5CPT : Boolean := False;
-- External Event 6 Capture
EXEV6CPT : Boolean := False;
-- External Event 7 Capture
EXEV7CPT : Boolean := False;
-- External Event 8 Capture
EXEV8CPT : Boolean := False;
-- External Event 9 Capture
EXEV9CPT : Boolean := False;
-- External Event 10 Capture
EXEV10CPT : Boolean := False;
-- Timer A output 1 Set
TA1SET : Boolean := False;
-- Timer A output 1 Reset
TA1RST : Boolean := False;
-- Timer A Compare 1
TACMP : CPT2BCR_TACMP_Field :=
(As_Array => False, Val => 16#0#);
-- unspecified
Reserved_16_19 : HAL.UInt4 := 16#0#;
-- Timer C output 1 Set
TC1SET : Boolean := False;
-- Timer C output 1 Reset
TC1RST : Boolean := False;
-- Timer C Compare 1
TCCMP : CPT2BCR_TCCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer D output 1 Set
TD1SET : Boolean := False;
-- Timer D output 1 Reset
TD1RST : Boolean := False;
-- Timer D Compare 1
TDCMP : CPT2BCR_TDCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer E output 1 Set
TE1SET : Boolean := False;
-- Timer E output 1 Reset
TE1RST : Boolean := False;
-- Timer E Compare 1
TECMP : CPT2BCR_TECMP_Field :=
(As_Array => False, Val => 16#0#);
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CPT2BCR_Register use record
SWCPT at 0 range 0 .. 0;
UDPCPT at 0 range 1 .. 1;
EXEV1CPT at 0 range 2 .. 2;
EXEV2CPT at 0 range 3 .. 3;
EXEV3CPT at 0 range 4 .. 4;
EXEV4CPT at 0 range 5 .. 5;
EXEV5CPT at 0 range 6 .. 6;
EXEV6CPT at 0 range 7 .. 7;
EXEV7CPT at 0 range 8 .. 8;
EXEV8CPT at 0 range 9 .. 9;
EXEV9CPT at 0 range 10 .. 10;
EXEV10CPT at 0 range 11 .. 11;
TA1SET at 0 range 12 .. 12;
TA1RST at 0 range 13 .. 13;
TACMP at 0 range 14 .. 15;
Reserved_16_19 at 0 range 16 .. 19;
TC1SET at 0 range 20 .. 20;
TC1RST at 0 range 21 .. 21;
TCCMP at 0 range 22 .. 23;
TD1SET at 0 range 24 .. 24;
TD1RST at 0 range 25 .. 25;
TDCMP at 0 range 26 .. 27;
TE1SET at 0 range 28 .. 28;
TE1RST at 0 range 29 .. 29;
TECMP at 0 range 30 .. 31;
end record;
subtype OUTBR_FAULT1_Field is HAL.UInt2;
subtype OUTBR_DLYPRT_Field is HAL.UInt3;
subtype OUTBR_FAULT2_Field is HAL.UInt2;
-- Timerx Output Register
type OUTBR_Register is record
-- unspecified
Reserved_0_0 : HAL.Bit := 16#0#;
-- Output 1 polarity
POL1 : Boolean := False;
-- Output 1 Idle mode
IDLEM1 : Boolean := False;
-- Output 1 Idle State
IDLES1 : Boolean := False;
-- Output 1 Fault state
FAULT1 : OUTBR_FAULT1_Field := 16#0#;
-- Output 1 Chopper enable
CHP1 : Boolean := False;
-- Output 1 Deadtime upon burst mode Idle entry
DIDL1 : Boolean := False;
-- Deadtime enable
DTEN : Boolean := False;
-- Delayed Protection Enable
DLYPRTEN : Boolean := False;
-- Delayed Protection
DLYPRT : OUTBR_DLYPRT_Field := 16#0#;
-- unspecified
Reserved_13_16 : HAL.UInt4 := 16#0#;
-- Output 2 polarity
POL2 : Boolean := False;
-- Output 2 Idle mode
IDLEM2 : Boolean := False;
-- Output 2 Idle State
IDLES2 : Boolean := False;
-- Output 2 Fault state
FAULT2 : OUTBR_FAULT2_Field := 16#0#;
-- Output 2 Chopper enable
CHP2 : Boolean := False;
-- Output 2 Deadtime upon burst mode Idle entry
DIDL2 : Boolean := False;
-- unspecified
Reserved_24_31 : HAL.UInt8 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for OUTBR_Register use record
Reserved_0_0 at 0 range 0 .. 0;
POL1 at 0 range 1 .. 1;
IDLEM1 at 0 range 2 .. 2;
IDLES1 at 0 range 3 .. 3;
FAULT1 at 0 range 4 .. 5;
CHP1 at 0 range 6 .. 6;
DIDL1 at 0 range 7 .. 7;
DTEN at 0 range 8 .. 8;
DLYPRTEN at 0 range 9 .. 9;
DLYPRT at 0 range 10 .. 12;
Reserved_13_16 at 0 range 13 .. 16;
POL2 at 0 range 17 .. 17;
IDLEM2 at 0 range 18 .. 18;
IDLES2 at 0 range 19 .. 19;
FAULT2 at 0 range 20 .. 21;
CHP2 at 0 range 22 .. 22;
DIDL2 at 0 range 23 .. 23;
Reserved_24_31 at 0 range 24 .. 31;
end record;
-- Timerx Fault Register
type FLTBR_Register is record
-- Fault 1 enable
FLT1EN : Boolean := False;
-- Fault 2 enable
FLT2EN : Boolean := False;
-- Fault 3 enable
FLT3EN : Boolean := False;
-- Fault 4 enable
FLT4EN : Boolean := False;
-- Fault 5 enable
FLT5EN : Boolean := False;
-- unspecified
Reserved_5_30 : HAL.UInt26 := 16#0#;
-- Fault sources Lock
FLTLCK : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for FLTBR_Register use record
FLT1EN at 0 range 0 .. 0;
FLT2EN at 0 range 1 .. 1;
FLT3EN at 0 range 2 .. 2;
FLT4EN at 0 range 3 .. 3;
FLT5EN at 0 range 4 .. 4;
Reserved_5_30 at 0 range 5 .. 30;
FLTLCK at 0 range 31 .. 31;
end record;
subtype TIMCCR_CKPSCx_Field is HAL.UInt3;
-- TIMCCR_DELCMP array element
subtype TIMCCR_DELCMP_Element is HAL.UInt2;
-- TIMCCR_DELCMP array
type TIMCCR_DELCMP_Field_Array is array (2 .. 3) of TIMCCR_DELCMP_Element
with Component_Size => 2, Size => 4;
-- Type definition for TIMCCR_DELCMP
type TIMCCR_DELCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- DELCMP as a value
Val : HAL.UInt4;
when True =>
-- DELCMP as an array
Arr : TIMCCR_DELCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for TIMCCR_DELCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
subtype TIMCCR_DACSYNC_Field is HAL.UInt2;
subtype TIMCCR_UPDGAT_Field is HAL.UInt4;
-- Timerx Control Register
type TIMCCR_Register is record
-- HRTIM Timer x Clock prescaler
CKPSCx : TIMCCR_CKPSCx_Field := 16#0#;
-- Continuous mode
CONT : Boolean := False;
-- Re-triggerable mode
RETRIG : Boolean := False;
-- Half mode enable
HALF : Boolean := False;
-- Push-Pull mode enable
PSHPLL : Boolean := False;
-- unspecified
Reserved_7_9 : HAL.UInt3 := 16#0#;
-- Synchronization Resets Timer x
SYNCRSTx : Boolean := False;
-- Synchronization Starts Timer x
SYNCSTRTx : Boolean := False;
-- Delayed CMP2 mode
DELCMP : TIMCCR_DELCMP_Field :=
(As_Array => False, Val => 16#0#);
-- unspecified
Reserved_16_16 : HAL.Bit := 16#0#;
-- Timer x Repetition update
TxREPU : Boolean := False;
-- Timerx reset update
TxRSTU : Boolean := False;
-- TAU
TAU : Boolean := False;
-- TBU
TBU : Boolean := False;
-- unspecified
Reserved_21_21 : HAL.Bit := 16#0#;
-- TDU
TDU : Boolean := False;
-- TEU
TEU : Boolean := False;
-- Master Timer update
MSTU : Boolean := False;
-- AC Synchronization
DACSYNC : TIMCCR_DACSYNC_Field := 16#0#;
-- Preload enable
PREEN : Boolean := False;
-- Update Gating
UPDGAT : TIMCCR_UPDGAT_Field := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for TIMCCR_Register use record
CKPSCx at 0 range 0 .. 2;
CONT at 0 range 3 .. 3;
RETRIG at 0 range 4 .. 4;
HALF at 0 range 5 .. 5;
PSHPLL at 0 range 6 .. 6;
Reserved_7_9 at 0 range 7 .. 9;
SYNCRSTx at 0 range 10 .. 10;
SYNCSTRTx at 0 range 11 .. 11;
DELCMP at 0 range 12 .. 15;
Reserved_16_16 at 0 range 16 .. 16;
TxREPU at 0 range 17 .. 17;
TxRSTU at 0 range 18 .. 18;
TAU at 0 range 19 .. 19;
TBU at 0 range 20 .. 20;
Reserved_21_21 at 0 range 21 .. 21;
TDU at 0 range 22 .. 22;
TEU at 0 range 23 .. 23;
MSTU at 0 range 24 .. 24;
DACSYNC at 0 range 25 .. 26;
PREEN at 0 range 27 .. 27;
UPDGAT at 0 range 28 .. 31;
end record;
-- TIMCISR_CMP array
type TIMCISR_CMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for TIMCISR_CMP
type TIMCISR_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt4;
when True =>
-- CMP as an array
Arr : TIMCISR_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for TIMCISR_CMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- TIMCISR_CPT array
type TIMCISR_CPT_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for TIMCISR_CPT
type TIMCISR_CPT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CPT as a value
Val : HAL.UInt2;
when True =>
-- CPT as an array
Arr : TIMCISR_CPT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for TIMCISR_CPT_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- Timerx Interrupt Status Register
type TIMCISR_Register is record
-- Read-only. Compare 1 Interrupt Flag
CMP : TIMCISR_CMP_Field;
-- Read-only. Repetition Interrupt Flag
REP : Boolean;
-- unspecified
Reserved_5_5 : HAL.Bit;
-- Read-only. Update Interrupt Flag
UPD : Boolean;
-- Read-only. Capture1 Interrupt Flag
CPT : TIMCISR_CPT_Field;
-- Read-only. Output 1 Set Interrupt Flag
SETx1 : Boolean;
-- Read-only. Output 1 Reset Interrupt Flag
RSTx1 : Boolean;
-- Read-only. Output 2 Set Interrupt Flag
SETx2 : Boolean;
-- Read-only. Output 2 Reset Interrupt Flag
RSTx2 : Boolean;
-- Read-only. Reset Interrupt Flag
RST : Boolean;
-- Read-only. Delayed Protection Flag
DLYPRT : Boolean;
-- unspecified
Reserved_15_15 : HAL.Bit;
-- Read-only. Current Push Pull Status
CPPSTAT : Boolean;
-- Read-only. Idle Push Pull Status
IPPSTAT : Boolean;
-- Read-only. Output 1 State
O1STAT : Boolean;
-- Read-only. Output 2 State
O2STAT : Boolean;
-- Read-only. Output 1 Copy
O1CPY : Boolean;
-- Read-only. Output 2 Copy
O2CPY : Boolean;
-- unspecified
Reserved_22_31 : HAL.UInt10;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for TIMCISR_Register use record
CMP at 0 range 0 .. 3;
REP at 0 range 4 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
UPD at 0 range 6 .. 6;
CPT at 0 range 7 .. 8;
SETx1 at 0 range 9 .. 9;
RSTx1 at 0 range 10 .. 10;
SETx2 at 0 range 11 .. 11;
RSTx2 at 0 range 12 .. 12;
RST at 0 range 13 .. 13;
DLYPRT at 0 range 14 .. 14;
Reserved_15_15 at 0 range 15 .. 15;
CPPSTAT at 0 range 16 .. 16;
IPPSTAT at 0 range 17 .. 17;
O1STAT at 0 range 18 .. 18;
O2STAT at 0 range 19 .. 19;
O1CPY at 0 range 20 .. 20;
O2CPY at 0 range 21 .. 21;
Reserved_22_31 at 0 range 22 .. 31;
end record;
-- Timerx Interrupt Clear Register
type TIMCICR_Register is record
-- Write-only. Compare 1 Interrupt flag Clear
CMP1C : Boolean := False;
-- Write-only. Compare 2 Interrupt flag Clear
CMP2C : Boolean := False;
-- Write-only. Compare 3 Interrupt flag Clear
CMP3C : Boolean := False;
-- Write-only. Compare 4 Interrupt flag Clear
CMP4C : Boolean := False;
-- Write-only. Repetition Interrupt flag Clear
REPC : Boolean := False;
-- unspecified
Reserved_5_5 : HAL.Bit := 16#0#;
-- Write-only. Update Interrupt flag Clear
UPDC : Boolean := False;
-- Write-only. Capture1 Interrupt flag Clear
CPT1C : Boolean := False;
-- Write-only. Capture2 Interrupt flag Clear
CPT2C : Boolean := False;
-- Write-only. Output 1 Set flag Clear
SET1xC : Boolean := False;
-- Write-only. Output 1 Reset flag Clear
RSTx1C : Boolean := False;
-- Write-only. Output 2 Set flag Clear
SET2xC : Boolean := False;
-- Write-only. Output 2 Reset flag Clear
RSTx2C : Boolean := False;
-- Write-only. Reset Interrupt flag Clear
RSTC : Boolean := False;
-- Write-only. Delayed Protection Flag Clear
DLYPRTC : Boolean := False;
-- unspecified
Reserved_15_31 : HAL.UInt17 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for TIMCICR_Register use record
CMP1C at 0 range 0 .. 0;
CMP2C at 0 range 1 .. 1;
CMP3C at 0 range 2 .. 2;
CMP4C at 0 range 3 .. 3;
REPC at 0 range 4 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
UPDC at 0 range 6 .. 6;
CPT1C at 0 range 7 .. 7;
CPT2C at 0 range 8 .. 8;
SET1xC at 0 range 9 .. 9;
RSTx1C at 0 range 10 .. 10;
SET2xC at 0 range 11 .. 11;
RSTx2C at 0 range 12 .. 12;
RSTC at 0 range 13 .. 13;
DLYPRTC at 0 range 14 .. 14;
Reserved_15_31 at 0 range 15 .. 31;
end record;
-- TIMxDIER
type TIMCDIER_Register is record
-- CMP1IE
CMP1IE : Boolean := False;
-- CMP2IE
CMP2IE : Boolean := False;
-- CMP3IE
CMP3IE : Boolean := False;
-- CMP4IE
CMP4IE : Boolean := False;
-- REPIE
REPIE : Boolean := False;
-- unspecified
Reserved_5_5 : HAL.Bit := 16#0#;
-- UPDIE
UPDIE : Boolean := False;
-- CPT1IE
CPT1IE : Boolean := False;
-- CPT2IE
CPT2IE : Boolean := False;
-- SET1xIE
SET1xIE : Boolean := False;
-- RSTx1IE
RSTx1IE : Boolean := False;
-- SETx2IE
SETx2IE : Boolean := False;
-- RSTx2IE
RSTx2IE : Boolean := False;
-- RSTIE
RSTIE : Boolean := False;
-- DLYPRTIE
DLYPRTIE : Boolean := False;
-- unspecified
Reserved_15_15 : HAL.Bit := 16#0#;
-- CMP1DE
CMP1DE : Boolean := False;
-- CMP2DE
CMP2DE : Boolean := False;
-- CMP3DE
CMP3DE : Boolean := False;
-- CMP4DE
CMP4DE : Boolean := False;
-- REPDE
REPDE : Boolean := False;
-- unspecified
Reserved_21_21 : HAL.Bit := 16#0#;
-- UPDDE
UPDDE : Boolean := False;
-- CPT1DE
CPT1DE : Boolean := False;
-- CPT2DE
CPT2DE : Boolean := False;
-- SET1xDE
SET1xDE : Boolean := False;
-- RSTx1DE
RSTx1DE : Boolean := False;
-- SETx2DE
SETx2DE : Boolean := False;
-- RSTx2DE
RSTx2DE : Boolean := False;
-- RSTDE
RSTDE : Boolean := False;
-- DLYPRTDE
DLYPRTDE : Boolean := False;
-- unspecified
Reserved_31_31 : HAL.Bit := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for TIMCDIER_Register use record
CMP1IE at 0 range 0 .. 0;
CMP2IE at 0 range 1 .. 1;
CMP3IE at 0 range 2 .. 2;
CMP4IE at 0 range 3 .. 3;
REPIE at 0 range 4 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
UPDIE at 0 range 6 .. 6;
CPT1IE at 0 range 7 .. 7;
CPT2IE at 0 range 8 .. 8;
SET1xIE at 0 range 9 .. 9;
RSTx1IE at 0 range 10 .. 10;
SETx2IE at 0 range 11 .. 11;
RSTx2IE at 0 range 12 .. 12;
RSTIE at 0 range 13 .. 13;
DLYPRTIE at 0 range 14 .. 14;
Reserved_15_15 at 0 range 15 .. 15;
CMP1DE at 0 range 16 .. 16;
CMP2DE at 0 range 17 .. 17;
CMP3DE at 0 range 18 .. 18;
CMP4DE at 0 range 19 .. 19;
REPDE at 0 range 20 .. 20;
Reserved_21_21 at 0 range 21 .. 21;
UPDDE at 0 range 22 .. 22;
CPT1DE at 0 range 23 .. 23;
CPT2DE at 0 range 24 .. 24;
SET1xDE at 0 range 25 .. 25;
RSTx1DE at 0 range 26 .. 26;
SETx2DE at 0 range 27 .. 27;
RSTx2DE at 0 range 28 .. 28;
RSTDE at 0 range 29 .. 29;
DLYPRTDE at 0 range 30 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype CNTCR_CNTx_Field is HAL.UInt16;
-- Timerx Counter Register
type CNTCR_Register is record
-- Timerx Counter value
CNTx : CNTCR_CNTx_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CNTCR_Register use record
CNTx at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype PERCR_PERx_Field is HAL.UInt16;
-- Timerx Period Register
type PERCR_Register is record
-- Timerx Period value
PERx : PERCR_PERx_Field := 16#FFFF#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for PERCR_Register use record
PERx at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype REPCR_REPx_Field is HAL.UInt8;
-- Timerx Repetition Register
type REPCR_Register is record
-- Timerx Repetition counter value
REPx : REPCR_REPx_Field := 16#0#;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for REPCR_Register use record
REPx at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
subtype CMP1CR_CMP1x_Field is HAL.UInt16;
-- Timerx Compare 1 Register
type CMP1CR_Register is record
-- Timerx Compare 1 value
CMP1x : CMP1CR_CMP1x_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CMP1CR_Register use record
CMP1x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CMP1CCR_CMP1x_Field is HAL.UInt16;
subtype CMP1CCR_REPx_Field is HAL.UInt8;
-- Timerx Compare 1 Compound Register
type CMP1CCR_Register is record
-- Timerx Compare 1 value
CMP1x : CMP1CCR_CMP1x_Field := 16#0#;
-- Timerx Repetition value (aliased from HRTIM_REPx register)
REPx : CMP1CCR_REPx_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 CMP1CCR_Register use record
CMP1x at 0 range 0 .. 15;
REPx at 0 range 16 .. 23;
Reserved_24_31 at 0 range 24 .. 31;
end record;
subtype CMP2CR_CMP2x_Field is HAL.UInt16;
-- Timerx Compare 2 Register
type CMP2CR_Register is record
-- Timerx Compare 2 value
CMP2x : CMP2CR_CMP2x_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CMP2CR_Register use record
CMP2x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CMP3CR_CMP3x_Field is HAL.UInt16;
-- Timerx Compare 3 Register
type CMP3CR_Register is record
-- Timerx Compare 3 value
CMP3x : CMP3CR_CMP3x_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CMP3CR_Register use record
CMP3x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CMP4CR_CMP4x_Field is HAL.UInt16;
-- Timerx Compare 4 Register
type CMP4CR_Register is record
-- Timerx Compare 4 value
CMP4x : CMP4CR_CMP4x_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CMP4CR_Register use record
CMP4x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CPT1CR_CPT1x_Field is HAL.UInt16;
-- Timerx Capture 1 Register
type CPT1CR_Register is record
-- Read-only. Timerx Capture 1 value
CPT1x : CPT1CR_CPT1x_Field;
-- unspecified
Reserved_16_31 : HAL.UInt16;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CPT1CR_Register use record
CPT1x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CPT2CR_CPT2x_Field is HAL.UInt16;
-- Timerx Capture 2 Register
type CPT2CR_Register is record
-- Read-only. Timerx Capture 2 value
CPT2x : CPT2CR_CPT2x_Field;
-- unspecified
Reserved_16_31 : HAL.UInt16;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CPT2CR_Register use record
CPT2x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype DTCR_DTRx_Field is HAL.UInt9;
subtype DTCR_DTPRSC_Field is HAL.UInt3;
subtype DTCR_DTFx_Field is HAL.UInt9;
-- Timerx Deadtime Register
type DTCR_Register is record
-- Deadtime Rising value
DTRx : DTCR_DTRx_Field := 16#0#;
-- Sign Deadtime Rising value
SDTRx : Boolean := False;
-- Deadtime Prescaler
DTPRSC : DTCR_DTPRSC_Field := 16#0#;
-- unspecified
Reserved_13_13 : HAL.Bit := 16#0#;
-- Deadtime Rising Sign Lock
DTRSLKx : Boolean := False;
-- Deadtime Rising Lock
DTRLKx : Boolean := False;
-- Deadtime Falling value
DTFx : DTCR_DTFx_Field := 16#0#;
-- Sign Deadtime Falling value
SDTFx : Boolean := False;
-- unspecified
Reserved_26_29 : HAL.UInt4 := 16#0#;
-- Deadtime Falling Sign Lock
DTFSLKx : Boolean := False;
-- Deadtime Falling Lock
DTFLKx : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for DTCR_Register use record
DTRx at 0 range 0 .. 8;
SDTRx at 0 range 9 .. 9;
DTPRSC at 0 range 10 .. 12;
Reserved_13_13 at 0 range 13 .. 13;
DTRSLKx at 0 range 14 .. 14;
DTRLKx at 0 range 15 .. 15;
DTFx at 0 range 16 .. 24;
SDTFx at 0 range 25 .. 25;
Reserved_26_29 at 0 range 26 .. 29;
DTFSLKx at 0 range 30 .. 30;
DTFLKx at 0 range 31 .. 31;
end record;
-- SETC1R_CMP array
type SETC1R_CMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for SETC1R_CMP
type SETC1R_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt4;
when True =>
-- CMP as an array
Arr : SETC1R_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for SETC1R_CMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- SETC1R_MSTCMP array
type SETC1R_MSTCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for SETC1R_MSTCMP
type SETC1R_MSTCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MSTCMP as a value
Val : HAL.UInt4;
when True =>
-- MSTCMP as an array
Arr : SETC1R_MSTCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for SETC1R_MSTCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- SETC1R_TIMEVNT array
type SETC1R_TIMEVNT_Field_Array is array (1 .. 9) of Boolean
with Component_Size => 1, Size => 9;
-- Type definition for SETC1R_TIMEVNT
type SETC1R_TIMEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMEVNT as a value
Val : HAL.UInt9;
when True =>
-- TIMEVNT as an array
Arr : SETC1R_TIMEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 9;
for SETC1R_TIMEVNT_Field use record
Val at 0 range 0 .. 8;
Arr at 0 range 0 .. 8;
end record;
-- SETC1R_EXTEVNT array
type SETC1R_EXTEVNT_Field_Array is array (1 .. 10) of Boolean
with Component_Size => 1, Size => 10;
-- Type definition for SETC1R_EXTEVNT
type SETC1R_EXTEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- EXTEVNT as a value
Val : HAL.UInt10;
when True =>
-- EXTEVNT as an array
Arr : SETC1R_EXTEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 10;
for SETC1R_EXTEVNT_Field use record
Val at 0 range 0 .. 9;
Arr at 0 range 0 .. 9;
end record;
-- Timerx Output1 Set Register
type SETC1R_Register is record
-- Software Set trigger
SST : Boolean := False;
-- Timer A resynchronizaton
RESYNC : Boolean := False;
-- Timer A Period
PER : Boolean := False;
-- Timer A compare 1
CMP : SETC1R_CMP_Field := (As_Array => False, Val => 16#0#);
-- Master Period
MSTPER : Boolean := False;
-- Master Compare 1
MSTCMP : SETC1R_MSTCMP_Field := (As_Array => False, Val => 16#0#);
-- Timer Event 1
TIMEVNT : SETC1R_TIMEVNT_Field := (As_Array => False, Val => 16#0#);
-- External Event 1
EXTEVNT : SETC1R_EXTEVNT_Field := (As_Array => False, Val => 16#0#);
-- Registers update (transfer preload to active)
UPDATE : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for SETC1R_Register use record
SST at 0 range 0 .. 0;
RESYNC at 0 range 1 .. 1;
PER at 0 range 2 .. 2;
CMP at 0 range 3 .. 6;
MSTPER at 0 range 7 .. 7;
MSTCMP at 0 range 8 .. 11;
TIMEVNT at 0 range 12 .. 20;
EXTEVNT at 0 range 21 .. 30;
UPDATE at 0 range 31 .. 31;
end record;
-- RSTC1R_CMP array
type RSTC1R_CMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for RSTC1R_CMP
type RSTC1R_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt4;
when True =>
-- CMP as an array
Arr : RSTC1R_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for RSTC1R_CMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- RSTC1R_MSTCMP array
type RSTC1R_MSTCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for RSTC1R_MSTCMP
type RSTC1R_MSTCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MSTCMP as a value
Val : HAL.UInt4;
when True =>
-- MSTCMP as an array
Arr : RSTC1R_MSTCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for RSTC1R_MSTCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- RSTC1R_TIMEVNT array
type RSTC1R_TIMEVNT_Field_Array is array (1 .. 9) of Boolean
with Component_Size => 1, Size => 9;
-- Type definition for RSTC1R_TIMEVNT
type RSTC1R_TIMEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMEVNT as a value
Val : HAL.UInt9;
when True =>
-- TIMEVNT as an array
Arr : RSTC1R_TIMEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 9;
for RSTC1R_TIMEVNT_Field use record
Val at 0 range 0 .. 8;
Arr at 0 range 0 .. 8;
end record;
-- RSTC1R_EXTEVNT array
type RSTC1R_EXTEVNT_Field_Array is array (1 .. 10) of Boolean
with Component_Size => 1, Size => 10;
-- Type definition for RSTC1R_EXTEVNT
type RSTC1R_EXTEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- EXTEVNT as a value
Val : HAL.UInt10;
when True =>
-- EXTEVNT as an array
Arr : RSTC1R_EXTEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 10;
for RSTC1R_EXTEVNT_Field use record
Val at 0 range 0 .. 9;
Arr at 0 range 0 .. 9;
end record;
-- Timerx Output1 Reset Register
type RSTC1R_Register is record
-- SRT
SRT : Boolean := False;
-- RESYNC
RESYNC : Boolean := False;
-- PER
PER : Boolean := False;
-- CMP1
CMP : RSTC1R_CMP_Field := (As_Array => False, Val => 16#0#);
-- MSTPER
MSTPER : Boolean := False;
-- MSTCMP1
MSTCMP : RSTC1R_MSTCMP_Field := (As_Array => False, Val => 16#0#);
-- TIMEVNT1
TIMEVNT : RSTC1R_TIMEVNT_Field := (As_Array => False, Val => 16#0#);
-- EXTEVNT1
EXTEVNT : RSTC1R_EXTEVNT_Field := (As_Array => False, Val => 16#0#);
-- UPDATE
UPDATE : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for RSTC1R_Register use record
SRT at 0 range 0 .. 0;
RESYNC at 0 range 1 .. 1;
PER at 0 range 2 .. 2;
CMP at 0 range 3 .. 6;
MSTPER at 0 range 7 .. 7;
MSTCMP at 0 range 8 .. 11;
TIMEVNT at 0 range 12 .. 20;
EXTEVNT at 0 range 21 .. 30;
UPDATE at 0 range 31 .. 31;
end record;
-- SETC2R_CMP array
type SETC2R_CMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for SETC2R_CMP
type SETC2R_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt4;
when True =>
-- CMP as an array
Arr : SETC2R_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for SETC2R_CMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- SETC2R_MSTCMP array
type SETC2R_MSTCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for SETC2R_MSTCMP
type SETC2R_MSTCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MSTCMP as a value
Val : HAL.UInt4;
when True =>
-- MSTCMP as an array
Arr : SETC2R_MSTCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for SETC2R_MSTCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- SETC2R_TIMEVNT array
type SETC2R_TIMEVNT_Field_Array is array (1 .. 9) of Boolean
with Component_Size => 1, Size => 9;
-- Type definition for SETC2R_TIMEVNT
type SETC2R_TIMEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMEVNT as a value
Val : HAL.UInt9;
when True =>
-- TIMEVNT as an array
Arr : SETC2R_TIMEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 9;
for SETC2R_TIMEVNT_Field use record
Val at 0 range 0 .. 8;
Arr at 0 range 0 .. 8;
end record;
-- SETC2R_EXTEVNT array
type SETC2R_EXTEVNT_Field_Array is array (1 .. 10) of Boolean
with Component_Size => 1, Size => 10;
-- Type definition for SETC2R_EXTEVNT
type SETC2R_EXTEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- EXTEVNT as a value
Val : HAL.UInt10;
when True =>
-- EXTEVNT as an array
Arr : SETC2R_EXTEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 10;
for SETC2R_EXTEVNT_Field use record
Val at 0 range 0 .. 9;
Arr at 0 range 0 .. 9;
end record;
-- Timerx Output2 Set Register
type SETC2R_Register is record
-- SST
SST : Boolean := False;
-- RESYNC
RESYNC : Boolean := False;
-- PER
PER : Boolean := False;
-- CMP1
CMP : SETC2R_CMP_Field := (As_Array => False, Val => 16#0#);
-- MSTPER
MSTPER : Boolean := False;
-- MSTCMP1
MSTCMP : SETC2R_MSTCMP_Field := (As_Array => False, Val => 16#0#);
-- TIMEVNT1
TIMEVNT : SETC2R_TIMEVNT_Field := (As_Array => False, Val => 16#0#);
-- EXTEVNT1
EXTEVNT : SETC2R_EXTEVNT_Field := (As_Array => False, Val => 16#0#);
-- UPDATE
UPDATE : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for SETC2R_Register use record
SST at 0 range 0 .. 0;
RESYNC at 0 range 1 .. 1;
PER at 0 range 2 .. 2;
CMP at 0 range 3 .. 6;
MSTPER at 0 range 7 .. 7;
MSTCMP at 0 range 8 .. 11;
TIMEVNT at 0 range 12 .. 20;
EXTEVNT at 0 range 21 .. 30;
UPDATE at 0 range 31 .. 31;
end record;
-- RSTC2R_CMP array
type RSTC2R_CMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for RSTC2R_CMP
type RSTC2R_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt4;
when True =>
-- CMP as an array
Arr : RSTC2R_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for RSTC2R_CMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- RSTC2R_MSTCMP array
type RSTC2R_MSTCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for RSTC2R_MSTCMP
type RSTC2R_MSTCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MSTCMP as a value
Val : HAL.UInt4;
when True =>
-- MSTCMP as an array
Arr : RSTC2R_MSTCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for RSTC2R_MSTCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- RSTC2R_TIMEVNT array
type RSTC2R_TIMEVNT_Field_Array is array (1 .. 9) of Boolean
with Component_Size => 1, Size => 9;
-- Type definition for RSTC2R_TIMEVNT
type RSTC2R_TIMEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMEVNT as a value
Val : HAL.UInt9;
when True =>
-- TIMEVNT as an array
Arr : RSTC2R_TIMEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 9;
for RSTC2R_TIMEVNT_Field use record
Val at 0 range 0 .. 8;
Arr at 0 range 0 .. 8;
end record;
-- RSTC2R_EXTEVNT array
type RSTC2R_EXTEVNT_Field_Array is array (1 .. 10) of Boolean
with Component_Size => 1, Size => 10;
-- Type definition for RSTC2R_EXTEVNT
type RSTC2R_EXTEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- EXTEVNT as a value
Val : HAL.UInt10;
when True =>
-- EXTEVNT as an array
Arr : RSTC2R_EXTEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 10;
for RSTC2R_EXTEVNT_Field use record
Val at 0 range 0 .. 9;
Arr at 0 range 0 .. 9;
end record;
-- Timerx Output2 Reset Register
type RSTC2R_Register is record
-- SRT
SRT : Boolean := False;
-- RESYNC
RESYNC : Boolean := False;
-- PER
PER : Boolean := False;
-- CMP1
CMP : RSTC2R_CMP_Field := (As_Array => False, Val => 16#0#);
-- MSTPER
MSTPER : Boolean := False;
-- MSTCMP1
MSTCMP : RSTC2R_MSTCMP_Field := (As_Array => False, Val => 16#0#);
-- TIMEVNT1
TIMEVNT : RSTC2R_TIMEVNT_Field := (As_Array => False, Val => 16#0#);
-- EXTEVNT1
EXTEVNT : RSTC2R_EXTEVNT_Field := (As_Array => False, Val => 16#0#);
-- UPDATE
UPDATE : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for RSTC2R_Register use record
SRT at 0 range 0 .. 0;
RESYNC at 0 range 1 .. 1;
PER at 0 range 2 .. 2;
CMP at 0 range 3 .. 6;
MSTPER at 0 range 7 .. 7;
MSTCMP at 0 range 8 .. 11;
TIMEVNT at 0 range 12 .. 20;
EXTEVNT at 0 range 21 .. 30;
UPDATE at 0 range 31 .. 31;
end record;
subtype EEFCR1_EE1FLTR_Field is HAL.UInt4;
subtype EEFCR1_EE2FLTR_Field is HAL.UInt4;
subtype EEFCR1_EE3FLTR_Field is HAL.UInt4;
subtype EEFCR1_EE4FLTR_Field is HAL.UInt4;
subtype EEFCR1_EE5FLTR_Field is HAL.UInt4;
-- Timerx External Event Filtering Register 1
type EEFCR1_Register is record
-- External Event 1 latch
EE1LTCH : Boolean := False;
-- External Event 1 filter
EE1FLTR : EEFCR1_EE1FLTR_Field := 16#0#;
-- unspecified
Reserved_5_5 : HAL.Bit := 16#0#;
-- External Event 2 latch
EE2LTCH : Boolean := False;
-- External Event 2 filter
EE2FLTR : EEFCR1_EE2FLTR_Field := 16#0#;
-- unspecified
Reserved_11_11 : HAL.Bit := 16#0#;
-- External Event 3 latch
EE3LTCH : Boolean := False;
-- External Event 3 filter
EE3FLTR : EEFCR1_EE3FLTR_Field := 16#0#;
-- unspecified
Reserved_17_17 : HAL.Bit := 16#0#;
-- External Event 4 latch
EE4LTCH : Boolean := False;
-- External Event 4 filter
EE4FLTR : EEFCR1_EE4FLTR_Field := 16#0#;
-- unspecified
Reserved_23_23 : HAL.Bit := 16#0#;
-- External Event 5 latch
EE5LTCH : Boolean := False;
-- External Event 5 filter
EE5FLTR : EEFCR1_EE5FLTR_Field := 16#0#;
-- unspecified
Reserved_29_31 : HAL.UInt3 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for EEFCR1_Register use record
EE1LTCH at 0 range 0 .. 0;
EE1FLTR at 0 range 1 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
EE2LTCH at 0 range 6 .. 6;
EE2FLTR at 0 range 7 .. 10;
Reserved_11_11 at 0 range 11 .. 11;
EE3LTCH at 0 range 12 .. 12;
EE3FLTR at 0 range 13 .. 16;
Reserved_17_17 at 0 range 17 .. 17;
EE4LTCH at 0 range 18 .. 18;
EE4FLTR at 0 range 19 .. 22;
Reserved_23_23 at 0 range 23 .. 23;
EE5LTCH at 0 range 24 .. 24;
EE5FLTR at 0 range 25 .. 28;
Reserved_29_31 at 0 range 29 .. 31;
end record;
subtype EEFCR2_EE6FLTR_Field is HAL.UInt4;
subtype EEFCR2_EE7FLTR_Field is HAL.UInt4;
subtype EEFCR2_EE8FLTR_Field is HAL.UInt4;
subtype EEFCR2_EE9FLTR_Field is HAL.UInt4;
subtype EEFCR2_EE10FLTR_Field is HAL.UInt4;
-- Timerx External Event Filtering Register 2
type EEFCR2_Register is record
-- External Event 6 latch
EE6LTCH : Boolean := False;
-- External Event 6 filter
EE6FLTR : EEFCR2_EE6FLTR_Field := 16#0#;
-- unspecified
Reserved_5_5 : HAL.Bit := 16#0#;
-- External Event 7 latch
EE7LTCH : Boolean := False;
-- External Event 7 filter
EE7FLTR : EEFCR2_EE7FLTR_Field := 16#0#;
-- unspecified
Reserved_11_11 : HAL.Bit := 16#0#;
-- External Event 8 latch
EE8LTCH : Boolean := False;
-- External Event 8 filter
EE8FLTR : EEFCR2_EE8FLTR_Field := 16#0#;
-- unspecified
Reserved_17_17 : HAL.Bit := 16#0#;
-- External Event 9 latch
EE9LTCH : Boolean := False;
-- External Event 9 filter
EE9FLTR : EEFCR2_EE9FLTR_Field := 16#0#;
-- unspecified
Reserved_23_23 : HAL.Bit := 16#0#;
-- External Event 10 latch
EE10LTCH : Boolean := False;
-- External Event 10 filter
EE10FLTR : EEFCR2_EE10FLTR_Field := 16#0#;
-- unspecified
Reserved_29_31 : HAL.UInt3 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for EEFCR2_Register use record
EE6LTCH at 0 range 0 .. 0;
EE6FLTR at 0 range 1 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
EE7LTCH at 0 range 6 .. 6;
EE7FLTR at 0 range 7 .. 10;
Reserved_11_11 at 0 range 11 .. 11;
EE8LTCH at 0 range 12 .. 12;
EE8FLTR at 0 range 13 .. 16;
Reserved_17_17 at 0 range 17 .. 17;
EE9LTCH at 0 range 18 .. 18;
EE9FLTR at 0 range 19 .. 22;
Reserved_23_23 at 0 range 23 .. 23;
EE10LTCH at 0 range 24 .. 24;
EE10FLTR at 0 range 25 .. 28;
Reserved_29_31 at 0 range 29 .. 31;
end record;
-- RSTCR_CMP array
type RSTCR_CMP_Field_Array is array (2 .. 3) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for RSTCR_CMP
type RSTCR_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt2;
when True =>
-- CMP as an array
Arr : RSTCR_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for RSTCR_CMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- RSTCR_MSTCMP array
type RSTCR_MSTCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for RSTCR_MSTCMP
type RSTCR_MSTCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MSTCMP as a value
Val : HAL.UInt4;
when True =>
-- MSTCMP as an array
Arr : RSTCR_MSTCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for RSTCR_MSTCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- RSTCR_EXTEVNT array
type RSTCR_EXTEVNT_Field_Array is array (1 .. 10) of Boolean
with Component_Size => 1, Size => 10;
-- Type definition for RSTCR_EXTEVNT
type RSTCR_EXTEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- EXTEVNT as a value
Val : HAL.UInt10;
when True =>
-- EXTEVNT as an array
Arr : RSTCR_EXTEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 10;
for RSTCR_EXTEVNT_Field use record
Val at 0 range 0 .. 9;
Arr at 0 range 0 .. 9;
end record;
-- RSTCR_TIMACMP array
type RSTCR_TIMACMP_Field_Array is array (1 .. 3) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for RSTCR_TIMACMP
type RSTCR_TIMACMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMACMP as a value
Val : HAL.UInt3;
when True =>
-- TIMACMP as an array
Arr : RSTCR_TIMACMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for RSTCR_TIMACMP_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- RSTCR_TIMBCMP array
type RSTCR_TIMBCMP_Field_Array is array (1 .. 3) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for RSTCR_TIMBCMP
type RSTCR_TIMBCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMBCMP as a value
Val : HAL.UInt3;
when True =>
-- TIMBCMP as an array
Arr : RSTCR_TIMBCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for RSTCR_TIMBCMP_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- RSTCR_TIMDCMP array
type RSTCR_TIMDCMP_Field_Array is array (1 .. 3) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for RSTCR_TIMDCMP
type RSTCR_TIMDCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMDCMP as a value
Val : HAL.UInt3;
when True =>
-- TIMDCMP as an array
Arr : RSTCR_TIMDCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for RSTCR_TIMDCMP_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- RSTCR_TIMECMP array
type RSTCR_TIMECMP_Field_Array is array (1 .. 3) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for RSTCR_TIMECMP
type RSTCR_TIMECMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMECMP as a value
Val : HAL.UInt3;
when True =>
-- TIMECMP as an array
Arr : RSTCR_TIMECMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for RSTCR_TIMECMP_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- TimerA Reset Register
type RSTCR_Register is record
-- unspecified
Reserved_0_0 : HAL.Bit := 16#0#;
-- Timer A Update reset
UPDT : Boolean := False;
-- Timer A compare 2 reset
CMP : RSTCR_CMP_Field := (As_Array => False, Val => 16#0#);
-- Master timer Period
MSTPER : Boolean := False;
-- Master compare 1
MSTCMP : RSTCR_MSTCMP_Field :=
(As_Array => False, Val => 16#0#);
-- External Event 1
EXTEVNT : RSTCR_EXTEVNT_Field :=
(As_Array => False, Val => 16#0#);
-- Timer A Compare 1
TIMACMP : RSTCR_TIMACMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer B Compare 1
TIMBCMP : RSTCR_TIMBCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer D Compare 1
TIMDCMP : RSTCR_TIMDCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer E Compare 1
TIMECMP : RSTCR_TIMECMP_Field :=
(As_Array => False, Val => 16#0#);
-- unspecified
Reserved_31_31 : HAL.Bit := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for RSTCR_Register use record
Reserved_0_0 at 0 range 0 .. 0;
UPDT at 0 range 1 .. 1;
CMP at 0 range 2 .. 3;
MSTPER at 0 range 4 .. 4;
MSTCMP at 0 range 5 .. 8;
EXTEVNT at 0 range 9 .. 18;
TIMACMP at 0 range 19 .. 21;
TIMBCMP at 0 range 22 .. 24;
TIMDCMP at 0 range 25 .. 27;
TIMECMP at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype CHPCR_CHPFRQ_Field is HAL.UInt4;
subtype CHPCR_CHPDTY_Field is HAL.UInt3;
subtype CHPCR_STRTPW_Field is HAL.UInt4;
-- Timerx Chopper Register
type CHPCR_Register is record
-- Timerx carrier frequency value
CHPFRQ : CHPCR_CHPFRQ_Field := 16#0#;
-- Timerx chopper duty cycle value
CHPDTY : CHPCR_CHPDTY_Field := 16#0#;
-- STRTPW
STRTPW : CHPCR_STRTPW_Field := 16#0#;
-- unspecified
Reserved_11_31 : HAL.UInt21 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CHPCR_Register use record
CHPFRQ at 0 range 0 .. 3;
CHPDTY at 0 range 4 .. 6;
STRTPW at 0 range 7 .. 10;
Reserved_11_31 at 0 range 11 .. 31;
end record;
-- CPT1CCR_TACMP array
type CPT1CCR_TACMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT1CCR_TACMP
type CPT1CCR_TACMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TACMP as a value
Val : HAL.UInt2;
when True =>
-- TACMP as an array
Arr : CPT1CCR_TACMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT1CCR_TACMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT1CCR_TBCMP array
type CPT1CCR_TBCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT1CCR_TBCMP
type CPT1CCR_TBCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TBCMP as a value
Val : HAL.UInt2;
when True =>
-- TBCMP as an array
Arr : CPT1CCR_TBCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT1CCR_TBCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT1CCR_TDCMP array
type CPT1CCR_TDCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT1CCR_TDCMP
type CPT1CCR_TDCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TDCMP as a value
Val : HAL.UInt2;
when True =>
-- TDCMP as an array
Arr : CPT1CCR_TDCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT1CCR_TDCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT1CCR_TECMP array
type CPT1CCR_TECMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT1CCR_TECMP
type CPT1CCR_TECMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TECMP as a value
Val : HAL.UInt2;
when True =>
-- TECMP as an array
Arr : CPT1CCR_TECMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT1CCR_TECMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- Timerx Capture 2 Control Register
type CPT1CCR_Register is record
-- Software Capture
SWCPT : Boolean := False;
-- Update Capture
UDPCPT : Boolean := False;
-- External Event 1 Capture
EXEV1CPT : Boolean := False;
-- External Event 2 Capture
EXEV2CPT : Boolean := False;
-- External Event 3 Capture
EXEV3CPT : Boolean := False;
-- External Event 4 Capture
EXEV4CPT : Boolean := False;
-- External Event 5 Capture
EXEV5CPT : Boolean := False;
-- External Event 6 Capture
EXEV6CPT : Boolean := False;
-- External Event 7 Capture
EXEV7CPT : Boolean := False;
-- External Event 8 Capture
EXEV8CPT : Boolean := False;
-- External Event 9 Capture
EXEV9CPT : Boolean := False;
-- External Event 10 Capture
EXEV10CPT : Boolean := False;
-- Timer A output 1 Set
TA1SET : Boolean := False;
-- Timer A output 1 Reset
TA1RST : Boolean := False;
-- Timer A Compare 1
TACMP : CPT1CCR_TACMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer B output 1 Set
TB1SET : Boolean := False;
-- Timer B output 1 Reset
TB1RST : Boolean := False;
-- Timer B Compare 1
TBCMP : CPT1CCR_TBCMP_Field :=
(As_Array => False, Val => 16#0#);
-- unspecified
Reserved_20_23 : HAL.UInt4 := 16#0#;
-- Timer D output 1 Set
TD1SET : Boolean := False;
-- Timer D output 1 Reset
TD1RST : Boolean := False;
-- Timer D Compare 1
TDCMP : CPT1CCR_TDCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer E output 1 Set
TE1SET : Boolean := False;
-- Timer E output 1 Reset
TE1RST : Boolean := False;
-- Timer E Compare 1
TECMP : CPT1CCR_TECMP_Field :=
(As_Array => False, Val => 16#0#);
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CPT1CCR_Register use record
SWCPT at 0 range 0 .. 0;
UDPCPT at 0 range 1 .. 1;
EXEV1CPT at 0 range 2 .. 2;
EXEV2CPT at 0 range 3 .. 3;
EXEV3CPT at 0 range 4 .. 4;
EXEV4CPT at 0 range 5 .. 5;
EXEV5CPT at 0 range 6 .. 6;
EXEV6CPT at 0 range 7 .. 7;
EXEV7CPT at 0 range 8 .. 8;
EXEV8CPT at 0 range 9 .. 9;
EXEV9CPT at 0 range 10 .. 10;
EXEV10CPT at 0 range 11 .. 11;
TA1SET at 0 range 12 .. 12;
TA1RST at 0 range 13 .. 13;
TACMP at 0 range 14 .. 15;
TB1SET at 0 range 16 .. 16;
TB1RST at 0 range 17 .. 17;
TBCMP at 0 range 18 .. 19;
Reserved_20_23 at 0 range 20 .. 23;
TD1SET at 0 range 24 .. 24;
TD1RST at 0 range 25 .. 25;
TDCMP at 0 range 26 .. 27;
TE1SET at 0 range 28 .. 28;
TE1RST at 0 range 29 .. 29;
TECMP at 0 range 30 .. 31;
end record;
-- CPT2CCR_TACMP array
type CPT2CCR_TACMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT2CCR_TACMP
type CPT2CCR_TACMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TACMP as a value
Val : HAL.UInt2;
when True =>
-- TACMP as an array
Arr : CPT2CCR_TACMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT2CCR_TACMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT2CCR_TBCMP array
type CPT2CCR_TBCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT2CCR_TBCMP
type CPT2CCR_TBCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TBCMP as a value
Val : HAL.UInt2;
when True =>
-- TBCMP as an array
Arr : CPT2CCR_TBCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT2CCR_TBCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT2CCR_TDCMP array
type CPT2CCR_TDCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT2CCR_TDCMP
type CPT2CCR_TDCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TDCMP as a value
Val : HAL.UInt2;
when True =>
-- TDCMP as an array
Arr : CPT2CCR_TDCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT2CCR_TDCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT2CCR_TECMP array
type CPT2CCR_TECMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT2CCR_TECMP
type CPT2CCR_TECMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TECMP as a value
Val : HAL.UInt2;
when True =>
-- TECMP as an array
Arr : CPT2CCR_TECMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT2CCR_TECMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT2xCR
type CPT2CCR_Register is record
-- Software Capture
SWCPT : Boolean := False;
-- Update Capture
UDPCPT : Boolean := False;
-- External Event 1 Capture
EXEV1CPT : Boolean := False;
-- External Event 2 Capture
EXEV2CPT : Boolean := False;
-- External Event 3 Capture
EXEV3CPT : Boolean := False;
-- External Event 4 Capture
EXEV4CPT : Boolean := False;
-- External Event 5 Capture
EXEV5CPT : Boolean := False;
-- External Event 6 Capture
EXEV6CPT : Boolean := False;
-- External Event 7 Capture
EXEV7CPT : Boolean := False;
-- External Event 8 Capture
EXEV8CPT : Boolean := False;
-- External Event 9 Capture
EXEV9CPT : Boolean := False;
-- External Event 10 Capture
EXEV10CPT : Boolean := False;
-- Timer A output 1 Set
TA1SET : Boolean := False;
-- Timer A output 1 Reset
TA1RST : Boolean := False;
-- Timer A Compare 1
TACMP : CPT2CCR_TACMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer B output 1 Set
TB1SET : Boolean := False;
-- Timer B output 1 Reset
TB1RST : Boolean := False;
-- Timer B Compare 1
TBCMP : CPT2CCR_TBCMP_Field :=
(As_Array => False, Val => 16#0#);
-- unspecified
Reserved_20_23 : HAL.UInt4 := 16#0#;
-- Timer D output 1 Set
TD1SET : Boolean := False;
-- Timer D output 1 Reset
TD1RST : Boolean := False;
-- Timer D Compare 1
TDCMP : CPT2CCR_TDCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer E output 1 Set
TE1SET : Boolean := False;
-- Timer E output 1 Reset
TE1RST : Boolean := False;
-- Timer E Compare 1
TECMP : CPT2CCR_TECMP_Field :=
(As_Array => False, Val => 16#0#);
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CPT2CCR_Register use record
SWCPT at 0 range 0 .. 0;
UDPCPT at 0 range 1 .. 1;
EXEV1CPT at 0 range 2 .. 2;
EXEV2CPT at 0 range 3 .. 3;
EXEV3CPT at 0 range 4 .. 4;
EXEV4CPT at 0 range 5 .. 5;
EXEV5CPT at 0 range 6 .. 6;
EXEV6CPT at 0 range 7 .. 7;
EXEV7CPT at 0 range 8 .. 8;
EXEV8CPT at 0 range 9 .. 9;
EXEV9CPT at 0 range 10 .. 10;
EXEV10CPT at 0 range 11 .. 11;
TA1SET at 0 range 12 .. 12;
TA1RST at 0 range 13 .. 13;
TACMP at 0 range 14 .. 15;
TB1SET at 0 range 16 .. 16;
TB1RST at 0 range 17 .. 17;
TBCMP at 0 range 18 .. 19;
Reserved_20_23 at 0 range 20 .. 23;
TD1SET at 0 range 24 .. 24;
TD1RST at 0 range 25 .. 25;
TDCMP at 0 range 26 .. 27;
TE1SET at 0 range 28 .. 28;
TE1RST at 0 range 29 .. 29;
TECMP at 0 range 30 .. 31;
end record;
subtype OUTCR_FAULT1_Field is HAL.UInt2;
subtype OUTCR_DLYPRT_Field is HAL.UInt3;
subtype OUTCR_FAULT2_Field is HAL.UInt2;
-- Timerx Output Register
type OUTCR_Register is record
-- unspecified
Reserved_0_0 : HAL.Bit := 16#0#;
-- Output 1 polarity
POL1 : Boolean := False;
-- Output 1 Idle mode
IDLEM1 : Boolean := False;
-- Output 1 Idle State
IDLES1 : Boolean := False;
-- Output 1 Fault state
FAULT1 : OUTCR_FAULT1_Field := 16#0#;
-- Output 1 Chopper enable
CHP1 : Boolean := False;
-- Output 1 Deadtime upon burst mode Idle entry
DIDL1 : Boolean := False;
-- Deadtime enable
DTEN : Boolean := False;
-- Delayed Protection Enable
DLYPRTEN : Boolean := False;
-- Delayed Protection
DLYPRT : OUTCR_DLYPRT_Field := 16#0#;
-- unspecified
Reserved_13_16 : HAL.UInt4 := 16#0#;
-- Output 2 polarity
POL2 : Boolean := False;
-- Output 2 Idle mode
IDLEM2 : Boolean := False;
-- Output 2 Idle State
IDLES2 : Boolean := False;
-- Output 2 Fault state
FAULT2 : OUTCR_FAULT2_Field := 16#0#;
-- Output 2 Chopper enable
CHP2 : Boolean := False;
-- Output 2 Deadtime upon burst mode Idle entry
DIDL2 : Boolean := False;
-- unspecified
Reserved_24_31 : HAL.UInt8 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for OUTCR_Register use record
Reserved_0_0 at 0 range 0 .. 0;
POL1 at 0 range 1 .. 1;
IDLEM1 at 0 range 2 .. 2;
IDLES1 at 0 range 3 .. 3;
FAULT1 at 0 range 4 .. 5;
CHP1 at 0 range 6 .. 6;
DIDL1 at 0 range 7 .. 7;
DTEN at 0 range 8 .. 8;
DLYPRTEN at 0 range 9 .. 9;
DLYPRT at 0 range 10 .. 12;
Reserved_13_16 at 0 range 13 .. 16;
POL2 at 0 range 17 .. 17;
IDLEM2 at 0 range 18 .. 18;
IDLES2 at 0 range 19 .. 19;
FAULT2 at 0 range 20 .. 21;
CHP2 at 0 range 22 .. 22;
DIDL2 at 0 range 23 .. 23;
Reserved_24_31 at 0 range 24 .. 31;
end record;
-- Timerx Fault Register
type FLTCR_Register is record
-- Fault 1 enable
FLT1EN : Boolean := False;
-- Fault 2 enable
FLT2EN : Boolean := False;
-- Fault 3 enable
FLT3EN : Boolean := False;
-- Fault 4 enable
FLT4EN : Boolean := False;
-- Fault 5 enable
FLT5EN : Boolean := False;
-- unspecified
Reserved_5_30 : HAL.UInt26 := 16#0#;
-- Fault sources Lock
FLTLCK : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for FLTCR_Register use record
FLT1EN at 0 range 0 .. 0;
FLT2EN at 0 range 1 .. 1;
FLT3EN at 0 range 2 .. 2;
FLT4EN at 0 range 3 .. 3;
FLT5EN at 0 range 4 .. 4;
Reserved_5_30 at 0 range 5 .. 30;
FLTLCK at 0 range 31 .. 31;
end record;
subtype TIMDCR_CKPSCx_Field is HAL.UInt3;
-- TIMDCR_DELCMP array element
subtype TIMDCR_DELCMP_Element is HAL.UInt2;
-- TIMDCR_DELCMP array
type TIMDCR_DELCMP_Field_Array is array (2 .. 3) of TIMDCR_DELCMP_Element
with Component_Size => 2, Size => 4;
-- Type definition for TIMDCR_DELCMP
type TIMDCR_DELCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- DELCMP as a value
Val : HAL.UInt4;
when True =>
-- DELCMP as an array
Arr : TIMDCR_DELCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for TIMDCR_DELCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
subtype TIMDCR_DACSYNC_Field is HAL.UInt2;
subtype TIMDCR_UPDGAT_Field is HAL.UInt4;
-- Timerx Control Register
type TIMDCR_Register is record
-- HRTIM Timer x Clock prescaler
CKPSCx : TIMDCR_CKPSCx_Field := 16#0#;
-- Continuous mode
CONT : Boolean := False;
-- Re-triggerable mode
RETRIG : Boolean := False;
-- Half mode enable
HALF : Boolean := False;
-- Push-Pull mode enable
PSHPLL : Boolean := False;
-- unspecified
Reserved_7_9 : HAL.UInt3 := 16#0#;
-- Synchronization Resets Timer x
SYNCRSTx : Boolean := False;
-- Synchronization Starts Timer x
SYNCSTRTx : Boolean := False;
-- Delayed CMP2 mode
DELCMP : TIMDCR_DELCMP_Field :=
(As_Array => False, Val => 16#0#);
-- unspecified
Reserved_16_16 : HAL.Bit := 16#0#;
-- Timer x Repetition update
TxREPU : Boolean := False;
-- Timerx reset update
TxRSTU : Boolean := False;
-- TAU
TAU : Boolean := False;
-- TBU
TBU : Boolean := False;
-- TCU
TCU : Boolean := False;
-- unspecified
Reserved_22_22 : HAL.Bit := 16#0#;
-- TEU
TEU : Boolean := False;
-- Master Timer update
MSTU : Boolean := False;
-- AC Synchronization
DACSYNC : TIMDCR_DACSYNC_Field := 16#0#;
-- Preload enable
PREEN : Boolean := False;
-- Update Gating
UPDGAT : TIMDCR_UPDGAT_Field := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for TIMDCR_Register use record
CKPSCx at 0 range 0 .. 2;
CONT at 0 range 3 .. 3;
RETRIG at 0 range 4 .. 4;
HALF at 0 range 5 .. 5;
PSHPLL at 0 range 6 .. 6;
Reserved_7_9 at 0 range 7 .. 9;
SYNCRSTx at 0 range 10 .. 10;
SYNCSTRTx at 0 range 11 .. 11;
DELCMP at 0 range 12 .. 15;
Reserved_16_16 at 0 range 16 .. 16;
TxREPU at 0 range 17 .. 17;
TxRSTU at 0 range 18 .. 18;
TAU at 0 range 19 .. 19;
TBU at 0 range 20 .. 20;
TCU at 0 range 21 .. 21;
Reserved_22_22 at 0 range 22 .. 22;
TEU at 0 range 23 .. 23;
MSTU at 0 range 24 .. 24;
DACSYNC at 0 range 25 .. 26;
PREEN at 0 range 27 .. 27;
UPDGAT at 0 range 28 .. 31;
end record;
-- TIMDISR_CMP array
type TIMDISR_CMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for TIMDISR_CMP
type TIMDISR_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt4;
when True =>
-- CMP as an array
Arr : TIMDISR_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for TIMDISR_CMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- TIMDISR_CPT array
type TIMDISR_CPT_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for TIMDISR_CPT
type TIMDISR_CPT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CPT as a value
Val : HAL.UInt2;
when True =>
-- CPT as an array
Arr : TIMDISR_CPT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for TIMDISR_CPT_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- Timerx Interrupt Status Register
type TIMDISR_Register is record
-- Read-only. Compare 1 Interrupt Flag
CMP : TIMDISR_CMP_Field;
-- Read-only. Repetition Interrupt Flag
REP : Boolean;
-- unspecified
Reserved_5_5 : HAL.Bit;
-- Read-only. Update Interrupt Flag
UPD : Boolean;
-- Read-only. Capture1 Interrupt Flag
CPT : TIMDISR_CPT_Field;
-- Read-only. Output 1 Set Interrupt Flag
SETx1 : Boolean;
-- Read-only. Output 1 Reset Interrupt Flag
RSTx1 : Boolean;
-- Read-only. Output 2 Set Interrupt Flag
SETx2 : Boolean;
-- Read-only. Output 2 Reset Interrupt Flag
RSTx2 : Boolean;
-- Read-only. Reset Interrupt Flag
RST : Boolean;
-- Read-only. Delayed Protection Flag
DLYPRT : Boolean;
-- unspecified
Reserved_15_15 : HAL.Bit;
-- Read-only. Current Push Pull Status
CPPSTAT : Boolean;
-- Read-only. Idle Push Pull Status
IPPSTAT : Boolean;
-- Read-only. Output 1 State
O1STAT : Boolean;
-- Read-only. Output 2 State
O2STAT : Boolean;
-- Read-only. Output 1 Copy
O1CPY : Boolean;
-- Read-only. Output 2 Copy
O2CPY : Boolean;
-- unspecified
Reserved_22_31 : HAL.UInt10;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for TIMDISR_Register use record
CMP at 0 range 0 .. 3;
REP at 0 range 4 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
UPD at 0 range 6 .. 6;
CPT at 0 range 7 .. 8;
SETx1 at 0 range 9 .. 9;
RSTx1 at 0 range 10 .. 10;
SETx2 at 0 range 11 .. 11;
RSTx2 at 0 range 12 .. 12;
RST at 0 range 13 .. 13;
DLYPRT at 0 range 14 .. 14;
Reserved_15_15 at 0 range 15 .. 15;
CPPSTAT at 0 range 16 .. 16;
IPPSTAT at 0 range 17 .. 17;
O1STAT at 0 range 18 .. 18;
O2STAT at 0 range 19 .. 19;
O1CPY at 0 range 20 .. 20;
O2CPY at 0 range 21 .. 21;
Reserved_22_31 at 0 range 22 .. 31;
end record;
-- Timerx Interrupt Clear Register
type TIMDICR_Register is record
-- Write-only. Compare 1 Interrupt flag Clear
CMP1C : Boolean := False;
-- Write-only. Compare 2 Interrupt flag Clear
CMP2C : Boolean := False;
-- Write-only. Compare 3 Interrupt flag Clear
CMP3C : Boolean := False;
-- Write-only. Compare 4 Interrupt flag Clear
CMP4C : Boolean := False;
-- Write-only. Repetition Interrupt flag Clear
REPC : Boolean := False;
-- unspecified
Reserved_5_5 : HAL.Bit := 16#0#;
-- Write-only. Update Interrupt flag Clear
UPDC : Boolean := False;
-- Write-only. Capture1 Interrupt flag Clear
CPT1C : Boolean := False;
-- Write-only. Capture2 Interrupt flag Clear
CPT2C : Boolean := False;
-- Write-only. Output 1 Set flag Clear
SET1xC : Boolean := False;
-- Write-only. Output 1 Reset flag Clear
RSTx1C : Boolean := False;
-- Write-only. Output 2 Set flag Clear
SET2xC : Boolean := False;
-- Write-only. Output 2 Reset flag Clear
RSTx2C : Boolean := False;
-- Write-only. Reset Interrupt flag Clear
RSTC : Boolean := False;
-- Write-only. Delayed Protection Flag Clear
DLYPRTC : Boolean := False;
-- unspecified
Reserved_15_31 : HAL.UInt17 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for TIMDICR_Register use record
CMP1C at 0 range 0 .. 0;
CMP2C at 0 range 1 .. 1;
CMP3C at 0 range 2 .. 2;
CMP4C at 0 range 3 .. 3;
REPC at 0 range 4 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
UPDC at 0 range 6 .. 6;
CPT1C at 0 range 7 .. 7;
CPT2C at 0 range 8 .. 8;
SET1xC at 0 range 9 .. 9;
RSTx1C at 0 range 10 .. 10;
SET2xC at 0 range 11 .. 11;
RSTx2C at 0 range 12 .. 12;
RSTC at 0 range 13 .. 13;
DLYPRTC at 0 range 14 .. 14;
Reserved_15_31 at 0 range 15 .. 31;
end record;
-- TIMxDIER
type TIMDDIER_Register is record
-- CMP1IE
CMP1IE : Boolean := False;
-- CMP2IE
CMP2IE : Boolean := False;
-- CMP3IE
CMP3IE : Boolean := False;
-- CMP4IE
CMP4IE : Boolean := False;
-- REPIE
REPIE : Boolean := False;
-- unspecified
Reserved_5_5 : HAL.Bit := 16#0#;
-- UPDIE
UPDIE : Boolean := False;
-- CPT1IE
CPT1IE : Boolean := False;
-- CPT2IE
CPT2IE : Boolean := False;
-- SET1xIE
SET1xIE : Boolean := False;
-- RSTx1IE
RSTx1IE : Boolean := False;
-- SETx2IE
SETx2IE : Boolean := False;
-- RSTx2IE
RSTx2IE : Boolean := False;
-- RSTIE
RSTIE : Boolean := False;
-- DLYPRTIE
DLYPRTIE : Boolean := False;
-- unspecified
Reserved_15_15 : HAL.Bit := 16#0#;
-- CMP1DE
CMP1DE : Boolean := False;
-- CMP2DE
CMP2DE : Boolean := False;
-- CMP3DE
CMP3DE : Boolean := False;
-- CMP4DE
CMP4DE : Boolean := False;
-- REPDE
REPDE : Boolean := False;
-- unspecified
Reserved_21_21 : HAL.Bit := 16#0#;
-- UPDDE
UPDDE : Boolean := False;
-- CPT1DE
CPT1DE : Boolean := False;
-- CPT2DE
CPT2DE : Boolean := False;
-- SET1xDE
SET1xDE : Boolean := False;
-- RSTx1DE
RSTx1DE : Boolean := False;
-- SETx2DE
SETx2DE : Boolean := False;
-- RSTx2DE
RSTx2DE : Boolean := False;
-- RSTDE
RSTDE : Boolean := False;
-- DLYPRTDE
DLYPRTDE : Boolean := False;
-- unspecified
Reserved_31_31 : HAL.Bit := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for TIMDDIER_Register use record
CMP1IE at 0 range 0 .. 0;
CMP2IE at 0 range 1 .. 1;
CMP3IE at 0 range 2 .. 2;
CMP4IE at 0 range 3 .. 3;
REPIE at 0 range 4 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
UPDIE at 0 range 6 .. 6;
CPT1IE at 0 range 7 .. 7;
CPT2IE at 0 range 8 .. 8;
SET1xIE at 0 range 9 .. 9;
RSTx1IE at 0 range 10 .. 10;
SETx2IE at 0 range 11 .. 11;
RSTx2IE at 0 range 12 .. 12;
RSTIE at 0 range 13 .. 13;
DLYPRTIE at 0 range 14 .. 14;
Reserved_15_15 at 0 range 15 .. 15;
CMP1DE at 0 range 16 .. 16;
CMP2DE at 0 range 17 .. 17;
CMP3DE at 0 range 18 .. 18;
CMP4DE at 0 range 19 .. 19;
REPDE at 0 range 20 .. 20;
Reserved_21_21 at 0 range 21 .. 21;
UPDDE at 0 range 22 .. 22;
CPT1DE at 0 range 23 .. 23;
CPT2DE at 0 range 24 .. 24;
SET1xDE at 0 range 25 .. 25;
RSTx1DE at 0 range 26 .. 26;
SETx2DE at 0 range 27 .. 27;
RSTx2DE at 0 range 28 .. 28;
RSTDE at 0 range 29 .. 29;
DLYPRTDE at 0 range 30 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype CNTDR_CNTx_Field is HAL.UInt16;
-- Timerx Counter Register
type CNTDR_Register is record
-- Timerx Counter value
CNTx : CNTDR_CNTx_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CNTDR_Register use record
CNTx at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype PERDR_PERx_Field is HAL.UInt16;
-- Timerx Period Register
type PERDR_Register is record
-- Timerx Period value
PERx : PERDR_PERx_Field := 16#FFFF#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for PERDR_Register use record
PERx at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype REPDR_REPx_Field is HAL.UInt8;
-- Timerx Repetition Register
type REPDR_Register is record
-- Timerx Repetition counter value
REPx : REPDR_REPx_Field := 16#0#;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for REPDR_Register use record
REPx at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
subtype CMP1DR_CMP1x_Field is HAL.UInt16;
-- Timerx Compare 1 Register
type CMP1DR_Register is record
-- Timerx Compare 1 value
CMP1x : CMP1DR_CMP1x_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CMP1DR_Register use record
CMP1x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CMP1CDR_CMP1x_Field is HAL.UInt16;
subtype CMP1CDR_REPx_Field is HAL.UInt8;
-- Timerx Compare 1 Compound Register
type CMP1CDR_Register is record
-- Timerx Compare 1 value
CMP1x : CMP1CDR_CMP1x_Field := 16#0#;
-- Timerx Repetition value (aliased from HRTIM_REPx register)
REPx : CMP1CDR_REPx_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 CMP1CDR_Register use record
CMP1x at 0 range 0 .. 15;
REPx at 0 range 16 .. 23;
Reserved_24_31 at 0 range 24 .. 31;
end record;
subtype CMP2DR_CMP2x_Field is HAL.UInt16;
-- Timerx Compare 2 Register
type CMP2DR_Register is record
-- Timerx Compare 2 value
CMP2x : CMP2DR_CMP2x_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CMP2DR_Register use record
CMP2x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CMP3DR_CMP3x_Field is HAL.UInt16;
-- Timerx Compare 3 Register
type CMP3DR_Register is record
-- Timerx Compare 3 value
CMP3x : CMP3DR_CMP3x_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CMP3DR_Register use record
CMP3x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CMP4DR_CMP4x_Field is HAL.UInt16;
-- Timerx Compare 4 Register
type CMP4DR_Register is record
-- Timerx Compare 4 value
CMP4x : CMP4DR_CMP4x_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CMP4DR_Register use record
CMP4x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CPT1DR_CPT1x_Field is HAL.UInt16;
-- Timerx Capture 1 Register
type CPT1DR_Register is record
-- Read-only. Timerx Capture 1 value
CPT1x : CPT1DR_CPT1x_Field;
-- unspecified
Reserved_16_31 : HAL.UInt16;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CPT1DR_Register use record
CPT1x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CPT2DR_CPT2x_Field is HAL.UInt16;
-- Timerx Capture 2 Register
type CPT2DR_Register is record
-- Read-only. Timerx Capture 2 value
CPT2x : CPT2DR_CPT2x_Field;
-- unspecified
Reserved_16_31 : HAL.UInt16;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CPT2DR_Register use record
CPT2x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype DTDR_DTRx_Field is HAL.UInt9;
subtype DTDR_DTPRSC_Field is HAL.UInt3;
subtype DTDR_DTFx_Field is HAL.UInt9;
-- Timerx Deadtime Register
type DTDR_Register is record
-- Deadtime Rising value
DTRx : DTDR_DTRx_Field := 16#0#;
-- Sign Deadtime Rising value
SDTRx : Boolean := False;
-- Deadtime Prescaler
DTPRSC : DTDR_DTPRSC_Field := 16#0#;
-- unspecified
Reserved_13_13 : HAL.Bit := 16#0#;
-- Deadtime Rising Sign Lock
DTRSLKx : Boolean := False;
-- Deadtime Rising Lock
DTRLKx : Boolean := False;
-- Deadtime Falling value
DTFx : DTDR_DTFx_Field := 16#0#;
-- Sign Deadtime Falling value
SDTFx : Boolean := False;
-- unspecified
Reserved_26_29 : HAL.UInt4 := 16#0#;
-- Deadtime Falling Sign Lock
DTFSLKx : Boolean := False;
-- Deadtime Falling Lock
DTFLKx : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for DTDR_Register use record
DTRx at 0 range 0 .. 8;
SDTRx at 0 range 9 .. 9;
DTPRSC at 0 range 10 .. 12;
Reserved_13_13 at 0 range 13 .. 13;
DTRSLKx at 0 range 14 .. 14;
DTRLKx at 0 range 15 .. 15;
DTFx at 0 range 16 .. 24;
SDTFx at 0 range 25 .. 25;
Reserved_26_29 at 0 range 26 .. 29;
DTFSLKx at 0 range 30 .. 30;
DTFLKx at 0 range 31 .. 31;
end record;
-- SETD1R_CMP array
type SETD1R_CMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for SETD1R_CMP
type SETD1R_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt4;
when True =>
-- CMP as an array
Arr : SETD1R_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for SETD1R_CMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- SETD1R_MSTCMP array
type SETD1R_MSTCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for SETD1R_MSTCMP
type SETD1R_MSTCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MSTCMP as a value
Val : HAL.UInt4;
when True =>
-- MSTCMP as an array
Arr : SETD1R_MSTCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for SETD1R_MSTCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- SETD1R_TIMEVNT array
type SETD1R_TIMEVNT_Field_Array is array (1 .. 9) of Boolean
with Component_Size => 1, Size => 9;
-- Type definition for SETD1R_TIMEVNT
type SETD1R_TIMEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMEVNT as a value
Val : HAL.UInt9;
when True =>
-- TIMEVNT as an array
Arr : SETD1R_TIMEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 9;
for SETD1R_TIMEVNT_Field use record
Val at 0 range 0 .. 8;
Arr at 0 range 0 .. 8;
end record;
-- SETD1R_EXTEVNT array
type SETD1R_EXTEVNT_Field_Array is array (1 .. 10) of Boolean
with Component_Size => 1, Size => 10;
-- Type definition for SETD1R_EXTEVNT
type SETD1R_EXTEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- EXTEVNT as a value
Val : HAL.UInt10;
when True =>
-- EXTEVNT as an array
Arr : SETD1R_EXTEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 10;
for SETD1R_EXTEVNT_Field use record
Val at 0 range 0 .. 9;
Arr at 0 range 0 .. 9;
end record;
-- Timerx Output1 Set Register
type SETD1R_Register is record
-- Software Set trigger
SST : Boolean := False;
-- Timer A resynchronizaton
RESYNC : Boolean := False;
-- Timer A Period
PER : Boolean := False;
-- Timer A compare 1
CMP : SETD1R_CMP_Field := (As_Array => False, Val => 16#0#);
-- Master Period
MSTPER : Boolean := False;
-- Master Compare 1
MSTCMP : SETD1R_MSTCMP_Field := (As_Array => False, Val => 16#0#);
-- Timer Event 1
TIMEVNT : SETD1R_TIMEVNT_Field := (As_Array => False, Val => 16#0#);
-- External Event 1
EXTEVNT : SETD1R_EXTEVNT_Field := (As_Array => False, Val => 16#0#);
-- Registers update (transfer preload to active)
UPDATE : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for SETD1R_Register use record
SST at 0 range 0 .. 0;
RESYNC at 0 range 1 .. 1;
PER at 0 range 2 .. 2;
CMP at 0 range 3 .. 6;
MSTPER at 0 range 7 .. 7;
MSTCMP at 0 range 8 .. 11;
TIMEVNT at 0 range 12 .. 20;
EXTEVNT at 0 range 21 .. 30;
UPDATE at 0 range 31 .. 31;
end record;
-- RSTD1R_CMP array
type RSTD1R_CMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for RSTD1R_CMP
type RSTD1R_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt4;
when True =>
-- CMP as an array
Arr : RSTD1R_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for RSTD1R_CMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- RSTD1R_MSTCMP array
type RSTD1R_MSTCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for RSTD1R_MSTCMP
type RSTD1R_MSTCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MSTCMP as a value
Val : HAL.UInt4;
when True =>
-- MSTCMP as an array
Arr : RSTD1R_MSTCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for RSTD1R_MSTCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- RSTD1R_TIMEVNT array
type RSTD1R_TIMEVNT_Field_Array is array (1 .. 9) of Boolean
with Component_Size => 1, Size => 9;
-- Type definition for RSTD1R_TIMEVNT
type RSTD1R_TIMEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMEVNT as a value
Val : HAL.UInt9;
when True =>
-- TIMEVNT as an array
Arr : RSTD1R_TIMEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 9;
for RSTD1R_TIMEVNT_Field use record
Val at 0 range 0 .. 8;
Arr at 0 range 0 .. 8;
end record;
-- RSTD1R_EXTEVNT array
type RSTD1R_EXTEVNT_Field_Array is array (1 .. 10) of Boolean
with Component_Size => 1, Size => 10;
-- Type definition for RSTD1R_EXTEVNT
type RSTD1R_EXTEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- EXTEVNT as a value
Val : HAL.UInt10;
when True =>
-- EXTEVNT as an array
Arr : RSTD1R_EXTEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 10;
for RSTD1R_EXTEVNT_Field use record
Val at 0 range 0 .. 9;
Arr at 0 range 0 .. 9;
end record;
-- Timerx Output1 Reset Register
type RSTD1R_Register is record
-- SRT
SRT : Boolean := False;
-- RESYNC
RESYNC : Boolean := False;
-- PER
PER : Boolean := False;
-- CMP1
CMP : RSTD1R_CMP_Field := (As_Array => False, Val => 16#0#);
-- MSTPER
MSTPER : Boolean := False;
-- MSTCMP1
MSTCMP : RSTD1R_MSTCMP_Field := (As_Array => False, Val => 16#0#);
-- TIMEVNT1
TIMEVNT : RSTD1R_TIMEVNT_Field := (As_Array => False, Val => 16#0#);
-- EXTEVNT1
EXTEVNT : RSTD1R_EXTEVNT_Field := (As_Array => False, Val => 16#0#);
-- UPDATE
UPDATE : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for RSTD1R_Register use record
SRT at 0 range 0 .. 0;
RESYNC at 0 range 1 .. 1;
PER at 0 range 2 .. 2;
CMP at 0 range 3 .. 6;
MSTPER at 0 range 7 .. 7;
MSTCMP at 0 range 8 .. 11;
TIMEVNT at 0 range 12 .. 20;
EXTEVNT at 0 range 21 .. 30;
UPDATE at 0 range 31 .. 31;
end record;
-- SETD2R_CMP array
type SETD2R_CMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for SETD2R_CMP
type SETD2R_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt4;
when True =>
-- CMP as an array
Arr : SETD2R_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for SETD2R_CMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- SETD2R_MSTCMP array
type SETD2R_MSTCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for SETD2R_MSTCMP
type SETD2R_MSTCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MSTCMP as a value
Val : HAL.UInt4;
when True =>
-- MSTCMP as an array
Arr : SETD2R_MSTCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for SETD2R_MSTCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- SETD2R_TIMEVNT array
type SETD2R_TIMEVNT_Field_Array is array (1 .. 9) of Boolean
with Component_Size => 1, Size => 9;
-- Type definition for SETD2R_TIMEVNT
type SETD2R_TIMEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMEVNT as a value
Val : HAL.UInt9;
when True =>
-- TIMEVNT as an array
Arr : SETD2R_TIMEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 9;
for SETD2R_TIMEVNT_Field use record
Val at 0 range 0 .. 8;
Arr at 0 range 0 .. 8;
end record;
-- SETD2R_EXTEVNT array
type SETD2R_EXTEVNT_Field_Array is array (1 .. 10) of Boolean
with Component_Size => 1, Size => 10;
-- Type definition for SETD2R_EXTEVNT
type SETD2R_EXTEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- EXTEVNT as a value
Val : HAL.UInt10;
when True =>
-- EXTEVNT as an array
Arr : SETD2R_EXTEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 10;
for SETD2R_EXTEVNT_Field use record
Val at 0 range 0 .. 9;
Arr at 0 range 0 .. 9;
end record;
-- Timerx Output2 Set Register
type SETD2R_Register is record
-- SST
SST : Boolean := False;
-- RESYNC
RESYNC : Boolean := False;
-- PER
PER : Boolean := False;
-- CMP1
CMP : SETD2R_CMP_Field := (As_Array => False, Val => 16#0#);
-- MSTPER
MSTPER : Boolean := False;
-- MSTCMP1
MSTCMP : SETD2R_MSTCMP_Field := (As_Array => False, Val => 16#0#);
-- TIMEVNT1
TIMEVNT : SETD2R_TIMEVNT_Field := (As_Array => False, Val => 16#0#);
-- EXTEVNT1
EXTEVNT : SETD2R_EXTEVNT_Field := (As_Array => False, Val => 16#0#);
-- UPDATE
UPDATE : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for SETD2R_Register use record
SST at 0 range 0 .. 0;
RESYNC at 0 range 1 .. 1;
PER at 0 range 2 .. 2;
CMP at 0 range 3 .. 6;
MSTPER at 0 range 7 .. 7;
MSTCMP at 0 range 8 .. 11;
TIMEVNT at 0 range 12 .. 20;
EXTEVNT at 0 range 21 .. 30;
UPDATE at 0 range 31 .. 31;
end record;
-- RSTD2R_CMP array
type RSTD2R_CMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for RSTD2R_CMP
type RSTD2R_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt4;
when True =>
-- CMP as an array
Arr : RSTD2R_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for RSTD2R_CMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- RSTD2R_MSTCMP array
type RSTD2R_MSTCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for RSTD2R_MSTCMP
type RSTD2R_MSTCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MSTCMP as a value
Val : HAL.UInt4;
when True =>
-- MSTCMP as an array
Arr : RSTD2R_MSTCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for RSTD2R_MSTCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- RSTD2R_TIMEVNT array
type RSTD2R_TIMEVNT_Field_Array is array (1 .. 9) of Boolean
with Component_Size => 1, Size => 9;
-- Type definition for RSTD2R_TIMEVNT
type RSTD2R_TIMEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMEVNT as a value
Val : HAL.UInt9;
when True =>
-- TIMEVNT as an array
Arr : RSTD2R_TIMEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 9;
for RSTD2R_TIMEVNT_Field use record
Val at 0 range 0 .. 8;
Arr at 0 range 0 .. 8;
end record;
-- RSTD2R_EXTEVNT array
type RSTD2R_EXTEVNT_Field_Array is array (1 .. 10) of Boolean
with Component_Size => 1, Size => 10;
-- Type definition for RSTD2R_EXTEVNT
type RSTD2R_EXTEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- EXTEVNT as a value
Val : HAL.UInt10;
when True =>
-- EXTEVNT as an array
Arr : RSTD2R_EXTEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 10;
for RSTD2R_EXTEVNT_Field use record
Val at 0 range 0 .. 9;
Arr at 0 range 0 .. 9;
end record;
-- Timerx Output2 Reset Register
type RSTD2R_Register is record
-- SRT
SRT : Boolean := False;
-- RESYNC
RESYNC : Boolean := False;
-- PER
PER : Boolean := False;
-- CMP1
CMP : RSTD2R_CMP_Field := (As_Array => False, Val => 16#0#);
-- MSTPER
MSTPER : Boolean := False;
-- MSTCMP1
MSTCMP : RSTD2R_MSTCMP_Field := (As_Array => False, Val => 16#0#);
-- TIMEVNT1
TIMEVNT : RSTD2R_TIMEVNT_Field := (As_Array => False, Val => 16#0#);
-- EXTEVNT1
EXTEVNT : RSTD2R_EXTEVNT_Field := (As_Array => False, Val => 16#0#);
-- UPDATE
UPDATE : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for RSTD2R_Register use record
SRT at 0 range 0 .. 0;
RESYNC at 0 range 1 .. 1;
PER at 0 range 2 .. 2;
CMP at 0 range 3 .. 6;
MSTPER at 0 range 7 .. 7;
MSTCMP at 0 range 8 .. 11;
TIMEVNT at 0 range 12 .. 20;
EXTEVNT at 0 range 21 .. 30;
UPDATE at 0 range 31 .. 31;
end record;
subtype EEFDR1_EE1FLTR_Field is HAL.UInt4;
subtype EEFDR1_EE2FLTR_Field is HAL.UInt4;
subtype EEFDR1_EE3FLTR_Field is HAL.UInt4;
subtype EEFDR1_EE4FLTR_Field is HAL.UInt4;
subtype EEFDR1_EE5FLTR_Field is HAL.UInt4;
-- Timerx External Event Filtering Register 1
type EEFDR1_Register is record
-- External Event 1 latch
EE1LTCH : Boolean := False;
-- External Event 1 filter
EE1FLTR : EEFDR1_EE1FLTR_Field := 16#0#;
-- unspecified
Reserved_5_5 : HAL.Bit := 16#0#;
-- External Event 2 latch
EE2LTCH : Boolean := False;
-- External Event 2 filter
EE2FLTR : EEFDR1_EE2FLTR_Field := 16#0#;
-- unspecified
Reserved_11_11 : HAL.Bit := 16#0#;
-- External Event 3 latch
EE3LTCH : Boolean := False;
-- External Event 3 filter
EE3FLTR : EEFDR1_EE3FLTR_Field := 16#0#;
-- unspecified
Reserved_17_17 : HAL.Bit := 16#0#;
-- External Event 4 latch
EE4LTCH : Boolean := False;
-- External Event 4 filter
EE4FLTR : EEFDR1_EE4FLTR_Field := 16#0#;
-- unspecified
Reserved_23_23 : HAL.Bit := 16#0#;
-- External Event 5 latch
EE5LTCH : Boolean := False;
-- External Event 5 filter
EE5FLTR : EEFDR1_EE5FLTR_Field := 16#0#;
-- unspecified
Reserved_29_31 : HAL.UInt3 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for EEFDR1_Register use record
EE1LTCH at 0 range 0 .. 0;
EE1FLTR at 0 range 1 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
EE2LTCH at 0 range 6 .. 6;
EE2FLTR at 0 range 7 .. 10;
Reserved_11_11 at 0 range 11 .. 11;
EE3LTCH at 0 range 12 .. 12;
EE3FLTR at 0 range 13 .. 16;
Reserved_17_17 at 0 range 17 .. 17;
EE4LTCH at 0 range 18 .. 18;
EE4FLTR at 0 range 19 .. 22;
Reserved_23_23 at 0 range 23 .. 23;
EE5LTCH at 0 range 24 .. 24;
EE5FLTR at 0 range 25 .. 28;
Reserved_29_31 at 0 range 29 .. 31;
end record;
subtype EEFDR2_EE6FLTR_Field is HAL.UInt4;
subtype EEFDR2_EE7FLTR_Field is HAL.UInt4;
subtype EEFDR2_EE8FLTR_Field is HAL.UInt4;
subtype EEFDR2_EE9FLTR_Field is HAL.UInt4;
subtype EEFDR2_EE10FLTR_Field is HAL.UInt4;
-- Timerx External Event Filtering Register 2
type EEFDR2_Register is record
-- External Event 6 latch
EE6LTCH : Boolean := False;
-- External Event 6 filter
EE6FLTR : EEFDR2_EE6FLTR_Field := 16#0#;
-- unspecified
Reserved_5_5 : HAL.Bit := 16#0#;
-- External Event 7 latch
EE7LTCH : Boolean := False;
-- External Event 7 filter
EE7FLTR : EEFDR2_EE7FLTR_Field := 16#0#;
-- unspecified
Reserved_11_11 : HAL.Bit := 16#0#;
-- External Event 8 latch
EE8LTCH : Boolean := False;
-- External Event 8 filter
EE8FLTR : EEFDR2_EE8FLTR_Field := 16#0#;
-- unspecified
Reserved_17_17 : HAL.Bit := 16#0#;
-- External Event 9 latch
EE9LTCH : Boolean := False;
-- External Event 9 filter
EE9FLTR : EEFDR2_EE9FLTR_Field := 16#0#;
-- unspecified
Reserved_23_23 : HAL.Bit := 16#0#;
-- External Event 10 latch
EE10LTCH : Boolean := False;
-- External Event 10 filter
EE10FLTR : EEFDR2_EE10FLTR_Field := 16#0#;
-- unspecified
Reserved_29_31 : HAL.UInt3 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for EEFDR2_Register use record
EE6LTCH at 0 range 0 .. 0;
EE6FLTR at 0 range 1 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
EE7LTCH at 0 range 6 .. 6;
EE7FLTR at 0 range 7 .. 10;
Reserved_11_11 at 0 range 11 .. 11;
EE8LTCH at 0 range 12 .. 12;
EE8FLTR at 0 range 13 .. 16;
Reserved_17_17 at 0 range 17 .. 17;
EE9LTCH at 0 range 18 .. 18;
EE9FLTR at 0 range 19 .. 22;
Reserved_23_23 at 0 range 23 .. 23;
EE10LTCH at 0 range 24 .. 24;
EE10FLTR at 0 range 25 .. 28;
Reserved_29_31 at 0 range 29 .. 31;
end record;
-- RSTDR_CMP array
type RSTDR_CMP_Field_Array is array (2 .. 3) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for RSTDR_CMP
type RSTDR_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt2;
when True =>
-- CMP as an array
Arr : RSTDR_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for RSTDR_CMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- RSTDR_MSTCMP array
type RSTDR_MSTCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for RSTDR_MSTCMP
type RSTDR_MSTCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MSTCMP as a value
Val : HAL.UInt4;
when True =>
-- MSTCMP as an array
Arr : RSTDR_MSTCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for RSTDR_MSTCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- RSTDR_EXTEVNT array
type RSTDR_EXTEVNT_Field_Array is array (1 .. 10) of Boolean
with Component_Size => 1, Size => 10;
-- Type definition for RSTDR_EXTEVNT
type RSTDR_EXTEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- EXTEVNT as a value
Val : HAL.UInt10;
when True =>
-- EXTEVNT as an array
Arr : RSTDR_EXTEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 10;
for RSTDR_EXTEVNT_Field use record
Val at 0 range 0 .. 9;
Arr at 0 range 0 .. 9;
end record;
-- RSTDR_TIMACMP array
type RSTDR_TIMACMP_Field_Array is array (1 .. 3) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for RSTDR_TIMACMP
type RSTDR_TIMACMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMACMP as a value
Val : HAL.UInt3;
when True =>
-- TIMACMP as an array
Arr : RSTDR_TIMACMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for RSTDR_TIMACMP_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- RSTDR_TIMBCMP array
type RSTDR_TIMBCMP_Field_Array is array (1 .. 3) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for RSTDR_TIMBCMP
type RSTDR_TIMBCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMBCMP as a value
Val : HAL.UInt3;
when True =>
-- TIMBCMP as an array
Arr : RSTDR_TIMBCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for RSTDR_TIMBCMP_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- RSTDR_TIMCCMP array
type RSTDR_TIMCCMP_Field_Array is array (1 .. 3) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for RSTDR_TIMCCMP
type RSTDR_TIMCCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMCCMP as a value
Val : HAL.UInt3;
when True =>
-- TIMCCMP as an array
Arr : RSTDR_TIMCCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for RSTDR_TIMCCMP_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- RSTDR_TIMECMP array
type RSTDR_TIMECMP_Field_Array is array (1 .. 3) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for RSTDR_TIMECMP
type RSTDR_TIMECMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMECMP as a value
Val : HAL.UInt3;
when True =>
-- TIMECMP as an array
Arr : RSTDR_TIMECMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for RSTDR_TIMECMP_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- TimerA Reset Register
type RSTDR_Register is record
-- unspecified
Reserved_0_0 : HAL.Bit := 16#0#;
-- Timer A Update reset
UPDT : Boolean := False;
-- Timer A compare 2 reset
CMP : RSTDR_CMP_Field := (As_Array => False, Val => 16#0#);
-- Master timer Period
MSTPER : Boolean := False;
-- Master compare 1
MSTCMP : RSTDR_MSTCMP_Field :=
(As_Array => False, Val => 16#0#);
-- External Event 1
EXTEVNT : RSTDR_EXTEVNT_Field :=
(As_Array => False, Val => 16#0#);
-- Timer A Compare 1
TIMACMP : RSTDR_TIMACMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer B Compare 1
TIMBCMP : RSTDR_TIMBCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer C Compare 1
TIMCCMP : RSTDR_TIMCCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer E Compare 1
TIMECMP : RSTDR_TIMECMP_Field :=
(As_Array => False, Val => 16#0#);
-- unspecified
Reserved_31_31 : HAL.Bit := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for RSTDR_Register use record
Reserved_0_0 at 0 range 0 .. 0;
UPDT at 0 range 1 .. 1;
CMP at 0 range 2 .. 3;
MSTPER at 0 range 4 .. 4;
MSTCMP at 0 range 5 .. 8;
EXTEVNT at 0 range 9 .. 18;
TIMACMP at 0 range 19 .. 21;
TIMBCMP at 0 range 22 .. 24;
TIMCCMP at 0 range 25 .. 27;
TIMECMP at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype CHPDR_CHPFRQ_Field is HAL.UInt4;
subtype CHPDR_CHPDTY_Field is HAL.UInt3;
subtype CHPDR_STRTPW_Field is HAL.UInt4;
-- Timerx Chopper Register
type CHPDR_Register is record
-- Timerx carrier frequency value
CHPFRQ : CHPDR_CHPFRQ_Field := 16#0#;
-- Timerx chopper duty cycle value
CHPDTY : CHPDR_CHPDTY_Field := 16#0#;
-- STRTPW
STRTPW : CHPDR_STRTPW_Field := 16#0#;
-- unspecified
Reserved_11_31 : HAL.UInt21 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CHPDR_Register use record
CHPFRQ at 0 range 0 .. 3;
CHPDTY at 0 range 4 .. 6;
STRTPW at 0 range 7 .. 10;
Reserved_11_31 at 0 range 11 .. 31;
end record;
-- CPT1DCR_TACMP array
type CPT1DCR_TACMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT1DCR_TACMP
type CPT1DCR_TACMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TACMP as a value
Val : HAL.UInt2;
when True =>
-- TACMP as an array
Arr : CPT1DCR_TACMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT1DCR_TACMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT1DCR_TBCMP array
type CPT1DCR_TBCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT1DCR_TBCMP
type CPT1DCR_TBCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TBCMP as a value
Val : HAL.UInt2;
when True =>
-- TBCMP as an array
Arr : CPT1DCR_TBCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT1DCR_TBCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT1DCR_TCCMP array
type CPT1DCR_TCCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT1DCR_TCCMP
type CPT1DCR_TCCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TCCMP as a value
Val : HAL.UInt2;
when True =>
-- TCCMP as an array
Arr : CPT1DCR_TCCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT1DCR_TCCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT1DCR_TECMP array
type CPT1DCR_TECMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT1DCR_TECMP
type CPT1DCR_TECMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TECMP as a value
Val : HAL.UInt2;
when True =>
-- TECMP as an array
Arr : CPT1DCR_TECMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT1DCR_TECMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- Timerx Capture 2 Control Register
type CPT1DCR_Register is record
-- Software Capture
SWCPT : Boolean := False;
-- Update Capture
UDPCPT : Boolean := False;
-- External Event 1 Capture
EXEV1CPT : Boolean := False;
-- External Event 2 Capture
EXEV2CPT : Boolean := False;
-- External Event 3 Capture
EXEV3CPT : Boolean := False;
-- External Event 4 Capture
EXEV4CPT : Boolean := False;
-- External Event 5 Capture
EXEV5CPT : Boolean := False;
-- External Event 6 Capture
EXEV6CPT : Boolean := False;
-- External Event 7 Capture
EXEV7CPT : Boolean := False;
-- External Event 8 Capture
EXEV8CPT : Boolean := False;
-- External Event 9 Capture
EXEV9CPT : Boolean := False;
-- External Event 10 Capture
EXEV10CPT : Boolean := False;
-- Timer A output 1 Set
TA1SET : Boolean := False;
-- Timer A output 1 Reset
TA1RST : Boolean := False;
-- Timer A Compare 1
TACMP : CPT1DCR_TACMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer B output 1 Set
TB1SET : Boolean := False;
-- Timer B output 1 Reset
TB1RST : Boolean := False;
-- Timer B Compare 1
TBCMP : CPT1DCR_TBCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer C output 1 Set
TC1SET : Boolean := False;
-- Timer C output 1 Reset
TC1RST : Boolean := False;
-- Timer C Compare 1
TCCMP : CPT1DCR_TCCMP_Field :=
(As_Array => False, Val => 16#0#);
-- unspecified
Reserved_24_27 : HAL.UInt4 := 16#0#;
-- Timer E output 1 Set
TE1SET : Boolean := False;
-- Timer E output 1 Reset
TE1RST : Boolean := False;
-- Timer E Compare 1
TECMP : CPT1DCR_TECMP_Field :=
(As_Array => False, Val => 16#0#);
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CPT1DCR_Register use record
SWCPT at 0 range 0 .. 0;
UDPCPT at 0 range 1 .. 1;
EXEV1CPT at 0 range 2 .. 2;
EXEV2CPT at 0 range 3 .. 3;
EXEV3CPT at 0 range 4 .. 4;
EXEV4CPT at 0 range 5 .. 5;
EXEV5CPT at 0 range 6 .. 6;
EXEV6CPT at 0 range 7 .. 7;
EXEV7CPT at 0 range 8 .. 8;
EXEV8CPT at 0 range 9 .. 9;
EXEV9CPT at 0 range 10 .. 10;
EXEV10CPT at 0 range 11 .. 11;
TA1SET at 0 range 12 .. 12;
TA1RST at 0 range 13 .. 13;
TACMP at 0 range 14 .. 15;
TB1SET at 0 range 16 .. 16;
TB1RST at 0 range 17 .. 17;
TBCMP at 0 range 18 .. 19;
TC1SET at 0 range 20 .. 20;
TC1RST at 0 range 21 .. 21;
TCCMP at 0 range 22 .. 23;
Reserved_24_27 at 0 range 24 .. 27;
TE1SET at 0 range 28 .. 28;
TE1RST at 0 range 29 .. 29;
TECMP at 0 range 30 .. 31;
end record;
-- CPT2DCR_TACMP array
type CPT2DCR_TACMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT2DCR_TACMP
type CPT2DCR_TACMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TACMP as a value
Val : HAL.UInt2;
when True =>
-- TACMP as an array
Arr : CPT2DCR_TACMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT2DCR_TACMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT2DCR_TBCMP array
type CPT2DCR_TBCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT2DCR_TBCMP
type CPT2DCR_TBCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TBCMP as a value
Val : HAL.UInt2;
when True =>
-- TBCMP as an array
Arr : CPT2DCR_TBCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT2DCR_TBCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT2DCR_TCCMP array
type CPT2DCR_TCCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT2DCR_TCCMP
type CPT2DCR_TCCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TCCMP as a value
Val : HAL.UInt2;
when True =>
-- TCCMP as an array
Arr : CPT2DCR_TCCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT2DCR_TCCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT2DCR_TECMP array
type CPT2DCR_TECMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT2DCR_TECMP
type CPT2DCR_TECMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TECMP as a value
Val : HAL.UInt2;
when True =>
-- TECMP as an array
Arr : CPT2DCR_TECMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT2DCR_TECMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT2xCR
type CPT2DCR_Register is record
-- Software Capture
SWCPT : Boolean := False;
-- Update Capture
UDPCPT : Boolean := False;
-- External Event 1 Capture
EXEV1CPT : Boolean := False;
-- External Event 2 Capture
EXEV2CPT : Boolean := False;
-- External Event 3 Capture
EXEV3CPT : Boolean := False;
-- External Event 4 Capture
EXEV4CPT : Boolean := False;
-- External Event 5 Capture
EXEV5CPT : Boolean := False;
-- External Event 6 Capture
EXEV6CPT : Boolean := False;
-- External Event 7 Capture
EXEV7CPT : Boolean := False;
-- External Event 8 Capture
EXEV8CPT : Boolean := False;
-- External Event 9 Capture
EXEV9CPT : Boolean := False;
-- External Event 10 Capture
EXEV10CPT : Boolean := False;
-- Timer A output 1 Set
TA1SET : Boolean := False;
-- Timer A output 1 Reset
TA1RST : Boolean := False;
-- Timer A Compare 1
TACMP : CPT2DCR_TACMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer B output 1 Set
TB1SET : Boolean := False;
-- Timer B output 1 Reset
TB1RST : Boolean := False;
-- Timer B Compare 1
TBCMP : CPT2DCR_TBCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer C output 1 Set
TC1SET : Boolean := False;
-- Timer C output 1 Reset
TC1RST : Boolean := False;
-- Timer C Compare 1
TCCMP : CPT2DCR_TCCMP_Field :=
(As_Array => False, Val => 16#0#);
-- unspecified
Reserved_24_27 : HAL.UInt4 := 16#0#;
-- Timer E output 1 Set
TE1SET : Boolean := False;
-- Timer E output 1 Reset
TE1RST : Boolean := False;
-- Timer E Compare 1
TECMP : CPT2DCR_TECMP_Field :=
(As_Array => False, Val => 16#0#);
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CPT2DCR_Register use record
SWCPT at 0 range 0 .. 0;
UDPCPT at 0 range 1 .. 1;
EXEV1CPT at 0 range 2 .. 2;
EXEV2CPT at 0 range 3 .. 3;
EXEV3CPT at 0 range 4 .. 4;
EXEV4CPT at 0 range 5 .. 5;
EXEV5CPT at 0 range 6 .. 6;
EXEV6CPT at 0 range 7 .. 7;
EXEV7CPT at 0 range 8 .. 8;
EXEV8CPT at 0 range 9 .. 9;
EXEV9CPT at 0 range 10 .. 10;
EXEV10CPT at 0 range 11 .. 11;
TA1SET at 0 range 12 .. 12;
TA1RST at 0 range 13 .. 13;
TACMP at 0 range 14 .. 15;
TB1SET at 0 range 16 .. 16;
TB1RST at 0 range 17 .. 17;
TBCMP at 0 range 18 .. 19;
TC1SET at 0 range 20 .. 20;
TC1RST at 0 range 21 .. 21;
TCCMP at 0 range 22 .. 23;
Reserved_24_27 at 0 range 24 .. 27;
TE1SET at 0 range 28 .. 28;
TE1RST at 0 range 29 .. 29;
TECMP at 0 range 30 .. 31;
end record;
subtype OUTDR_FAULT1_Field is HAL.UInt2;
subtype OUTDR_DLYPRT_Field is HAL.UInt3;
subtype OUTDR_FAULT2_Field is HAL.UInt2;
-- Timerx Output Register
type OUTDR_Register is record
-- unspecified
Reserved_0_0 : HAL.Bit := 16#0#;
-- Output 1 polarity
POL1 : Boolean := False;
-- Output 1 Idle mode
IDLEM1 : Boolean := False;
-- Output 1 Idle State
IDLES1 : Boolean := False;
-- Output 1 Fault state
FAULT1 : OUTDR_FAULT1_Field := 16#0#;
-- Output 1 Chopper enable
CHP1 : Boolean := False;
-- Output 1 Deadtime upon burst mode Idle entry
DIDL1 : Boolean := False;
-- Deadtime enable
DTEN : Boolean := False;
-- Delayed Protection Enable
DLYPRTEN : Boolean := False;
-- Delayed Protection
DLYPRT : OUTDR_DLYPRT_Field := 16#0#;
-- unspecified
Reserved_13_16 : HAL.UInt4 := 16#0#;
-- Output 2 polarity
POL2 : Boolean := False;
-- Output 2 Idle mode
IDLEM2 : Boolean := False;
-- Output 2 Idle State
IDLES2 : Boolean := False;
-- Output 2 Fault state
FAULT2 : OUTDR_FAULT2_Field := 16#0#;
-- Output 2 Chopper enable
CHP2 : Boolean := False;
-- Output 2 Deadtime upon burst mode Idle entry
DIDL2 : Boolean := False;
-- unspecified
Reserved_24_31 : HAL.UInt8 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for OUTDR_Register use record
Reserved_0_0 at 0 range 0 .. 0;
POL1 at 0 range 1 .. 1;
IDLEM1 at 0 range 2 .. 2;
IDLES1 at 0 range 3 .. 3;
FAULT1 at 0 range 4 .. 5;
CHP1 at 0 range 6 .. 6;
DIDL1 at 0 range 7 .. 7;
DTEN at 0 range 8 .. 8;
DLYPRTEN at 0 range 9 .. 9;
DLYPRT at 0 range 10 .. 12;
Reserved_13_16 at 0 range 13 .. 16;
POL2 at 0 range 17 .. 17;
IDLEM2 at 0 range 18 .. 18;
IDLES2 at 0 range 19 .. 19;
FAULT2 at 0 range 20 .. 21;
CHP2 at 0 range 22 .. 22;
DIDL2 at 0 range 23 .. 23;
Reserved_24_31 at 0 range 24 .. 31;
end record;
-- Timerx Fault Register
type FLTDR_Register is record
-- Fault 1 enable
FLT1EN : Boolean := False;
-- Fault 2 enable
FLT2EN : Boolean := False;
-- Fault 3 enable
FLT3EN : Boolean := False;
-- Fault 4 enable
FLT4EN : Boolean := False;
-- Fault 5 enable
FLT5EN : Boolean := False;
-- unspecified
Reserved_5_30 : HAL.UInt26 := 16#0#;
-- Fault sources Lock
FLTLCK : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for FLTDR_Register use record
FLT1EN at 0 range 0 .. 0;
FLT2EN at 0 range 1 .. 1;
FLT3EN at 0 range 2 .. 2;
FLT4EN at 0 range 3 .. 3;
FLT5EN at 0 range 4 .. 4;
Reserved_5_30 at 0 range 5 .. 30;
FLTLCK at 0 range 31 .. 31;
end record;
subtype TIMECR_CKPSCx_Field is HAL.UInt3;
-- TIMECR_DELCMP array element
subtype TIMECR_DELCMP_Element is HAL.UInt2;
-- TIMECR_DELCMP array
type TIMECR_DELCMP_Field_Array is array (2 .. 3) of TIMECR_DELCMP_Element
with Component_Size => 2, Size => 4;
-- Type definition for TIMECR_DELCMP
type TIMECR_DELCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- DELCMP as a value
Val : HAL.UInt4;
when True =>
-- DELCMP as an array
Arr : TIMECR_DELCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for TIMECR_DELCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
subtype TIMECR_DACSYNC_Field is HAL.UInt2;
subtype TIMECR_UPDGAT_Field is HAL.UInt4;
-- Timerx Control Register
type TIMECR_Register is record
-- HRTIM Timer x Clock prescaler
CKPSCx : TIMECR_CKPSCx_Field := 16#0#;
-- Continuous mode
CONT : Boolean := False;
-- Re-triggerable mode
RETRIG : Boolean := False;
-- Half mode enable
HALF : Boolean := False;
-- Push-Pull mode enable
PSHPLL : Boolean := False;
-- unspecified
Reserved_7_9 : HAL.UInt3 := 16#0#;
-- Synchronization Resets Timer x
SYNCRSTx : Boolean := False;
-- Synchronization Starts Timer x
SYNCSTRTx : Boolean := False;
-- Delayed CMP2 mode
DELCMP : TIMECR_DELCMP_Field :=
(As_Array => False, Val => 16#0#);
-- unspecified
Reserved_16_16 : HAL.Bit := 16#0#;
-- Timer x Repetition update
TxREPU : Boolean := False;
-- Timerx reset update
TxRSTU : Boolean := False;
-- TAU
TAU : Boolean := False;
-- TBU
TBU : Boolean := False;
-- TCU
TCU : Boolean := False;
-- TDU
TDU : Boolean := False;
-- unspecified
Reserved_23_23 : HAL.Bit := 16#0#;
-- Master Timer update
MSTU : Boolean := False;
-- AC Synchronization
DACSYNC : TIMECR_DACSYNC_Field := 16#0#;
-- Preload enable
PREEN : Boolean := False;
-- Update Gating
UPDGAT : TIMECR_UPDGAT_Field := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for TIMECR_Register use record
CKPSCx at 0 range 0 .. 2;
CONT at 0 range 3 .. 3;
RETRIG at 0 range 4 .. 4;
HALF at 0 range 5 .. 5;
PSHPLL at 0 range 6 .. 6;
Reserved_7_9 at 0 range 7 .. 9;
SYNCRSTx at 0 range 10 .. 10;
SYNCSTRTx at 0 range 11 .. 11;
DELCMP at 0 range 12 .. 15;
Reserved_16_16 at 0 range 16 .. 16;
TxREPU at 0 range 17 .. 17;
TxRSTU at 0 range 18 .. 18;
TAU at 0 range 19 .. 19;
TBU at 0 range 20 .. 20;
TCU at 0 range 21 .. 21;
TDU at 0 range 22 .. 22;
Reserved_23_23 at 0 range 23 .. 23;
MSTU at 0 range 24 .. 24;
DACSYNC at 0 range 25 .. 26;
PREEN at 0 range 27 .. 27;
UPDGAT at 0 range 28 .. 31;
end record;
-- TIMEISR_CMP array
type TIMEISR_CMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for TIMEISR_CMP
type TIMEISR_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt4;
when True =>
-- CMP as an array
Arr : TIMEISR_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for TIMEISR_CMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- TIMEISR_CPT array
type TIMEISR_CPT_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for TIMEISR_CPT
type TIMEISR_CPT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CPT as a value
Val : HAL.UInt2;
when True =>
-- CPT as an array
Arr : TIMEISR_CPT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for TIMEISR_CPT_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- Timerx Interrupt Status Register
type TIMEISR_Register is record
-- Read-only. Compare 1 Interrupt Flag
CMP : TIMEISR_CMP_Field;
-- Read-only. Repetition Interrupt Flag
REP : Boolean;
-- unspecified
Reserved_5_5 : HAL.Bit;
-- Read-only. Update Interrupt Flag
UPD : Boolean;
-- Read-only. Capture1 Interrupt Flag
CPT : TIMEISR_CPT_Field;
-- Read-only. Output 1 Set Interrupt Flag
SETx1 : Boolean;
-- Read-only. Output 1 Reset Interrupt Flag
RSTx1 : Boolean;
-- Read-only. Output 2 Set Interrupt Flag
SETx2 : Boolean;
-- Read-only. Output 2 Reset Interrupt Flag
RSTx2 : Boolean;
-- Read-only. Reset Interrupt Flag
RST : Boolean;
-- Read-only. Delayed Protection Flag
DLYPRT : Boolean;
-- unspecified
Reserved_15_15 : HAL.Bit;
-- Read-only. Current Push Pull Status
CPPSTAT : Boolean;
-- Read-only. Idle Push Pull Status
IPPSTAT : Boolean;
-- Read-only. Output 1 State
O1STAT : Boolean;
-- Read-only. Output 2 State
O2STAT : Boolean;
-- Read-only. Output 1 Copy
O1CPY : Boolean;
-- Read-only. Output 2 Copy
O2CPY : Boolean;
-- unspecified
Reserved_22_31 : HAL.UInt10;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for TIMEISR_Register use record
CMP at 0 range 0 .. 3;
REP at 0 range 4 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
UPD at 0 range 6 .. 6;
CPT at 0 range 7 .. 8;
SETx1 at 0 range 9 .. 9;
RSTx1 at 0 range 10 .. 10;
SETx2 at 0 range 11 .. 11;
RSTx2 at 0 range 12 .. 12;
RST at 0 range 13 .. 13;
DLYPRT at 0 range 14 .. 14;
Reserved_15_15 at 0 range 15 .. 15;
CPPSTAT at 0 range 16 .. 16;
IPPSTAT at 0 range 17 .. 17;
O1STAT at 0 range 18 .. 18;
O2STAT at 0 range 19 .. 19;
O1CPY at 0 range 20 .. 20;
O2CPY at 0 range 21 .. 21;
Reserved_22_31 at 0 range 22 .. 31;
end record;
-- Timerx Interrupt Clear Register
type TIMEICR_Register is record
-- Write-only. Compare 1 Interrupt flag Clear
CMP1C : Boolean := False;
-- Write-only. Compare 2 Interrupt flag Clear
CMP2C : Boolean := False;
-- Write-only. Compare 3 Interrupt flag Clear
CMP3C : Boolean := False;
-- Write-only. Compare 4 Interrupt flag Clear
CMP4C : Boolean := False;
-- Write-only. Repetition Interrupt flag Clear
REPC : Boolean := False;
-- unspecified
Reserved_5_5 : HAL.Bit := 16#0#;
-- Write-only. Update Interrupt flag Clear
UPDC : Boolean := False;
-- Write-only. Capture1 Interrupt flag Clear
CPT1C : Boolean := False;
-- Write-only. Capture2 Interrupt flag Clear
CPT2C : Boolean := False;
-- Write-only. Output 1 Set flag Clear
SET1xC : Boolean := False;
-- Write-only. Output 1 Reset flag Clear
RSTx1C : Boolean := False;
-- Write-only. Output 2 Set flag Clear
SET2xC : Boolean := False;
-- Write-only. Output 2 Reset flag Clear
RSTx2C : Boolean := False;
-- Write-only. Reset Interrupt flag Clear
RSTC : Boolean := False;
-- Write-only. Delayed Protection Flag Clear
DLYPRTC : Boolean := False;
-- unspecified
Reserved_15_31 : HAL.UInt17 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for TIMEICR_Register use record
CMP1C at 0 range 0 .. 0;
CMP2C at 0 range 1 .. 1;
CMP3C at 0 range 2 .. 2;
CMP4C at 0 range 3 .. 3;
REPC at 0 range 4 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
UPDC at 0 range 6 .. 6;
CPT1C at 0 range 7 .. 7;
CPT2C at 0 range 8 .. 8;
SET1xC at 0 range 9 .. 9;
RSTx1C at 0 range 10 .. 10;
SET2xC at 0 range 11 .. 11;
RSTx2C at 0 range 12 .. 12;
RSTC at 0 range 13 .. 13;
DLYPRTC at 0 range 14 .. 14;
Reserved_15_31 at 0 range 15 .. 31;
end record;
-- TIMxDIER
type TIMEDIER_Register is record
-- CMP1IE
CMP1IE : Boolean := False;
-- CMP2IE
CMP2IE : Boolean := False;
-- CMP3IE
CMP3IE : Boolean := False;
-- CMP4IE
CMP4IE : Boolean := False;
-- REPIE
REPIE : Boolean := False;
-- unspecified
Reserved_5_5 : HAL.Bit := 16#0#;
-- UPDIE
UPDIE : Boolean := False;
-- CPT1IE
CPT1IE : Boolean := False;
-- CPT2IE
CPT2IE : Boolean := False;
-- SET1xIE
SET1xIE : Boolean := False;
-- RSTx1IE
RSTx1IE : Boolean := False;
-- SETx2IE
SETx2IE : Boolean := False;
-- RSTx2IE
RSTx2IE : Boolean := False;
-- RSTIE
RSTIE : Boolean := False;
-- DLYPRTIE
DLYPRTIE : Boolean := False;
-- unspecified
Reserved_15_15 : HAL.Bit := 16#0#;
-- CMP1DE
CMP1DE : Boolean := False;
-- CMP2DE
CMP2DE : Boolean := False;
-- CMP3DE
CMP3DE : Boolean := False;
-- CMP4DE
CMP4DE : Boolean := False;
-- REPDE
REPDE : Boolean := False;
-- unspecified
Reserved_21_21 : HAL.Bit := 16#0#;
-- UPDDE
UPDDE : Boolean := False;
-- CPT1DE
CPT1DE : Boolean := False;
-- CPT2DE
CPT2DE : Boolean := False;
-- SET1xDE
SET1xDE : Boolean := False;
-- RSTx1DE
RSTx1DE : Boolean := False;
-- SETx2DE
SETx2DE : Boolean := False;
-- RSTx2DE
RSTx2DE : Boolean := False;
-- RSTDE
RSTDE : Boolean := False;
-- DLYPRTDE
DLYPRTDE : Boolean := False;
-- unspecified
Reserved_31_31 : HAL.Bit := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for TIMEDIER_Register use record
CMP1IE at 0 range 0 .. 0;
CMP2IE at 0 range 1 .. 1;
CMP3IE at 0 range 2 .. 2;
CMP4IE at 0 range 3 .. 3;
REPIE at 0 range 4 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
UPDIE at 0 range 6 .. 6;
CPT1IE at 0 range 7 .. 7;
CPT2IE at 0 range 8 .. 8;
SET1xIE at 0 range 9 .. 9;
RSTx1IE at 0 range 10 .. 10;
SETx2IE at 0 range 11 .. 11;
RSTx2IE at 0 range 12 .. 12;
RSTIE at 0 range 13 .. 13;
DLYPRTIE at 0 range 14 .. 14;
Reserved_15_15 at 0 range 15 .. 15;
CMP1DE at 0 range 16 .. 16;
CMP2DE at 0 range 17 .. 17;
CMP3DE at 0 range 18 .. 18;
CMP4DE at 0 range 19 .. 19;
REPDE at 0 range 20 .. 20;
Reserved_21_21 at 0 range 21 .. 21;
UPDDE at 0 range 22 .. 22;
CPT1DE at 0 range 23 .. 23;
CPT2DE at 0 range 24 .. 24;
SET1xDE at 0 range 25 .. 25;
RSTx1DE at 0 range 26 .. 26;
SETx2DE at 0 range 27 .. 27;
RSTx2DE at 0 range 28 .. 28;
RSTDE at 0 range 29 .. 29;
DLYPRTDE at 0 range 30 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype CNTER_CNTx_Field is HAL.UInt16;
-- Timerx Counter Register
type CNTER_Register is record
-- Timerx Counter value
CNTx : CNTER_CNTx_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CNTER_Register use record
CNTx at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype PERER_PERx_Field is HAL.UInt16;
-- Timerx Period Register
type PERER_Register is record
-- Timerx Period value
PERx : PERER_PERx_Field := 16#FFFF#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for PERER_Register use record
PERx at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype REPER_REPx_Field is HAL.UInt8;
-- Timerx Repetition Register
type REPER_Register is record
-- Timerx Repetition counter value
REPx : REPER_REPx_Field := 16#0#;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for REPER_Register use record
REPx at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
subtype CMP1ER_CMP1x_Field is HAL.UInt16;
-- Timerx Compare 1 Register
type CMP1ER_Register is record
-- Timerx Compare 1 value
CMP1x : CMP1ER_CMP1x_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CMP1ER_Register use record
CMP1x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CMP1CER_CMP1x_Field is HAL.UInt16;
subtype CMP1CER_REPx_Field is HAL.UInt8;
-- Timerx Compare 1 Compound Register
type CMP1CER_Register is record
-- Timerx Compare 1 value
CMP1x : CMP1CER_CMP1x_Field := 16#0#;
-- Timerx Repetition value (aliased from HRTIM_REPx register)
REPx : CMP1CER_REPx_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 CMP1CER_Register use record
CMP1x at 0 range 0 .. 15;
REPx at 0 range 16 .. 23;
Reserved_24_31 at 0 range 24 .. 31;
end record;
subtype CMP2ER_CMP2x_Field is HAL.UInt16;
-- Timerx Compare 2 Register
type CMP2ER_Register is record
-- Timerx Compare 2 value
CMP2x : CMP2ER_CMP2x_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CMP2ER_Register use record
CMP2x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CMP3ER_CMP3x_Field is HAL.UInt16;
-- Timerx Compare 3 Register
type CMP3ER_Register is record
-- Timerx Compare 3 value
CMP3x : CMP3ER_CMP3x_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CMP3ER_Register use record
CMP3x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CMP4ER_CMP4x_Field is HAL.UInt16;
-- Timerx Compare 4 Register
type CMP4ER_Register is record
-- Timerx Compare 4 value
CMP4x : CMP4ER_CMP4x_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CMP4ER_Register use record
CMP4x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CPT1ER_CPT1x_Field is HAL.UInt16;
-- Timerx Capture 1 Register
type CPT1ER_Register is record
-- Read-only. Timerx Capture 1 value
CPT1x : CPT1ER_CPT1x_Field;
-- unspecified
Reserved_16_31 : HAL.UInt16;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CPT1ER_Register use record
CPT1x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CPT2ER_CPT2x_Field is HAL.UInt16;
-- Timerx Capture 2 Register
type CPT2ER_Register is record
-- Read-only. Timerx Capture 2 value
CPT2x : CPT2ER_CPT2x_Field;
-- unspecified
Reserved_16_31 : HAL.UInt16;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CPT2ER_Register use record
CPT2x at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype DTER_DTRx_Field is HAL.UInt9;
subtype DTER_DTPRSC_Field is HAL.UInt3;
subtype DTER_DTFx_Field is HAL.UInt9;
-- Timerx Deadtime Register
type DTER_Register is record
-- Deadtime Rising value
DTRx : DTER_DTRx_Field := 16#0#;
-- Sign Deadtime Rising value
SDTRx : Boolean := False;
-- Deadtime Prescaler
DTPRSC : DTER_DTPRSC_Field := 16#0#;
-- unspecified
Reserved_13_13 : HAL.Bit := 16#0#;
-- Deadtime Rising Sign Lock
DTRSLKx : Boolean := False;
-- Deadtime Rising Lock
DTRLKx : Boolean := False;
-- Deadtime Falling value
DTFx : DTER_DTFx_Field := 16#0#;
-- Sign Deadtime Falling value
SDTFx : Boolean := False;
-- unspecified
Reserved_26_29 : HAL.UInt4 := 16#0#;
-- Deadtime Falling Sign Lock
DTFSLKx : Boolean := False;
-- Deadtime Falling Lock
DTFLKx : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for DTER_Register use record
DTRx at 0 range 0 .. 8;
SDTRx at 0 range 9 .. 9;
DTPRSC at 0 range 10 .. 12;
Reserved_13_13 at 0 range 13 .. 13;
DTRSLKx at 0 range 14 .. 14;
DTRLKx at 0 range 15 .. 15;
DTFx at 0 range 16 .. 24;
SDTFx at 0 range 25 .. 25;
Reserved_26_29 at 0 range 26 .. 29;
DTFSLKx at 0 range 30 .. 30;
DTFLKx at 0 range 31 .. 31;
end record;
-- SETE1R_CMP array
type SETE1R_CMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for SETE1R_CMP
type SETE1R_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt4;
when True =>
-- CMP as an array
Arr : SETE1R_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for SETE1R_CMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- SETE1R_MSTCMP array
type SETE1R_MSTCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for SETE1R_MSTCMP
type SETE1R_MSTCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MSTCMP as a value
Val : HAL.UInt4;
when True =>
-- MSTCMP as an array
Arr : SETE1R_MSTCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for SETE1R_MSTCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- SETE1R_TIMEVNT array
type SETE1R_TIMEVNT_Field_Array is array (1 .. 9) of Boolean
with Component_Size => 1, Size => 9;
-- Type definition for SETE1R_TIMEVNT
type SETE1R_TIMEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMEVNT as a value
Val : HAL.UInt9;
when True =>
-- TIMEVNT as an array
Arr : SETE1R_TIMEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 9;
for SETE1R_TIMEVNT_Field use record
Val at 0 range 0 .. 8;
Arr at 0 range 0 .. 8;
end record;
-- SETE1R_EXTEVNT array
type SETE1R_EXTEVNT_Field_Array is array (1 .. 10) of Boolean
with Component_Size => 1, Size => 10;
-- Type definition for SETE1R_EXTEVNT
type SETE1R_EXTEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- EXTEVNT as a value
Val : HAL.UInt10;
when True =>
-- EXTEVNT as an array
Arr : SETE1R_EXTEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 10;
for SETE1R_EXTEVNT_Field use record
Val at 0 range 0 .. 9;
Arr at 0 range 0 .. 9;
end record;
-- Timerx Output1 Set Register
type SETE1R_Register is record
-- Software Set trigger
SST : Boolean := False;
-- Timer A resynchronizaton
RESYNC : Boolean := False;
-- Timer A Period
PER : Boolean := False;
-- Timer A compare 1
CMP : SETE1R_CMP_Field := (As_Array => False, Val => 16#0#);
-- Master Period
MSTPER : Boolean := False;
-- Master Compare 1
MSTCMP : SETE1R_MSTCMP_Field := (As_Array => False, Val => 16#0#);
-- Timer Event 1
TIMEVNT : SETE1R_TIMEVNT_Field := (As_Array => False, Val => 16#0#);
-- External Event 1
EXTEVNT : SETE1R_EXTEVNT_Field := (As_Array => False, Val => 16#0#);
-- Registers update (transfer preload to active)
UPDATE : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for SETE1R_Register use record
SST at 0 range 0 .. 0;
RESYNC at 0 range 1 .. 1;
PER at 0 range 2 .. 2;
CMP at 0 range 3 .. 6;
MSTPER at 0 range 7 .. 7;
MSTCMP at 0 range 8 .. 11;
TIMEVNT at 0 range 12 .. 20;
EXTEVNT at 0 range 21 .. 30;
UPDATE at 0 range 31 .. 31;
end record;
-- RSTE1R_CMP array
type RSTE1R_CMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for RSTE1R_CMP
type RSTE1R_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt4;
when True =>
-- CMP as an array
Arr : RSTE1R_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for RSTE1R_CMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- RSTE1R_MSTCMP array
type RSTE1R_MSTCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for RSTE1R_MSTCMP
type RSTE1R_MSTCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MSTCMP as a value
Val : HAL.UInt4;
when True =>
-- MSTCMP as an array
Arr : RSTE1R_MSTCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for RSTE1R_MSTCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- RSTE1R_TIMEVNT array
type RSTE1R_TIMEVNT_Field_Array is array (1 .. 9) of Boolean
with Component_Size => 1, Size => 9;
-- Type definition for RSTE1R_TIMEVNT
type RSTE1R_TIMEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMEVNT as a value
Val : HAL.UInt9;
when True =>
-- TIMEVNT as an array
Arr : RSTE1R_TIMEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 9;
for RSTE1R_TIMEVNT_Field use record
Val at 0 range 0 .. 8;
Arr at 0 range 0 .. 8;
end record;
-- RSTE1R_EXTEVNT array
type RSTE1R_EXTEVNT_Field_Array is array (1 .. 10) of Boolean
with Component_Size => 1, Size => 10;
-- Type definition for RSTE1R_EXTEVNT
type RSTE1R_EXTEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- EXTEVNT as a value
Val : HAL.UInt10;
when True =>
-- EXTEVNT as an array
Arr : RSTE1R_EXTEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 10;
for RSTE1R_EXTEVNT_Field use record
Val at 0 range 0 .. 9;
Arr at 0 range 0 .. 9;
end record;
-- Timerx Output1 Reset Register
type RSTE1R_Register is record
-- SRT
SRT : Boolean := False;
-- RESYNC
RESYNC : Boolean := False;
-- PER
PER : Boolean := False;
-- CMP1
CMP : RSTE1R_CMP_Field := (As_Array => False, Val => 16#0#);
-- MSTPER
MSTPER : Boolean := False;
-- MSTCMP1
MSTCMP : RSTE1R_MSTCMP_Field := (As_Array => False, Val => 16#0#);
-- TIMEVNT1
TIMEVNT : RSTE1R_TIMEVNT_Field := (As_Array => False, Val => 16#0#);
-- EXTEVNT1
EXTEVNT : RSTE1R_EXTEVNT_Field := (As_Array => False, Val => 16#0#);
-- UPDATE
UPDATE : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for RSTE1R_Register use record
SRT at 0 range 0 .. 0;
RESYNC at 0 range 1 .. 1;
PER at 0 range 2 .. 2;
CMP at 0 range 3 .. 6;
MSTPER at 0 range 7 .. 7;
MSTCMP at 0 range 8 .. 11;
TIMEVNT at 0 range 12 .. 20;
EXTEVNT at 0 range 21 .. 30;
UPDATE at 0 range 31 .. 31;
end record;
-- SETE2R_CMP array
type SETE2R_CMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for SETE2R_CMP
type SETE2R_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt4;
when True =>
-- CMP as an array
Arr : SETE2R_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for SETE2R_CMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- SETE2R_MSTCMP array
type SETE2R_MSTCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for SETE2R_MSTCMP
type SETE2R_MSTCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MSTCMP as a value
Val : HAL.UInt4;
when True =>
-- MSTCMP as an array
Arr : SETE2R_MSTCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for SETE2R_MSTCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- SETE2R_TIMEVNT array
type SETE2R_TIMEVNT_Field_Array is array (1 .. 9) of Boolean
with Component_Size => 1, Size => 9;
-- Type definition for SETE2R_TIMEVNT
type SETE2R_TIMEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMEVNT as a value
Val : HAL.UInt9;
when True =>
-- TIMEVNT as an array
Arr : SETE2R_TIMEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 9;
for SETE2R_TIMEVNT_Field use record
Val at 0 range 0 .. 8;
Arr at 0 range 0 .. 8;
end record;
-- SETE2R_EXTEVNT array
type SETE2R_EXTEVNT_Field_Array is array (1 .. 10) of Boolean
with Component_Size => 1, Size => 10;
-- Type definition for SETE2R_EXTEVNT
type SETE2R_EXTEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- EXTEVNT as a value
Val : HAL.UInt10;
when True =>
-- EXTEVNT as an array
Arr : SETE2R_EXTEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 10;
for SETE2R_EXTEVNT_Field use record
Val at 0 range 0 .. 9;
Arr at 0 range 0 .. 9;
end record;
-- Timerx Output2 Set Register
type SETE2R_Register is record
-- SST
SST : Boolean := False;
-- RESYNC
RESYNC : Boolean := False;
-- PER
PER : Boolean := False;
-- CMP1
CMP : SETE2R_CMP_Field := (As_Array => False, Val => 16#0#);
-- MSTPER
MSTPER : Boolean := False;
-- MSTCMP1
MSTCMP : SETE2R_MSTCMP_Field := (As_Array => False, Val => 16#0#);
-- TIMEVNT1
TIMEVNT : SETE2R_TIMEVNT_Field := (As_Array => False, Val => 16#0#);
-- EXTEVNT1
EXTEVNT : SETE2R_EXTEVNT_Field := (As_Array => False, Val => 16#0#);
-- UPDATE
UPDATE : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for SETE2R_Register use record
SST at 0 range 0 .. 0;
RESYNC at 0 range 1 .. 1;
PER at 0 range 2 .. 2;
CMP at 0 range 3 .. 6;
MSTPER at 0 range 7 .. 7;
MSTCMP at 0 range 8 .. 11;
TIMEVNT at 0 range 12 .. 20;
EXTEVNT at 0 range 21 .. 30;
UPDATE at 0 range 31 .. 31;
end record;
-- RSTE2R_CMP array
type RSTE2R_CMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for RSTE2R_CMP
type RSTE2R_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt4;
when True =>
-- CMP as an array
Arr : RSTE2R_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for RSTE2R_CMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- RSTE2R_MSTCMP array
type RSTE2R_MSTCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for RSTE2R_MSTCMP
type RSTE2R_MSTCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MSTCMP as a value
Val : HAL.UInt4;
when True =>
-- MSTCMP as an array
Arr : RSTE2R_MSTCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for RSTE2R_MSTCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- RSTE2R_TIMEVNT array
type RSTE2R_TIMEVNT_Field_Array is array (1 .. 9) of Boolean
with Component_Size => 1, Size => 9;
-- Type definition for RSTE2R_TIMEVNT
type RSTE2R_TIMEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMEVNT as a value
Val : HAL.UInt9;
when True =>
-- TIMEVNT as an array
Arr : RSTE2R_TIMEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 9;
for RSTE2R_TIMEVNT_Field use record
Val at 0 range 0 .. 8;
Arr at 0 range 0 .. 8;
end record;
-- RSTE2R_EXTEVNT array
type RSTE2R_EXTEVNT_Field_Array is array (1 .. 10) of Boolean
with Component_Size => 1, Size => 10;
-- Type definition for RSTE2R_EXTEVNT
type RSTE2R_EXTEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- EXTEVNT as a value
Val : HAL.UInt10;
when True =>
-- EXTEVNT as an array
Arr : RSTE2R_EXTEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 10;
for RSTE2R_EXTEVNT_Field use record
Val at 0 range 0 .. 9;
Arr at 0 range 0 .. 9;
end record;
-- Timerx Output2 Reset Register
type RSTE2R_Register is record
-- SRT
SRT : Boolean := False;
-- RESYNC
RESYNC : Boolean := False;
-- PER
PER : Boolean := False;
-- CMP1
CMP : RSTE2R_CMP_Field := (As_Array => False, Val => 16#0#);
-- MSTPER
MSTPER : Boolean := False;
-- MSTCMP1
MSTCMP : RSTE2R_MSTCMP_Field := (As_Array => False, Val => 16#0#);
-- TIMEVNT1
TIMEVNT : RSTE2R_TIMEVNT_Field := (As_Array => False, Val => 16#0#);
-- EXTEVNT1
EXTEVNT : RSTE2R_EXTEVNT_Field := (As_Array => False, Val => 16#0#);
-- UPDATE
UPDATE : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for RSTE2R_Register use record
SRT at 0 range 0 .. 0;
RESYNC at 0 range 1 .. 1;
PER at 0 range 2 .. 2;
CMP at 0 range 3 .. 6;
MSTPER at 0 range 7 .. 7;
MSTCMP at 0 range 8 .. 11;
TIMEVNT at 0 range 12 .. 20;
EXTEVNT at 0 range 21 .. 30;
UPDATE at 0 range 31 .. 31;
end record;
subtype EEFER1_EE1FLTR_Field is HAL.UInt4;
subtype EEFER1_EE2FLTR_Field is HAL.UInt4;
subtype EEFER1_EE3FLTR_Field is HAL.UInt4;
subtype EEFER1_EE4FLTR_Field is HAL.UInt4;
subtype EEFER1_EE5FLTR_Field is HAL.UInt4;
-- Timerx External Event Filtering Register 1
type EEFER1_Register is record
-- External Event 1 latch
EE1LTCH : Boolean := False;
-- External Event 1 filter
EE1FLTR : EEFER1_EE1FLTR_Field := 16#0#;
-- unspecified
Reserved_5_5 : HAL.Bit := 16#0#;
-- External Event 2 latch
EE2LTCH : Boolean := False;
-- External Event 2 filter
EE2FLTR : EEFER1_EE2FLTR_Field := 16#0#;
-- unspecified
Reserved_11_11 : HAL.Bit := 16#0#;
-- External Event 3 latch
EE3LTCH : Boolean := False;
-- External Event 3 filter
EE3FLTR : EEFER1_EE3FLTR_Field := 16#0#;
-- unspecified
Reserved_17_17 : HAL.Bit := 16#0#;
-- External Event 4 latch
EE4LTCH : Boolean := False;
-- External Event 4 filter
EE4FLTR : EEFER1_EE4FLTR_Field := 16#0#;
-- unspecified
Reserved_23_23 : HAL.Bit := 16#0#;
-- External Event 5 latch
EE5LTCH : Boolean := False;
-- External Event 5 filter
EE5FLTR : EEFER1_EE5FLTR_Field := 16#0#;
-- unspecified
Reserved_29_31 : HAL.UInt3 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for EEFER1_Register use record
EE1LTCH at 0 range 0 .. 0;
EE1FLTR at 0 range 1 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
EE2LTCH at 0 range 6 .. 6;
EE2FLTR at 0 range 7 .. 10;
Reserved_11_11 at 0 range 11 .. 11;
EE3LTCH at 0 range 12 .. 12;
EE3FLTR at 0 range 13 .. 16;
Reserved_17_17 at 0 range 17 .. 17;
EE4LTCH at 0 range 18 .. 18;
EE4FLTR at 0 range 19 .. 22;
Reserved_23_23 at 0 range 23 .. 23;
EE5LTCH at 0 range 24 .. 24;
EE5FLTR at 0 range 25 .. 28;
Reserved_29_31 at 0 range 29 .. 31;
end record;
subtype EEFER2_EE6FLTR_Field is HAL.UInt4;
subtype EEFER2_EE7FLTR_Field is HAL.UInt4;
subtype EEFER2_EE8FLTR_Field is HAL.UInt4;
subtype EEFER2_EE9FLTR_Field is HAL.UInt4;
subtype EEFER2_EE10FLTR_Field is HAL.UInt4;
-- Timerx External Event Filtering Register 2
type EEFER2_Register is record
-- External Event 6 latch
EE6LTCH : Boolean := False;
-- External Event 6 filter
EE6FLTR : EEFER2_EE6FLTR_Field := 16#0#;
-- unspecified
Reserved_5_5 : HAL.Bit := 16#0#;
-- External Event 7 latch
EE7LTCH : Boolean := False;
-- External Event 7 filter
EE7FLTR : EEFER2_EE7FLTR_Field := 16#0#;
-- unspecified
Reserved_11_11 : HAL.Bit := 16#0#;
-- External Event 8 latch
EE8LTCH : Boolean := False;
-- External Event 8 filter
EE8FLTR : EEFER2_EE8FLTR_Field := 16#0#;
-- unspecified
Reserved_17_17 : HAL.Bit := 16#0#;
-- External Event 9 latch
EE9LTCH : Boolean := False;
-- External Event 9 filter
EE9FLTR : EEFER2_EE9FLTR_Field := 16#0#;
-- unspecified
Reserved_23_23 : HAL.Bit := 16#0#;
-- External Event 10 latch
EE10LTCH : Boolean := False;
-- External Event 10 filter
EE10FLTR : EEFER2_EE10FLTR_Field := 16#0#;
-- unspecified
Reserved_29_31 : HAL.UInt3 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for EEFER2_Register use record
EE6LTCH at 0 range 0 .. 0;
EE6FLTR at 0 range 1 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
EE7LTCH at 0 range 6 .. 6;
EE7FLTR at 0 range 7 .. 10;
Reserved_11_11 at 0 range 11 .. 11;
EE8LTCH at 0 range 12 .. 12;
EE8FLTR at 0 range 13 .. 16;
Reserved_17_17 at 0 range 17 .. 17;
EE9LTCH at 0 range 18 .. 18;
EE9FLTR at 0 range 19 .. 22;
Reserved_23_23 at 0 range 23 .. 23;
EE10LTCH at 0 range 24 .. 24;
EE10FLTR at 0 range 25 .. 28;
Reserved_29_31 at 0 range 29 .. 31;
end record;
-- RSTER_CMP array
type RSTER_CMP_Field_Array is array (2 .. 3) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for RSTER_CMP
type RSTER_CMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP as a value
Val : HAL.UInt2;
when True =>
-- CMP as an array
Arr : RSTER_CMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for RSTER_CMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- RSTER_MSTCMP array
type RSTER_MSTCMP_Field_Array is array (1 .. 4) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for RSTER_MSTCMP
type RSTER_MSTCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MSTCMP as a value
Val : HAL.UInt4;
when True =>
-- MSTCMP as an array
Arr : RSTER_MSTCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for RSTER_MSTCMP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- RSTER_EXTEVNT array
type RSTER_EXTEVNT_Field_Array is array (1 .. 10) of Boolean
with Component_Size => 1, Size => 10;
-- Type definition for RSTER_EXTEVNT
type RSTER_EXTEVNT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- EXTEVNT as a value
Val : HAL.UInt10;
when True =>
-- EXTEVNT as an array
Arr : RSTER_EXTEVNT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 10;
for RSTER_EXTEVNT_Field use record
Val at 0 range 0 .. 9;
Arr at 0 range 0 .. 9;
end record;
-- RSTER_TIMACMP array
type RSTER_TIMACMP_Field_Array is array (1 .. 3) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for RSTER_TIMACMP
type RSTER_TIMACMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMACMP as a value
Val : HAL.UInt3;
when True =>
-- TIMACMP as an array
Arr : RSTER_TIMACMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for RSTER_TIMACMP_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- RSTER_TIMBCMP array
type RSTER_TIMBCMP_Field_Array is array (1 .. 3) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for RSTER_TIMBCMP
type RSTER_TIMBCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMBCMP as a value
Val : HAL.UInt3;
when True =>
-- TIMBCMP as an array
Arr : RSTER_TIMBCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for RSTER_TIMBCMP_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- RSTER_TIMCCMP array
type RSTER_TIMCCMP_Field_Array is array (1 .. 3) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for RSTER_TIMCCMP
type RSTER_TIMCCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMCCMP as a value
Val : HAL.UInt3;
when True =>
-- TIMCCMP as an array
Arr : RSTER_TIMCCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for RSTER_TIMCCMP_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- RSTER_TIMDCMP array
type RSTER_TIMDCMP_Field_Array is array (1 .. 3) of Boolean
with Component_Size => 1, Size => 3;
-- Type definition for RSTER_TIMDCMP
type RSTER_TIMDCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TIMDCMP as a value
Val : HAL.UInt3;
when True =>
-- TIMDCMP as an array
Arr : RSTER_TIMDCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 3;
for RSTER_TIMDCMP_Field use record
Val at 0 range 0 .. 2;
Arr at 0 range 0 .. 2;
end record;
-- TimerA Reset Register
type RSTER_Register is record
-- unspecified
Reserved_0_0 : HAL.Bit := 16#0#;
-- Timer A Update reset
UPDT : Boolean := False;
-- Timer A compare 2 reset
CMP : RSTER_CMP_Field := (As_Array => False, Val => 16#0#);
-- Master timer Period
MSTPER : Boolean := False;
-- Master compare 1
MSTCMP : RSTER_MSTCMP_Field :=
(As_Array => False, Val => 16#0#);
-- External Event 1
EXTEVNT : RSTER_EXTEVNT_Field :=
(As_Array => False, Val => 16#0#);
-- Timer A Compare 1
TIMACMP : RSTER_TIMACMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer B Compare 1
TIMBCMP : RSTER_TIMBCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer C Compare 1
TIMCCMP : RSTER_TIMCCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer D Compare 1
TIMDCMP : RSTER_TIMDCMP_Field :=
(As_Array => False, Val => 16#0#);
-- unspecified
Reserved_31_31 : HAL.Bit := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for RSTER_Register use record
Reserved_0_0 at 0 range 0 .. 0;
UPDT at 0 range 1 .. 1;
CMP at 0 range 2 .. 3;
MSTPER at 0 range 4 .. 4;
MSTCMP at 0 range 5 .. 8;
EXTEVNT at 0 range 9 .. 18;
TIMACMP at 0 range 19 .. 21;
TIMBCMP at 0 range 22 .. 24;
TIMCCMP at 0 range 25 .. 27;
TIMDCMP at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype CHPER_CHPFRQ_Field is HAL.UInt4;
subtype CHPER_CHPDTY_Field is HAL.UInt3;
subtype CHPER_STRTPW_Field is HAL.UInt4;
-- Timerx Chopper Register
type CHPER_Register is record
-- Timerx carrier frequency value
CHPFRQ : CHPER_CHPFRQ_Field := 16#0#;
-- Timerx chopper duty cycle value
CHPDTY : CHPER_CHPDTY_Field := 16#0#;
-- STRTPW
STRTPW : CHPER_STRTPW_Field := 16#0#;
-- unspecified
Reserved_11_31 : HAL.UInt21 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CHPER_Register use record
CHPFRQ at 0 range 0 .. 3;
CHPDTY at 0 range 4 .. 6;
STRTPW at 0 range 7 .. 10;
Reserved_11_31 at 0 range 11 .. 31;
end record;
-- CPT1ECR_TACMP array
type CPT1ECR_TACMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT1ECR_TACMP
type CPT1ECR_TACMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TACMP as a value
Val : HAL.UInt2;
when True =>
-- TACMP as an array
Arr : CPT1ECR_TACMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT1ECR_TACMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT1ECR_TBCMP array
type CPT1ECR_TBCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT1ECR_TBCMP
type CPT1ECR_TBCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TBCMP as a value
Val : HAL.UInt2;
when True =>
-- TBCMP as an array
Arr : CPT1ECR_TBCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT1ECR_TBCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT1ECR_TCCMP array
type CPT1ECR_TCCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT1ECR_TCCMP
type CPT1ECR_TCCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TCCMP as a value
Val : HAL.UInt2;
when True =>
-- TCCMP as an array
Arr : CPT1ECR_TCCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT1ECR_TCCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT1ECR_TDCMP array
type CPT1ECR_TDCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT1ECR_TDCMP
type CPT1ECR_TDCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TDCMP as a value
Val : HAL.UInt2;
when True =>
-- TDCMP as an array
Arr : CPT1ECR_TDCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT1ECR_TDCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- Timerx Capture 2 Control Register
type CPT1ECR_Register is record
-- Software Capture
SWCPT : Boolean := False;
-- Update Capture
UDPCPT : Boolean := False;
-- External Event 1 Capture
EXEV1CPT : Boolean := False;
-- External Event 2 Capture
EXEV2CPT : Boolean := False;
-- External Event 3 Capture
EXEV3CPT : Boolean := False;
-- External Event 4 Capture
EXEV4CPT : Boolean := False;
-- External Event 5 Capture
EXEV5CPT : Boolean := False;
-- External Event 6 Capture
EXEV6CPT : Boolean := False;
-- External Event 7 Capture
EXEV7CPT : Boolean := False;
-- External Event 8 Capture
EXEV8CPT : Boolean := False;
-- External Event 9 Capture
EXEV9CPT : Boolean := False;
-- External Event 10 Capture
EXEV10CPT : Boolean := False;
-- Timer A output 1 Set
TA1SET : Boolean := False;
-- Timer A output 1 Reset
TA1RST : Boolean := False;
-- Timer A Compare 1
TACMP : CPT1ECR_TACMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer B output 1 Set
TB1SET : Boolean := False;
-- Timer B output 1 Reset
TB1RST : Boolean := False;
-- Timer B Compare 1
TBCMP : CPT1ECR_TBCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer C output 1 Set
TC1SET : Boolean := False;
-- Timer C output 1 Reset
TC1RST : Boolean := False;
-- Timer C Compare 1
TCCMP : CPT1ECR_TCCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer D output 1 Set
TD1SET : Boolean := False;
-- Timer D output 1 Reset
TD1RST : Boolean := False;
-- Timer D Compare 1
TDCMP : CPT1ECR_TDCMP_Field :=
(As_Array => False, Val => 16#0#);
-- unspecified
Reserved_28_31 : HAL.UInt4 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CPT1ECR_Register use record
SWCPT at 0 range 0 .. 0;
UDPCPT at 0 range 1 .. 1;
EXEV1CPT at 0 range 2 .. 2;
EXEV2CPT at 0 range 3 .. 3;
EXEV3CPT at 0 range 4 .. 4;
EXEV4CPT at 0 range 5 .. 5;
EXEV5CPT at 0 range 6 .. 6;
EXEV6CPT at 0 range 7 .. 7;
EXEV7CPT at 0 range 8 .. 8;
EXEV8CPT at 0 range 9 .. 9;
EXEV9CPT at 0 range 10 .. 10;
EXEV10CPT at 0 range 11 .. 11;
TA1SET at 0 range 12 .. 12;
TA1RST at 0 range 13 .. 13;
TACMP at 0 range 14 .. 15;
TB1SET at 0 range 16 .. 16;
TB1RST at 0 range 17 .. 17;
TBCMP at 0 range 18 .. 19;
TC1SET at 0 range 20 .. 20;
TC1RST at 0 range 21 .. 21;
TCCMP at 0 range 22 .. 23;
TD1SET at 0 range 24 .. 24;
TD1RST at 0 range 25 .. 25;
TDCMP at 0 range 26 .. 27;
Reserved_28_31 at 0 range 28 .. 31;
end record;
-- CPT2ECR_TACMP array
type CPT2ECR_TACMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT2ECR_TACMP
type CPT2ECR_TACMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TACMP as a value
Val : HAL.UInt2;
when True =>
-- TACMP as an array
Arr : CPT2ECR_TACMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT2ECR_TACMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT2ECR_TBCMP array
type CPT2ECR_TBCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT2ECR_TBCMP
type CPT2ECR_TBCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TBCMP as a value
Val : HAL.UInt2;
when True =>
-- TBCMP as an array
Arr : CPT2ECR_TBCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT2ECR_TBCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT2ECR_TCCMP array
type CPT2ECR_TCCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT2ECR_TCCMP
type CPT2ECR_TCCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TCCMP as a value
Val : HAL.UInt2;
when True =>
-- TCCMP as an array
Arr : CPT2ECR_TCCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT2ECR_TCCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT2ECR_TDCMP array
type CPT2ECR_TDCMP_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for CPT2ECR_TDCMP
type CPT2ECR_TDCMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TDCMP as a value
Val : HAL.UInt2;
when True =>
-- TDCMP as an array
Arr : CPT2ECR_TDCMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for CPT2ECR_TDCMP_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
-- CPT2xCR
type CPT2ECR_Register is record
-- Software Capture
SWCPT : Boolean := False;
-- Update Capture
UDPCPT : Boolean := False;
-- External Event 1 Capture
EXEV1CPT : Boolean := False;
-- External Event 2 Capture
EXEV2CPT : Boolean := False;
-- External Event 3 Capture
EXEV3CPT : Boolean := False;
-- External Event 4 Capture
EXEV4CPT : Boolean := False;
-- External Event 5 Capture
EXEV5CPT : Boolean := False;
-- External Event 6 Capture
EXEV6CPT : Boolean := False;
-- External Event 7 Capture
EXEV7CPT : Boolean := False;
-- External Event 8 Capture
EXEV8CPT : Boolean := False;
-- External Event 9 Capture
EXEV9CPT : Boolean := False;
-- External Event 10 Capture
EXEV10CPT : Boolean := False;
-- Timer A output 1 Set
TA1SET : Boolean := False;
-- Timer A output 1 Reset
TA1RST : Boolean := False;
-- Timer A Compare 1
TACMP : CPT2ECR_TACMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer B output 1 Set
TB1SET : Boolean := False;
-- Timer B output 1 Reset
TB1RST : Boolean := False;
-- Timer B Compare 1
TBCMP : CPT2ECR_TBCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer C output 1 Set
TC1SET : Boolean := False;
-- Timer C output 1 Reset
TC1RST : Boolean := False;
-- Timer C Compare 1
TCCMP : CPT2ECR_TCCMP_Field :=
(As_Array => False, Val => 16#0#);
-- Timer D output 1 Set
TD1SET : Boolean := False;
-- Timer D output 1 Reset
TD1RST : Boolean := False;
-- Timer D Compare 1
TDCMP : CPT2ECR_TDCMP_Field :=
(As_Array => False, Val => 16#0#);
-- unspecified
Reserved_28_31 : HAL.UInt4 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CPT2ECR_Register use record
SWCPT at 0 range 0 .. 0;
UDPCPT at 0 range 1 .. 1;
EXEV1CPT at 0 range 2 .. 2;
EXEV2CPT at 0 range 3 .. 3;
EXEV3CPT at 0 range 4 .. 4;
EXEV4CPT at 0 range 5 .. 5;
EXEV5CPT at 0 range 6 .. 6;
EXEV6CPT at 0 range 7 .. 7;
EXEV7CPT at 0 range 8 .. 8;
EXEV8CPT at 0 range 9 .. 9;
EXEV9CPT at 0 range 10 .. 10;
EXEV10CPT at 0 range 11 .. 11;
TA1SET at 0 range 12 .. 12;
TA1RST at 0 range 13 .. 13;
TACMP at 0 range 14 .. 15;
TB1SET at 0 range 16 .. 16;
TB1RST at 0 range 17 .. 17;
TBCMP at 0 range 18 .. 19;
TC1SET at 0 range 20 .. 20;
TC1RST at 0 range 21 .. 21;
TCCMP at 0 range 22 .. 23;
TD1SET at 0 range 24 .. 24;
TD1RST at 0 range 25 .. 25;
TDCMP at 0 range 26 .. 27;
Reserved_28_31 at 0 range 28 .. 31;
end record;
subtype OUTER_FAULT1_Field is HAL.UInt2;
subtype OUTER_DLYPRT_Field is HAL.UInt3;
subtype OUTER_FAULT2_Field is HAL.UInt2;
-- Timerx Output Register
type OUTER_Register is record
-- unspecified
Reserved_0_0 : HAL.Bit := 16#0#;
-- Output 1 polarity
POL1 : Boolean := False;
-- Output 1 Idle mode
IDLEM1 : Boolean := False;
-- Output 1 Idle State
IDLES1 : Boolean := False;
-- Output 1 Fault state
FAULT1 : OUTER_FAULT1_Field := 16#0#;
-- Output 1 Chopper enable
CHP1 : Boolean := False;
-- Output 1 Deadtime upon burst mode Idle entry
DIDL1 : Boolean := False;
-- Deadtime enable
DTEN : Boolean := False;
-- Delayed Protection Enable
DLYPRTEN : Boolean := False;
-- Delayed Protection
DLYPRT : OUTER_DLYPRT_Field := 16#0#;
-- unspecified
Reserved_13_16 : HAL.UInt4 := 16#0#;
-- Output 2 polarity
POL2 : Boolean := False;
-- Output 2 Idle mode
IDLEM2 : Boolean := False;
-- Output 2 Idle State
IDLES2 : Boolean := False;
-- Output 2 Fault state
FAULT2 : OUTER_FAULT2_Field := 16#0#;
-- Output 2 Chopper enable
CHP2 : Boolean := False;
-- Output 2 Deadtime upon burst mode Idle entry
DIDL2 : Boolean := False;
-- unspecified
Reserved_24_31 : HAL.UInt8 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for OUTER_Register use record
Reserved_0_0 at 0 range 0 .. 0;
POL1 at 0 range 1 .. 1;
IDLEM1 at 0 range 2 .. 2;
IDLES1 at 0 range 3 .. 3;
FAULT1 at 0 range 4 .. 5;
CHP1 at 0 range 6 .. 6;
DIDL1 at 0 range 7 .. 7;
DTEN at 0 range 8 .. 8;
DLYPRTEN at 0 range 9 .. 9;
DLYPRT at 0 range 10 .. 12;
Reserved_13_16 at 0 range 13 .. 16;
POL2 at 0 range 17 .. 17;
IDLEM2 at 0 range 18 .. 18;
IDLES2 at 0 range 19 .. 19;
FAULT2 at 0 range 20 .. 21;
CHP2 at 0 range 22 .. 22;
DIDL2 at 0 range 23 .. 23;
Reserved_24_31 at 0 range 24 .. 31;
end record;
-- Timerx Fault Register
type FLTER_Register is record
-- Fault 1 enable
FLT1EN : Boolean := False;
-- Fault 2 enable
FLT2EN : Boolean := False;
-- Fault 3 enable
FLT3EN : Boolean := False;
-- Fault 4 enable
FLT4EN : Boolean := False;
-- Fault 5 enable
FLT5EN : Boolean := False;
-- unspecified
Reserved_5_30 : HAL.UInt26 := 16#0#;
-- Fault sources Lock
FLTLCK : Boolean := False;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for FLTER_Register use record
FLT1EN at 0 range 0 .. 0;
FLT2EN at 0 range 1 .. 1;
FLT3EN at 0 range 2 .. 2;
FLT4EN at 0 range 3 .. 3;
FLT5EN at 0 range 4 .. 4;
Reserved_5_30 at 0 range 5 .. 30;
FLTLCK at 0 range 31 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- High Resolution Timer: Common functions
type HRTIM_Common_Peripheral is record
-- Control Register 1
CR1 : aliased CR1_Register;
-- Control Register 2
CR2 : aliased CR2_Register;
-- Interrupt Status Register
ISR : aliased ISR_Register;
-- Interrupt Clear Register
ICR : aliased ICR_Register;
-- Interrupt Enable Register
IER : aliased IER_Register;
-- Output Enable Register
OENR : aliased OENR_Register;
-- DISR
ODISR : aliased ODISR_Register;
-- Output Disable Status Register
ODSR : aliased ODSR_Register;
-- Burst Mode Control Register
BMCR : aliased BMCR_Register;
-- BMTRGR
BMTRGR : aliased BMTRGR_Register;
-- BMCMPR
BMCMPR : aliased BMCMPR_Register;
-- Burst Mode Period Register
BMPER : aliased BMPER_Register;
-- Timer External Event Control Register 1
EECR1 : aliased EECR1_Register;
-- Timer External Event Control Register 2
EECR2 : aliased EECR2_Register;
-- Timer External Event Control Register 3
EECR3 : aliased EECR3_Register;
-- ADC Trigger 1 Register
ADC1R : aliased ADC1R_Register;
-- ADC Trigger 2 Register
ADC2R : aliased ADC2R_Register;
-- ADC Trigger 3 Register
ADC3R : aliased ADC3R_Register;
-- ADC Trigger 4 Register
ADC4R : aliased ADC4R_Register;
-- DLL Control Register
DLLCR : aliased DLLCR_Register;
-- HRTIM Fault Input Register 1
FLTINR1 : aliased FLTINR1_Register;
-- HRTIM Fault Input Register 2
FLTINR2 : aliased FLTINR2_Register;
-- BDMUPR
BDMUPR : aliased BDMUPR_Register;
-- Burst DMA Timerx update Register
BDTAUPR : aliased BDTAUPR_Register;
-- Burst DMA Timerx update Register
BDTBUPR : aliased BDTBUPR_Register;
-- Burst DMA Timerx update Register
BDTCUPR : aliased BDTCUPR_Register;
-- Burst DMA Timerx update Register
BDTDUPR : aliased BDTDUPR_Register;
-- Burst DMA Timerx update Register
BDTEUPR : aliased BDTEUPR_Register;
-- Burst DMA Data Register
BDMADR : aliased HAL.UInt32;
end record
with Volatile;
for HRTIM_Common_Peripheral use record
CR1 at 16#0# range 0 .. 31;
CR2 at 16#4# range 0 .. 31;
ISR at 16#8# range 0 .. 31;
ICR at 16#C# range 0 .. 31;
IER at 16#10# range 0 .. 31;
OENR at 16#14# range 0 .. 31;
ODISR at 16#18# range 0 .. 31;
ODSR at 16#1C# range 0 .. 31;
BMCR at 16#20# range 0 .. 31;
BMTRGR at 16#24# range 0 .. 31;
BMCMPR at 16#28# range 0 .. 31;
BMPER at 16#2C# range 0 .. 31;
EECR1 at 16#30# range 0 .. 31;
EECR2 at 16#34# range 0 .. 31;
EECR3 at 16#38# range 0 .. 31;
ADC1R at 16#3C# range 0 .. 31;
ADC2R at 16#40# range 0 .. 31;
ADC3R at 16#44# range 0 .. 31;
ADC4R at 16#48# range 0 .. 31;
DLLCR at 16#4C# range 0 .. 31;
FLTINR1 at 16#50# range 0 .. 31;
FLTINR2 at 16#54# range 0 .. 31;
BDMUPR at 16#58# range 0 .. 31;
BDTAUPR at 16#5C# range 0 .. 31;
BDTBUPR at 16#60# range 0 .. 31;
BDTCUPR at 16#64# range 0 .. 31;
BDTDUPR at 16#68# range 0 .. 31;
BDTEUPR at 16#6C# range 0 .. 31;
BDMADR at 16#70# range 0 .. 31;
end record;
-- High Resolution Timer: Common functions
HRTIM_Common_Periph : aliased HRTIM_Common_Peripheral
with Import, Address => HRTIM_Common_Base;
-- High Resolution Timer: Master Timers
type HRTIM_Master_Peripheral is record
-- Master Timer Control Register
MCR : aliased MCR_Register;
-- Master Timer Interrupt Status Register
MISR : aliased MISR_Register;
-- Master Timer Interrupt Clear Register
MICR : aliased MICR_Register;
-- MDIER
MDIER : aliased MDIER_Register;
-- Master Timer Counter Register
MCNTR : aliased MCNTR_Register;
-- Master Timer Period Register
MPER : aliased MPER_Register;
-- Master Timer Repetition Register
MREP : aliased MREP_Register;
-- Master Timer Compare 1 Register
MCMP1R : aliased MCMP1R_Register;
-- Master Timer Compare 2 Register
MCMP2R : aliased MCMP2R_Register;
-- Master Timer Compare 3 Register
MCMP3R : aliased MCMP3R_Register;
-- Master Timer Compare 4 Register
MCMP4R : aliased MCMP4R_Register;
end record
with Volatile;
for HRTIM_Master_Peripheral use record
MCR at 16#0# range 0 .. 31;
MISR at 16#4# range 0 .. 31;
MICR at 16#8# range 0 .. 31;
MDIER at 16#C# range 0 .. 31;
MCNTR at 16#10# range 0 .. 31;
MPER at 16#14# range 0 .. 31;
MREP at 16#18# range 0 .. 31;
MCMP1R at 16#1C# range 0 .. 31;
MCMP2R at 16#24# range 0 .. 31;
MCMP3R at 16#28# range 0 .. 31;
MCMP4R at 16#2C# range 0 .. 31;
end record;
-- High Resolution Timer: Master Timers
HRTIM_Master_Periph : aliased HRTIM_Master_Peripheral
with Import, Address => HRTIM_Master_Base;
-- High Resolution Timer: TIMA
type HRTIM_TIMA_Peripheral is record
-- Timerx Control Register
TIMACR : aliased TIMACR_Register;
-- Timerx Interrupt Status Register
TIMAISR : aliased TIMAISR_Register;
-- Timerx Interrupt Clear Register
TIMAICR : aliased TIMAICR_Register;
-- TIMxDIER
TIMADIER : aliased TIMADIER_Register;
-- Timerx Counter Register
CNTAR : aliased CNTAR_Register;
-- Timerx Period Register
PERAR : aliased PERAR_Register;
-- Timerx Repetition Register
REPAR : aliased REPAR_Register;
-- Timerx Compare 1 Register
CMP1AR : aliased CMP1AR_Register;
-- Timerx Compare 1 Compound Register
CMP1CAR : aliased CMP1CAR_Register;
-- Timerx Compare 2 Register
CMP2AR : aliased CMP2AR_Register;
-- Timerx Compare 3 Register
CMP3AR : aliased CMP3AR_Register;
-- Timerx Compare 4 Register
CMP4AR : aliased CMP4AR_Register;
-- Timerx Capture 1 Register
CPT1AR : aliased CPT1AR_Register;
-- Timerx Capture 2 Register
CPT2AR : aliased CPT2AR_Register;
-- Timerx Deadtime Register
DTAR : aliased DTAR_Register;
-- Timerx Output1 Set Register
SETA1R : aliased SETA1R_Register;
-- Timerx Output1 Reset Register
RSTA1R : aliased RSTA1R_Register;
-- Timerx Output2 Set Register
SETA2R : aliased SETA2R_Register;
-- Timerx Output2 Reset Register
RSTA2R : aliased RSTA2R_Register;
-- Timerx External Event Filtering Register 1
EEFAR1 : aliased EEFAR1_Register;
-- Timerx External Event Filtering Register 2
EEFAR2 : aliased EEFAR2_Register;
-- TimerA Reset Register
RSTAR : aliased RSTAR_Register;
-- Timerx Chopper Register
CHPAR : aliased CHPAR_Register;
-- Timerx Capture 2 Control Register
CPT1ACR : aliased CPT1ACR_Register;
-- CPT2xCR
CPT2ACR : aliased CPT2ACR_Register;
-- Timerx Output Register
OUTAR : aliased OUTAR_Register;
-- Timerx Fault Register
FLTAR : aliased FLTAR_Register;
end record
with Volatile;
for HRTIM_TIMA_Peripheral use record
TIMACR at 16#0# range 0 .. 31;
TIMAISR at 16#4# range 0 .. 31;
TIMAICR at 16#8# range 0 .. 31;
TIMADIER at 16#C# range 0 .. 31;
CNTAR at 16#10# range 0 .. 31;
PERAR at 16#14# range 0 .. 31;
REPAR at 16#18# range 0 .. 31;
CMP1AR at 16#1C# range 0 .. 31;
CMP1CAR at 16#20# range 0 .. 31;
CMP2AR at 16#24# range 0 .. 31;
CMP3AR at 16#28# range 0 .. 31;
CMP4AR at 16#2C# range 0 .. 31;
CPT1AR at 16#30# range 0 .. 31;
CPT2AR at 16#34# range 0 .. 31;
DTAR at 16#38# range 0 .. 31;
SETA1R at 16#3C# range 0 .. 31;
RSTA1R at 16#40# range 0 .. 31;
SETA2R at 16#44# range 0 .. 31;
RSTA2R at 16#48# range 0 .. 31;
EEFAR1 at 16#4C# range 0 .. 31;
EEFAR2 at 16#50# range 0 .. 31;
RSTAR at 16#54# range 0 .. 31;
CHPAR at 16#58# range 0 .. 31;
CPT1ACR at 16#5C# range 0 .. 31;
CPT2ACR at 16#60# range 0 .. 31;
OUTAR at 16#64# range 0 .. 31;
FLTAR at 16#68# range 0 .. 31;
end record;
-- High Resolution Timer: TIMA
HRTIM_TIMA_Periph : aliased HRTIM_TIMA_Peripheral
with Import, Address => HRTIM_TIMA_Base;
-- High Resolution Timer: TIMB
type HRTIM_TIMB_Peripheral is record
-- Timerx Control Register
TIMBCR : aliased TIMBCR_Register;
-- Timerx Interrupt Status Register
TIMBISR : aliased TIMBISR_Register;
-- Timerx Interrupt Clear Register
TIMBICR : aliased TIMBICR_Register;
-- TIMxDIER
TIMBDIER : aliased TIMBDIER_Register;
-- Timerx Counter Register
CNTR : aliased CNTR_Register;
-- Timerx Period Register
PERBR : aliased PERBR_Register;
-- Timerx Repetition Register
REPBR : aliased REPBR_Register;
-- Timerx Compare 1 Register
CMP1BR : aliased CMP1BR_Register;
-- Timerx Compare 1 Compound Register
CMP1CBR : aliased CMP1CBR_Register;
-- Timerx Compare 2 Register
CMP2BR : aliased CMP2BR_Register;
-- Timerx Compare 3 Register
CMP3BR : aliased CMP3BR_Register;
-- Timerx Compare 4 Register
CMP4BR : aliased CMP4BR_Register;
-- Timerx Capture 1 Register
CPT1BR : aliased CPT1BR_Register;
-- Timerx Capture 2 Register
CPT2BR : aliased CPT2BR_Register;
-- Timerx Deadtime Register
DTBR : aliased DTBR_Register;
-- Timerx Output1 Set Register
SETB1R : aliased SETB1R_Register;
-- Timerx Output1 Reset Register
RSTB1R : aliased RSTB1R_Register;
-- Timerx Output2 Set Register
SETB2R : aliased SETB2R_Register;
-- Timerx Output2 Reset Register
RSTB2R : aliased RSTB2R_Register;
-- Timerx External Event Filtering Register 1
EEFBR1 : aliased EEFBR1_Register;
-- Timerx External Event Filtering Register 2
EEFBR2 : aliased EEFBR2_Register;
-- TimerA Reset Register
RSTBR : aliased RSTBR_Register;
-- Timerx Chopper Register
CHPBR : aliased CHPBR_Register;
-- Timerx Capture 2 Control Register
CPT1BCR : aliased CPT1BCR_Register;
-- CPT2xCR
CPT2BCR : aliased CPT2BCR_Register;
-- Timerx Output Register
OUTBR : aliased OUTBR_Register;
-- Timerx Fault Register
FLTBR : aliased FLTBR_Register;
end record
with Volatile;
for HRTIM_TIMB_Peripheral use record
TIMBCR at 16#0# range 0 .. 31;
TIMBISR at 16#4# range 0 .. 31;
TIMBICR at 16#8# range 0 .. 31;
TIMBDIER at 16#C# range 0 .. 31;
CNTR at 16#10# range 0 .. 31;
PERBR at 16#14# range 0 .. 31;
REPBR at 16#18# range 0 .. 31;
CMP1BR at 16#1C# range 0 .. 31;
CMP1CBR at 16#20# range 0 .. 31;
CMP2BR at 16#24# range 0 .. 31;
CMP3BR at 16#28# range 0 .. 31;
CMP4BR at 16#2C# range 0 .. 31;
CPT1BR at 16#30# range 0 .. 31;
CPT2BR at 16#34# range 0 .. 31;
DTBR at 16#38# range 0 .. 31;
SETB1R at 16#3C# range 0 .. 31;
RSTB1R at 16#40# range 0 .. 31;
SETB2R at 16#44# range 0 .. 31;
RSTB2R at 16#48# range 0 .. 31;
EEFBR1 at 16#4C# range 0 .. 31;
EEFBR2 at 16#50# range 0 .. 31;
RSTBR at 16#54# range 0 .. 31;
CHPBR at 16#58# range 0 .. 31;
CPT1BCR at 16#5C# range 0 .. 31;
CPT2BCR at 16#60# range 0 .. 31;
OUTBR at 16#64# range 0 .. 31;
FLTBR at 16#68# range 0 .. 31;
end record;
-- High Resolution Timer: TIMB
HRTIM_TIMB_Periph : aliased HRTIM_TIMB_Peripheral
with Import, Address => HRTIM_TIMB_Base;
-- High Resolution Timer: TIMC
type HRTIM_TIMC_Peripheral is record
-- Timerx Control Register
TIMCCR : aliased TIMCCR_Register;
-- Timerx Interrupt Status Register
TIMCISR : aliased TIMCISR_Register;
-- Timerx Interrupt Clear Register
TIMCICR : aliased TIMCICR_Register;
-- TIMxDIER
TIMCDIER : aliased TIMCDIER_Register;
-- Timerx Counter Register
CNTCR : aliased CNTCR_Register;
-- Timerx Period Register
PERCR : aliased PERCR_Register;
-- Timerx Repetition Register
REPCR : aliased REPCR_Register;
-- Timerx Compare 1 Register
CMP1CR : aliased CMP1CR_Register;
-- Timerx Compare 1 Compound Register
CMP1CCR : aliased CMP1CCR_Register;
-- Timerx Compare 2 Register
CMP2CR : aliased CMP2CR_Register;
-- Timerx Compare 3 Register
CMP3CR : aliased CMP3CR_Register;
-- Timerx Compare 4 Register
CMP4CR : aliased CMP4CR_Register;
-- Timerx Capture 1 Register
CPT1CR : aliased CPT1CR_Register;
-- Timerx Capture 2 Register
CPT2CR : aliased CPT2CR_Register;
-- Timerx Deadtime Register
DTCR : aliased DTCR_Register;
-- Timerx Output1 Set Register
SETC1R : aliased SETC1R_Register;
-- Timerx Output1 Reset Register
RSTC1R : aliased RSTC1R_Register;
-- Timerx Output2 Set Register
SETC2R : aliased SETC2R_Register;
-- Timerx Output2 Reset Register
RSTC2R : aliased RSTC2R_Register;
-- Timerx External Event Filtering Register 1
EEFCR1 : aliased EEFCR1_Register;
-- Timerx External Event Filtering Register 2
EEFCR2 : aliased EEFCR2_Register;
-- TimerA Reset Register
RSTCR : aliased RSTCR_Register;
-- Timerx Chopper Register
CHPCR : aliased CHPCR_Register;
-- Timerx Capture 2 Control Register
CPT1CCR : aliased CPT1CCR_Register;
-- CPT2xCR
CPT2CCR : aliased CPT2CCR_Register;
-- Timerx Output Register
OUTCR : aliased OUTCR_Register;
-- Timerx Fault Register
FLTCR : aliased FLTCR_Register;
end record
with Volatile;
for HRTIM_TIMC_Peripheral use record
TIMCCR at 16#0# range 0 .. 31;
TIMCISR at 16#4# range 0 .. 31;
TIMCICR at 16#8# range 0 .. 31;
TIMCDIER at 16#C# range 0 .. 31;
CNTCR at 16#10# range 0 .. 31;
PERCR at 16#14# range 0 .. 31;
REPCR at 16#18# range 0 .. 31;
CMP1CR at 16#1C# range 0 .. 31;
CMP1CCR at 16#20# range 0 .. 31;
CMP2CR at 16#24# range 0 .. 31;
CMP3CR at 16#28# range 0 .. 31;
CMP4CR at 16#2C# range 0 .. 31;
CPT1CR at 16#30# range 0 .. 31;
CPT2CR at 16#34# range 0 .. 31;
DTCR at 16#38# range 0 .. 31;
SETC1R at 16#3C# range 0 .. 31;
RSTC1R at 16#40# range 0 .. 31;
SETC2R at 16#44# range 0 .. 31;
RSTC2R at 16#48# range 0 .. 31;
EEFCR1 at 16#4C# range 0 .. 31;
EEFCR2 at 16#50# range 0 .. 31;
RSTCR at 16#54# range 0 .. 31;
CHPCR at 16#58# range 0 .. 31;
CPT1CCR at 16#5C# range 0 .. 31;
CPT2CCR at 16#60# range 0 .. 31;
OUTCR at 16#64# range 0 .. 31;
FLTCR at 16#68# range 0 .. 31;
end record;
-- High Resolution Timer: TIMC
HRTIM_TIMC_Periph : aliased HRTIM_TIMC_Peripheral
with Import, Address => HRTIM_TIMC_Base;
-- High Resolution Timer: TIMD
type HRTIM_TIMD_Peripheral is record
-- Timerx Control Register
TIMDCR : aliased TIMDCR_Register;
-- Timerx Interrupt Status Register
TIMDISR : aliased TIMDISR_Register;
-- Timerx Interrupt Clear Register
TIMDICR : aliased TIMDICR_Register;
-- TIMxDIER
TIMDDIER : aliased TIMDDIER_Register;
-- Timerx Counter Register
CNTDR : aliased CNTDR_Register;
-- Timerx Period Register
PERDR : aliased PERDR_Register;
-- Timerx Repetition Register
REPDR : aliased REPDR_Register;
-- Timerx Compare 1 Register
CMP1DR : aliased CMP1DR_Register;
-- Timerx Compare 1 Compound Register
CMP1CDR : aliased CMP1CDR_Register;
-- Timerx Compare 2 Register
CMP2DR : aliased CMP2DR_Register;
-- Timerx Compare 3 Register
CMP3DR : aliased CMP3DR_Register;
-- Timerx Compare 4 Register
CMP4DR : aliased CMP4DR_Register;
-- Timerx Capture 1 Register
CPT1DR : aliased CPT1DR_Register;
-- Timerx Capture 2 Register
CPT2DR : aliased CPT2DR_Register;
-- Timerx Deadtime Register
DTDR : aliased DTDR_Register;
-- Timerx Output1 Set Register
SETD1R : aliased SETD1R_Register;
-- Timerx Output1 Reset Register
RSTD1R : aliased RSTD1R_Register;
-- Timerx Output2 Set Register
SETD2R : aliased SETD2R_Register;
-- Timerx Output2 Reset Register
RSTD2R : aliased RSTD2R_Register;
-- Timerx External Event Filtering Register 1
EEFDR1 : aliased EEFDR1_Register;
-- Timerx External Event Filtering Register 2
EEFDR2 : aliased EEFDR2_Register;
-- TimerA Reset Register
RSTDR : aliased RSTDR_Register;
-- Timerx Chopper Register
CHPDR : aliased CHPDR_Register;
-- Timerx Capture 2 Control Register
CPT1DCR : aliased CPT1DCR_Register;
-- CPT2xCR
CPT2DCR : aliased CPT2DCR_Register;
-- Timerx Output Register
OUTDR : aliased OUTDR_Register;
-- Timerx Fault Register
FLTDR : aliased FLTDR_Register;
end record
with Volatile;
for HRTIM_TIMD_Peripheral use record
TIMDCR at 16#0# range 0 .. 31;
TIMDISR at 16#4# range 0 .. 31;
TIMDICR at 16#8# range 0 .. 31;
TIMDDIER at 16#C# range 0 .. 31;
CNTDR at 16#10# range 0 .. 31;
PERDR at 16#14# range 0 .. 31;
REPDR at 16#18# range 0 .. 31;
CMP1DR at 16#1C# range 0 .. 31;
CMP1CDR at 16#20# range 0 .. 31;
CMP2DR at 16#24# range 0 .. 31;
CMP3DR at 16#28# range 0 .. 31;
CMP4DR at 16#2C# range 0 .. 31;
CPT1DR at 16#30# range 0 .. 31;
CPT2DR at 16#34# range 0 .. 31;
DTDR at 16#38# range 0 .. 31;
SETD1R at 16#3C# range 0 .. 31;
RSTD1R at 16#40# range 0 .. 31;
SETD2R at 16#44# range 0 .. 31;
RSTD2R at 16#48# range 0 .. 31;
EEFDR1 at 16#4C# range 0 .. 31;
EEFDR2 at 16#50# range 0 .. 31;
RSTDR at 16#54# range 0 .. 31;
CHPDR at 16#58# range 0 .. 31;
CPT1DCR at 16#5C# range 0 .. 31;
CPT2DCR at 16#60# range 0 .. 31;
OUTDR at 16#64# range 0 .. 31;
FLTDR at 16#68# range 0 .. 31;
end record;
-- High Resolution Timer: TIMD
HRTIM_TIMD_Periph : aliased HRTIM_TIMD_Peripheral
with Import, Address => HRTIM_TIMD_Base;
-- High Resolution Timer: TIME
type HRTIM_TIME_Peripheral is record
-- Timerx Control Register
TIMECR : aliased TIMECR_Register;
-- Timerx Interrupt Status Register
TIMEISR : aliased TIMEISR_Register;
-- Timerx Interrupt Clear Register
TIMEICR : aliased TIMEICR_Register;
-- TIMxDIER
TIMEDIER : aliased TIMEDIER_Register;
-- Timerx Counter Register
CNTER : aliased CNTER_Register;
-- Timerx Period Register
PERER : aliased PERER_Register;
-- Timerx Repetition Register
REPER : aliased REPER_Register;
-- Timerx Compare 1 Register
CMP1ER : aliased CMP1ER_Register;
-- Timerx Compare 1 Compound Register
CMP1CER : aliased CMP1CER_Register;
-- Timerx Compare 2 Register
CMP2ER : aliased CMP2ER_Register;
-- Timerx Compare 3 Register
CMP3ER : aliased CMP3ER_Register;
-- Timerx Compare 4 Register
CMP4ER : aliased CMP4ER_Register;
-- Timerx Capture 1 Register
CPT1ER : aliased CPT1ER_Register;
-- Timerx Capture 2 Register
CPT2ER : aliased CPT2ER_Register;
-- Timerx Deadtime Register
DTER : aliased DTER_Register;
-- Timerx Output1 Set Register
SETE1R : aliased SETE1R_Register;
-- Timerx Output1 Reset Register
RSTE1R : aliased RSTE1R_Register;
-- Timerx Output2 Set Register
SETE2R : aliased SETE2R_Register;
-- Timerx Output2 Reset Register
RSTE2R : aliased RSTE2R_Register;
-- Timerx External Event Filtering Register 1
EEFER1 : aliased EEFER1_Register;
-- Timerx External Event Filtering Register 2
EEFER2 : aliased EEFER2_Register;
-- TimerA Reset Register
RSTER : aliased RSTER_Register;
-- Timerx Chopper Register
CHPER : aliased CHPER_Register;
-- Timerx Capture 2 Control Register
CPT1ECR : aliased CPT1ECR_Register;
-- CPT2xCR
CPT2ECR : aliased CPT2ECR_Register;
-- Timerx Output Register
OUTER : aliased OUTER_Register;
-- Timerx Fault Register
FLTER : aliased FLTER_Register;
end record
with Volatile;
for HRTIM_TIME_Peripheral use record
TIMECR at 16#0# range 0 .. 31;
TIMEISR at 16#4# range 0 .. 31;
TIMEICR at 16#8# range 0 .. 31;
TIMEDIER at 16#C# range 0 .. 31;
CNTER at 16#10# range 0 .. 31;
PERER at 16#14# range 0 .. 31;
REPER at 16#18# range 0 .. 31;
CMP1ER at 16#1C# range 0 .. 31;
CMP1CER at 16#20# range 0 .. 31;
CMP2ER at 16#24# range 0 .. 31;
CMP3ER at 16#28# range 0 .. 31;
CMP4ER at 16#2C# range 0 .. 31;
CPT1ER at 16#30# range 0 .. 31;
CPT2ER at 16#34# range 0 .. 31;
DTER at 16#38# range 0 .. 31;
SETE1R at 16#3C# range 0 .. 31;
RSTE1R at 16#40# range 0 .. 31;
SETE2R at 16#44# range 0 .. 31;
RSTE2R at 16#48# range 0 .. 31;
EEFER1 at 16#4C# range 0 .. 31;
EEFER2 at 16#50# range 0 .. 31;
RSTER at 16#54# range 0 .. 31;
CHPER at 16#58# range 0 .. 31;
CPT1ECR at 16#5C# range 0 .. 31;
CPT2ECR at 16#60# range 0 .. 31;
OUTER at 16#64# range 0 .. 31;
FLTER at 16#68# range 0 .. 31;
end record;
-- High Resolution Timer: TIME
HRTIM_TIME_Periph : aliased HRTIM_TIME_Peripheral
with Import, Address => HRTIM_TIME_Base;
end STM32_SVD.HRTIM;
| 31.92977 | 78 | 0.556052 |
381b39d1933c74443937dd4a974a683cdd017752 | 26,887 | adb | Ada | llvm-gcc-4.2-2.9/gcc/ada/styleg.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/styleg.adb | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | llvm-gcc-4.2-2.9/gcc/ada/styleg.adb | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S T Y L E G --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2006, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This version of the Style package implements the standard GNAT style
-- checking rules. For documentation of these rules, see comments on the
-- individual procedures.
with Casing; use Casing;
with Csets; use Csets;
with Err_Vars; use Err_Vars;
with Opt; use Opt;
with Scans; use Scans;
with Sinput; use Sinput;
with Stylesw; use Stylesw;
package body Styleg is
use ASCII;
Blank_Lines : Nat := 0;
-- Counts number of empty lines seen. Reset to zero if a non-empty line
-- is encountered. Used to check for trailing blank lines in Check_EOF,
-- and for multiple blank lines.
Blank_Line_Location : Source_Ptr;
-- Remembers location of first blank line in a series. Used to issue an
-- appropriate diagnostic if subsequent blank lines or the end of file
-- is encountered.
-----------------------
-- Local Subprograms --
-----------------------
procedure Check_No_Space_After;
-- Checks that there is a non-white space character after the current
-- token, or white space followed by a comment, or the end of line.
-- Issue error message if not.
procedure Check_No_Space_Before;
-- Check that token is first token on line, or else is not preceded
-- by white space. Signal error of space not allowed if not.
function Determine_Token_Casing return Casing_Type;
procedure Error_Space_Not_Allowed (S : Source_Ptr);
-- Posts an error message indicating that a space is not allowed
-- at the given source location.
procedure Error_Space_Required (S : Source_Ptr);
-- Posts an error message indicating that a space is required at
-- the given source location.
function Is_White_Space (C : Character) return Boolean;
pragma Inline (Is_White_Space);
-- Returns True for space, HT, VT or FF, False otherwise
procedure Require_Following_Space;
pragma Inline (Require_Following_Space);
-- Require token to be followed by white space. Used only if in GNAT
-- style checking mode.
procedure Require_Preceding_Space;
pragma Inline (Require_Preceding_Space);
-- Require token to be preceded by white space. Used only if in GNAT
-- style checking mode.
----------------------
-- Check_Abs_Or_Not --
----------------------
-- In check tokens mode (-gnatyt), ABS/NOT must be followed by a space
procedure Check_Abs_Not is
begin
if Style_Check_Tokens then
if Source (Scan_Ptr) > ' ' then
Error_Space_Required (Scan_Ptr);
end if;
end if;
end Check_Abs_Not;
----------------------
-- Check_Apostrophe --
----------------------
-- Do not allow space before or after apostrophe
procedure Check_Apostrophe is
begin
if Style_Check_Tokens then
Check_No_Space_After;
end if;
end Check_Apostrophe;
-----------------
-- Check_Arrow --
-----------------
-- In check tokens mode (-gnatys), arrow must be surrounded by spaces
procedure Check_Arrow is
begin
if Style_Check_Tokens then
Require_Preceding_Space;
Require_Following_Space;
end if;
end Check_Arrow;
--------------------------
-- Check_Attribute_Name --
--------------------------
-- In check attribute casing mode (-gnatya), attribute names must be
-- mixed case, i.e. start with an upper case letter, and otherwise
-- lower case, except after an underline character.
procedure Check_Attribute_Name (Reserved : Boolean) is
pragma Warnings (Off, Reserved);
begin
if Style_Check_Attribute_Casing then
if Determine_Token_Casing /= Mixed_Case then
Error_Msg_SC ("(style) bad capitalization, mixed case required");
end if;
end if;
end Check_Attribute_Name;
---------------------------
-- Check_Binary_Operator --
---------------------------
-- In check token mode (-gnatyt), binary operators other than the special
-- case of exponentiation require surrounding space characters.
procedure Check_Binary_Operator is
begin
if Style_Check_Tokens then
Require_Preceding_Space;
Require_Following_Space;
end if;
end Check_Binary_Operator;
---------------
-- Check_Box --
---------------
-- In check token mode (-gnatyt), box must be preceded by a space or by
-- a left parenthesis. Spacing checking on the surrounding tokens takes
-- care of the remaining checks.
procedure Check_Box is
begin
if Style_Check_Tokens then
if Prev_Token /= Tok_Left_Paren then
Require_Preceding_Space;
end if;
end if;
end Check_Box;
-----------------
-- Check_Colon --
-----------------
-- In check token mode (-gnatyt), colon must be surrounded by spaces
procedure Check_Colon is
begin
if Style_Check_Tokens then
Require_Preceding_Space;
Require_Following_Space;
end if;
end Check_Colon;
-----------------------
-- Check_Colon_Equal --
-----------------------
-- In check token mode (-gnatyt), := must be surrounded by spaces
procedure Check_Colon_Equal is
begin
if Style_Check_Tokens then
Require_Preceding_Space;
Require_Following_Space;
end if;
end Check_Colon_Equal;
-----------------
-- Check_Comma --
-----------------
-- In check token mode (-gnatyt), comma must be either the first
-- token on a line, or be preceded by a non-blank character.
-- It must also always be followed by a blank.
procedure Check_Comma is
begin
if Style_Check_Tokens then
Check_No_Space_Before;
if Source (Scan_Ptr) > ' ' then
Error_Space_Required (Scan_Ptr);
end if;
end if;
end Check_Comma;
-------------------
-- Check_Comment --
-------------------
-- In check comment mode (-gnatyc) there are several requirements on the
-- format of comments. The following are permissible comment formats:
-- 1. Any comment that is not at the start of a line, i.e. where the
-- initial minuses are not the first non-blank characters on the
-- line must have at least one blank after the second minus.
-- 2. A row of all minuses of any length is permitted (see procedure
-- box above in the source of this routine).
-- 3. A comment line starting with two minuses and a space, and ending
-- with a space and two minuses. Again see the procedure title box
-- immediately above in the source.
-- 4. A full line comment where two spaces follow the two minus signs.
-- This is the normal comment format in GNAT style, as typified by
-- the comments you are reading now.
-- 5. A full line comment where the first character after the second
-- minus is a special character, i.e. a character in the ASCII
-- range 16#21#..16#2F# or 16#3A#..16#3F#. This allows special
-- comments, such as those generated by gnatprep, or those that
-- appear in the SPARK annotation language to be accepted.
--
-- Note: for GNAT internal files (-gnatg switch set on for the
-- compilation), the only special sequence recognized and allowed
-- is --! as generated by gnatprep.
procedure Check_Comment is
S : Source_Ptr;
C : Character;
function Is_Box_Comment return Boolean;
-- Returns True if the last two characters on the line are -- which
-- characterizes a box comment (as for example follows this spec).
--------------------
-- Is_Box_Comment --
--------------------
function Is_Box_Comment return Boolean is
S : Source_Ptr;
begin
-- Do we need to worry about UTF_32 line terminators here ???
S := Scan_Ptr + 3;
while Source (S) not in Line_Terminator loop
S := S + 1;
end loop;
return Source (S - 1) = '-' and then Source (S - 2) = '-';
end Is_Box_Comment;
-- Start of processing for Check_Comment
begin
-- Can never have a non-blank character preceding the first minus
if Style_Check_Comments then
if Scan_Ptr > Source_First (Current_Source_File)
and then Source (Scan_Ptr - 1) > ' '
then
Error_Msg_S ("(style) space required");
end if;
end if;
-- For a comment that is not at the start of the line, the only
-- requirement is that we cannot have a non-blank character after
-- the second minus sign.
if Scan_Ptr /= First_Non_Blank_Location then
if Style_Check_Comments then
if Source (Scan_Ptr + 2) > ' ' then
Error_Msg ("(style) space required", Scan_Ptr + 2);
end if;
end if;
return;
-- Case of a comment that is at the start of a line
else
-- First check, must be in appropriately indented column
if Style_Check_Indentation /= 0 then
if Start_Column rem Style_Check_Indentation /= 0 then
Error_Msg_S ("(style) bad column");
return;
end if;
end if;
-- If we are not checking comments, nothing to do
if not Style_Check_Comments then
return;
end if;
-- Case of not followed by a blank. Usually wrong, but there are
-- some exceptions that we permit.
if Source (Scan_Ptr + 2) /= ' ' then
C := Source (Scan_Ptr + 2);
-- Case of -- all on its own on a line is OK
if C < ' ' then
return;
end if;
-- Case of --x, x special character is OK (gnatprep/SPARK/etc.)
-- This is not permitted in internal GNAT implementation units
-- except for the case of --! as used by gnatprep output.
if GNAT_Mode then
if C = '!' then
return;
end if;
else
if Character'Pos (C) in 16#21# .. 16#2F#
or else
Character'Pos (C) in 16#3A# .. 16#3F#
then
return;
end if;
end if;
-- The only other case in which we allow a character after
-- the -- other than a space is when we have a row of minus
-- signs (case of header lines for a box comment for example).
S := Scan_Ptr + 2;
while Source (S) >= ' ' loop
if Source (S) /= '-' then
if Is_Box_Comment then
Error_Space_Required (Scan_Ptr + 2);
else
Error_Msg ("(style) two spaces required", Scan_Ptr + 2);
end if;
return;
end if;
S := S + 1;
end loop;
-- If we are followed by a blank, then the comment is OK if the
-- character following this blank is another blank or a format
-- effector.
elsif Source (Scan_Ptr + 3) <= ' ' then
return;
-- Here is the case where we only have one blank after the two
-- minus signs, which is an error unless the line ends with two
-- minus signs, the case of a box comment.
elsif not Is_Box_Comment then
Error_Space_Required (Scan_Ptr + 3);
end if;
end if;
end Check_Comment;
-------------------
-- Check_Dot_Dot --
-------------------
-- In check token mode (-gnatyt), colon must be surrounded by spaces
procedure Check_Dot_Dot is
begin
if Style_Check_Tokens then
Require_Preceding_Space;
Require_Following_Space;
end if;
end Check_Dot_Dot;
---------------
-- Check_EOF --
---------------
-- In check blanks at end mode, check no blank lines precede the EOF
procedure Check_EOF is
begin
if Style_Check_Blank_Lines then
-- We expect one blank line, from the EOF, but no more than one
if Blank_Lines = 2 then
Error_Msg
("(style) blank line not allowed at end of file",
Blank_Line_Location);
elsif Blank_Lines >= 3 then
Error_Msg
("(style) blank lines not allowed at end of file",
Blank_Line_Location);
end if;
end if;
end Check_EOF;
-----------------------------------
-- Check_Exponentiation_Operator --
-----------------------------------
-- No spaces are required for the ** operator in GNAT style check mode
procedure Check_Exponentiation_Operator is
begin
null;
end Check_Exponentiation_Operator;
--------------
-- Check_HT --
--------------
-- In check horizontal tab mode (-gnatyh), tab characters are not allowed
procedure Check_HT is
begin
if Style_Check_Horizontal_Tabs then
Error_Msg_S ("(style) horizontal tab not allowed");
end if;
end Check_HT;
-----------------------
-- Check_Indentation --
-----------------------
-- In check indentation mode (-gnatyn for n a digit), a new statement or
-- declaration is required to start in a column that is a multiple of the
-- indentiation amount.
procedure Check_Indentation is
begin
if Style_Check_Indentation /= 0 then
if Token_Ptr = First_Non_Blank_Location
and then Start_Column rem Style_Check_Indentation /= 0
then
Error_Msg_SC ("(style) bad indentation");
end if;
end if;
end Check_Indentation;
----------------------
-- Check_Left_Paren --
----------------------
-- In tone check mode (-gnatyt), left paren must not be preceded by an
-- identifier character or digit (a separating space is required) and
-- may never be followed by a space.
procedure Check_Left_Paren is
begin
if Style_Check_Tokens then
if Token_Ptr > Source_First (Current_Source_File)
and then Identifier_Char (Source (Token_Ptr - 1))
then
Error_Space_Required (Token_Ptr);
end if;
Check_No_Space_After;
end if;
end Check_Left_Paren;
---------------------------
-- Check_Line_Max_Length --
---------------------------
-- In check max line length mode (-gnatym), the line length must
-- not exceed the permitted maximum value.
procedure Check_Line_Max_Length (Len : Int) is
begin
if Style_Check_Max_Line_Length then
if Len > Style_Max_Line_Length then
Error_Msg
("(style) this line is too long",
Current_Line_Start + Source_Ptr (Style_Max_Line_Length));
end if;
end if;
end Check_Line_Max_Length;
---------------------------
-- Check_Line_Terminator --
---------------------------
-- In check blanks at end mode (-gnatyb), lines may not end with a
-- trailing space.
-- In check form feeds mode (-gnatyf), the line terminator may not
-- be either of the characters FF or VT.
-- In check DOS line terminators node (-gnatyd), the line terminator
-- must be a single LF, without a following CR.
procedure Check_Line_Terminator (Len : Int) is
S : Source_Ptr;
L : Int := Len;
-- Length of line (adjusted down for blanks at end of line)
begin
-- Reset count of blank lines if first line
if Get_Logical_Line_Number (Scan_Ptr) = 1 then
Blank_Lines := 0;
end if;
-- Check FF/VT terminators
if Style_Check_Form_Feeds then
if Source (Scan_Ptr) = ASCII.FF then
Error_Msg_S ("(style) form feed not allowed");
elsif Source (Scan_Ptr) = ASCII.VT then
Error_Msg_S ("(style) vertical tab not allowed");
end if;
end if;
-- Check DOS line terminator (ignore EOF, since we only get called
-- with an EOF if it is the last character in the buffer, and was
-- therefore not present in the sources
if Style_Check_DOS_Line_Terminator then
if Source (Scan_Ptr) = EOF then
null;
elsif Source (Scan_Ptr) /= LF
or else Source (Scan_Ptr + 1) = CR
then
Error_Msg_S ("(style) incorrect line terminator");
end if;
end if;
-- Remove trailing spaces
S := Scan_Ptr;
while L > 0 and then Is_White_Space (Source (S - 1)) loop
S := S - 1;
L := L - 1;
end loop;
-- Issue message for blanks at end of line if option enabled
if Style_Check_Blanks_At_End and then L < Len then
Error_Msg
("(style) trailing spaces not permitted", S);
end if;
-- Deal with empty (blank) line
if L = 0 then
-- Increment blank line count
Blank_Lines := Blank_Lines + 1;
-- If first blank line, record location for later error message
if Blank_Lines = 1 then
Blank_Line_Location := Scan_Ptr;
end if;
-- Non-blank line, check for previous multiple blank lines
else
if Style_Check_Blank_Lines and then Blank_Lines > 1 then
Error_Msg
("(style) multiple blank lines", Blank_Line_Location);
end if;
-- And reset blank line count
Blank_Lines := 0;
end if;
end Check_Line_Terminator;
--------------------------
-- Check_No_Space_After --
--------------------------
procedure Check_No_Space_After is
S : Source_Ptr;
begin
if Is_White_Space (Source (Scan_Ptr)) then
-- Allow one or more spaces if followed by comment
S := Scan_Ptr + 1;
loop
if Source (S) = '-' and then Source (S + 1) = '-' then
return;
elsif Is_White_Space (Source (S)) then
S := S + 1;
else
exit;
end if;
end loop;
Error_Space_Not_Allowed (Scan_Ptr);
end if;
end Check_No_Space_After;
---------------------------
-- Check_No_Space_Before --
---------------------------
procedure Check_No_Space_Before is
begin
if Token_Ptr > First_Non_Blank_Location
and then Source (Token_Ptr - 1) <= ' '
then
Error_Space_Not_Allowed (Token_Ptr - 1);
end if;
end Check_No_Space_Before;
-----------------------
-- Check_Pragma_Name --
-----------------------
-- In check pragma casing mode (-gnatyp), pragma names must be mixed
-- case, i.e. start with an upper case letter, and otherwise lower case,
-- except after an underline character.
procedure Check_Pragma_Name is
begin
if Style_Check_Pragma_Casing then
if Determine_Token_Casing /= Mixed_Case then
Error_Msg_SC ("(style) bad capitalization, mixed case required");
end if;
end if;
end Check_Pragma_Name;
-----------------------
-- Check_Right_Paren --
-----------------------
-- In check tokens mode (-gnatyt), right paren must never be preceded by
-- a space unless it is the initial non-blank character on the line.
procedure Check_Right_Paren is
begin
if Style_Check_Tokens then
Check_No_Space_Before;
end if;
end Check_Right_Paren;
---------------------
-- Check_Semicolon --
---------------------
-- In check tokens mode (-gnatyt), semicolon does not permit a preceding
-- space and a following space is required.
procedure Check_Semicolon is
begin
if Style_Check_Tokens then
Check_No_Space_Before;
if Source (Scan_Ptr) > ' ' then
Error_Space_Required (Scan_Ptr);
end if;
end if;
end Check_Semicolon;
----------------
-- Check_Then --
----------------
-- In check if then layout mode (-gnatyi), we expect a THEN keyword
-- to appear either on the same line as the IF, or on a separate line
-- after multiple conditions. In any case, it may not appear on the
-- line immediately following the line with the IF.
procedure Check_Then (If_Loc : Source_Ptr) is
begin
if Style_Check_If_Then_Layout then
if Get_Physical_Line_Number (Token_Ptr) =
Get_Physical_Line_Number (If_Loc) + 1
then
Error_Msg_SC ("(style) misplaced THEN");
end if;
end if;
end Check_Then;
-------------------------------
-- Check_Unary_Plus_Or_Minus --
-------------------------------
-- In check tokem mode (-gnatyt), unary plus or minus must not be
-- followed by a space.
procedure Check_Unary_Plus_Or_Minus is
begin
if Style_Check_Tokens then
Check_No_Space_After;
end if;
end Check_Unary_Plus_Or_Minus;
------------------------
-- Check_Vertical_Bar --
------------------------
-- In check token mode (-gnatyt), vertical bar must be surrounded by spaces
procedure Check_Vertical_Bar is
begin
if Style_Check_Tokens then
Require_Preceding_Space;
Require_Following_Space;
end if;
end Check_Vertical_Bar;
-----------------------
-- Check_Xtra_Parens --
-----------------------
procedure Check_Xtra_Parens (Loc : Source_Ptr) is
begin
if Style_Check_Xtra_Parens then
Error_Msg ("redundant parentheses?", Loc);
end if;
end Check_Xtra_Parens;
----------------------------
-- Determine_Token_Casing --
----------------------------
function Determine_Token_Casing return Casing_Type is
begin
return Determine_Casing (Source (Token_Ptr .. Scan_Ptr - 1));
end Determine_Token_Casing;
-----------------------------
-- Error_Space_Not_Allowed --
-----------------------------
procedure Error_Space_Not_Allowed (S : Source_Ptr) is
begin
Error_Msg ("(style) space not allowed", S);
end Error_Space_Not_Allowed;
--------------------------
-- Error_Space_Required --
--------------------------
procedure Error_Space_Required (S : Source_Ptr) is
begin
Error_Msg ("(style) space required", S);
end Error_Space_Required;
--------------------
-- Is_White_Space --
--------------------
function Is_White_Space (C : Character) return Boolean is
begin
return C = ' ' or else C = HT;
end Is_White_Space;
-------------------
-- Mode_In_Check --
-------------------
function Mode_In_Check return Boolean is
begin
return Style_Check and Style_Check_Mode_In;
end Mode_In_Check;
-----------------
-- No_End_Name --
-----------------
-- In check end/exit labels mode (-gnatye), always require the name of
-- a subprogram or package to be present on the END, so this is an error.
procedure No_End_Name (Name : Node_Id) is
begin
if Style_Check_End_Labels then
Error_Msg_Node_1 := Name;
Error_Msg_SP ("(style) `END &` required");
end if;
end No_End_Name;
------------------
-- No_Exit_Name --
------------------
-- In check end/exit labels mode (-gnatye), always require the name of
-- the loop to be present on the EXIT when exiting a named loop.
procedure No_Exit_Name (Name : Node_Id) is
begin
if Style_Check_End_Labels then
Error_Msg_Node_1 := Name;
Error_Msg_SP ("(style) `EXIT &` required");
end if;
end No_Exit_Name;
----------------------------
-- Non_Lower_Case_Keyword --
----------------------------
-- In check casing mode (-gnatyk), reserved keywords must be be spelled
-- in all lower case (excluding keywords range, access, delta and digits
-- used as attribute designators).
procedure Non_Lower_Case_Keyword is
begin
if Style_Check_Keyword_Casing then
Error_Msg_SC ("(style) reserved words must be all lower case");
end if;
end Non_Lower_Case_Keyword;
-----------------------------
-- Require_Following_Space --
-----------------------------
procedure Require_Following_Space is
begin
if Source (Scan_Ptr) > ' ' then
Error_Space_Required (Scan_Ptr);
end if;
end Require_Following_Space;
-----------------------------
-- Require_Preceding_Space --
-----------------------------
procedure Require_Preceding_Space is
begin
if Token_Ptr > Source_First (Current_Source_File)
and then Source (Token_Ptr - 1) > ' '
then
Error_Space_Required (Token_Ptr);
end if;
end Require_Preceding_Space;
---------------------
-- RM_Column_Check --
---------------------
function RM_Column_Check return Boolean is
begin
return Style_Check and Style_Check_Layout;
end RM_Column_Check;
end Styleg;
| 30.380791 | 79 | 0.560717 |
2275d94cf2e13cdb3d7e3855c90c51ade354bfae | 1,491 | adb | Ada | regtests/files/test-ada-1/src/test1.adb | stcarrez/resource-embedder | b1134306db459f87506703ba0a266c0b5e0045b9 | [
"Apache-2.0"
] | 7 | 2021-06-04T16:58:59.000Z | 2021-06-14T08:51:11.000Z | regtests/files/test-ada-1/src/test1.adb | stcarrez/resource-embedder | b1134306db459f87506703ba0a266c0b5e0045b9 | [
"Apache-2.0"
] | 2 | 2021-07-20T15:25:33.000Z | 2021-08-20T18:39:58.000Z | regtests/files/test-ada-1/src/test1.adb | stcarrez/resource-embedder | b1134306db459f87506703ba0a266c0b5e0045b9 | [
"Apache-2.0"
] | null | null | null | with Resources1;
with Ada.Command_Line;
with Ada.Text_IO;
procedure Test1 is
use Resources1;
C : Content_Access := Get_Content ("main.html");
begin
if C = null then
Ada.Text_IO.Put_Line ("FAIL: No content 'main.html'");
Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure);
return;
end if;
if C'Length /= 356 then
Ada.Text_IO.Put_Line ("FAIL: Invalid length for 'main.html'");
Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure);
end if;
C := Get_Content ("js/main.js");
if C = null then
Ada.Text_IO.Put_Line ("FAIL: No content 'js/main.js'");
Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure);
return;
end if;
if C'Length /= 87 then
Ada.Text_IO.Put_Line ("FAIL: Invalid length for 'js/main.js'");
Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure);
end if;
C := Get_Content ("css/main.css");
if C = null then
Ada.Text_IO.Put_Line ("FAIL: No content 'css/main.css'");
Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure);
return;
end if;
if C'Length /= 60 then
Ada.Text_IO.Put_Line ("FAIL: Invalid length for 'css/main.css'");
Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure);
end if;
Ada.Text_IO.Put ("PASS: ");
for Val of C.all loop
if Character'Val (Val) /= ASCII.LF then
Ada.Text_IO.Put (Character'Val (Val));
end if;
end loop;
Ada.Text_IO.New_Line;
end Test1; | 31.0625 | 71 | 0.658618 |
8b88ddde0c50f82150cbd73cf1936328f61bdcc5 | 943 | adb | Ada | tests/factions-test_data-tests-basetype_container-test_data.adb | thindil/steamsky | d5d7fea622f7994c91017c4cd7ba5e188153556c | [
"TCL",
"MIT"
] | 80 | 2017-04-08T23:14:07.000Z | 2022-02-10T22:30:51.000Z | tests/factions-test_data-tests-basetype_container-test_data.adb | thindil/steamsky | d5d7fea622f7994c91017c4cd7ba5e188153556c | [
"TCL",
"MIT"
] | 89 | 2017-06-24T08:18:26.000Z | 2021-11-12T04:37:36.000Z | tests/factions-test_data-tests-basetype_container-test_data.adb | thindil/steamsky | d5d7fea622f7994c91017c4cd7ba5e188153556c | [
"TCL",
"MIT"
] | 9 | 2018-04-14T16:37:25.000Z | 2020-03-21T14:33:49.000Z | -- This package is intended to set up and tear down the test environment.
-- Once created by GNATtest, this package will never be overwritten
-- automatically. Contents of this package can be modified in any way
-- except for sections surrounded by a 'read only' marker.
package body Factions.Test_Data.Tests.BaseType_Container.Test_Data is
procedure Set_Up(Gnattest_T: in out Test) is
pragma Unreferenced(Gnattest_T);
begin
null;
end Set_Up;
procedure Tear_Down(Gnattest_T: in out Test) is
pragma Unreferenced(Gnattest_T);
begin
null;
end Tear_Down;
procedure User_Set_Up(Gnattest_T: in out New_Test) is
pragma Unreferenced(Gnattest_T);
begin
null;
end User_Set_Up;
procedure User_Tear_Down(Gnattest_T: in out New_Test) is
pragma Unreferenced(Gnattest_T);
begin
null;
end User_Tear_Down;
end Factions.Test_Data.Tests.BaseType_Container.Test_Data;
| 28.575758 | 75 | 0.733828 |
9a40e66044a361750f8f5956782f37b40f58c6fa | 1,505 | adb | Ada | tests/window/main.adb | danva994/ASFML-1.6 | bd74ae700843338a15aef295f99297b866aa0c93 | [
"Zlib"
] | 1 | 2017-10-07T06:20:38.000Z | 2017-10-07T06:20:38.000Z | tests/window/main.adb | danva994/ASFML-1.6 | bd74ae700843338a15aef295f99297b866aa0c93 | [
"Zlib"
] | 3 | 2020-09-15T21:19:34.000Z | 2022-03-02T23:13:46.000Z | tests/window/main.adb | danva994/ASFML-1.6 | bd74ae700843338a15aef295f99297b866aa0c93 | [
"Zlib"
] | 2 | 2020-09-26T21:16:43.000Z | 2022-01-16T19:36:48.000Z | with Ada.Text_IO; use Ada.Text_IO;
with Sf.Config; use Sf.Config;
with Sf.Window.Types; use Sf.Window.Types;
with Sf.Window.Window; use Sf.Window.Window;
with Sf.Window.VideoMode; use Sf.Window.VideoMode;
with Sf.Window.Event; use Sf.Window.Event;
with Sf.Window.Input; use Sf.Window.Input;
with Sf.System.Sleep; use Sf.System.Sleep;
procedure Main is
Window : sfWindow_Ptr;
Mode : sfVideoMode := (640, 480, 32);
Params : sfWindowSettings := (24, 8, 0);
Event : aliased sfEvent;
Input : sfInput_Ptr;
begin
Window := sfWindow_Create (Mode, "Window");
if Window = null then
Put_Line ("Failed to create window");
return;
end if;
sfWindow_SetFramerateLimit (Window, 32);
sfWindow_UseVerticalSync (Window, sfTrue);
sfWindow_Show (Window, sfTrue);
while sfWindow_IsOpened (Window) = sfTrue loop
while sfWindow_GetEvent (Window, Event'ACCESS) = sfTrue loop
if Event.Event_Type = sfEvtClosed then
sfWindow_Close (Window);
Put_Line ("Attepting to close");
end if;
Input := sfWindow_GetInput (Window);
if Input /= null and then Event.Event_Type = sfEvtKeyPressed and then sfInput_IsKeyDown (Input, sfKeyEscape) = sfTrue then
sfWindow_Close (Window);
Put_Line ("Attepting to close");
end if;
end loop;
sfWindow_Display (Window);
sfSleep (0.001);
end loop;
sfWindow_Destroy (Window);
end Main;
| 32.021277 | 131 | 0.651163 |
0355350a044dcb730ec2ab30b1be31fb492c8a4f | 1,644 | ads | Ada | tests/nanomsg-test_pair.ads | landgraf/nanomsg-ada | 6abe8f517c53b2d4c030c4e2736f883371ef9270 | [
"MIT"
] | 2 | 2015-07-28T19:47:19.000Z | 2020-05-29T06:49:50.000Z | tests/nanomsg-test_pair.ads | landgraf/nanomsg-ada | 6abe8f517c53b2d4c030c4e2736f883371ef9270 | [
"MIT"
] | 2 | 2015-11-28T14:02:13.000Z | 2017-10-05T09:21:35.000Z | tests/nanomsg-test_pair.ads | landgraf/nanomsg-ada | 6abe8f517c53b2d4c030c4e2736f883371ef9270 | [
"MIT"
] | null | null | null | -- The MIT License (MIT)
-- Copyright (c) 2015 Pavel Zhukov <[email protected]>
-- Permission is hereby granted, free of charge, to any person obtaining a copy
-- of this software and associated documentation files (the "Software"), to deal
-- in the Software without restriction, including without limitation the rights
-- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-- copies of the Software, and to permit persons to whom the Software is
-- furnished to do so, subject to the following conditions:
-- The above copyright notice and this permission notice shall be included in all
-- copies or substantial portions of the Software.
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-- SOFTWARE.
with Aunit; use Aunit;
with Aunit.Simple_Test_Cases;
with Nanomsg.Socket;
package Nanomsg.Test_Pair is
type TC is new Simple_Test_Cases.Test_Case with record
Socket1 : Nanomsg.Socket.Socket_T;
Socket2 : Nanomsg.Socket.Socket_T;
end record;
overriding
procedure Tear_Down (T : in out Tc);
overriding
procedure Run_Test (T : in out TC);
overriding
function Name (T : TC) return Message_String;
end Nanomsg.Test_Pair;
| 39.142857 | 82 | 0.743917 |
03055d448447e851e0ef58335102209833a918db | 2,578 | ads | Ada | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/g-trasym.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/g-trasym.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/g-trasym.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- G N A T . T R A C E B A C K . S Y M B O L I C --
-- --
-- S p e c --
-- --
-- Copyright (C) 1999-2020, AdaCore --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- Run-time symbolic traceback support
-- See file s-trasym.ads for full documentation of the interface
with System.Traceback.Symbolic;
package GNAT.Traceback.Symbolic renames System.Traceback.Symbolic;
| 67.842105 | 78 | 0.396043 |
3835ec4c3de66723c8cb1e59d550d6788e289c9b | 5,162 | ads | Ada | source/amf/ocl/amf-ocl-feature_call_exps-collections.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | source/amf/ocl/amf-ocl-feature_call_exps-collections.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | source/amf/ocl/amf-ocl-feature_call_exps-collections.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 © 2012-2013, 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.
------------------------------------------------------------------------------
with AMF.Generic_Collections;
package AMF.OCL.Feature_Call_Exps.Collections is
pragma Preelaborate;
package OCL_Feature_Call_Exp_Collections is
new AMF.Generic_Collections
(OCL_Feature_Call_Exp,
OCL_Feature_Call_Exp_Access);
type Set_Of_OCL_Feature_Call_Exp is
new OCL_Feature_Call_Exp_Collections.Set with null record;
Empty_Set_Of_OCL_Feature_Call_Exp : constant Set_Of_OCL_Feature_Call_Exp;
type Ordered_Set_Of_OCL_Feature_Call_Exp is
new OCL_Feature_Call_Exp_Collections.Ordered_Set with null record;
Empty_Ordered_Set_Of_OCL_Feature_Call_Exp : constant Ordered_Set_Of_OCL_Feature_Call_Exp;
type Bag_Of_OCL_Feature_Call_Exp is
new OCL_Feature_Call_Exp_Collections.Bag with null record;
Empty_Bag_Of_OCL_Feature_Call_Exp : constant Bag_Of_OCL_Feature_Call_Exp;
type Sequence_Of_OCL_Feature_Call_Exp is
new OCL_Feature_Call_Exp_Collections.Sequence with null record;
Empty_Sequence_Of_OCL_Feature_Call_Exp : constant Sequence_Of_OCL_Feature_Call_Exp;
private
Empty_Set_Of_OCL_Feature_Call_Exp : constant Set_Of_OCL_Feature_Call_Exp
:= (OCL_Feature_Call_Exp_Collections.Set with null record);
Empty_Ordered_Set_Of_OCL_Feature_Call_Exp : constant Ordered_Set_Of_OCL_Feature_Call_Exp
:= (OCL_Feature_Call_Exp_Collections.Ordered_Set with null record);
Empty_Bag_Of_OCL_Feature_Call_Exp : constant Bag_Of_OCL_Feature_Call_Exp
:= (OCL_Feature_Call_Exp_Collections.Bag with null record);
Empty_Sequence_Of_OCL_Feature_Call_Exp : constant Sequence_Of_OCL_Feature_Call_Exp
:= (OCL_Feature_Call_Exp_Collections.Sequence with null record);
end AMF.OCL.Feature_Call_Exps.Collections;
| 56.108696 | 92 | 0.531383 |
13c685ceafda7ea38b35be1a4ba2a9ae81c1c145 | 877 | adb | Ada | orka/src/gl/implementation/gl-api.adb | onox/orka | 9edf99559a16ffa96dfdb208322f4d18efbcbac6 | [
"Apache-2.0"
] | 52 | 2016-07-30T23:00:28.000Z | 2022-02-05T11:54:55.000Z | orka/src/gl/implementation/gl-api.adb | onox/orka | 9edf99559a16ffa96dfdb208322f4d18efbcbac6 | [
"Apache-2.0"
] | 79 | 2016-08-01T18:36:48.000Z | 2022-02-27T12:14:20.000Z | orka/src/gl/implementation/gl-api.adb | onox/orka | 9edf99559a16ffa96dfdb208322f4d18efbcbac6 | [
"Apache-2.0"
] | 4 | 2018-04-28T22:36:26.000Z | 2020-11-14T23:00:29.000Z | -- SPDX-License-Identifier: Apache-2.0
--
-- Copyright (c) 2012 Felix Krause <[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 GL.Loader;
package body GL.API is
function GL_Subprogram_Reference (Function_Name : String) return System.Address is
(GL.Loader.Get_Proc_Address (Interfaces.C.To_C (Function_Name)));
end GL.API;
| 35.08 | 85 | 0.735462 |
3893e6bd4142a48adac1ad68c85f66fd46d94655 | 5,734 | ads | Ada | src/vulkan-math/vulkan-math-dmat3x2.ads | zrmyers/VulkanAda | ed8c46d923bc8936db3a5d55d36afebb928a9ede | [
"MIT"
] | 1 | 2021-01-29T21:10:45.000Z | 2021-01-29T21:10:45.000Z | src/vulkan-math/vulkan-math-dmat3x2.ads | zrmyers/VulkanAda | ed8c46d923bc8936db3a5d55d36afebb928a9ede | [
"MIT"
] | 8 | 2020-04-22T14:55:20.000Z | 2021-11-22T03:58:08.000Z | src/vulkan-math/vulkan-math-dmat3x2.ads | zrmyers/VulkanAda | ed8c46d923bc8936db3a5d55d36afebb928a9ede | [
"MIT"
] | 1 | 2021-04-05T13:19:21.000Z | 2021-04-05T13:19:21.000Z | --------------------------------------------------------------------------------
-- MIT License
--
-- Copyright (c) 2020 Zane Myers
--
-- Permission is hereby granted, free of charge, to any person obtaining a copy
-- of this software and associated documentation files (the "Software"), to deal
-- in the Software without restriction, including without limitation the rights
-- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-- copies of the Software, and to permit persons to whom the Software is
-- furnished to do so, subject to the following conditions:
--
-- The above copyright notice and this permission notice shall be included in all
-- copies or substantial portions of the Software.
--
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-- SOFTWARE.
--------------------------------------------------------------------------------
with Vulkan.Math.GenDMatrix;
with Vulkan.Math.Dvec2;
use Vulkan.Math.GenDMatrix;
use Vulkan.Math.Dvec2;
--------------------------------------------------------------------------------
--< @group Vulkan Math Basic Types
--------------------------------------------------------------------------------
--< @summary
--< This package provides a single precision floating point matrix with 3 rows
--< and 2 columns.
--------------------------------------------------------------------------------
package Vulkan.Math.Dmat3x2 is
pragma Preelaborate;
pragma Pure;
--< A 3x2 matrix of single-precision floating point numbers.
subtype Vkm_Dmat3x2 is Vkm_Dmat(
last_row_index => 2, last_column_index => 1);
----------------------------------------------------------------------------
--< @summary
--< Constructor for Vkm_Dmat3x2 type.
--<
--< @description
--< Construct a 3x2 matrix with each component set to 0.0
--<
--< @return
--< A 3x2 matrix.
----------------------------------------------------------------------------
function Make_Dmat3x2 return Vkm_Dmat3x2 is
(GDM.Make_GenMatrix(cN => 1, rN => 2)) with Inline;
----------------------------------------------------------------------------
--< @summary
--< Constructor for Vkm_Dmat3x2 type.
--<
--< @description
--< Construct a 3x2 matrix with each component set to a different value.
--<
--< | value1 value4 |
--< | value2 value5 |
--< | value3 value6 |
--<
--< @param value1
--< The first value to set for the matrix.
--<
--< @param value2
--< The second value to set for the matrix.
--<
--< @param value3
--< The third value to set for the matrix.
--<
--< @param value4
--< The fourth value to set for the matrix.
--<
--< @param value5
--< The fifth value to set for the matrix.
--<
--< @param value6
--< The sixth value to set for the matrix.
--<
--< @return
--< A 3x2 matrix.
----------------------------------------------------------------------------
function Make_Dmat3x2 (
value1, value2, value3,
value4, value5, value6 : in Vkm_Double) return Vkm_Dmat3x2 is
(GDM.Make_GenMatrix(
cN => 1, rN => 2,
c0r0_val => value1, c0r1_val => value3, c0r2_val => value5,
c1r0_val => value2, c1r1_val => value4, c1r2_val => value6)) with Inline;
----------------------------------------------------------------------------
--< @summary
--< Constructor for Vkm_Dmat3x2 type.
--<
--< @description
--< Construct a 3x2 matrix with each row set to the value of a 2 dimmensional
--< vector.
--<
--< @param value1
--< The first value to set for the matrix.
--<
--< @param value2
--< The second value to set for the matrix.
--<
--< @param value3
--< The third value to set for the matrix.
--<
--< @return
--< A 3x2 matrix.
----------------------------------------------------------------------------
function Make_Dmat3x2 (
value1, value2, value3 : in Vkm_Dvec2) return Vkm_Dmat3x2 is
(GDM.Make_GenMatrix(
cN => 1, rN => 2,
c0r0_val => value1.x, c0r1_val => value2.x, c0r2_val => value3.x,
c1r0_val => value1.y, c1r1_val => value2.y, c1r2_val => value3.y)) with Inline;
----------------------------------------------------------------------------
--< @summary
--< Constructor for Vkm_Dmat3x2 type.
--<
--< @description
--< Construct a 3x2 matrix using values from an existing matrix.
--<
--< If the provided matrix has dimmensions that are not the same as this
--< matrix, the corresponding element in the 4x4 identity matrix is used for
--< out of bounds accesses.
--<
--< @param value1
--< The submatrix to extract values from.
--<
--< @return
--< A 3x2 matrix.
----------------------------------------------------------------------------
function Make_Dmat3x2 (
value1 : in Vkm_Dmat) return Vkm_Dmat3x2 is
(GDM.Make_GenMatrix(
cN => 1, rN => 2,
c0r0_val => value1.c0r0, c0r1_val => value1.c0r1, c0r2_val => value1.c0r2,
c1r0_val => value1.c1r0, c1r1_val => value1.c1r1, c1r2_val => value1.c1r2)) with Inline;
end Vulkan.Math.Dmat3x2;
| 37.233766 | 101 | 0.513603 |
035ca556103a940ad38a6c1ceadfb44d8ea1e2ff | 25 | ada | Ada | model/mcada/templates/package/t.member_begin.ada | cortlandstarrett/mcada | d1a7a818f91459d53bd5b9354bc7d78e2c5d4518 | [
"Apache-2.0"
] | null | null | null | model/mcada/templates/package/t.member_begin.ada | cortlandstarrett/mcada | d1a7a818f91459d53bd5b9354bc7d78e2c5d4518 | [
"Apache-2.0"
] | null | null | null | model/mcada/templates/package/t.member_begin.ada | cortlandstarrett/mcada | d1a7a818f91459d53bd5b9354bc7d78e2c5d4518 | [
"Apache-2.0"
] | 1 | 2021-06-08T19:44:04.000Z | 2021-06-08T19:44:04.000Z | ${self.name} : \
| 12.5 | 24 | 0.32 |
ad44fd7713c9e5675e2266ac7e2fe7d72ed42a2e | 839 | ads | Ada | software/hal/boards/common/hil/hil-nvram.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 12 | 2017-06-08T14:19:57.000Z | 2022-03-09T02:48:59.000Z | software/hal/boards/common/hil/hil-nvram.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 6 | 2017-06-08T13:13:50.000Z | 2020-05-15T09:32:43.000Z | software/hal/boards/common/hil/hil-nvram.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 3 | 2017-06-30T14:05:06.000Z | 2022-02-17T12:20:45.000Z | -- Institution: Technische Universität München
-- Department: Realtime Computer Systems (RCS)
-- Project: StratoX
--
-- Authors: Martin Becker ([email protected])
with HIL.Devices.NVRAM;
-- @summary
-- Target-independent specification for HIL of NVRAM
package HIL.NVRAM with
Spark_Mode => On
is
subtype Address is HIL.Devices.NVRAM.NVRAM_Address; -- expose type
-- the target-specific packages must specify the address type
procedure Init;
-- initialize the communication to the FRAM
procedure Self_Check (Status : out Boolean);
-- run a self-check.
-- @return true on success
procedure Read_Byte (addr : Address; byte : out HIL.Byte);
-- read a single byte
procedure Write_Byte (addr : Address; byte : HIL.Byte);
-- with Pre => Is_Init;
-- write a single byte
end HIL.NVRAM;
| 26.21875 | 69 | 0.697259 |
a0d8085efb367444aa142462b8677aa8aa96295c | 2,878 | ads | Ada | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-expuns.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-expuns.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-expuns.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . E X P _ U N S --
-- --
-- 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. --
-- --
-- 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 function performs exponentiation of unsigned types (with binary
-- modulus values up to and including that of Unsigned_Types.Unsigned).
-- The result is always full width, the caller must do a masking operation
-- the modulus is less than 2 ** (Unsigned'Size).
with System.Unsigned_Types;
package System.Exp_Uns is
pragma Pure;
function Exp_Unsigned
(Left : System.Unsigned_Types.Unsigned;
Right : Natural)
return System.Unsigned_Types.Unsigned;
end System.Exp_Uns;
| 59.958333 | 78 | 0.431202 |
1ec5292aec7f5f6bacb89364dbe53a32eea4dc40 | 5,561 | ads | Ada | tools-src/gnu/gcc/gcc/ada/a-comlin.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/a-comlin.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/a-comlin.ads | modern-tomato/tomato | 96f09fab4929c6ddde5c9113f1b2476ad37133c4 | [
"FSFAP"
] | 69 | 2015-01-02T10:45:56.000Z | 2021-09-06T07:52:13.000Z | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . C O M M A N D _ L I N E --
-- --
-- S p e c --
-- --
-- $Revision$
-- --
-- Copyright (C) 1992-2001 Free Software Foundation, Inc. --
-- --
-- This specification is derived from the Ada Reference Manual for use with --
-- GNAT. The copyright notice above, and the license provisions that follow --
-- apply solely to the contents of the part following the private keyword. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
-- MA 02111-1307, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
package Ada.Command_Line is
pragma Preelaborate (Command_Line);
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);
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;
| 53.471154 | 78 | 0.557274 |
a05e5eeca67618b269894a91f8c11e0081afb6c4 | 4,865 | ads | Ada | source/amf/uml/amf-uml-triggers-collections.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-triggers-collections.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-triggers-collections.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.
------------------------------------------------------------------------------
with AMF.Generic_Collections;
package AMF.UML.Triggers.Collections is
pragma Preelaborate;
package UML_Trigger_Collections is
new AMF.Generic_Collections
(UML_Trigger,
UML_Trigger_Access);
type Set_Of_UML_Trigger is
new UML_Trigger_Collections.Set with null record;
Empty_Set_Of_UML_Trigger : constant Set_Of_UML_Trigger;
type Ordered_Set_Of_UML_Trigger is
new UML_Trigger_Collections.Ordered_Set with null record;
Empty_Ordered_Set_Of_UML_Trigger : constant Ordered_Set_Of_UML_Trigger;
type Bag_Of_UML_Trigger is
new UML_Trigger_Collections.Bag with null record;
Empty_Bag_Of_UML_Trigger : constant Bag_Of_UML_Trigger;
type Sequence_Of_UML_Trigger is
new UML_Trigger_Collections.Sequence with null record;
Empty_Sequence_Of_UML_Trigger : constant Sequence_Of_UML_Trigger;
private
Empty_Set_Of_UML_Trigger : constant Set_Of_UML_Trigger
:= (UML_Trigger_Collections.Set with null record);
Empty_Ordered_Set_Of_UML_Trigger : constant Ordered_Set_Of_UML_Trigger
:= (UML_Trigger_Collections.Ordered_Set with null record);
Empty_Bag_Of_UML_Trigger : constant Bag_Of_UML_Trigger
:= (UML_Trigger_Collections.Bag with null record);
Empty_Sequence_Of_UML_Trigger : constant Sequence_Of_UML_Trigger
:= (UML_Trigger_Collections.Sequence with null record);
end AMF.UML.Triggers.Collections;
| 52.880435 | 78 | 0.502775 |
a0a31dffd35a3cd3a71382c128fc23abf9a01c53 | 25,276 | ads | Ada | source/league/ucd/matreshka-internals-unicode-ucd-core_0005.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_0005.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_0005.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_0005 is
pragma Preelaborate;
Group_0005 : aliased constant Core_Second_Stage
:= (16#01# => -- 0501
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start => True,
others => False)),
16#03# => -- 0503
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start => True,
others => False)),
16#05# => -- 0505
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start => True,
others => False)),
16#07# => -- 0507
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start => True,
others => False)),
16#09# => -- 0509
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start => True,
others => False)),
16#0B# => -- 050B
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start => True,
others => False)),
16#0D# => -- 050D
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start => True,
others => False)),
16#0F# => -- 050F
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start => True,
others => False)),
16#11# => -- 0511
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start => True,
others => False)),
16#13# => -- 0513
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start => True,
others => False)),
16#15# => -- 0515
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start => True,
others => False)),
16#17# => -- 0517
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start => True,
others => False)),
16#19# => -- 0519
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start => True,
others => False)),
16#1B# => -- 051B
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start => True,
others => False)),
16#1D# => -- 051D
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start => True,
others => False)),
16#1F# => -- 051F
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start => True,
others => False)),
16#21# => -- 0521
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start => True,
others => False)),
16#23# => -- 0523
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start => True,
others => False)),
16#25# => -- 0525
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start => True,
others => False)),
16#27# => -- 0527
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start => True,
others => False)),
16#29# => -- 0529
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start => True,
others => False)),
16#2B# => -- 052B
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start => True,
others => False)),
16#2D# => -- 052D
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start => True,
others => False)),
16#2F# => -- 052F
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start => True,
others => False)),
16#30# => -- 0530
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#57# .. 16#58# => -- 0557 .. 0558
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#59# => -- 0559
(Modifier_Letter, Neutral,
Other, A_Letter, O_Letter, Alphabetic,
(Diacritic
| Alphabetic
| Case_Ignorable
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start => True,
others => False)),
16#5A# .. 16#5C# => -- 055A .. 055C
(Other_Punctuation, Neutral,
Other, Other, Other, Alphabetic,
(Grapheme_Base => True,
others => False)),
16#5D# => -- 055D
(Other_Punctuation, Neutral,
Other, Other, S_Continue, Alphabetic,
(Grapheme_Base => True,
others => False)),
16#5E# .. 16#5F# => -- 055E .. 055F
(Other_Punctuation, Neutral,
Other, Other, Other, Alphabetic,
(Grapheme_Base => True,
others => False)),
16#60# => -- 0560
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#61# .. 16#86# => -- 0561 .. 0586
(Lowercase_Letter, Neutral,
Other, A_Letter, Lower, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Uppercased
| Changes_When_Titlecased
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Lowercase
| XID_Continue
| XID_Start => True,
others => False)),
16#87# => -- 0587
(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#88# => -- 0588
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#89# => -- 0589
(Other_Punctuation, Neutral,
Other, Mid_Num, S_Term, Infix_Numeric,
(STerm
| Terminal_Punctuation
| Grapheme_Base => True,
others => False)),
16#8A# => -- 058A
(Dash_Punctuation, Neutral,
Other, Other, Other, Break_After,
(Dash
| Hyphen
| Grapheme_Base => True,
others => False)),
16#8B# .. 16#8C# => -- 058B .. 058C
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#8D# .. 16#8E# => -- 058D .. 058E
(Other_Symbol, Neutral,
Other, Other, Other, Alphabetic,
(Grapheme_Base => True,
others => False)),
16#8F# => -- 058F
(Currency_Symbol, Neutral,
Other, Other, Other, Prefix_Numeric,
(Grapheme_Base => True,
others => False)),
16#90# => -- 0590
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#91# .. 16#A1# => -- 0591 .. 05A1
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Diacritic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#A2# => -- 05A2
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#A3# .. 16#AF# => -- 05A3 .. 05AF
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Diacritic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#B0# .. 16#BD# => -- 05B0 .. 05BD
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Diacritic
| Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#BE# => -- 05BE
(Dash_Punctuation, Neutral,
Other, Other, Other, Break_After,
(Dash
| Grapheme_Base => True,
others => False)),
16#BF# => -- 05BF
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Diacritic
| Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#C0# => -- 05C0
(Other_Punctuation, Neutral,
Other, Other, Other, Alphabetic,
(Grapheme_Base => True,
others => False)),
16#C1# .. 16#C2# => -- 05C1 .. 05C2
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Diacritic
| Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#C3# => -- 05C3
(Other_Punctuation, Neutral,
Other, Other, Other, Alphabetic,
(Terminal_Punctuation
| Grapheme_Base => True,
others => False)),
16#C4# => -- 05C4
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Diacritic
| Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#C5# => -- 05C5
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#C6# => -- 05C6
(Other_Punctuation, Neutral,
Other, Other, Other, Exclamation,
(Grapheme_Base => True,
others => False)),
16#C7# => -- 05C7
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#C8# .. 16#CF# => -- 05C8 .. 05CF
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#D0# .. 16#EA# => -- 05D0 .. 05EA
(Other_Letter, Neutral,
Other, Hebrew_Letter, O_Letter, Hebrew_Letter,
(Alphabetic
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start => True,
others => False)),
16#EB# .. 16#EF# => -- 05EB .. 05EF
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#F0# .. 16#F2# => -- 05F0 .. 05F2
(Other_Letter, Neutral,
Other, Hebrew_Letter, O_Letter, Hebrew_Letter,
(Alphabetic
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start => True,
others => False)),
16#F3# => -- 05F3
(Other_Punctuation, Neutral,
Other, A_Letter, O_Letter, Alphabetic,
(Grapheme_Base => True,
others => False)),
16#F4# => -- 05F4
(Other_Punctuation, Neutral,
Other, Mid_Letter, Other, Alphabetic,
(Case_Ignorable
| Grapheme_Base => True,
others => False)),
16#F5# .. 16#FF# => -- 05F5 .. 05FF
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
others =>
(Uppercase_Letter, Neutral,
Other, A_Letter, Upper, Alphabetic,
(Alphabetic
| Cased
| Changes_When_Lowercased
| Changes_When_Casefolded
| Changes_When_Casemapped
| Grapheme_Base
| ID_Continue
| ID_Start
| Uppercase
| XID_Continue
| XID_Start
| Changes_When_NFKC_Casefolded => True,
others => False)));
end Matreshka.Internals.Unicode.Ucd.Core_0005;
| 36.420749 | 78 | 0.446075 |
1e1b984784c9af2cc03cbcba2a9e14f0b744e2ca | 13,358 | adb | Ada | src/lang/stemmer-irish.adb | stcarrez/ada-stemmer | 08f540a33d471a9823d8f1a88ce2a2c4d40faaec | [
"Apache-2.0"
] | 3 | 2020-05-11T21:21:17.000Z | 2020-05-17T02:16:08.000Z | src/lang/stemmer-irish.adb | stcarrez/ada-stemmer | 08f540a33d471a9823d8f1a88ce2a2c4d40faaec | [
"Apache-2.0"
] | null | null | null | src/lang/stemmer-irish.adb | stcarrez/ada-stemmer | 08f540a33d471a9823d8f1a88ce2a2c4d40faaec | [
"Apache-2.0"
] | null | null | null | -- Generated by Snowball 2.2.0 - https://snowballstem.org/
package body Stemmer.Irish 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_Verb_sfx (Z : in out Context_Type; Result : out Boolean);
procedure R_Deriv (Z : in out Context_Type; Result : out Boolean);
procedure R_Noun_sfx (Z : in out Context_Type; Result : out Boolean);
procedure R_Mark_regions (Z : in out Context_Type; Result : out Boolean);
procedure R_Initial_morph (Z : in out Context_Type; Result : out Boolean);
procedure R_RV (Z : in out Context_Type; Result : out Boolean);
procedure R_R2 (Z : in out Context_Type; Result : out Boolean);
procedure R_R1 (Z : in out Context_Type; Result : out Boolean);
G_V : constant Grouping_Array (0 .. 159) := (
True, False, False, False, True, False, False, False,
True, False, False, False, False, False, True, False,
False, False, False, False, True, False, False, False,
False, False, False, False, False, False, False, False,
False, False, False, False, False, False, False, False,
False, False, False, False, False, False, False, False,
False, False, False, False, False, False, False, False,
False, False, False, False, False, False, False, False,
False, False, False, False, False, False, False, False,
False, False, False, False, False, False, False, False,
False, False, False, False, False, False, False, False,
False, False, False, False, False, False, False, False,
False, False, False, False, False, False, False, False,
False, False, False, False, False, False, False, False,
False, False, False, False, False, False, False, False,
False, False, False, False, False, False, False, False,
True, False, False, False, False, False, False, False,
True, False, False, False, True, False, False, False,
False, False, True, False, False, False, False, False,
False, True, False, False, False, False, False, False
);
Among_String : constant String := "b'" & "bh" & "bhf" & "bp" & "ch" & "d'"
& "d'fh" & "dh" & "dt" & "fh" & "gc" & "gh" & "h-" & "m'" & "mb" & "mh" & "n-"
& "nd" & "ng" & "ph" & "sh" & "t-" & "th" & "ts" & "íochta" & "aíochta" & "ire"
& "aire" & "abh" & "eabh" & "ibh" & "aibh" & "amh" & "eamh" & "imh" & "aimh"
& "íocht" & "aíocht" & "irí" & "airí" & "óideacha" & "patacha" & "achta"
& "arcachta" & "eachta" & "grafaíochta" & "paite" & "ach" & "each" & "óideach"
& "gineach" & "patach" & "grafaíoch" & "pataigh" & "óidigh" & "achtúil"
& "eachtúil" & "gineas" & "ginis" & "acht" & "arcacht" & "eacht" & "grafaíocht"
& "arcachtaí" & "grafaíochtaí" & "imid" & "aimid" & "ímid" & "aímid" & "adh"
& "eadh" & "faidh" & "fidh" & "áil" & "ain" & "tear" & "tar";
A_0 : constant Among_Array_Type (0 .. 23) := (
(1, 2, -1, 1, 0),
(3, 4, -1, 4, 0),
(5, 7, 1, 2, 0),
(8, 9, -1, 8, 0),
(10, 11, -1, 5, 0),
(12, 13, -1, 1, 0),
(14, 17, 5, 2, 0),
(18, 19, -1, 6, 0),
(20, 21, -1, 9, 0),
(22, 23, -1, 2, 0),
(24, 25, -1, 5, 0),
(26, 27, -1, 7, 0),
(28, 29, -1, 1, 0),
(30, 31, -1, 1, 0),
(32, 33, -1, 4, 0),
(34, 35, -1, 10, 0),
(36, 37, -1, 1, 0),
(38, 39, -1, 6, 0),
(40, 41, -1, 7, 0),
(42, 43, -1, 8, 0),
(44, 45, -1, 3, 0),
(46, 47, -1, 1, 0),
(48, 49, -1, 9, 0),
(50, 51, -1, 3, 0));
A_1 : constant Among_Array_Type (0 .. 15) := (
(52, 58, -1, 1, 0),
(59, 66, 0, 1, 0),
(67, 69, -1, 2, 0),
(70, 73, 2, 2, 0),
(74, 76, -1, 1, 0),
(77, 80, 4, 1, 0),
(81, 83, -1, 1, 0),
(84, 87, 6, 1, 0),
(88, 90, -1, 1, 0),
(91, 94, 8, 1, 0),
(95, 97, -1, 1, 0),
(98, 101, 10, 1, 0),
(102, 107, -1, 1, 0),
(108, 114, 12, 1, 0),
(115, 118, -1, 2, 0),
(119, 123, 14, 2, 0));
A_2 : constant Among_Array_Type (0 .. 24) := (
(124, 132, -1, 6, 0),
(133, 139, -1, 5, 0),
(140, 144, -1, 1, 0),
(145, 152, 2, 2, 0),
(153, 158, 2, 1, 0),
(159, 170, -1, 4, 0),
(171, 175, -1, 5, 0),
(176, 178, -1, 1, 0),
(179, 182, 7, 1, 0),
(183, 190, 8, 6, 0),
(191, 197, 8, 3, 0),
(198, 203, 7, 5, 0),
(204, 213, -1, 4, 0),
(214, 220, -1, 5, 0),
(221, 227, -1, 6, 0),
(228, 235, -1, 1, 0),
(236, 244, 15, 1, 0),
(245, 250, -1, 3, 0),
(251, 255, -1, 3, 0),
(256, 259, -1, 1, 0),
(260, 266, 19, 2, 0),
(267, 271, 19, 1, 0),
(272, 282, -1, 4, 0),
(283, 292, -1, 2, 0),
(293, 306, -1, 4, 0));
A_3 : constant Among_Array_Type (0 .. 11) := (
(307, 310, -1, 1, 0),
(311, 315, 0, 1, 0),
(316, 320, -1, 1, 0),
(321, 326, 2, 1, 0),
(327, 329, -1, 2, 0),
(330, 333, 4, 2, 0),
(334, 338, -1, 1, 0),
(339, 342, -1, 1, 0),
(343, 346, -1, 2, 0),
(347, 349, -1, 2, 0),
(350, 353, -1, 2, 0),
(354, 356, -1, 2, 0));
procedure R_Mark_regions (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
v_1 : Char_Index;
begin
-- (, line 28
Z.I_PV := Z.L;
Z.I_P1 := Z.L;
Z.I_P2 := Z.L;
-- do, line 34
v_1 := Z.C;
-- (, line 34
-- gopast, line 35
-- grouping v, line 35
Out_Grouping (Z, G_V, 97, 250, True, C);
if C < 0 then
goto lab0;
end if;
Z.C := Z.C + C;
-- setmark pV, line 35
Z.I_PV := Z.C;
-- gopast, line 36
-- non v, line 36
In_Grouping (Z, G_V, 97, 250, True, C);
if C < 0 then
goto lab0;
end if;
Z.C := Z.C + C;
-- setmark p1, line 36
Z.I_P1 := Z.C;
-- gopast, line 37
-- grouping v, line 37
Out_Grouping (Z, G_V, 97, 250, True, C);
if C < 0 then
goto lab0;
end if;
Z.C := Z.C + C;
-- gopast, line 37
-- non v, line 37
In_Grouping (Z, G_V, 97, 250, True, C);
if C < 0 then
goto lab0;
end if;
Z.C := Z.C + C;
-- setmark p2, line 37
Z.I_P2 := Z.C;
<<lab0>>
Z.C := v_1;
Result := True;
end R_Mark_regions;
procedure R_Initial_morph (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
begin
-- (, line 41
Z.Bra := Z.C; -- [, line 42
-- substring, line 42
Find_Among (Z, A_0, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
Z.Ket := Z.C; -- ], line 42
-- among, line 42
case A is
when 1 =>
-- (, line 44
-- delete, line 44
Slice_Del (Z);
when 2 =>
-- (, line 50
-- <-, line 50
Slice_From (Z, "f");
when 3 =>
-- (, line 56
-- <-, line 56
Slice_From (Z, "s");
when 4 =>
-- (, line 59
-- <-, line 59
Slice_From (Z, "b");
when 5 =>
-- (, line 61
-- <-, line 61
Slice_From (Z, "c");
when 6 =>
-- (, line 63
-- <-, line 63
Slice_From (Z, "d");
when 7 =>
-- (, line 67
-- <-, line 67
Slice_From (Z, "g");
when 8 =>
-- (, line 69
-- <-, line 69
Slice_From (Z, "p");
when 9 =>
-- (, line 73
-- <-, line 73
Slice_From (Z, "t");
when 10 =>
-- (, line 87
-- <-, line 87
Slice_From (Z, "m");
when others =>
null;
end case;
Result := True;
end R_Initial_morph;
procedure R_RV (Z : in out Context_Type; Result : out Boolean) is
begin
Result := (Z.I_PV <= Z.C);
end R_RV;
procedure R_R1 (Z : in out Context_Type; Result : out Boolean) is
begin
Result := (Z.I_P1 <= Z.C);
end R_R1;
procedure R_R2 (Z : in out Context_Type; Result : out Boolean) is
begin
Result := (Z.I_P2 <= Z.C);
end R_R2;
procedure R_Noun_sfx (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
begin
-- (, line 101
Z.Ket := Z.C; -- [, line 102
-- substring, line 102
Find_Among_Backward (Z, A_1, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
Z.Bra := Z.C; -- ], line 102
-- among, line 102
case A is
when 1 =>
-- (, line 106
-- call R1, line 106
R_R1 (Z, Result);
if not Result then
Result := False;
return;
end if;
-- delete, line 106
Slice_Del (Z);
when 2 =>
-- (, line 108
-- call R2, line 108
R_R2 (Z, Result);
if not Result then
Result := False;
return;
end if;
-- delete, line 108
Slice_Del (Z);
when others =>
null;
end case;
Result := True;
end R_Noun_sfx;
procedure R_Deriv (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
begin
-- (, line 111
Z.Ket := Z.C; -- [, line 112
-- substring, line 112
Find_Among_Backward (Z, A_2, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
Z.Bra := Z.C; -- ], line 112
-- among, line 112
case A is
when 1 =>
-- (, line 114
-- call R2, line 114
R_R2 (Z, Result);
if not Result then
Result := False;
return;
end if;
-- delete, line 114
Slice_Del (Z);
when 2 =>
-- (, line 116
-- <-, line 116
Slice_From (Z, "arc");
when 3 =>
-- (, line 118
-- <-, line 118
Slice_From (Z, "gin");
when 4 =>
-- (, line 120
-- <-, line 120
Slice_From (Z, "graf");
when 5 =>
-- (, line 122
-- <-, line 122
Slice_From (Z, "paite");
when 6 =>
-- (, line 124
-- <-, line 124
Slice_From (Z, "óid");
when others =>
null;
end case;
Result := True;
end R_Deriv;
procedure R_Verb_sfx (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
begin
-- (, line 127
Z.Ket := Z.C; -- [, line 128
-- substring, line 128
if Z.C - 2 <= Z.Lb or else Check_Among (Z, Z.C - 1, 3, 16#45110#) then
Result := False;
return;
-- substring, line 128
end if;
Find_Among_Backward (Z, A_3, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
Z.Bra := Z.C; -- ], line 128
-- among, line 128
case A is
when 1 =>
-- (, line 131
-- call RV, line 131
R_RV (Z, Result);
if not Result then
Result := False;
return;
end if;
-- delete, line 131
Slice_Del (Z);
when 2 =>
-- (, line 136
-- call R1, line 136
R_R1 (Z, Result);
if not Result then
Result := False;
return;
end if;
-- delete, line 136
Slice_Del (Z);
when others =>
null;
end case;
Result := True;
end R_Verb_sfx;
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;
begin
-- (, line 141
-- do, line 142
v_1 := Z.C;
-- call initial_morph, line 142
R_Initial_morph (Z, Result);
Z.C := v_1;
-- do, line 143
-- call mark_regions, line 143
R_Mark_regions (Z, Result);
Z.Lb := Z.C; Z.C := Z.L; -- backwards, line 144
-- (, line 144
-- do, line 145
v_3 := Z.L - Z.C;
-- call noun_sfx, line 145
R_Noun_sfx (Z, Result);
Z.C := Z.L - v_3;
-- do, line 146
v_4 := Z.L - Z.C;
-- call deriv, line 146
R_Deriv (Z, Result);
Z.C := Z.L - v_4;
-- do, line 147
v_5 := Z.L - Z.C;
-- call verb_sfx, line 147
R_Verb_sfx (Z, Result);
Z.C := Z.L - v_5;
Z.C := Z.Lb;
Result := True;
end Stem;
end Stemmer.Irish;
| 29.102397 | 85 | 0.444827 |
387e012a4be1e8fdc490a7db5d7445df02ad14e6 | 16,190 | ads | Ada | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-stwisu.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-stwisu.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-stwisu.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . S T R I N G S . W I D E _ S U P E R B O U N D E D --
-- --
-- S p e c --
-- --
-- Copyright (C) 2003-2020, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This non generic package contains most of the implementation of the
-- generic package Ada.Strings.Wide_Bounded.Generic_Bounded_Length.
-- It defines type Super_String as a discriminated record with the maximum
-- length as the discriminant. Individual instantiations of the package
-- Strings.Wide_Bounded.Generic_Bounded_Length use this type with
-- an appropriate discriminant value set.
with Ada.Strings.Wide_Maps;
package Ada.Strings.Wide_Superbounded is
pragma Preelaborate;
Wide_NUL : constant Wide_Character := Wide_Character'Val (0);
-- Ada.Strings.Wide_Bounded.Generic_Bounded_Length.Wide_Bounded_String is
-- derived from Super_String, with the constraint of the maximum length.
type Super_String (Max_Length : Positive) is record
Current_Length : Natural := 0;
Data : Wide_String (1 .. Max_Length);
-- A previous version had a default initial value for Data, which is
-- no longer necessary, because we now special-case this type in the
-- compiler, so "=" composes properly for descendants of this type.
-- Leaving it out is more efficient.
end record;
-- The subprograms defined for Super_String are similar to those defined
-- for Bounded_Wide_String, except that they have different names, so that
-- they can be renamed in Ada.Strings.Wide_Bounded.Generic_Bounded_Length.
function Super_Length (Source : Super_String) return Natural;
--------------------------------------------------------
-- Conversion, Concatenation, and Selection Functions --
--------------------------------------------------------
function To_Super_String
(Source : Wide_String;
Max_Length : Natural;
Drop : Truncation := Error) return Super_String;
-- Note the additional parameter Max_Length, which specifies the maximum
-- length setting of the resulting Super_String value.
-- The following procedures have declarations (and semantics) that are
-- exactly analogous to those declared in Ada.Strings.Wide_Bounded.
function Super_To_String (Source : Super_String) return Wide_String;
procedure Set_Super_String
(Target : out Super_String;
Source : Wide_String;
Drop : Truncation := Error);
function Super_Append
(Left : Super_String;
Right : Super_String;
Drop : Truncation := Error) return Super_String;
function Super_Append
(Left : Super_String;
Right : Wide_String;
Drop : Truncation := Error) return Super_String;
function Super_Append
(Left : Wide_String;
Right : Super_String;
Drop : Truncation := Error) return Super_String;
function Super_Append
(Left : Super_String;
Right : Wide_Character;
Drop : Truncation := Error) return Super_String;
function Super_Append
(Left : Wide_Character;
Right : Super_String;
Drop : Truncation := Error) return Super_String;
procedure Super_Append
(Source : in out Super_String;
New_Item : Super_String;
Drop : Truncation := Error);
procedure Super_Append
(Source : in out Super_String;
New_Item : Wide_String;
Drop : Truncation := Error);
procedure Super_Append
(Source : in out Super_String;
New_Item : Wide_Character;
Drop : Truncation := Error);
function Concat
(Left : Super_String;
Right : Super_String) return Super_String;
function Concat
(Left : Super_String;
Right : Wide_String) return Super_String;
function Concat
(Left : Wide_String;
Right : Super_String) return Super_String;
function Concat
(Left : Super_String;
Right : Wide_Character) return Super_String;
function Concat
(Left : Wide_Character;
Right : Super_String) return Super_String;
function Super_Element
(Source : Super_String;
Index : Positive) return Wide_Character;
procedure Super_Replace_Element
(Source : in out Super_String;
Index : Positive;
By : Wide_Character);
function Super_Slice
(Source : Super_String;
Low : Positive;
High : Natural) return Wide_String;
function Super_Slice
(Source : Super_String;
Low : Positive;
High : Natural) return Super_String;
procedure Super_Slice
(Source : Super_String;
Target : out Super_String;
Low : Positive;
High : Natural);
function "="
(Left : Super_String;
Right : Super_String) return Boolean;
function Equal
(Left : Super_String;
Right : Super_String) return Boolean renames "=";
function Equal
(Left : Super_String;
Right : Wide_String) return Boolean;
function Equal
(Left : Wide_String;
Right : Super_String) return Boolean;
function Less
(Left : Super_String;
Right : Super_String) return Boolean;
function Less
(Left : Super_String;
Right : Wide_String) return Boolean;
function Less
(Left : Wide_String;
Right : Super_String) return Boolean;
function Less_Or_Equal
(Left : Super_String;
Right : Super_String) return Boolean;
function Less_Or_Equal
(Left : Super_String;
Right : Wide_String) return Boolean;
function Less_Or_Equal
(Left : Wide_String;
Right : Super_String) return Boolean;
function Greater
(Left : Super_String;
Right : Super_String) return Boolean;
function Greater
(Left : Super_String;
Right : Wide_String) return Boolean;
function Greater
(Left : Wide_String;
Right : Super_String) return Boolean;
function Greater_Or_Equal
(Left : Super_String;
Right : Super_String) return Boolean;
function Greater_Or_Equal
(Left : Super_String;
Right : Wide_String) return Boolean;
function Greater_Or_Equal
(Left : Wide_String;
Right : Super_String) return Boolean;
----------------------
-- Search Functions --
----------------------
function Super_Index
(Source : Super_String;
Pattern : Wide_String;
Going : Direction := Forward;
Mapping : Wide_Maps.Wide_Character_Mapping := Wide_Maps.Identity)
return Natural;
function Super_Index
(Source : Super_String;
Pattern : Wide_String;
Going : Direction := Forward;
Mapping : Wide_Maps.Wide_Character_Mapping_Function) return Natural;
function Super_Index
(Source : Super_String;
Set : Wide_Maps.Wide_Character_Set;
Test : Membership := Inside;
Going : Direction := Forward) return Natural;
function Super_Index
(Source : Super_String;
Pattern : Wide_String;
From : Positive;
Going : Direction := Forward;
Mapping : Wide_Maps.Wide_Character_Mapping := Wide_Maps.Identity)
return Natural;
function Super_Index
(Source : Super_String;
Pattern : Wide_String;
From : Positive;
Going : Direction := Forward;
Mapping : Wide_Maps.Wide_Character_Mapping_Function) return Natural;
function Super_Index
(Source : Super_String;
Set : Wide_Maps.Wide_Character_Set;
From : Positive;
Test : Membership := Inside;
Going : Direction := Forward) return Natural;
function Super_Index_Non_Blank
(Source : Super_String;
Going : Direction := Forward) return Natural;
function Super_Index_Non_Blank
(Source : Super_String;
From : Positive;
Going : Direction := Forward) return Natural;
function Super_Count
(Source : Super_String;
Pattern : Wide_String;
Mapping : Wide_Maps.Wide_Character_Mapping := Wide_Maps.Identity)
return Natural;
function Super_Count
(Source : Super_String;
Pattern : Wide_String;
Mapping : Wide_Maps.Wide_Character_Mapping_Function) return Natural;
function Super_Count
(Source : Super_String;
Set : Wide_Maps.Wide_Character_Set) return Natural;
procedure Super_Find_Token
(Source : Super_String;
Set : Wide_Maps.Wide_Character_Set;
From : Positive;
Test : Membership;
First : out Positive;
Last : out Natural);
procedure Super_Find_Token
(Source : Super_String;
Set : Wide_Maps.Wide_Character_Set;
Test : Membership;
First : out Positive;
Last : out Natural);
------------------------------------
-- String Translation Subprograms --
------------------------------------
function Super_Translate
(Source : Super_String;
Mapping : Wide_Maps.Wide_Character_Mapping) return Super_String;
procedure Super_Translate
(Source : in out Super_String;
Mapping : Wide_Maps.Wide_Character_Mapping);
function Super_Translate
(Source : Super_String;
Mapping : Wide_Maps.Wide_Character_Mapping_Function) return Super_String;
procedure Super_Translate
(Source : in out Super_String;
Mapping : Wide_Maps.Wide_Character_Mapping_Function);
---------------------------------------
-- String Transformation Subprograms --
---------------------------------------
function Super_Replace_Slice
(Source : Super_String;
Low : Positive;
High : Natural;
By : Wide_String;
Drop : Truncation := Error) return Super_String;
procedure Super_Replace_Slice
(Source : in out Super_String;
Low : Positive;
High : Natural;
By : Wide_String;
Drop : Truncation := Error);
function Super_Insert
(Source : Super_String;
Before : Positive;
New_Item : Wide_String;
Drop : Truncation := Error) return Super_String;
procedure Super_Insert
(Source : in out Super_String;
Before : Positive;
New_Item : Wide_String;
Drop : Truncation := Error);
function Super_Overwrite
(Source : Super_String;
Position : Positive;
New_Item : Wide_String;
Drop : Truncation := Error) return Super_String;
procedure Super_Overwrite
(Source : in out Super_String;
Position : Positive;
New_Item : Wide_String;
Drop : Truncation := Error);
function Super_Delete
(Source : Super_String;
From : Positive;
Through : Natural) return Super_String;
procedure Super_Delete
(Source : in out Super_String;
From : Positive;
Through : Natural);
---------------------------------
-- String Selector Subprograms --
---------------------------------
function Super_Trim
(Source : Super_String;
Side : Trim_End) return Super_String;
procedure Super_Trim
(Source : in out Super_String;
Side : Trim_End);
function Super_Trim
(Source : Super_String;
Left : Wide_Maps.Wide_Character_Set;
Right : Wide_Maps.Wide_Character_Set) return Super_String;
procedure Super_Trim
(Source : in out Super_String;
Left : Wide_Maps.Wide_Character_Set;
Right : Wide_Maps.Wide_Character_Set);
function Super_Head
(Source : Super_String;
Count : Natural;
Pad : Wide_Character := Wide_Space;
Drop : Truncation := Error) return Super_String;
procedure Super_Head
(Source : in out Super_String;
Count : Natural;
Pad : Wide_Character := Wide_Space;
Drop : Truncation := Error);
function Super_Tail
(Source : Super_String;
Count : Natural;
Pad : Wide_Character := Wide_Space;
Drop : Truncation := Error) return Super_String;
procedure Super_Tail
(Source : in out Super_String;
Count : Natural;
Pad : Wide_Character := Wide_Space;
Drop : Truncation := Error);
------------------------------------
-- String Constructor Subprograms --
------------------------------------
-- Note: in some of the following routines, there is an extra parameter
-- Max_Length which specifies the value of the maximum length for the
-- resulting Super_String value.
function Times
(Left : Natural;
Right : Wide_Character;
Max_Length : Positive) return Super_String;
-- Note the additional parameter Max_Length
function Times
(Left : Natural;
Right : Wide_String;
Max_Length : Positive) return Super_String;
-- Note the additional parameter Max_Length
function Times
(Left : Natural;
Right : Super_String) return Super_String;
function Super_Replicate
(Count : Natural;
Item : Wide_Character;
Drop : Truncation := Error;
Max_Length : Positive) return Super_String;
-- Note the additional parameter Max_Length
function Super_Replicate
(Count : Natural;
Item : Wide_String;
Drop : Truncation := Error;
Max_Length : Positive) return Super_String;
-- Note the additional parameter Max_Length
function Super_Replicate
(Count : Natural;
Item : Super_String;
Drop : Truncation := Error) return Super_String;
private
-- Pragma Inline declarations
pragma Inline ("=");
pragma Inline (Less);
pragma Inline (Less_Or_Equal);
pragma Inline (Greater);
pragma Inline (Greater_Or_Equal);
pragma Inline (Concat);
pragma Inline (Super_Count);
pragma Inline (Super_Element);
pragma Inline (Super_Find_Token);
pragma Inline (Super_Index);
pragma Inline (Super_Index_Non_Blank);
pragma Inline (Super_Length);
pragma Inline (Super_Replace_Element);
pragma Inline (Super_Slice);
pragma Inline (Super_To_String);
end Ada.Strings.Wide_Superbounded;
| 32.38 | 79 | 0.600926 |
9a9e14b3f4874afc0921ebb77ec384873b9c994e | 3,821 | adb | Ada | testsuite/tests/bmp_file_output/src/tc_bmp_file_output.adb | ellamosi/Ada_BMP_Library | c1de8ce0127dd6b264a6e5abcd721a26bf005c3f | [
"BSD-3-Clause"
] | null | null | null | testsuite/tests/bmp_file_output/src/tc_bmp_file_output.adb | ellamosi/Ada_BMP_Library | c1de8ce0127dd6b264a6e5abcd721a26bf005c3f | [
"BSD-3-Clause"
] | null | null | null | testsuite/tests/bmp_file_output/src/tc_bmp_file_output.adb | ellamosi/Ada_BMP_Library | c1de8ce0127dd6b264a6e5abcd721a26bf005c3f | [
"BSD-3-Clause"
] | null | null | null | with Test_Directories; use Test_Directories;
with Ada.Text_IO; use Ada.Text_IO;
with Ada.Streams.Stream_IO; use Ada.Streams.Stream_IO;
with Bitmap; use Bitmap;
with Bitmap.Buffer; use Bitmap.Buffer;
with Bitmap.File_IO; use Bitmap.File_IO;
with Bitmap.Memory_Mapped; use Bitmap.Memory_Mapped;
with Compare_Files;
procedure TC_BMP_File_Output is
BM_Width : constant := 100;
BM_Height : constant := 100;
function Allocate_Bitmap return not null Any_Bitmap_Buffer;
---------------------
-- Allocate_Bitmap --
---------------------
function Allocate_Bitmap return not null Any_Bitmap_Buffer is
type Pixel_Data is new Bitmap.UInt16_Array (1 .. BM_Height * BM_Height) with Pack;
type Pixel_Data_Access is access Pixel_Data;
BM : constant Any_Memory_Mapped_Bitmap_Buffer := new Memory_Mapped_Bitmap_Buffer;
Data : constant Pixel_Data_Access := new Pixel_Data;
begin
BM.Actual_Width := BM_Width;
BM.Actual_Height := BM_Height;
BM.Actual_Color_Mode := RGB_565;
BM.Currently_Swapped := False;
BM.Addr := Data.all'Address;
return Any_Bitmap_Buffer (BM);
end Allocate_Bitmap;
BMP_File : Ada.Streams.Stream_IO.File_Type;
BM : constant not null Any_Bitmap_Buffer := Allocate_Bitmap;
Filename : constant String := "test.bmp";
begin
Create (BMP_File, Out_File, Test_Dir & "/" & Filename);
BM.Fill (Black);
BM.Fill_Rounded_Rect (Color => Green,
Area => ((5, 5), BM_Width / 2, BM_Height / 2),
Radius => 10);
BM.Draw_Rounded_Rect (Color => Red,
Area => ((5, 5), BM_Width / 2, BM_Height / 2),
Radius => 10,
Thickness => 3);
BM.Fill_Circle (Color => Yellow,
Center => (BM_Width / 2, BM_Height / 2),
Radius => BM_Width / 4);
BM.Draw_Circle (Color => Blue,
Center => (BM_Width / 2, BM_Height / 2),
Radius => BM_Width / 4);
BM.Cubic_Bezier (Color => Violet,
P1 => (5, 5),
P2 => (0, BM_Height / 2),
P3 => (BM_Width / 2, BM_Height / 2),
P4 => (BM_Width - 5, BM_Height - 5),
N => 100,
Thickness => 3);
BM.Draw_Line (Color => White,
Start => (0, 0),
Stop => (BM_Width - 1, BM_Height / 2),
Thickness => 1,
Fast => True);
BM.Set_Pixel ((0, 0), Red);
BM.Set_Pixel ((0, 1), Green);
BM.Set_Pixel ((0, 2), Blue);
Copy_Rect (Src_Buffer => BM.all,
Src_Pt => (0, 0),
Dst_Buffer => BM.all,
Dst_Pt => (0, BM_Height / 2 + 10),
Width => BM_Width / 4,
Height => BM_Height / 4,
Synchronous => True);
Write_BMP_File (BMP_File, BM.all);
Close (BMP_File);
if not Compare_Files.Binnary_Equal (Test_Dir & "/" & Filename,
Test_Dir & "/ref.bmp")
then
Put_Line ("BMP file writing test FAILED.");
Put_Line ("Output BMP is different than the reference.");
Put_Line ("This could mean that:");
Put_Line (" 1 - Bitmap drawing is broken");
Put_Line (" 2 - Bitmap file output is broken");
Put_Line (" 3 - You changed/improved bitmap drawing");
New_Line;
Put_Line ("When 1 or 2, please fix the problem,");
Put_Line ("When 3 please update the reference bitmap and exaplaining" &
" the changes you made.");
else
Put_Line ("BMP file writing test OK");
end if;
end TC_BMP_File_Output;
| 36.04717 | 88 | 0.540696 |
0367bebd727150267ecb121eac9ed7d33d3dfac8 | 16,734 | adb | Ada | gcc-gcc-7_3_0-release/gcc/ada/elists.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 15 | 2015-01-18T23:04:19.000Z | 2022-03-01T20:27:08.000Z | gcc-gcc-7_3_0-release/gcc/ada/elists.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 16 | 2018-06-10T07:09:30.000Z | 2022-03-26T18:28:40.000Z | gcc-gcc-7_3_0-release/gcc/ada/elists.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 3 | 2015-11-11T18:00:14.000Z | 2022-01-30T23:08:45.000Z | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- E L I S T S --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2015, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- WARNING: There is a C version of this package. Any changes to this
-- source file must be properly reflected in the C header a-elists.h.
with Alloc;
with Debug; use Debug;
with Output; use Output;
with Table;
package body Elists is
-------------------------------------
-- Implementation of Element Lists --
-------------------------------------
-- Element lists are composed of three types of entities. The element
-- list header, which references the first and last elements of the
-- list, the elements themselves which are singly linked and also
-- reference the nodes on the list, and finally the nodes themselves.
-- The following diagram shows how an element list is represented:
-- +----------------------------------------------------+
-- | +------------------------------------------+ |
-- | | | |
-- V | V |
-- +-----|--+ +-------+ +-------+ +-------+ |
-- | Elmt | | 1st | | 2nd | | Last | |
-- | List |--->| Elmt |--->| Elmt ---...-->| Elmt ---+
-- | Header | | | | | | | | | |
-- +--------+ +---|---+ +---|---+ +---|---+
-- | | |
-- V V V
-- +-------+ +-------+ +-------+
-- | | | | | |
-- | Node1 | | Node2 | | Node3 |
-- | | | | | |
-- +-------+ +-------+ +-------+
-- The list header is an entry in the Elists table. The values used for
-- the type Elist_Id are subscripts into this table. The First_Elmt field
-- (Lfield1) points to the first element on the list, or to No_Elmt in the
-- case of an empty list. Similarly the Last_Elmt field (Lfield2) points to
-- the last element on the list or to No_Elmt in the case of an empty list.
-- The elements themselves are entries in the Elmts table. The Next field
-- of each entry points to the next element, or to the Elist header if this
-- is the last item in the list. The Node field points to the node which
-- is referenced by the corresponding list entry.
-------------------------
-- Element List Tables --
-------------------------
type Elist_Header is record
First : Elmt_Id;
Last : Elmt_Id;
end record;
package Elists is new Table.Table (
Table_Component_Type => Elist_Header,
Table_Index_Type => Elist_Id'Base,
Table_Low_Bound => First_Elist_Id,
Table_Initial => Alloc.Elists_Initial,
Table_Increment => Alloc.Elists_Increment,
Table_Name => "Elists");
type Elmt_Item is record
Node : Node_Or_Entity_Id;
Next : Union_Id;
end record;
package Elmts is new Table.Table (
Table_Component_Type => Elmt_Item,
Table_Index_Type => Elmt_Id'Base,
Table_Low_Bound => First_Elmt_Id,
Table_Initial => Alloc.Elmts_Initial,
Table_Increment => Alloc.Elmts_Increment,
Table_Name => "Elmts");
-----------------
-- Append_Elmt --
-----------------
procedure Append_Elmt (N : Node_Or_Entity_Id; To : Elist_Id) is
L : constant Elmt_Id := Elists.Table (To).Last;
begin
Elmts.Increment_Last;
Elmts.Table (Elmts.Last).Node := N;
Elmts.Table (Elmts.Last).Next := Union_Id (To);
if L = No_Elmt then
Elists.Table (To).First := Elmts.Last;
else
Elmts.Table (L).Next := Union_Id (Elmts.Last);
end if;
Elists.Table (To).Last := Elmts.Last;
if Debug_Flag_N then
Write_Str ("Append new element Elmt_Id = ");
Write_Int (Int (Elmts.Last));
Write_Str (" to list Elist_Id = ");
Write_Int (Int (To));
Write_Str (" referencing Node_Or_Entity_Id = ");
Write_Int (Int (N));
Write_Eol;
end if;
end Append_Elmt;
---------------------
-- Append_New_Elmt --
---------------------
procedure Append_New_Elmt (N : Node_Or_Entity_Id; To : in out Elist_Id) is
begin
if To = No_Elist then
To := New_Elmt_List;
end if;
Append_Elmt (N, To);
end Append_New_Elmt;
------------------------
-- Append_Unique_Elmt --
------------------------
procedure Append_Unique_Elmt (N : Node_Or_Entity_Id; To : Elist_Id) is
Elmt : Elmt_Id;
begin
Elmt := First_Elmt (To);
loop
if No (Elmt) then
Append_Elmt (N, To);
return;
elsif Node (Elmt) = N then
return;
else
Next_Elmt (Elmt);
end if;
end loop;
end Append_Unique_Elmt;
--------------
-- Contains --
--------------
function Contains (List : Elist_Id; N : Node_Or_Entity_Id) return Boolean is
Elmt : Elmt_Id;
begin
if Present (List) then
Elmt := First_Elmt (List);
while Present (Elmt) loop
if Node (Elmt) = N then
return True;
end if;
Next_Elmt (Elmt);
end loop;
end if;
return False;
end Contains;
--------------------
-- Elists_Address --
--------------------
function Elists_Address return System.Address is
begin
return Elists.Table (First_Elist_Id)'Address;
end Elists_Address;
-------------------
-- Elmts_Address --
-------------------
function Elmts_Address return System.Address is
begin
return Elmts.Table (First_Elmt_Id)'Address;
end Elmts_Address;
----------------
-- First_Elmt --
----------------
function First_Elmt (List : Elist_Id) return Elmt_Id is
begin
pragma Assert (List > Elist_Low_Bound);
return Elists.Table (List).First;
end First_Elmt;
----------------
-- Initialize --
----------------
procedure Initialize is
begin
Elists.Init;
Elmts.Init;
end Initialize;
-----------------------
-- Insert_Elmt_After --
-----------------------
procedure Insert_Elmt_After (N : Node_Or_Entity_Id; Elmt : Elmt_Id) is
Nxt : constant Union_Id := Elmts.Table (Elmt).Next;
begin
pragma Assert (Elmt /= No_Elmt);
Elmts.Increment_Last;
Elmts.Table (Elmts.Last).Node := N;
Elmts.Table (Elmts.Last).Next := Nxt;
Elmts.Table (Elmt).Next := Union_Id (Elmts.Last);
if Nxt in Elist_Range then
Elists.Table (Elist_Id (Nxt)).Last := Elmts.Last;
end if;
end Insert_Elmt_After;
------------------------
-- Is_Empty_Elmt_List --
------------------------
function Is_Empty_Elmt_List (List : Elist_Id) return Boolean is
begin
return Elists.Table (List).First = No_Elmt;
end Is_Empty_Elmt_List;
-------------------
-- Last_Elist_Id --
-------------------
function Last_Elist_Id return Elist_Id is
begin
return Elists.Last;
end Last_Elist_Id;
---------------
-- Last_Elmt --
---------------
function Last_Elmt (List : Elist_Id) return Elmt_Id is
begin
return Elists.Table (List).Last;
end Last_Elmt;
------------------
-- Last_Elmt_Id --
------------------
function Last_Elmt_Id return Elmt_Id is
begin
return Elmts.Last;
end Last_Elmt_Id;
-----------------
-- List_Length --
-----------------
function List_Length (List : Elist_Id) return Nat is
Elmt : Elmt_Id;
N : Nat;
begin
if List = No_Elist then
return 0;
else
N := 0;
Elmt := First_Elmt (List);
loop
if No (Elmt) then
return N;
else
N := N + 1;
Next_Elmt (Elmt);
end if;
end loop;
end if;
end List_Length;
----------
-- Lock --
----------
procedure Lock is
begin
Elists.Locked := True;
Elmts.Locked := True;
Elists.Release;
Elmts.Release;
end Lock;
--------------------
-- New_Copy_Elist --
--------------------
function New_Copy_Elist (List : Elist_Id) return Elist_Id is
Result : Elist_Id;
Elmt : Elmt_Id;
begin
if List = No_Elist then
return No_Elist;
-- Replicate the contents of the input list while preserving the
-- original order.
else
Result := New_Elmt_List;
Elmt := First_Elmt (List);
while Present (Elmt) loop
Append_Elmt (Node (Elmt), Result);
Next_Elmt (Elmt);
end loop;
return Result;
end if;
end New_Copy_Elist;
-------------------
-- New_Elmt_List --
-------------------
function New_Elmt_List return Elist_Id is
begin
Elists.Increment_Last;
Elists.Table (Elists.Last).First := No_Elmt;
Elists.Table (Elists.Last).Last := No_Elmt;
if Debug_Flag_N then
Write_Str ("Allocate new element list, returned ID = ");
Write_Int (Int (Elists.Last));
Write_Eol;
end if;
return Elists.Last;
end New_Elmt_List;
---------------
-- Next_Elmt --
---------------
function Next_Elmt (Elmt : Elmt_Id) return Elmt_Id is
N : constant Union_Id := Elmts.Table (Elmt).Next;
begin
if N in Elist_Range then
return No_Elmt;
else
return Elmt_Id (N);
end if;
end Next_Elmt;
procedure Next_Elmt (Elmt : in out Elmt_Id) is
begin
Elmt := Next_Elmt (Elmt);
end Next_Elmt;
--------
-- No --
--------
function No (List : Elist_Id) return Boolean is
begin
return List = No_Elist;
end No;
function No (Elmt : Elmt_Id) return Boolean is
begin
return Elmt = No_Elmt;
end No;
----------
-- Node --
----------
function Node (Elmt : Elmt_Id) return Node_Or_Entity_Id is
begin
if Elmt = No_Elmt then
return Empty;
else
return Elmts.Table (Elmt).Node;
end if;
end Node;
----------------
-- Num_Elists --
----------------
function Num_Elists return Nat is
begin
return Int (Elmts.Last) - Int (Elmts.First) + 1;
end Num_Elists;
------------------
-- Prepend_Elmt --
------------------
procedure Prepend_Elmt (N : Node_Or_Entity_Id; To : Elist_Id) is
F : constant Elmt_Id := Elists.Table (To).First;
begin
Elmts.Increment_Last;
Elmts.Table (Elmts.Last).Node := N;
if F = No_Elmt then
Elists.Table (To).Last := Elmts.Last;
Elmts.Table (Elmts.Last).Next := Union_Id (To);
else
Elmts.Table (Elmts.Last).Next := Union_Id (F);
end if;
Elists.Table (To).First := Elmts.Last;
end Prepend_Elmt;
-------------
-- Present --
-------------
function Present (List : Elist_Id) return Boolean is
begin
return List /= No_Elist;
end Present;
function Present (Elmt : Elmt_Id) return Boolean is
begin
return Elmt /= No_Elmt;
end Present;
------------
-- Remove --
------------
procedure Remove (List : Elist_Id; N : Node_Or_Entity_Id) is
Elmt : Elmt_Id;
begin
if Present (List) then
Elmt := First_Elmt (List);
while Present (Elmt) loop
if Node (Elmt) = N then
Remove_Elmt (List, Elmt);
exit;
end if;
Next_Elmt (Elmt);
end loop;
end if;
end Remove;
-----------------
-- Remove_Elmt --
-----------------
procedure Remove_Elmt (List : Elist_Id; Elmt : Elmt_Id) is
Nxt : Elmt_Id;
Prv : Elmt_Id;
begin
Nxt := Elists.Table (List).First;
-- Case of removing only element in the list
if Elmts.Table (Nxt).Next in Elist_Range then
pragma Assert (Nxt = Elmt);
Elists.Table (List).First := No_Elmt;
Elists.Table (List).Last := No_Elmt;
-- Case of removing the first element in the list
elsif Nxt = Elmt then
Elists.Table (List).First := Elmt_Id (Elmts.Table (Nxt).Next);
-- Case of removing second or later element in the list
else
loop
Prv := Nxt;
Nxt := Elmt_Id (Elmts.Table (Prv).Next);
exit when Nxt = Elmt
or else Elmts.Table (Nxt).Next in Elist_Range;
end loop;
pragma Assert (Nxt = Elmt);
Elmts.Table (Prv).Next := Elmts.Table (Nxt).Next;
if Elmts.Table (Prv).Next in Elist_Range then
Elists.Table (List).Last := Prv;
end if;
end if;
end Remove_Elmt;
----------------------
-- Remove_Last_Elmt --
----------------------
procedure Remove_Last_Elmt (List : Elist_Id) is
Nxt : Elmt_Id;
Prv : Elmt_Id;
begin
Nxt := Elists.Table (List).First;
-- Case of removing only element in the list
if Elmts.Table (Nxt).Next in Elist_Range then
Elists.Table (List).First := No_Elmt;
Elists.Table (List).Last := No_Elmt;
-- Case of at least two elements in list
else
loop
Prv := Nxt;
Nxt := Elmt_Id (Elmts.Table (Prv).Next);
exit when Elmts.Table (Nxt).Next in Elist_Range;
end loop;
Elmts.Table (Prv).Next := Elmts.Table (Nxt).Next;
Elists.Table (List).Last := Prv;
end if;
end Remove_Last_Elmt;
------------------
-- Replace_Elmt --
------------------
procedure Replace_Elmt (Elmt : Elmt_Id; New_Node : Node_Or_Entity_Id) is
begin
Elmts.Table (Elmt).Node := New_Node;
end Replace_Elmt;
---------------
-- Tree_Read --
---------------
procedure Tree_Read is
begin
Elists.Tree_Read;
Elmts.Tree_Read;
end Tree_Read;
----------------
-- Tree_Write --
----------------
procedure Tree_Write is
begin
Elists.Tree_Write;
Elmts.Tree_Write;
end Tree_Write;
------------
-- Unlock --
------------
procedure Unlock is
begin
Elists.Locked := False;
Elmts.Locked := False;
end Unlock;
end Elists;
| 27.751244 | 79 | 0.484523 |
8b209e40325cba3c9910c918dab749eb4967dd9f | 2,132 | ads | Ada | tests/src/test_transforms_singles_matrices.ads | onox/orka | 9edf99559a16ffa96dfdb208322f4d18efbcbac6 | [
"Apache-2.0"
] | 52 | 2016-07-30T23:00:28.000Z | 2022-02-05T11:54:55.000Z | tests/src/test_transforms_singles_matrices.ads | onox/orka | 9edf99559a16ffa96dfdb208322f4d18efbcbac6 | [
"Apache-2.0"
] | 79 | 2016-08-01T18:36:48.000Z | 2022-02-27T12:14:20.000Z | tests/src/test_transforms_singles_matrices.ads | onox/orka | 9edf99559a16ffa96dfdb208322f4d18efbcbac6 | [
"Apache-2.0"
] | 4 | 2018-04-28T22:36:26.000Z | 2020-11-14T23:00:29.000Z | -- SPDX-License-Identifier: Apache-2.0
--
-- Copyright (c) 2016 onox <[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 AUnit.Test_Suites;
with AUnit.Test_Fixtures;
package Test_Transforms_Singles_Matrices is
function Suite return AUnit.Test_Suites.Access_Test_Suite;
private
type Test is new AUnit.Test_Fixtures.Test_Fixture with null record;
procedure Test_T (Object : in out Test);
procedure Test_Rx (Object : in out Test);
procedure Test_Ry (Object : in out Test);
procedure Test_Rz (Object : in out Test);
procedure Test_R (Object : in out Test);
procedure Test_S (Object : in out Test);
procedure Test_Add_Offset (Object : in out Test);
procedure Test_Multiply_Factor (Object : in out Test);
procedure Test_Rotate_At_Origin (Object : in out Test);
procedure Test_Rotate (Object : in out Test);
procedure Test_Rotate_X_At_Origin (Object : in out Test);
procedure Test_Rotate_Y_At_Origin (Object : in out Test);
procedure Test_Rotate_Z_At_Origin (Object : in out Test);
procedure Test_Rotate_X (Object : in out Test);
procedure Test_Rotate_Y (Object : in out Test);
procedure Test_Rotate_Z (Object : in out Test);
procedure Test_Translate (Object : in out Test);
procedure Test_Scale_Factors (Object : in out Test);
procedure Test_Scale_Factor (Object : in out Test);
procedure Test_Transpose (Object : in out Test);
procedure Test_Diagonal (Object : in out Test);
procedure Test_Main_Diagonal (Object : in out Test);
procedure Test_Trace (Object : in out Test);
end Test_Transforms_Singles_Matrices;
| 40.226415 | 76 | 0.742964 |
1ef2649598ddf80cb906bbf8974655c638cef1ed | 5,260 | ads | Ada | bb-runtimes/riscv/sifive/fe310/svd/i-fe310-plic.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | bb-runtimes/riscv/sifive/fe310/svd/i-fe310-plic.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | bb-runtimes/riscv/sifive/fe310/svd/i-fe310-plic.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | --
-- Copyright (C) 2019, AdaCore
--
-- This spec has been automatically generated from FE310.svd
pragma Ada_2012;
pragma Style_Checks (Off);
with System;
package Interfaces.FE310.PLIC is
pragma Preelaborate;
pragma No_Elaboration_Code_All;
---------------
-- Registers --
---------------
subtype PRIORITY_PRIORITY_Field is Interfaces.FE310.UInt3;
-- PLIC Interrupt Priority Register.
type PRIORITY_Register is record
PRIORITY : PRIORITY_PRIORITY_Field := 16#0#;
-- unspecified
Reserved_3_31 : Interfaces.FE310.UInt29 := 16#0#;
end record
with Volatile, Size => 32,
Bit_Order => System.Low_Order_First;
for PRIORITY_Register use record
PRIORITY at 0 range 0 .. 2;
Reserved_3_31 at 0 range 3 .. 31;
end record;
-- PLIC Interrupt Priority Register.
type PRIORITY_Registers is array (0 .. 51) of PRIORITY_Register;
-- PENDING_INT array
type PENDING_INT_Field_Array is array (0 .. 31) of Boolean
with Component_Size => 1, Size => 32;
-- PLIC Interrupt Pending Register.
type PENDING_Register
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- INT as a value
Val : Interfaces.FE310.UInt32;
when True =>
-- INT as an array
Arr : PENDING_INT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 32, Volatile,
Bit_Order => System.Low_Order_First;
for PENDING_Register use record
Val at 0 range 0 .. 31;
Arr at 0 range 0 .. 31;
end record;
-- PLIC Interrupt Pending Register.
type PENDING_Registers is array (0 .. 1) of PENDING_Register;
---------------------------------------
-- TARGET_ENABLE cluster's Registers --
---------------------------------------
-- ENABLE_TARGET_ENABLE_INT array
type ENABLE_TARGET_ENABLE_INT_Field_Array is array (0 .. 31) of Boolean
with Component_Size => 1, Size => 32;
-- PLIC Interrupt Enable Register.
type ENABLE_TARGET_ENABLE_Register
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- INT as a value
Val : Interfaces.FE310.UInt32;
when True =>
-- INT as an array
Arr : ENABLE_TARGET_ENABLE_INT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 32, Volatile,
Bit_Order => System.Low_Order_First;
for ENABLE_TARGET_ENABLE_Register use record
Val at 0 range 0 .. 31;
Arr at 0 range 0 .. 31;
end record;
-- PLIC Interrupt Enable Register.
type ENABLE_TARGET_ENABLE_Registers is array (0 .. 1)
of ENABLE_TARGET_ENABLE_Register;
type TARGET_ENABLE_Cluster is record
-- PLIC Interrupt Enable Register.
ENABLE : aliased ENABLE_TARGET_ENABLE_Registers;
end record
with Size => 64;
for TARGET_ENABLE_Cluster use record
ENABLE at 0 range 0 .. 63;
end record;
--------------------------------
-- TARGET cluster's Registers --
--------------------------------
subtype THRESHOLD_TARGET_THRESHOLD_Field is Interfaces.FE310.UInt3;
-- PLIC Interrupt Priority Threshold Register.
type THRESHOLD_TARGET_Register is record
THRESHOLD : THRESHOLD_TARGET_THRESHOLD_Field := 16#0#;
-- unspecified
Reserved_3_31 : Interfaces.FE310.UInt29 := 16#0#;
end record
with Volatile, Size => 32,
Bit_Order => System.Low_Order_First;
for THRESHOLD_TARGET_Register use record
THRESHOLD at 0 range 0 .. 2;
Reserved_3_31 at 0 range 3 .. 31;
end record;
type TARGET_Disc is
(Laim,
Omplete);
type TARGET_Cluster
(Discriminent : TARGET_Disc := Laim)
is record
-- PLIC Interrupt Priority Threshold Register.
THRESHOLD : aliased THRESHOLD_TARGET_Register;
case Discriminent is
when Laim =>
-- PLIC Claim Register.
CLAIM : aliased Interfaces.FE310.UInt32;
when Omplete =>
-- PLIC Complete Register.
COMPLETE : aliased Interfaces.FE310.UInt32;
end case;
end record
with Unchecked_Union, Size => 64;
for TARGET_Cluster use record
THRESHOLD at 16#0# range 0 .. 31;
CLAIM at 16#4# range 0 .. 31;
COMPLETE at 16#4# range 0 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- Platform-Level Interrupt Controller.
type PLIC_Peripheral is record
-- PLIC Interrupt Priority Register.
PRIORITY : aliased PRIORITY_Registers;
-- PLIC Interrupt Pending Register.
PENDING : aliased PENDING_Registers;
TARGET_ENABLE : aliased TARGET_ENABLE_Cluster;
TARGET : aliased TARGET_Cluster;
end record
with Volatile;
for PLIC_Peripheral use record
PRIORITY at 16#0# range 0 .. 1663;
PENDING at 16#1000# range 0 .. 63;
TARGET_ENABLE at 16#2080# range 0 .. 63;
TARGET at 16#201000# range 0 .. 63;
end record;
-- Platform-Level Interrupt Controller.
PLIC_Periph : aliased PLIC_Peripheral
with Import, Address => PLIC_Base;
end Interfaces.FE310.PLIC;
| 28.743169 | 74 | 0.6173 |
1e979c8a7cc18b8fff83cb45d2bc3a01cb55e12c | 6,246 | adb | Ada | bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/s-pack49.adb | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/s-pack49.adb | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/s-pack49.adb | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . P A C K _ 4 9 --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2021, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with System.Storage_Elements;
with System.Unsigned_Types;
package body System.Pack_49 is
subtype Bit_Order is System.Bit_Order;
Reverse_Bit_Order : constant Bit_Order :=
Bit_Order'Val (1 - Bit_Order'Pos (System.Default_Bit_Order));
subtype Ofs is System.Storage_Elements.Storage_Offset;
subtype Uns is System.Unsigned_Types.Unsigned;
subtype N07 is System.Unsigned_Types.Unsigned range 0 .. 7;
use type System.Storage_Elements.Storage_Offset;
use type System.Unsigned_Types.Unsigned;
type Cluster is record
E0, E1, E2, E3, E4, E5, E6, E7 : Bits_49;
end record;
for Cluster use record
E0 at 0 range 0 * Bits .. 0 * Bits + Bits - 1;
E1 at 0 range 1 * Bits .. 1 * Bits + Bits - 1;
E2 at 0 range 2 * Bits .. 2 * Bits + Bits - 1;
E3 at 0 range 3 * Bits .. 3 * Bits + Bits - 1;
E4 at 0 range 4 * Bits .. 4 * Bits + Bits - 1;
E5 at 0 range 5 * Bits .. 5 * Bits + Bits - 1;
E6 at 0 range 6 * Bits .. 6 * Bits + Bits - 1;
E7 at 0 range 7 * Bits .. 7 * Bits + Bits - 1;
end record;
for Cluster'Size use Bits * 8;
for Cluster'Alignment use Integer'Min (Standard'Maximum_Alignment,
1 +
1 * Boolean'Pos (Bits mod 2 = 0) +
2 * Boolean'Pos (Bits mod 4 = 0));
-- Use maximum possible alignment, given the bit field size, since this
-- will result in the most efficient code possible for the field.
type Cluster_Ref is access Cluster;
type Rev_Cluster is new Cluster
with Bit_Order => Reverse_Bit_Order,
Scalar_Storage_Order => Reverse_Bit_Order;
type Rev_Cluster_Ref is access Rev_Cluster;
------------
-- Get_49 --
------------
function Get_49
(Arr : System.Address;
N : Natural;
Rev_SSO : Boolean) return Bits_49
is
A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8);
C : Cluster_Ref with Address => A'Address, Import;
RC : Rev_Cluster_Ref with Address => A'Address, Import;
begin
if Rev_SSO then
case N07 (Uns (N) mod 8) is
when 0 => return RC.E0;
when 1 => return RC.E1;
when 2 => return RC.E2;
when 3 => return RC.E3;
when 4 => return RC.E4;
when 5 => return RC.E5;
when 6 => return RC.E6;
when 7 => return RC.E7;
end case;
else
case N07 (Uns (N) mod 8) is
when 0 => return C.E0;
when 1 => return C.E1;
when 2 => return C.E2;
when 3 => return C.E3;
when 4 => return C.E4;
when 5 => return C.E5;
when 6 => return C.E6;
when 7 => return C.E7;
end case;
end if;
end Get_49;
------------
-- Set_49 --
------------
procedure Set_49
(Arr : System.Address;
N : Natural;
E : Bits_49;
Rev_SSO : Boolean)
is
A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8);
C : Cluster_Ref with Address => A'Address, Import;
RC : Rev_Cluster_Ref with Address => A'Address, Import;
begin
if Rev_SSO then
case N07 (Uns (N) mod 8) is
when 0 => RC.E0 := E;
when 1 => RC.E1 := E;
when 2 => RC.E2 := E;
when 3 => RC.E3 := E;
when 4 => RC.E4 := E;
when 5 => RC.E5 := E;
when 6 => RC.E6 := E;
when 7 => RC.E7 := E;
end case;
else
case N07 (Uns (N) mod 8) is
when 0 => C.E0 := E;
when 1 => C.E1 := E;
when 2 => C.E2 := E;
when 3 => C.E3 := E;
when 4 => C.E4 := E;
when 5 => C.E5 := E;
when 6 => C.E6 := E;
when 7 => C.E7 := E;
end case;
end if;
end Set_49;
end System.Pack_49;
| 39.531646 | 78 | 0.434198 |
033a769433d3cc7f8ec47d3f3b8157985cd18ab9 | 199 | adb | Ada | loop_test.adb | kylelk/ada-examples | 990af2923efcf16a035054fd83ab9ac603fe9613 | [
"MIT"
] | 1 | 2021-06-28T11:11:09.000Z | 2021-06-28T11:11:09.000Z | loop_test.adb | kylelk/ada-examples | 990af2923efcf16a035054fd83ab9ac603fe9613 | [
"MIT"
] | null | null | null | loop_test.adb | kylelk/ada-examples | 990af2923efcf16a035054fd83ab9ac603fe9613 | [
"MIT"
] | null | null | null | with Ada.Text_IO, Ada.Integer_Text_IO;
use Ada;
procedure loop_test is
begin
for number in 0..10 loop
Integer_Text_IO.put(number);
Text_IO.New_Line;
end loop;
end loop_test;
| 18.090909 | 38 | 0.698492 |
9a0d56d259e90c85dc0245757a179ec25881eb90 | 3,024 | ads | Ada | src/dw1000-constants.ads | SALLYPEMDAS/DW1000 | ce2906596e479c83ce64673e8e7cf03856c45523 | [
"MIT"
] | 9 | 2016-07-06T21:26:41.000Z | 2020-11-22T11:21:58.000Z | src/dw1000-constants.ads | hao122065175/DW1000 | ce2906596e479c83ce64673e8e7cf03856c45523 | [
"MIT"
] | 1 | 2018-06-19T15:20:41.000Z | 2018-06-19T21:14:31.000Z | src/dw1000-constants.ads | hao122065175/DW1000 | ce2906596e479c83ce64673e8e7cf03856c45523 | [
"MIT"
] | 4 | 2018-07-18T03:35:25.000Z | 2020-11-22T11:21:59.000Z | -------------------------------------------------------------------------------
-- Copyright (c) 2016 Daniel King
--
-- Permission is hereby granted, free of charge, to any person obtaining a
-- copy of this software and associated documentation files (the "Software"),
-- to deal in the Software without restriction, including without limitation
-- the rights to use, copy, modify, merge, publish, distribute, sublicense,
-- and/or sell copies of the Software, and to permit persons to whom the
-- Software is furnished to do so, subject to the following conditions:
--
-- The above copyright notice and this permission notice shall be included in
-- all copies or substantial portions of the Software.
--
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-- DEALINGS IN THE SOFTWARE.
-------------------------------------------------------------------------------
with DW1000.Types; use DW1000.Types;
with DW1000.Register_Types; use DW1000.Register_Types;
package DW1000.Constants
with SPARK_Mode => On
is
----------------------------------------------------------------------------
-- OTP memory word addresses
OTP_ADDR_EUID : constant OTP_ADDR_Field := 16#00#;
OTP_ADDR_LDOTUNE_CAL : constant OTP_ADDR_Field := 16#04#;
OTP_ADDR_CHIP_ID : constant OTP_ADDR_Field := 16#06#;
OTP_ADDR_LOT_ID : constant OTP_ADDR_Field := 16#07#;
OTP_ADDR_CH1_TX_POWER_PRF_16 : constant OTP_ADDR_Field := 16#10#;
OTP_ADDR_CH1_TX_POWER_PRF_64 : constant OTP_ADDR_Field := 16#11#;
OTP_ADDR_CH2_TX_POWER_PRF_16 : constant OTP_ADDR_Field := 16#12#;
OTP_ADDR_CH2_TX_POWER_PRF_64 : constant OTP_ADDR_Field := 16#13#;
OTP_ADDR_CH3_TX_POWER_PRF_16 : constant OTP_ADDR_Field := 16#14#;
OTP_ADDR_CH3_TX_POWER_PRF_64 : constant OTP_ADDR_Field := 16#15#;
OTP_ADDR_CH4_TX_POWER_PRF_16 : constant OTP_ADDR_Field := 16#16#;
OTP_ADDR_CH4_TX_POWER_PRF_64 : constant OTP_ADDR_Field := 16#17#;
OTP_ADDR_CH5_TX_POWER_PRF_16 : constant OTP_ADDR_Field := 16#18#;
OTP_ADDR_CH5_TX_POWER_PRF_64 : constant OTP_ADDR_Field := 16#19#;
OTP_ADDR_CH7_TX_POWER_PRF_16 : constant OTP_ADDR_Field := 16#1A#;
OTP_ADDR_CH7_TX_POWER_PRF_64 : constant OTP_ADDR_Field := 16#1B#;
OTP_ADDR_ANTENNA_DELAY : constant OTP_ADDR_Field := 16#1C#;
OTP_ADDR_XTAL_TRIM : constant OTP_ADDR_Field := 16#E0#;
----------------------------------------------------------------------------
-- Buffer lengths
TX_BUFFER_Length : constant := 1024;
RX_BUFFER_Length : constant := 1024;
end DW1000.Constants;
| 53.052632 | 79 | 0.655754 |
031deeafea90724c4400ef1a74ba7a92c32499d6 | 867 | adb | Ada | contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/tagged_not_init/foo.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/tagged_not_init/foo.adb | TheSledgeHammer/2.11BSD | fe61f0b9aaa273783cd027c7b5ec77e95ead2153 | [
"BSD-3-Clause"
] | null | null | null | contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/tagged_not_init/foo.adb | TheSledgeHammer/2.11BSD | fe61f0b9aaa273783cd027c7b5ec77e95ead2153 | [
"BSD-3-Clause"
] | null | null | null | -- Copyright 2012-2020 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
with Pck; use Pck;
procedure Foo is
I : Integer := Ident (10); -- STOP
Obj : Base;
begin
Obj.X := I;
Do_Nothing (Obj.X'Address);
end Foo;
| 34.68 | 73 | 0.712803 |
8b9569305d40c3d2a51952036bd86e07c10f4a29 | 73,586 | adb | Ada | actions/hls_helloworld_1024/hw/hlsUpperCase_xcvu3p-ffvc1517-2-e/helloworld/.autopilot/db/hls_action.adb | bizoffermark/oc-accel | bb34678bf2bff631e5432bdfaff7ed0c2a35a20f | [
"Apache-2.0"
] | null | null | null | actions/hls_helloworld_1024/hw/hlsUpperCase_xcvu3p-ffvc1517-2-e/helloworld/.autopilot/db/hls_action.adb | bizoffermark/oc-accel | bb34678bf2bff631e5432bdfaff7ed0c2a35a20f | [
"Apache-2.0"
] | null | null | null | actions/hls_helloworld_1024/hw/hlsUpperCase_xcvu3p-ffvc1517-2-e/helloworld/.autopilot/db/hls_action.adb | bizoffermark/oc-accel | bb34678bf2bff631e5432bdfaff7ed0c2a35a20f | [
"Apache-2.0"
] | null | null | null | <?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>hls_action</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>1</id>
<name>host_mem</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/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>1024</bitwidth>
</Value>
<direction>2</direction>
<if_type>4</if_type>
<array_size>0</array_size>
<bit_vecs class_id="7" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_2">
<Value>
<Obj>
<type>1</type>
<id>2</id>
<name>din_gmem_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>din_gmem.V</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_3">
<Value>
<Obj>
<type>1</type>
<id>3</id>
<name>dout_gmem_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>dout_gmem.V</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_4">
<Value>
<Obj>
<type>1</type>
<id>4</id>
<name>act_reg</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>act_reg</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>992</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>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>13</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_5">
<Value>
<Obj>
<type>0</type>
<id>5</id>
<name>dout_gmem_V_read</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>dout_gmem.V</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>28</item>
<item>29</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.00</m_delay>
<m_topoIndex>1</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_6">
<Value>
<Obj>
<type>0</type>
<id>6</id>
<name>din_gmem_V_read</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>din_gmem.V</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>30</item>
<item>31</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.00</m_delay>
<m_topoIndex>2</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_7">
<Value>
<Obj>
<type>0</type>
<id>7</id>
<name>dout_gmem_V3</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>dout_gmem_V3_reg_182</rtlName>
<coreName/>
</Obj>
<bitwidth>57</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>33</item>
<item>34</item>
<item>36</item>
<item>38</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>3</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_8">
<Value>
<Obj>
<type>0</type>
<id>8</id>
<name>din_gmem_V1</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>din_gmem_V1_reg_187</rtlName>
<coreName/>
</Obj>
<bitwidth>57</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>39</item>
<item>40</item>
<item>41</item>
<item>42</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>4</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_9">
<Value>
<Obj>
<type>0</type>
<id>17</id>
<name>act_reg_read</name>
<fileName>action_uppercase.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>hls_action</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="11" tracking_level="0" version="0">
<first>/home/bizoffermark/workspace/comp-arch/simulator/oc-accel/actions/hls_helloworld_1024/hw</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>action_uppercase.cpp</first>
<second>hls_action</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>992</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>44</item>
<item>45</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.00</m_delay>
<m_topoIndex>5</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>18</id>
<name>act_reg_Data_in_addr</name>
<fileName>action_uppercase.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>hls_action</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/bizoffermark/workspace/comp-arch/simulator/oc-accel/actions/hls_helloworld_1024/hw</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>action_uppercase.cpp</first>
<second>hls_action</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>act_reg_Data_in_addr_reg_192</rtlName>
<coreName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>47</item>
<item>48</item>
<item>50</item>
<item>52</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>6</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>19</id>
<name>act_reg_Data_in_size</name>
<fileName>action_uppercase.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>hls_action</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/bizoffermark/workspace/comp-arch/simulator/oc-accel/actions/hls_helloworld_1024/hw</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>action_uppercase.cpp</first>
<second>hls_action</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>act_reg_Data_in_size_reg_197</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>54</item>
<item>55</item>
<item>57</item>
<item>59</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>7</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>20</id>
<name>act_reg_Data_out_add</name>
<fileName>action_uppercase.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>hls_action</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/bizoffermark/workspace/comp-arch/simulator/oc-accel/actions/hls_helloworld_1024/hw</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>action_uppercase.cpp</first>
<second>hls_action</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>act_reg_Data_out_add_reg_202</rtlName>
<coreName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>60</item>
<item>61</item>
<item>63</item>
<item>65</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>8</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name>_ln103</name>
<fileName>action_uppercase.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>hls_action</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/bizoffermark/workspace/comp-arch/simulator/oc-accel/actions/hls_helloworld_1024/hw</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>action_uppercase.cpp</first>
<second>hls_action</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>grp_process_action_fu_103</rtlName>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>7</count>
<item_version>0</item_version>
<item>67</item>
<item>68</item>
<item>69</item>
<item>70</item>
<item>71</item>
<item>72</item>
<item>73</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.60</m_delay>
<m_topoIndex>9</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>22</id>
<name>act_reg_read_1</name>
<fileName>action_uppercase.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>hls_action</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/bizoffermark/workspace/comp-arch/simulator/oc-accel/actions/hls_helloworld_1024/hw</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>action_uppercase.cpp</first>
<second>hls_action</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>992</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>74</item>
<item>75</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.00</m_delay>
<m_topoIndex>10</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>23</id>
<name>act_reg8_part_set</name>
<fileName>action_uppercase.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>hls_action</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/bizoffermark/workspace/comp-arch/simulator/oc-accel/actions/hls_helloworld_1024/hw</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>action_uppercase.cpp</first>
<second>hls_action</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>act_reg_o</rtlName>
<coreName/>
</Obj>
<bitwidth>992</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>77</item>
<item>78</item>
<item>80</item>
<item>82</item>
<item>83</item>
</oprand_edges>
<opcode>partset</opcode>
<m_Display>0</m_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="_16">
<Value>
<Obj>
<type>0</type>
<id>24</id>
<name>act_reg_write_ln103</name>
<fileName>action_uppercase.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>hls_action</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/bizoffermark/workspace/comp-arch/simulator/oc-accel/actions/hls_helloworld_1024/hw</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>action_uppercase.cpp</first>
<second>hls_action</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>85</item>
<item>86</item>
<item>87</item>
<item>206</item>
<item>207</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.00</m_delay>
<m_topoIndex>12</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>25</id>
<name>_ln104</name>
<fileName>action_uppercase.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>104</lineNumber>
<contextFuncName>hls_action</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/bizoffermark/workspace/comp-arch/simulator/oc-accel/actions/hls_helloworld_1024/hw</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>action_uppercase.cpp</first>
<second>hls_action</second>
</first>
<second>104</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>13</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>11</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_18">
<Value>
<Obj>
<type>2</type>
<id>35</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>7</content>
</item>
<item class_id_reference="16" object_id="_19">
<Value>
<Obj>
<type>2</type>
<id>37</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="_20">
<Value>
<Obj>
<type>2</type>
<id>49</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="_21">
<Value>
<Obj>
<type>2</type>
<id>51</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="_22">
<Value>
<Obj>
<type>2</type>
<id>56</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="_23">
<Value>
<Obj>
<type>2</type>
<id>58</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="_24">
<Value>
<Obj>
<type>2</type>
<id>62</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="_25">
<Value>
<Obj>
<type>2</type>
<id>64</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>319</content>
</item>
<item class_id_reference="16" object_id="_26">
<Value>
<Obj>
<type>2</type>
<id>66</id>
<name>process_action</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:process_action></content>
</item>
<item class_id_reference="16" object_id="_27">
<Value>
<Obj>
<type>2</type>
<id>79</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>258</content>
</item>
<item class_id_reference="16" object_id="_28">
<Value>
<Obj>
<type>2</type>
<id>81</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>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_29">
<Obj>
<type>3</type>
<id>26</id>
<name>hls_action</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>13</count>
<item_version>0</item_version>
<item>5</item>
<item>6</item>
<item>7</item>
<item>8</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>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>34</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_30">
<id>29</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>5</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_31">
<id>31</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>6</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_32">
<id>34</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>7</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_33">
<id>36</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>7</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_34">
<id>38</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>7</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_35">
<id>40</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>8</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_36">
<id>41</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>8</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_37">
<id>42</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>8</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_38">
<id>45</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_39">
<id>48</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>18</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_40">
<id>50</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>18</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_41">
<id>52</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>18</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_42">
<id>55</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>19</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_43">
<id>57</id>
<edge_type>1</edge_type>
<source_obj>56</source_obj>
<sink_obj>19</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_44">
<id>59</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>19</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_45">
<id>61</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>20</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_46">
<id>63</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>20</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_47">
<id>65</id>
<edge_type>1</edge_type>
<source_obj>64</source_obj>
<sink_obj>20</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_48">
<id>67</id>
<edge_type>1</edge_type>
<source_obj>66</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_49">
<id>68</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_50">
<id>69</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_51">
<id>70</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_52">
<id>71</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_53">
<id>72</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_54">
<id>73</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_55">
<id>75</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_56">
<id>78</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_57">
<id>80</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_58">
<id>82</id>
<edge_type>1</edge_type>
<source_obj>81</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_59">
<id>83</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_60">
<id>86</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>24</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_61">
<id>87</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>24</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_62">
<id>206</id>
<edge_type>4</edge_type>
<source_obj>22</source_obj>
<sink_obj>24</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_63">
<id>207</id>
<edge_type>4</edge_type>
<source_obj>17</source_obj>
<sink_obj>24</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_64">
<mId>1</mId>
<mTag>hls_action</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>-1</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
</cdfg_regions>
<fsm class_id="24" tracking_level="1" version="0" object_id="_65">
<states class_id="25" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="26" tracking_level="1" version="0" object_id="_66">
<id>1</id>
<operations class_id="27" tracking_level="0" version="0">
<count>12</count>
<item_version>0</item_version>
<item class_id="28" tracking_level="1" version="0" object_id="_67">
<id>5</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_68">
<id>6</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_69">
<id>7</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_70">
<id>8</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_71">
<id>17</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_72">
<id>18</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_73">
<id>19</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_74">
<id>20</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_75">
<id>21</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_76">
<id>22</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_77">
<id>23</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_78">
<id>24</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_79">
<id>2</id>
<operations>
<count>10</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_80">
<id>9</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_81">
<id>10</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_82">
<id>11</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_83">
<id>12</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_84">
<id>13</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_85">
<id>14</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_86">
<id>15</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_87">
<id>16</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_88">
<id>21</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_89">
<id>25</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="29" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="1" version="0" object_id="_90">
<inState>1</inState>
<outState>2</outState>
<condition class_id="31" tracking_level="0" version="0">
<id>-1</id>
<sop class_id="32" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="33" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
</transitions>
</fsm>
<res class_id="34" tracking_level="1" version="0" object_id="_91">
<dp_component_resource class_id="35" tracking_level="0" version="0">
<count>3</count>
<item_version>0</item_version>
<item class_id="36" tracking_level="0" version="0">
<first>grp_process_action_fu_103 (process_action)</first>
<second class_id="37" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="38" tracking_level="0" version="0">
<first>BRAM</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>2787</second>
</item>
<item>
<first>LUT</first>
<second>2308</second>
</item>
<item>
<first>URAM</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>hls_action_ctrl_reg_s_axi_U (hls_action_ctrl_reg_s_axi)</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>BRAM</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>2172</second>
</item>
<item>
<first>LUT</first>
<second>4264</second>
</item>
</second>
</item>
<item>
<first>hls_action_host_mem_m_axi_U (hls_action_host_mem_m_axi)</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>BRAM</first>
<second>114</second>
</item>
<item>
<first>FF</first>
<second>2493</second>
</item>
<item>
<first>LUT</first>
<second>2663</second>
</item>
</second>
</item>
</dp_component_resource>
<dp_expression_resource>
<count>0</count>
<item_version>0</item_version>
</dp_expression_resource>
<dp_fifo_resource>
<count>0</count>
<item_version>0</item_version>
</dp_fifo_resource>
<dp_memory_resource>
<count>0</count>
<item_version>0</item_version>
</dp_memory_resource>
<dp_multiplexer_resource>
<count>6</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>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>host_mem_ARVALID</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>host_mem_AWVALID</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>host_mem_BREADY</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>host_mem_RREADY</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>host_mem_WVALID</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>7</count>
<item_version>0</item_version>
<item>
<first>act_reg_Data_in_addr_reg_192</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>64</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>64</second>
</item>
</second>
</item>
<item>
<first>act_reg_Data_in_size_reg_197</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>act_reg_Data_out_add_reg_202</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>64</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>64</second>
</item>
</second>
</item>
<item>
<first>ap_CS_fsm</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>2</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>din_gmem_V1_reg_187</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>57</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>57</second>
</item>
</second>
</item>
<item>
<first>dout_gmem_V3_reg_182</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>57</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>57</second>
</item>
</second>
</item>
<item>
<first>grp_process_action_fu_103_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>
</dp_register_resource>
<dp_dsp_resource>
<count>3</count>
<item_version>0</item_version>
<item>
<first>grp_process_action_fu_103</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>hls_action_ctrl_reg_s_axi_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>hls_action_host_mem_m_axi_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
</dp_dsp_resource>
<dp_component_map class_id="39" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="40" tracking_level="0" version="0">
<first>grp_process_action_fu_103 (process_action)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
</dp_component_map>
<dp_expression_map>
<count>0</count>
<item_version>0</item_version>
</dp_expression_map>
<dp_fifo_map>
<count>0</count>
<item_version>0</item_version>
</dp_fifo_map>
<dp_memory_map>
<count>0</count>
<item_version>0</item_version>
</dp_memory_map>
</res>
<node_label_latency class_id="41" tracking_level="0" version="0">
<count>13</count>
<item_version>0</item_version>
<item class_id="42" tracking_level="0" version="0">
<first>5</first>
<second class_id="43" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>6</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>7</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>8</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>17</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>18</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>19</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>20</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>21</first>
<second>
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>22</first>
<second>
<first>0</first>
<second>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>1</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="44" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="45" tracking_level="0" version="0">
<first>26</first>
<second class_id="46" tracking_level="0" version="0">
<first>0</first>
<second>1</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="47" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</regions>
<dp_fu_nodes class_id="48" tracking_level="0" version="0">
<count>11</count>
<item_version>0</item_version>
<item class_id="49" tracking_level="0" version="0">
<first>78</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>5</item>
</second>
</item>
<item>
<first>84</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>6</item>
</second>
</item>
<item>
<first>90</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>17</item>
<item>22</item>
</second>
</item>
<item>
<first>96</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>103</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>21</item>
<item>21</item>
</second>
</item>
<item>
<first>114</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>7</item>
</second>
</item>
<item>
<first>125</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>136</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>147</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>158</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>169</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="51" tracking_level="0" version="0">
<count>6</count>
<item_version>0</item_version>
<item class_id="52" tracking_level="0" version="0">
<first>act_reg8_part_set_fu_169</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>act_reg_Data_in_addr_fu_136</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>act_reg_Data_in_size_fu_147</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>act_reg_Data_out_add_fu_158</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>din_gmem_V1_fu_125</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>dout_gmem_V3_fu_114</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>7</item>
</second>
</item>
</dp_fu_nodes_expression>
<dp_fu_nodes_module>
<count>1</count>
<item_version>0</item_version>
<item>
<first>grp_process_action_fu_103</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>21</item>
<item>21</item>
</second>
</item>
</dp_fu_nodes_module>
<dp_fu_nodes_io>
<count>4</count>
<item_version>0</item_version>
<item>
<first>din_gmem_V_read_read_fu_84</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>6</item>
</second>
</item>
<item>
<first>dout_gmem_V_read_read_fu_78</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>5</item>
</second>
</item>
<item>
<first>grp_read_fu_90</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>17</item>
<item>22</item>
</second>
</item>
<item>
<first>write_ln103_write_fu_96</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</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="53" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>5</count>
<item_version>0</item_version>
<item>
<first>182</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>7</item>
</second>
</item>
<item>
<first>187</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>192</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>197</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>202</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>5</count>
<item_version>0</item_version>
<item>
<first>act_reg_Data_in_addr_reg_192</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>act_reg_Data_in_size_reg_197</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>act_reg_Data_out_add_reg_202</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>din_gmem_V1_reg_187</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>dout_gmem_V3_reg_182</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>7</item>
</second>
</item>
</dp_regname_nodes>
<dp_reg_phi>
<count>0</count>
<item_version>0</item_version>
</dp_reg_phi>
<dp_regname_phi>
<count>0</count>
<item_version>0</item_version>
</dp_regname_phi>
<dp_port_io_nodes class_id="54" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="55" tracking_level="0" version="0">
<first>act_reg</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>17</item>
<item>22</item>
</second>
</item>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
</second>
</item>
<item>
<first>din_gmem_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>6</item>
</second>
</item>
</second>
</item>
<item>
<first>dout_gmem_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>5</item>
</second>
</item>
</second>
</item>
<item>
<first>host_mem</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>call</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core class_id="56" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
| 31.393345 | 121 | 0.466814 |
1ea8045a1d92e6a0327ee695e58fe524004dd15d | 801 | ads | Ada | gdb/testsuite/gdb.ada/dot_all/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/dot_all/pck.ads | greyblue9/binutils-gdb | 05377632b124fe7600eea7f4ee0e9a35d1b0cbdc | [
"BSD-3-Clause"
] | null | null | null | gdb/testsuite/gdb.ada/dot_all/pck.ads | 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 System;
package Pck is
procedure Do_Nothing (A : System.Address);
end Pck;
| 34.826087 | 73 | 0.735331 |
9aace3744f89d96d1071fc97420dd5e5b8e57b7a | 832 | adb | Ada | Practica 02/P02_Lista_Alumnos/src/lista_alumnos.adb | dpr1005/Tiempo-Real-Ejercicios | 244911e9e9a2d8667649eb9f3d7417c39b340161 | [
"BSD-3-Clause"
] | null | null | null | Practica 02/P02_Lista_Alumnos/src/lista_alumnos.adb | dpr1005/Tiempo-Real-Ejercicios | 244911e9e9a2d8667649eb9f3d7417c39b340161 | [
"BSD-3-Clause"
] | null | null | null | Practica 02/P02_Lista_Alumnos/src/lista_alumnos.adb | dpr1005/Tiempo-Real-Ejercicios | 244911e9e9a2d8667649eb9f3d7417c39b340161 | [
"BSD-3-Clause"
] | 1 | 2022-03-06T17:37:39.000Z | 2022-03-06T17:37:39.000Z | with Menu,Alumnos,Clases;
procedure Lista_Alumnos is
Tercero_B : Clases.Clase;
Eleccion : Menu.Opcion;
Alu : Alumnos.Alumno;
Num : Clases.Num_Alumno;
begin
loop
Menu.Pide_Opcion (Eleccion);
case Eleccion is
when Menu.Insertar =>
if Clases.Llena(Tercero_B) then
Menu.Mensaje_Error("No caben mas alumnos");
else
Alumnos.Lee(Alu);
Clases.Inserta_Alumno(Alu,Tercero_B);
end if;
when Menu.Mirar =>
Menu.Lee_Num_Alumno(Num);
if Num>Clases.Numero_Alumnos(Tercero_B) then
Menu.Mensaje_Error("Alumno no existe");
else
Alu:=Clases.Dame_Alumno(Num,Tercero_B);
Alumnos.Escribe(Alu);
end if;
when Menu.Salir => exit;
end case;
end loop;
end Lista_Alumnos;
| 27.733333 | 55 | 0.603365 |
13dabe6059b41453da8935f5c4f32407799e1179 | 139,182 | adb | Ada | hls_video_processor/solution1/.autopilot/db/Loop_loop_height_pro.adb | bopopescu/hdmi-led | 73b04e0b07a51840ffc014c9f7b1575493be80b4 | [
"MIT"
] | 1 | 2021-04-27T01:33:32.000Z | 2021-04-27T01:33:32.000Z | hls_video_processor/solution1/.autopilot/db/Loop_loop_height_pro.adb | bopopescu/hdmi-led | 73b04e0b07a51840ffc014c9f7b1575493be80b4 | [
"MIT"
] | null | null | null | hls_video_processor/solution1/.autopilot/db/Loop_loop_height_pro.adb | bopopescu/hdmi-led | 73b04e0b07a51840ffc014c9f7b1575493be80b4 | [
"MIT"
] | 2 | 2020-07-09T12:12:30.000Z | 2021-05-23T22:00:42.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>Loop_loop_height_pro</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>6</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>1</id>
<name>img_adjusted_data_stream_0_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo class_id="6" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName>FIFO</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>3</if_type>
<array_size>0</array_size>
<bit_vecs class_id="7" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_2">
<Value>
<Obj>
<type>1</type>
<id>2</id>
<name>img_adjusted_data_stream_1_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName>FIFO</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>3</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_3">
<Value>
<Obj>
<type>1</type>
<id>3</id>
<name>img_adjusted_data_stream_2_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName>FIFO</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>3</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_4">
<Value>
<Obj>
<type>1</type>
<id>4</id>
<name>img_out_data_stream_0_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName>FIFO</coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>1</direction>
<if_type>3</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_5">
<Value>
<Obj>
<type>1</type>
<id>5</id>
<name>img_out_data_stream_1_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName>FIFO</coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>1</direction>
<if_type>3</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_6">
<Value>
<Obj>
<type>1</type>
<id>6</id>
<name>img_out_data_stream_2_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName>FIFO</coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>1</direction>
<if_type>3</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>22</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_7">
<Value>
<Obj>
<type>0</type>
<id>13</id>
<name/>
<fileName>hls_video_processor/hls_video_processor.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>173</lineNumber>
<contextFuncName>int32_to_uint8</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="10" tracking_level="0" version="0">
<first>C:\Users\byronxu\Documents\6.S193</first>
<second class_id="11" tracking_level="0" version="0">
<count>2</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>hls_video_processor/hls_video_processor.cpp</first>
<second>hls_video_processor</second>
</first>
<second>431</second>
</item>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>int32_to_uint8</second>
</first>
<second>173</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>57</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="_8">
<Value>
<Obj>
<type>0</type>
<id>15</id>
<name>t_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>59</item>
<item>60</item>
<item>61</item>
<item>62</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="_9">
<Value>
<Obj>
<type>0</type>
<id>16</id>
<name>exitcond113_i1</name>
<fileName>hls_video_processor/hls_video_processor.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>173</lineNumber>
<contextFuncName>int32_to_uint8</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\byronxu\Documents\6.S193</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>hls_video_processor</second>
</first>
<second>431</second>
</item>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>int32_to_uint8</second>
</first>
<second>173</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>exitcond113_i1_fu_133_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>63</item>
<item>65</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>3</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>18</id>
<name>r_V</name>
<fileName>hls_video_processor/hls_video_processor.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>173</lineNumber>
<contextFuncName>int32_to_uint8</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\byronxu\Documents\6.S193</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>hls_video_processor</second>
</first>
<second>431</second>
</item>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>int32_to_uint8</second>
</first>
<second>173</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName>r_V_fu_139_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>66</item>
<item>68</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>4</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>19</id>
<name/>
<fileName>hls_video_processor/hls_video_processor.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>173</lineNumber>
<contextFuncName>int32_to_uint8</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\byronxu\Documents\6.S193</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>hls_video_processor</second>
</first>
<second>431</second>
</item>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>int32_to_uint8</second>
</first>
<second>173</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>69</item>
<item>70</item>
<item>71</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>5</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>23</id>
<name/>
<fileName>hls_video_processor/hls_video_processor.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>174</lineNumber>
<contextFuncName>int32_to_uint8</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\byronxu\Documents\6.S193</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>hls_video_processor</second>
</first>
<second>431</second>
</item>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>int32_to_uint8</second>
</first>
<second>174</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>87</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>6</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>25</id>
<name>t_V_2</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>c.V</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>74</item>
<item>75</item>
<item>76</item>
<item>77</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>8</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>26</id>
<name>exitcond_i1</name>
<fileName>hls_video_processor/hls_video_processor.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>174</lineNumber>
<contextFuncName>int32_to_uint8</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\byronxu\Documents\6.S193</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>hls_video_processor</second>
</first>
<second>431</second>
</item>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>int32_to_uint8</second>
</first>
<second>174</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>exitcond_i1_fu_145_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>78</item>
<item>80</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>9</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>28</id>
<name>c_V</name>
<fileName>hls_video_processor/hls_video_processor.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>174</lineNumber>
<contextFuncName>int32_to_uint8</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\byronxu\Documents\6.S193</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>hls_video_processor</second>
</first>
<second>431</second>
</item>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>int32_to_uint8</second>
</first>
<second>174</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>c.V</originalName>
<rtlName>c_V_fu_151_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>81</item>
<item>83</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>10</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>29</id>
<name/>
<fileName>hls_video_processor/hls_video_processor.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>174</lineNumber>
<contextFuncName>int32_to_uint8</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\byronxu\Documents\6.S193</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>hls_video_processor</second>
</first>
<second>431</second>
</item>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>int32_to_uint8</second>
</first>
<second>174</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>84</item>
<item>85</item>
<item>86</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>11</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>36</id>
<name>tmp_46</name>
<fileName>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>679</lineNumber>
<contextFuncName>read</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\byronxu\Documents\6.S193</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first>
<second>operator&gt;&gt;</second>
</first>
<second>711</second>
</item>
<item>
<first>
<first>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first>
<second>read</second>
</first>
<second>679</second>
</item>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>hls_video_processor</second>
</first>
<second>431</second>
</item>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>int32_to_uint8</second>
</first>
<second>179</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>89</item>
<item>90</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>2.88</m_delay>
<m_topoIndex>12</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name>tmp_47</name>
<fileName>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>679</lineNumber>
<contextFuncName>read</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\byronxu\Documents\6.S193</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first>
<second>operator&gt;&gt;</second>
</first>
<second>711</second>
</item>
<item>
<first>
<first>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first>
<second>read</second>
</first>
<second>679</second>
</item>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>hls_video_processor</second>
</first>
<second>431</second>
</item>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>int32_to_uint8</second>
</first>
<second>179</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>91</item>
<item>92</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>2.88</m_delay>
<m_topoIndex>13</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name>tmp</name>
<fileName>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>679</lineNumber>
<contextFuncName>read</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\byronxu\Documents\6.S193</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first>
<second>operator&gt;&gt;</second>
</first>
<second>711</second>
</item>
<item>
<first>
<first>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first>
<second>read</second>
</first>
<second>679</second>
</item>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>hls_video_processor</second>
</first>
<second>431</second>
</item>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>int32_to_uint8</second>
</first>
<second>179</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>93</item>
<item>94</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>2.88</m_delay>
<m_topoIndex>14</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>tmp_36</name>
<fileName>hls_video_processor/hls_video_processor.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>184</lineNumber>
<contextFuncName>int32_to_uint8</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\byronxu\Documents\6.S193</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>hls_video_processor</second>
</first>
<second>431</second>
</item>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>int32_to_uint8</second>
</first>
<second>184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp</originalName>
<rtlName>img_out_data_stream_0_V_din</rtlName>
<coreName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>96</item>
<item>97</item>
<item>99</item>
<item>101</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>15</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name>tmp_37</name>
<fileName>hls_video_processor/hls_video_processor.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>184</lineNumber>
<contextFuncName>int32_to_uint8</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\byronxu\Documents\6.S193</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>hls_video_processor</second>
</first>
<second>431</second>
</item>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>int32_to_uint8</second>
</first>
<second>184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp</originalName>
<rtlName>img_out_data_stream_1_V_din</rtlName>
<coreName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>102</item>
<item>103</item>
<item>104</item>
<item>105</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="_22">
<Value>
<Obj>
<type>0</type>
<id>42</id>
<name>tmp_38</name>
<fileName>hls_video_processor/hls_video_processor.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>184</lineNumber>
<contextFuncName>int32_to_uint8</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\byronxu\Documents\6.S193</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>hls_video_processor</second>
</first>
<second>431</second>
</item>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>int32_to_uint8</second>
</first>
<second>184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp</originalName>
<rtlName>img_out_data_stream_2_V_din</rtlName>
<coreName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>106</item>
<item>107</item>
<item>108</item>
<item>109</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>17</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>45</id>
<name/>
<fileName>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>703</lineNumber>
<contextFuncName>write</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\byronxu\Documents\6.S193</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first>
<second>operator&lt;&lt;</second>
</first>
<second>717</second>
</item>
<item>
<first>
<first>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first>
<second>write</second>
</first>
<second>703</second>
</item>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>hls_video_processor</second>
</first>
<second>431</second>
</item>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>int32_to_uint8</second>
</first>
<second>188</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>111</item>
<item>112</item>
<item>113</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.88</m_delay>
<m_topoIndex>18</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>46</id>
<name/>
<fileName>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>703</lineNumber>
<contextFuncName>write</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\byronxu\Documents\6.S193</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first>
<second>operator&lt;&lt;</second>
</first>
<second>717</second>
</item>
<item>
<first>
<first>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first>
<second>write</second>
</first>
<second>703</second>
</item>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>hls_video_processor</second>
</first>
<second>431</second>
</item>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>int32_to_uint8</second>
</first>
<second>188</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>114</item>
<item>115</item>
<item>116</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.88</m_delay>
<m_topoIndex>19</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>47</id>
<name/>
<fileName>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>703</lineNumber>
<contextFuncName>write</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\byronxu\Documents\6.S193</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first>
<second>operator&lt;&lt;</second>
</first>
<second>717</second>
</item>
<item>
<first>
<first>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first>
<second>write</second>
</first>
<second>703</second>
</item>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>hls_video_processor</second>
</first>
<second>431</second>
</item>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>int32_to_uint8</second>
</first>
<second>188</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>117</item>
<item>118</item>
<item>119</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.88</m_delay>
<m_topoIndex>20</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>50</id>
<name/>
<fileName>hls_video_processor/hls_video_processor.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>174</lineNumber>
<contextFuncName>int32_to_uint8</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\byronxu\Documents\6.S193</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>hls_video_processor</second>
</first>
<second>431</second>
</item>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>int32_to_uint8</second>
</first>
<second>174</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>120</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>21</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>53</id>
<name/>
<fileName>hls_video_processor/hls_video_processor.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>173</lineNumber>
<contextFuncName>int32_to_uint8</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\byronxu\Documents\6.S193</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>hls_video_processor</second>
</first>
<second>431</second>
</item>
<item>
<first>
<first>hls_video_processor/hls_video_processor.cpp</first>
<second>int32_to_uint8</second>
</first>
<second>173</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>72</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>22</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>55</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>0</count>
<item_version>0</item_version>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>7</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>8</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_29">
<Value>
<Obj>
<type>2</type>
<id>58</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="_30">
<Value>
<Obj>
<type>2</type>
<id>64</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>30</content>
</item>
<item class_id_reference="16" object_id="_31">
<Value>
<Obj>
<type>2</type>
<id>67</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="_32">
<Value>
<Obj>
<type>2</type>
<id>73</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="_33">
<Value>
<Obj>
<type>2</type>
<id>79</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<const_type>0</const_type>
<content>60</content>
</item>
<item class_id_reference="16" object_id="_34">
<Value>
<Obj>
<type>2</type>
<id>82</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="_35">
<Value>
<Obj>
<type>2</type>
<id>98</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>4</content>
</item>
<item class_id_reference="16" object_id="_36">
<Value>
<Obj>
<type>2</type>
<id>100</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>11</content>
</item>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_37">
<Obj>
<type>3</type>
<id>14</id>
<name>newFuncRoot</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_38">
<Obj>
<type>3</type>
<id>20</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>4</count>
<item_version>0</item_version>
<item>15</item>
<item>16</item>
<item>18</item>
<item>19</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_39">
<Obj>
<type>3</type>
<id>24</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>23</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_40">
<Obj>
<type>3</type>
<id>30</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>4</count>
<item_version>0</item_version>
<item>25</item>
<item>26</item>
<item>28</item>
<item>29</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_41">
<Obj>
<type>3</type>
<id>51</id>
<name>operator>>.exit.i1</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>10</count>
<item_version>0</item_version>
<item>36</item>
<item>37</item>
<item>38</item>
<item>40</item>
<item>41</item>
<item>42</item>
<item>45</item>
<item>46</item>
<item>47</item>
<item>50</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_42">
<Obj>
<type>3</type>
<id>54</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>53</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_43">
<Obj>
<type>3</type>
<id>56</id>
<name>int32_to_uint8.exit.exitStub</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>52</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_44">
<id>57</id>
<edge_type>2</edge_type>
<source_obj>20</source_obj>
<sink_obj>13</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_45">
<id>59</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>15</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_46">
<id>60</id>
<edge_type>2</edge_type>
<source_obj>14</source_obj>
<sink_obj>15</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_47">
<id>61</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>15</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_48">
<id>62</id>
<edge_type>2</edge_type>
<source_obj>54</source_obj>
<sink_obj>15</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_49">
<id>63</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>16</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_50">
<id>65</id>
<edge_type>1</edge_type>
<source_obj>64</source_obj>
<sink_obj>16</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_51">
<id>66</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>18</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_52">
<id>68</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>18</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_53">
<id>69</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>19</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_54">
<id>70</id>
<edge_type>2</edge_type>
<source_obj>24</source_obj>
<sink_obj>19</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_55">
<id>71</id>
<edge_type>2</edge_type>
<source_obj>56</source_obj>
<sink_obj>19</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_56">
<id>72</id>
<edge_type>2</edge_type>
<source_obj>20</source_obj>
<sink_obj>53</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_57">
<id>74</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_58">
<id>75</id>
<edge_type>2</edge_type>
<source_obj>24</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_59">
<id>76</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_60">
<id>77</id>
<edge_type>2</edge_type>
<source_obj>51</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_61">
<id>78</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>26</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_62">
<id>80</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>26</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_63">
<id>81</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>28</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_64">
<id>83</id>
<edge_type>1</edge_type>
<source_obj>82</source_obj>
<sink_obj>28</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_65">
<id>84</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>29</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_66">
<id>85</id>
<edge_type>2</edge_type>
<source_obj>51</source_obj>
<sink_obj>29</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_67">
<id>86</id>
<edge_type>2</edge_type>
<source_obj>54</source_obj>
<sink_obj>29</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_68">
<id>87</id>
<edge_type>2</edge_type>
<source_obj>30</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_69">
<id>90</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>36</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_70">
<id>92</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_71">
<id>94</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>38</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_72">
<id>97</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_73">
<id>99</id>
<edge_type>1</edge_type>
<source_obj>98</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_74">
<id>101</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_75">
<id>103</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_76">
<id>104</id>
<edge_type>1</edge_type>
<source_obj>98</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_77">
<id>105</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_78">
<id>107</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_79">
<id>108</id>
<edge_type>1</edge_type>
<source_obj>98</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_80">
<id>109</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_81">
<id>112</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>45</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_82">
<id>113</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>45</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_83">
<id>115</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>46</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_84">
<id>116</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>46</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_85">
<id>118</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_86">
<id>119</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_87">
<id>120</id>
<edge_type>2</edge_type>
<source_obj>30</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_88">
<id>286</id>
<edge_type>2</edge_type>
<source_obj>14</source_obj>
<sink_obj>20</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_89">
<id>287</id>
<edge_type>2</edge_type>
<source_obj>20</source_obj>
<sink_obj>56</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_90">
<id>288</id>
<edge_type>2</edge_type>
<source_obj>20</source_obj>
<sink_obj>24</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_91">
<id>289</id>
<edge_type>2</edge_type>
<source_obj>24</source_obj>
<sink_obj>30</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_92">
<id>290</id>
<edge_type>2</edge_type>
<source_obj>30</source_obj>
<sink_obj>54</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_93">
<id>291</id>
<edge_type>2</edge_type>
<source_obj>30</source_obj>
<sink_obj>51</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_94">
<id>292</id>
<edge_type>2</edge_type>
<source_obj>51</source_obj>
<sink_obj>30</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_95">
<id>293</id>
<edge_type>2</edge_type>
<source_obj>54</source_obj>
<sink_obj>20</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_96">
<mId>1</mId>
<mTag>Loop_loop_height_pro</mTag>
<mType>0</mType>
<sub_regions>
<count>3</count>
<item_version>0</item_version>
<item>2</item>
<item>3</item>
<item>7</item>
</sub_regions>
<basic_blocks>
<count>0</count>
<item_version>0</item_version>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>1891</mMinLatency>
<mMaxLatency>1891</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_97">
<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>14</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="_98">
<mId>3</mId>
<mTag>loop_height</mTag>
<mType>1</mType>
<sub_regions>
<count>3</count>
<item_version>0</item_version>
<item>4</item>
<item>5</item>
<item>6</item>
</sub_regions>
<basic_blocks>
<count>0</count>
<item_version>0</item_version>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>30</mMinTripCount>
<mMaxTripCount>30</mMaxTripCount>
<mMinLatency>1890</mMinLatency>
<mMaxLatency>1890</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_99">
<mId>4</mId>
<mTag>Region 1</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>20</item>
<item>24</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="_100">
<mId>5</mId>
<mTag>loop_width</mTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>30</item>
<item>51</item>
</basic_blocks>
<mII>1</mII>
<mDepth>2</mDepth>
<mMinTripCount>60</mMinTripCount>
<mMaxTripCount>60</mMaxTripCount>
<mMinLatency>60</mMinLatency>
<mMaxLatency>60</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_101">
<mId>6</mId>
<mTag>Region 2</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>54</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="_102">
<mId>7</mId>
<mTag>Return</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>56</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="_103">
<states class_id="25" tracking_level="0" version="0">
<count>5</count>
<item_version>0</item_version>
<item class_id="26" tracking_level="1" version="0" object_id="_104">
<id>1</id>
<operations class_id="27" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="28" tracking_level="1" version="0" object_id="_105">
<id>7</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_106">
<id>8</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_107">
<id>9</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_108">
<id>10</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_109">
<id>11</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_110">
<id>12</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_111">
<id>13</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_112">
<id>2</id>
<operations>
<count>9</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_113">
<id>15</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_114">
<id>16</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_115">
<id>17</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_116">
<id>18</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_117">
<id>19</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_118">
<id>21</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_119">
<id>22</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_120">
<id>23</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_121">
<id>55</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_122">
<id>3</id>
<operations>
<count>5</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_123">
<id>25</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_124">
<id>26</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_125">
<id>27</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_126">
<id>28</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_127">
<id>29</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_128">
<id>4</id>
<operations>
<count>20</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_129">
<id>31</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_130">
<id>32</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_131">
<id>33</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_132">
<id>34</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_133">
<id>35</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_134">
<id>36</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_135">
<id>37</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_136">
<id>38</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_137">
<id>39</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_138">
<id>40</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_139">
<id>41</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_140">
<id>42</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_141">
<id>43</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_142">
<id>44</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_143">
<id>45</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_144">
<id>46</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_145">
<id>47</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_146">
<id>48</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_147">
<id>49</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_148">
<id>50</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_149">
<id>5</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_150">
<id>52</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_151">
<id>53</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="29" tracking_level="0" version="0">
<count>6</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="1" version="0" object_id="_152">
<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="_153">
<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>16</first>
<second>0</second>
</first>
<second>1</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_154">
<inState>5</inState>
<outState>2</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_155">
<inState>4</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="_156">
<inState>3</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>26</first>
<second>0</second>
</first>
<second>0</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_157">
<inState>3</inState>
<outState>4</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>26</first>
<second>0</second>
</first>
<second>1</second>
</item>
</item>
</sop>
</condition>
</item>
</transitions>
</fsm>
<res class_id="36" tracking_level="1" version="0" object_id="_158">
<dp_component_resource class_id="37" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_component_resource>
<dp_expression_resource>
<count>9</count>
<item_version>0</item_version>
<item class_id="38" tracking_level="0" version="0">
<first>ap_block_pp0_stage0_01001 ( and ) </first>
<second class_id="39" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="40" tracking_level="0" version="0">
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>ap_block_state1 ( or ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>ap_block_state4_pp0_stage0_iter1 ( 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_enable_pp0 ( xor ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>ap_enable_reg_pp0_iter1 ( xor ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>2</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>c_V_fu_151_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>exitcond113_i1_fu_133_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>3</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>exitcond_i1_fu_145_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>4</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>r_V_fu_139_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>
</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>12</count>
<item_version>0</item_version>
<item>
<first>ap_NS_fsm</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>5</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>5</second>
</item>
<item>
<first>LUT</first>
<second>27</second>
</item>
</second>
</item>
<item>
<first>ap_done</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ap_enable_reg_pp0_iter1</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>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>img_adjusted_data_stream_0_V_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>img_adjusted_data_stream_1_V_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>img_adjusted_data_stream_2_V_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>img_out_data_stream_0_V_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>img_out_data_stream_1_V_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>img_out_data_stream_2_V_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>real_start</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>t_V_2_reg_122</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>
<item>
<first>t_V_reg_111</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>
</dp_multiplexer_resource>
<dp_register_resource>
<count>9</count>
<item_version>0</item_version>
<item>
<first>ap_CS_fsm</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>4</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>4</second>
</item>
</second>
</item>
<item>
<first>ap_done_reg</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>ap_enable_reg_pp0_iter0</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>ap_enable_reg_pp0_iter1</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>exitcond_i1_reg_199</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>r_V_reg_194</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>start_once_reg</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>t_V_2_reg_122</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>t_V_reg_111</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>
</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>4</count>
<item_version>0</item_version>
<item class_id="42" tracking_level="0" version="0">
<first>c_V_fu_151_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>exitcond113_i1_fu_133_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>exitcond_i1_fu_145_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>r_V_fu_139_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</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>22</count>
<item_version>0</item_version>
<item class_id="44" tracking_level="0" version="0">
<first>13</first>
<second class_id="45" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>15</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>16</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>18</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>19</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>23</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>25</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>26</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>28</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>29</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>36</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>37</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>40</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>41</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>42</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>45</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>46</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>50</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>53</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>55</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="46" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="47" tracking_level="0" version="0">
<first>14</first>
<second class_id="48" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>20</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>24</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>30</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>51</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>54</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>56</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="49" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="50" tracking_level="1" version="0" object_id="_159">
<region_name>loop_width</region_name>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>30</item>
<item>51</item>
</basic_blocks>
<nodes>
<count>0</count>
<item_version>0</item_version>
</nodes>
<anchor_node>-1</anchor_node>
<region_type>8</region_type>
<interval>1</interval>
<pipe_depth>2</pipe_depth>
</item>
<item class_id_reference="50" object_id="_160">
<region_name>hls_label_6</region_name>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</basic_blocks>
<nodes>
<count>6</count>
<item_version>0</item_version>
<item>43</item>
<item>44</item>
<item>45</item>
<item>46</item>
<item>47</item>
<item>48</item>
</nodes>
<anchor_node>43</anchor_node>
<region_type>1</region_type>
<interval>0</interval>
<pipe_depth>0</pipe_depth>
</item>
</regions>
<dp_fu_nodes class_id="51" tracking_level="0" version="0">
<count>15</count>
<item_version>0</item_version>
<item class_id="52" tracking_level="0" version="0">
<first>72</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>78</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>84</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>90</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>97</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>104</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>115</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>126</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>133</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>139</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>145</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>151</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>157</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>168</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>179</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="54" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="55" tracking_level="0" version="0">
<first>c_V_fu_151</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>exitcond113_i1_fu_133</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>exitcond_i1_fu_145</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>r_V_fu_139</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>t_V_2_phi_fu_126</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>t_V_phi_fu_115</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>tmp_36_fu_157</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>tmp_37_fu_168</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>tmp_38_fu_179</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</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>6</count>
<item_version>0</item_version>
<item>
<first>StgValue_41_write_fu_90</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>StgValue_42_write_fu_97</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>StgValue_43_write_fu_104</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>tmp_46_read_fu_72</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>tmp_47_read_fu_78</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>tmp_read_fu_84</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
</dp_fu_nodes_io>
<return_ports>
<count>0</count>
<item_version>0</item_version>
</return_ports>
<dp_mem_port_nodes class_id="56" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>6</count>
<item_version>0</item_version>
<item>
<first>111</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>122</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>190</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>194</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>199</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>203</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>6</count>
<item_version>0</item_version>
<item>
<first>c_V_reg_203</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>exitcond113_i1_reg_190</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>exitcond_i1_reg_199</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>r_V_reg_194</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>t_V_2_reg_122</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>t_V_reg_111</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
</dp_regname_nodes>
<dp_reg_phi>
<count>2</count>
<item_version>0</item_version>
<item>
<first>111</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>122</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
</dp_reg_phi>
<dp_regname_phi>
<count>2</count>
<item_version>0</item_version>
<item>
<first>t_V_2_reg_122</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>t_V_reg_111</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
</dp_regname_phi>
<dp_port_io_nodes class_id="57" tracking_level="0" version="0">
<count>6</count>
<item_version>0</item_version>
<item class_id="58" tracking_level="0" version="0">
<first>img_adjusted_data_stream_0_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
</second>
</item>
<item>
<first>img_adjusted_data_stream_1_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
</second>
</item>
<item>
<first>img_adjusted_data_stream_2_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
</second>
</item>
<item>
<first>img_out_data_stream_0_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
</second>
</item>
<item>
<first>img_out_data_stream_1_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
</second>
</item>
<item>
<first>img_out_data_stream_2_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core class_id="59" tracking_level="0" version="0">
<count>6</count>
<item_version>0</item_version>
<item class_id="60" tracking_level="0" version="0">
<first>1</first>
<second>FIFO</second>
</item>
<item>
<first>2</first>
<second>FIFO</second>
</item>
<item>
<first>3</first>
<second>FIFO</second>
</item>
<item>
<first>4</first>
<second>FIFO</second>
</item>
<item>
<first>5</first>
<second>FIFO</second>
</item>
<item>
<first>6</first>
<second>FIFO</second>
</item>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
| 32.810467 | 112 | 0.439152 |
2e60ba8a334281e191617098ea246808d302d3ac | 121,547 | adb | Ada | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-regpat.adb | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-regpat.adb | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-regpat.adb | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT LIBRARY COMPONENTS --
-- --
-- G N A T . R E G P A T --
-- --
-- B o d y --
-- --
-- Copyright (C) 1986 by University of Toronto. --
-- Copyright (C) 1999-2020, AdaCore --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This is an altered Ada 95 version of the original V8 style regular
-- expression library written in C by Henry Spencer. Apart from the
-- translation to Ada, the interface has been considerably changed to
-- use the Ada String type instead of C-style nul-terminated strings.
-- Beware that some of this code is subtly aware of the way operator
-- precedence is structured in regular expressions. Serious changes in
-- regular-expression syntax might require a total rethink.
with System.IO; use System.IO;
with Ada.Characters.Handling; use Ada.Characters.Handling;
with Ada.Unchecked_Conversion;
package body System.Regpat is
Debug : constant Boolean := False;
-- Set to True to activate debug traces. This is normally set to constant
-- False to simply delete all the trace code. It is to be edited to True
-- for internal debugging of the package.
----------------------------
-- Implementation details --
----------------------------
-- This is essentially a linear encoding of a nondeterministic
-- finite-state machine, also known as syntax charts or
-- "railroad normal form" in parsing technology.
-- Each node is an opcode plus a "next" pointer, possibly plus an
-- operand. "Next" pointers of all nodes except BRANCH implement
-- concatenation; a "next" pointer with a BRANCH on both ends of it
-- is connecting two alternatives.
-- The operand of some types of node is a literal string; for others,
-- it is a node leading into a sub-FSM. In particular, the operand of
-- a BRANCH node is the first node of the branch.
-- (NB this is *not* a tree structure: the tail of the branch connects
-- to the thing following the set of BRANCHes).
-- You can see the exact byte-compiled version by using the Dump
-- subprogram. However, here are a few examples:
-- (a|b): 1 : BRANCH (next at 9)
-- 4 : EXACT (next at 17) operand=a
-- 9 : BRANCH (next at 17)
-- 12 : EXACT (next at 17) operand=b
-- 17 : EOP (next at 0)
--
-- (ab)*: 1 : CURLYX (next at 25) { 0, 32767}
-- 8 : OPEN 1 (next at 12)
-- 12 : EXACT (next at 18) operand=ab
-- 18 : CLOSE 1 (next at 22)
-- 22 : WHILEM (next at 0)
-- 25 : NOTHING (next at 28)
-- 28 : EOP (next at 0)
-- The opcodes are:
type Opcode is
-- Name Operand? Meaning
(EOP, -- no End of program
MINMOD, -- no Next operator is not greedy
-- Classes of characters
ANY, -- no Match any one character except newline
SANY, -- no Match any character, including new line
ANYOF, -- class Match any character in this class
EXACT, -- str Match this string exactly
EXACTF, -- str Match this string (case-folding is one)
NOTHING, -- no Match empty string
SPACE, -- no Match any whitespace character
NSPACE, -- no Match any non-whitespace character
DIGIT, -- no Match any numeric character
NDIGIT, -- no Match any non-numeric character
ALNUM, -- no Match any alphanumeric character
NALNUM, -- no Match any non-alphanumeric character
-- Branches
BRANCH, -- node Match this alternative, or the next
-- Simple loops (when the following node is one character in length)
STAR, -- node Match this simple thing 0 or more times
PLUS, -- node Match this simple thing 1 or more times
CURLY, -- 2num node Match this simple thing between n and m times.
-- Complex loops
CURLYX, -- 2num node Match this complex thing {n,m} times
-- The nums are coded on two characters each
WHILEM, -- no Do curly processing and see if rest matches
-- Matches after or before a word
BOL, -- no Match "" at beginning of line
MBOL, -- no Same, assuming multiline (match after \n)
SBOL, -- no Same, assuming single line (don't match at \n)
EOL, -- no Match "" at end of line
MEOL, -- no Same, assuming multiline (match before \n)
SEOL, -- no Same, assuming single line (don't match at \n)
BOUND, -- no Match "" at any word boundary
NBOUND, -- no Match "" at any word non-boundary
-- Parenthesis groups handling
REFF, -- num Match some already matched string, folded
OPEN, -- num Mark this point in input as start of #n
CLOSE); -- num Analogous to OPEN
for Opcode'Size use 8;
-- Opcode notes:
-- BRANCH
-- The set of branches constituting a single choice are hooked
-- together with their "next" pointers, since precedence prevents
-- anything being concatenated to any individual branch. The
-- "next" pointer of the last BRANCH in a choice points to the
-- thing following the whole choice. This is also where the
-- final "next" pointer of each individual branch points; each
-- branch starts with the operand node of a BRANCH node.
-- STAR,PLUS
-- '?', and complex '*' and '+', are implemented with CURLYX.
-- branches. Simple cases (one character per match) are implemented with
-- STAR and PLUS for speed and to minimize recursive plunges.
-- OPEN,CLOSE
-- ...are numbered at compile time.
-- EXACT, EXACTF
-- There are in fact two arguments, the first one is the length (minus
-- one of the string argument), coded on one character, the second
-- argument is the string itself, coded on length + 1 characters.
-- A node is one char of opcode followed by two chars of "next" pointer.
-- "Next" pointers are stored as two 8-bit pieces, high order first. The
-- value is a positive offset from the opcode of the node containing it.
-- An operand, if any, simply follows the node. (Note that much of the
-- code generation knows about this implicit relationship.)
-- Using two bytes for the "next" pointer is vast overkill for most
-- things, but allows patterns to get big without disasters.
Next_Pointer_Bytes : constant := 3;
-- Points after the "next pointer" data. An instruction is therefore:
-- 1 byte: instruction opcode
-- 2 bytes: pointer to next instruction
-- * bytes: optional data for the instruction
-----------------------
-- Character classes --
-----------------------
-- This is the implementation for character classes ([...]) in the
-- syntax for regular expressions. Each character (0..256) has an
-- entry into the table. This makes for a very fast matching
-- algorithm.
type Class_Byte is mod 256;
type Character_Class is array (Class_Byte range 0 .. 31) of Class_Byte;
type Bit_Conversion_Array is array (Class_Byte range 0 .. 7) of Class_Byte;
Bit_Conversion : constant Bit_Conversion_Array :=
(1, 2, 4, 8, 16, 32, 64, 128);
type Std_Class is (ANYOF_NONE,
ANYOF_ALNUM, -- Alphanumeric class [a-zA-Z0-9]
ANYOF_NALNUM,
ANYOF_SPACE, -- Space class [ \t\n\r\f]
ANYOF_NSPACE,
ANYOF_DIGIT, -- Digit class [0-9]
ANYOF_NDIGIT,
ANYOF_ALNUMC, -- Alphanumeric class [a-zA-Z0-9]
ANYOF_NALNUMC,
ANYOF_ALPHA, -- Alpha class [a-zA-Z]
ANYOF_NALPHA,
ANYOF_ASCII, -- Ascii class (7 bits) 0..127
ANYOF_NASCII,
ANYOF_CNTRL, -- Control class
ANYOF_NCNTRL,
ANYOF_GRAPH, -- Graphic class
ANYOF_NGRAPH,
ANYOF_LOWER, -- Lower case class [a-z]
ANYOF_NLOWER,
ANYOF_PRINT, -- printable class
ANYOF_NPRINT,
ANYOF_PUNCT, --
ANYOF_NPUNCT,
ANYOF_UPPER, -- Upper case class [A-Z]
ANYOF_NUPPER,
ANYOF_XDIGIT, -- Hexadecimal digit
ANYOF_NXDIGIT
);
procedure Set_In_Class
(Bitmap : in out Character_Class;
C : Character);
-- Set the entry to True for C in the class Bitmap
function Get_From_Class
(Bitmap : Character_Class;
C : Character) return Boolean;
-- Return True if the entry is set for C in the class Bitmap
procedure Reset_Class (Bitmap : out Character_Class);
-- Clear all the entries in the class Bitmap
pragma Inline (Set_In_Class);
pragma Inline (Get_From_Class);
pragma Inline (Reset_Class);
-----------------------
-- Local Subprograms --
-----------------------
function "=" (Left : Character; Right : Opcode) return Boolean;
function Is_Alnum (C : Character) return Boolean;
-- Return True if C is an alphanum character or an underscore ('_')
function Is_White_Space (C : Character) return Boolean;
-- Return True if C is a whitespace character
function Is_Printable (C : Character) return Boolean;
-- Return True if C is a printable character
function Operand (P : Pointer) return Pointer;
-- Return a pointer to the first operand of the node at P
function String_Length
(Program : Program_Data;
P : Pointer) return Program_Size;
-- Return the length of the string argument of the node at P
function String_Operand (P : Pointer) return Pointer;
-- Return a pointer to the string argument of the node at P
procedure Bitmap_Operand
(Program : Program_Data;
P : Pointer;
Op : out Character_Class);
-- Return a pointer to the string argument of the node at P
function Get_Next
(Program : Program_Data;
IP : Pointer) return Pointer;
-- Dig the next instruction pointer out of a node
procedure Optimize (Self : in out Pattern_Matcher);
-- Optimize a Pattern_Matcher by noting certain special cases
function Read_Natural
(Program : Program_Data;
IP : Pointer) return Natural;
-- Return the 2-byte natural coded at position IP
-- All of the subprograms above are tiny and should be inlined
pragma Inline ("=");
pragma Inline (Is_Alnum);
pragma Inline (Is_White_Space);
pragma Inline (Get_Next);
pragma Inline (Operand);
pragma Inline (Read_Natural);
pragma Inline (String_Length);
pragma Inline (String_Operand);
type Expression_Flags is record
Has_Width, -- Known never to match null string
Simple, -- Simple enough to be STAR/PLUS operand
SP_Start : Boolean; -- Starts with * or +
end record;
Worst_Expression : constant Expression_Flags := (others => False);
-- Worst case
procedure Dump_Until
(Program : Program_Data;
Index : in out Pointer;
Till : Pointer;
Indent : Natural;
Do_Print : Boolean := True);
-- Dump the program until the node Till (not included) is met. Every line
-- is indented with Index spaces at the beginning Dumps till the end if
-- Till is 0.
procedure Dump_Operation
(Program : Program_Data;
Index : Pointer;
Indent : Natural);
-- Same as above, but only dumps a single operation, and compute its
-- indentation from the program.
---------
-- "=" --
---------
function "=" (Left : Character; Right : Opcode) return Boolean is
begin
return Character'Pos (Left) = Opcode'Pos (Right);
end "=";
--------------------
-- Bitmap_Operand --
--------------------
procedure Bitmap_Operand
(Program : Program_Data;
P : Pointer;
Op : out Character_Class)
is
function Convert is new Ada.Unchecked_Conversion
(Program_Data, Character_Class);
begin
Op (0 .. 31) := Convert (Program (P + Next_Pointer_Bytes .. P + 34));
end Bitmap_Operand;
-------------
-- Compile --
-------------
procedure Compile
(Matcher : out Pattern_Matcher;
Expression : String;
Final_Code_Size : out Program_Size;
Flags : Regexp_Flags := No_Flags)
is
-- We can't allocate space until we know how big the compiled form
-- will be, but we can't compile it (and thus know how big it is)
-- until we've got a place to put the code. So we cheat: we compile
-- it twice, once with code generation turned off and size counting
-- turned on, and once "for real".
-- This also means that we don't allocate space until we are sure
-- that the thing really will compile successfully, and we never
-- have to move the code and thus invalidate pointers into it.
-- Beware that the optimization-preparation code in here knows
-- about some of the structure of the compiled regexp.
PM : Pattern_Matcher renames Matcher;
Program : Program_Data renames PM.Program;
Emit_Ptr : Pointer := Program_First;
Parse_Pos : Natural := Expression'First; -- Input-scan pointer
Parse_End : constant Natural := Expression'Last;
----------------------------
-- Subprograms for Create --
----------------------------
procedure Emit (B : Character);
-- Output the Character B to the Program. If code-generation is
-- disabled, simply increments the program counter.
function Emit_Node (Op : Opcode) return Pointer;
-- If code-generation is enabled, Emit_Node outputs the
-- opcode Op and reserves space for a pointer to the next node.
-- Return value is the location of new opcode, i.e. old Emit_Ptr.
procedure Emit_Natural (IP : Pointer; N : Natural);
-- Split N on two characters at position IP
procedure Emit_Class (Bitmap : Character_Class);
-- Emits a character class
procedure Case_Emit (C : Character);
-- Emit C, after converting is to lower-case if the regular
-- expression is case insensitive.
procedure Parse
(Parenthesized : Boolean;
Capturing : Boolean;
Flags : out Expression_Flags;
IP : out Pointer);
-- Parse regular expression, i.e. main body or parenthesized thing.
-- Caller must absorb opening parenthesis. Capturing should be set to
-- True when we have an open parenthesis from which we want the user
-- to extra text.
procedure Parse_Branch
(Flags : out Expression_Flags;
First : Boolean;
IP : out Pointer);
-- Implements the concatenation operator and handles '|'.
-- First should be true if this is the first item of the alternative.
procedure Parse_Piece
(Expr_Flags : out Expression_Flags;
IP : out Pointer);
-- Parse something followed by possible [*+?]
procedure Parse_Atom
(Expr_Flags : out Expression_Flags;
IP : out Pointer);
-- Parse_Atom is the lowest level parse procedure.
--
-- Optimization: Gobbles an entire sequence of ordinary characters so
-- that it can turn them into a single node, which is smaller to store
-- and faster to run. Backslashed characters are exceptions, each
-- becoming a separate node; the code is simpler that way and it's
-- not worth fixing.
procedure Insert_Operator
(Op : Opcode;
Operand : Pointer;
Greedy : Boolean := True);
-- Insert_Operator inserts an operator in front of an already-emitted
-- operand and relocates the operand. This applies to PLUS and STAR.
-- If Minmod is True, then the operator is non-greedy.
function Insert_Operator_Before
(Op : Opcode;
Operand : Pointer;
Greedy : Boolean;
Opsize : Pointer) return Pointer;
-- Insert an operator before Operand (and move the latter forward in the
-- program). Opsize is the size needed to represent the operator. This
-- returns the position at which the operator was inserted, and moves
-- Emit_Ptr after the new position of the operand.
procedure Insert_Curly_Operator
(Op : Opcode;
Min : Natural;
Max : Natural;
Operand : Pointer;
Greedy : Boolean := True);
-- Insert an operator for CURLY ({Min}, {Min,} or {Min,Max}).
-- If Minmod is True, then the operator is non-greedy.
procedure Link_Tail (P, Val : Pointer);
-- Link_Tail sets the next-pointer at the end of a node chain
procedure Link_Operand_Tail (P, Val : Pointer);
-- Link_Tail on operand of first argument; noop if operand-less
procedure Fail (M : String);
pragma No_Return (Fail);
-- Fail with a diagnostic message, if possible
function Is_Curly_Operator (IP : Natural) return Boolean;
-- Return True if IP is looking at a '{' that is the beginning
-- of a curly operator, i.e. it matches {\d+,?\d*}
function Is_Mult (IP : Natural) return Boolean;
-- Return True if C is a regexp multiplier: '+', '*' or '?'
procedure Get_Curly_Arguments
(IP : Natural;
Min : out Natural;
Max : out Natural;
Greedy : out Boolean);
-- Parse the argument list for a curly operator.
-- It is assumed that IP is indeed pointing at a valid operator.
-- So what is IP and how come IP is not referenced in the body ???
procedure Parse_Character_Class (IP : out Pointer);
-- Parse a character class.
-- The calling subprogram should consume the opening '[' before.
procedure Parse_Literal
(Expr_Flags : out Expression_Flags;
IP : out Pointer);
-- Parse_Literal encodes a string of characters to be matched exactly
function Parse_Posix_Character_Class return Std_Class;
-- Parse a posix character class, like [:alpha:] or [:^alpha:].
-- The caller is supposed to absorb the opening [.
pragma Inline (Is_Mult);
pragma Inline (Emit_Natural);
pragma Inline (Parse_Character_Class); -- since used only once
---------------
-- Case_Emit --
---------------
procedure Case_Emit (C : Character) is
begin
if (Flags and Case_Insensitive) /= 0 then
Emit (To_Lower (C));
else
-- Dump current character
Emit (C);
end if;
end Case_Emit;
----------
-- Emit --
----------
procedure Emit (B : Character) is
begin
if Emit_Ptr <= PM.Size then
Program (Emit_Ptr) := B;
end if;
Emit_Ptr := Emit_Ptr + 1;
end Emit;
----------------
-- Emit_Class --
----------------
procedure Emit_Class (Bitmap : Character_Class) is
subtype Program31 is Program_Data (0 .. 31);
function Convert is new Ada.Unchecked_Conversion
(Character_Class, Program31);
begin
-- What is the mysterious constant 31 here??? Can't it be expressed
-- symbolically (size of integer - 1 or some such???). In any case
-- it should be declared as a constant (and referenced presumably
-- as this constant + 1 below.
if Emit_Ptr + 31 <= PM.Size then
Program (Emit_Ptr .. Emit_Ptr + 31) := Convert (Bitmap);
end if;
Emit_Ptr := Emit_Ptr + 32;
end Emit_Class;
------------------
-- Emit_Natural --
------------------
procedure Emit_Natural (IP : Pointer; N : Natural) is
begin
if IP + 1 <= PM.Size then
Program (IP + 1) := Character'Val (N / 256);
Program (IP) := Character'Val (N mod 256);
end if;
end Emit_Natural;
---------------
-- Emit_Node --
---------------
function Emit_Node (Op : Opcode) return Pointer is
Result : constant Pointer := Emit_Ptr;
begin
if Emit_Ptr + 2 <= PM.Size then
Program (Emit_Ptr) := Character'Val (Opcode'Pos (Op));
Program (Emit_Ptr + 1) := ASCII.NUL;
Program (Emit_Ptr + 2) := ASCII.NUL;
end if;
Emit_Ptr := Emit_Ptr + Next_Pointer_Bytes;
return Result;
end Emit_Node;
----------
-- Fail --
----------
procedure Fail (M : String) is
begin
raise Expression_Error with M;
end Fail;
-------------------------
-- Get_Curly_Arguments --
-------------------------
procedure Get_Curly_Arguments
(IP : Natural;
Min : out Natural;
Max : out Natural;
Greedy : out Boolean)
is
pragma Unreferenced (IP);
Save_Pos : Natural := Parse_Pos + 1;
begin
Min := 0;
Max := Max_Curly_Repeat;
while Expression (Parse_Pos) /= '}'
and then Expression (Parse_Pos) /= ','
loop
Parse_Pos := Parse_Pos + 1;
end loop;
Min := Natural'Value (Expression (Save_Pos .. Parse_Pos - 1));
if Expression (Parse_Pos) = ',' then
Save_Pos := Parse_Pos + 1;
while Expression (Parse_Pos) /= '}' loop
Parse_Pos := Parse_Pos + 1;
end loop;
if Save_Pos /= Parse_Pos then
Max := Natural'Value (Expression (Save_Pos .. Parse_Pos - 1));
end if;
else
Max := Min;
end if;
if Parse_Pos < Expression'Last
and then Expression (Parse_Pos + 1) = '?'
then
Greedy := False;
Parse_Pos := Parse_Pos + 1;
else
Greedy := True;
end if;
end Get_Curly_Arguments;
---------------------------
-- Insert_Curly_Operator --
---------------------------
procedure Insert_Curly_Operator
(Op : Opcode;
Min : Natural;
Max : Natural;
Operand : Pointer;
Greedy : Boolean := True)
is
Old : Pointer;
begin
Old := Insert_Operator_Before (Op, Operand, Greedy, Opsize => 7);
Emit_Natural (Old + Next_Pointer_Bytes, Min);
Emit_Natural (Old + Next_Pointer_Bytes + 2, Max);
end Insert_Curly_Operator;
----------------------------
-- Insert_Operator_Before --
----------------------------
function Insert_Operator_Before
(Op : Opcode;
Operand : Pointer;
Greedy : Boolean;
Opsize : Pointer) return Pointer
is
Dest : constant Pointer := Emit_Ptr;
Old : Pointer;
Size : Pointer := Opsize;
begin
-- If not greedy, we have to emit another opcode first
if not Greedy then
Size := Size + Next_Pointer_Bytes;
end if;
-- Move the operand in the byte-compilation, so that we can insert
-- the operator before it.
if Emit_Ptr + Size <= PM.Size then
Program (Operand + Size .. Emit_Ptr + Size) :=
Program (Operand .. Emit_Ptr);
end if;
-- Insert the operator at the position previously occupied by the
-- operand.
Emit_Ptr := Operand;
if not Greedy then
Old := Emit_Node (MINMOD);
Link_Tail (Old, Old + Next_Pointer_Bytes);
end if;
Old := Emit_Node (Op);
Emit_Ptr := Dest + Size;
return Old;
end Insert_Operator_Before;
---------------------
-- Insert_Operator --
---------------------
procedure Insert_Operator
(Op : Opcode;
Operand : Pointer;
Greedy : Boolean := True)
is
Discard : Pointer;
pragma Warnings (Off, Discard);
begin
Discard := Insert_Operator_Before
(Op, Operand, Greedy, Opsize => Next_Pointer_Bytes);
end Insert_Operator;
-----------------------
-- Is_Curly_Operator --
-----------------------
function Is_Curly_Operator (IP : Natural) return Boolean is
Scan : Natural := IP;
begin
if Expression (Scan) /= '{'
or else Scan + 2 > Expression'Last
or else not Is_Digit (Expression (Scan + 1))
then
return False;
end if;
Scan := Scan + 1;
-- The first digit
loop
Scan := Scan + 1;
if Scan > Expression'Last then
return False;
end if;
exit when not Is_Digit (Expression (Scan));
end loop;
if Expression (Scan) = ',' then
loop
Scan := Scan + 1;
if Scan > Expression'Last then
return False;
end if;
exit when not Is_Digit (Expression (Scan));
end loop;
end if;
return Expression (Scan) = '}';
end Is_Curly_Operator;
-------------
-- Is_Mult --
-------------
function Is_Mult (IP : Natural) return Boolean is
C : constant Character := Expression (IP);
begin
return C = '*'
or else C = '+'
or else C = '?'
or else (C = '{' and then Is_Curly_Operator (IP));
end Is_Mult;
-----------------------
-- Link_Operand_Tail --
-----------------------
procedure Link_Operand_Tail (P, Val : Pointer) is
begin
if P <= PM.Size and then Program (P) = BRANCH then
Link_Tail (Operand (P), Val);
end if;
end Link_Operand_Tail;
---------------
-- Link_Tail --
---------------
procedure Link_Tail (P, Val : Pointer) is
Scan : Pointer;
Temp : Pointer;
Offset : Pointer;
begin
-- Find last node (the size of the pattern matcher might be too
-- small, so don't try to read past its end).
Scan := P;
while Scan + Next_Pointer_Bytes <= PM.Size loop
Temp := Get_Next (Program, Scan);
exit when Temp = Scan;
Scan := Temp;
end loop;
Offset := Val - Scan;
Emit_Natural (Scan + 1, Natural (Offset));
end Link_Tail;
-----------
-- Parse --
-----------
-- Combining parenthesis handling with the base level of regular
-- expression is a trifle forced, but the need to tie the tails of the
-- the branches to what follows makes it hard to avoid.
procedure Parse
(Parenthesized : Boolean;
Capturing : Boolean;
Flags : out Expression_Flags;
IP : out Pointer)
is
E : String renames Expression;
Br, Br2 : Pointer;
Ender : Pointer;
Par_No : Natural;
New_Flags : Expression_Flags;
Have_Branch : Boolean := False;
begin
Flags := (Has_Width => True, others => False); -- Tentatively
-- Make an OPEN node, if parenthesized
if Parenthesized and then Capturing then
if Matcher.Paren_Count > Max_Paren_Count then
Fail ("too many ()");
end if;
Par_No := Matcher.Paren_Count + 1;
Matcher.Paren_Count := Matcher.Paren_Count + 1;
IP := Emit_Node (OPEN);
Emit (Character'Val (Par_No));
else
IP := 0;
Par_No := 0;
end if;
-- Pick up the branches, linking them together
Parse_Branch (New_Flags, True, Br);
if Br = 0 then
IP := 0;
return;
end if;
if Parse_Pos <= Parse_End
and then E (Parse_Pos) = '|'
then
Insert_Operator (BRANCH, Br);
Have_Branch := True;
end if;
if IP /= 0 then
Link_Tail (IP, Br); -- OPEN -> first
else
IP := Br;
end if;
if not New_Flags.Has_Width then
Flags.Has_Width := False;
end if;
Flags.SP_Start := Flags.SP_Start or else New_Flags.SP_Start;
while Parse_Pos <= Parse_End
and then (E (Parse_Pos) = '|')
loop
Parse_Pos := Parse_Pos + 1;
Parse_Branch (New_Flags, False, Br);
if Br = 0 then
IP := 0;
return;
end if;
Link_Tail (IP, Br); -- BRANCH -> BRANCH
if not New_Flags.Has_Width then
Flags.Has_Width := False;
end if;
Flags.SP_Start := Flags.SP_Start or else New_Flags.SP_Start;
end loop;
-- Make a closing node, and hook it on the end
if Parenthesized then
if Capturing then
Ender := Emit_Node (CLOSE);
Emit (Character'Val (Par_No));
Link_Tail (IP, Ender);
else
-- Need to keep looking after the closing parenthesis
Ender := Emit_Ptr;
end if;
else
Ender := Emit_Node (EOP);
Link_Tail (IP, Ender);
end if;
if Have_Branch and then Emit_Ptr <= PM.Size + 1 then
-- Hook the tails of the branches to the closing node
Br := IP;
loop
Link_Operand_Tail (Br, Ender);
Br2 := Get_Next (Program, Br);
exit when Br2 = Br;
Br := Br2;
end loop;
end if;
-- Check for proper termination
if Parenthesized then
if Parse_Pos > Parse_End or else E (Parse_Pos) /= ')' then
Fail ("unmatched ()");
end if;
Parse_Pos := Parse_Pos + 1;
elsif Parse_Pos <= Parse_End then
if E (Parse_Pos) = ')' then
Fail ("unmatched ')'");
else
Fail ("junk on end"); -- "Can't happen"
end if;
end if;
end Parse;
----------------
-- Parse_Atom --
----------------
procedure Parse_Atom
(Expr_Flags : out Expression_Flags;
IP : out Pointer)
is
C : Character;
begin
-- Tentatively set worst expression case
Expr_Flags := Worst_Expression;
C := Expression (Parse_Pos);
Parse_Pos := Parse_Pos + 1;
case (C) is
when '^' =>
IP :=
Emit_Node
(if (Flags and Multiple_Lines) /= 0 then MBOL
elsif (Flags and Single_Line) /= 0 then SBOL
else BOL);
when '$' =>
IP :=
Emit_Node
(if (Flags and Multiple_Lines) /= 0 then MEOL
elsif (Flags and Single_Line) /= 0 then SEOL
else EOL);
when '.' =>
IP :=
Emit_Node
(if (Flags and Single_Line) /= 0 then SANY else ANY);
Expr_Flags.Has_Width := True;
Expr_Flags.Simple := True;
when '[' =>
Parse_Character_Class (IP);
Expr_Flags.Has_Width := True;
Expr_Flags.Simple := True;
when '(' =>
declare
New_Flags : Expression_Flags;
begin
if Parse_Pos <= Parse_End - 1
and then Expression (Parse_Pos) = '?'
and then Expression (Parse_Pos + 1) = ':'
then
Parse_Pos := Parse_Pos + 2;
-- Non-capturing parenthesis
Parse (True, False, New_Flags, IP);
else
-- Capturing parenthesis
Parse (True, True, New_Flags, IP);
Expr_Flags.Has_Width :=
Expr_Flags.Has_Width or else New_Flags.Has_Width;
Expr_Flags.SP_Start :=
Expr_Flags.SP_Start or else New_Flags.SP_Start;
if IP = 0 then
return;
end if;
end if;
end;
when '|' | ASCII.LF | ')' =>
Fail ("internal urp"); -- Supposed to be caught earlier
when '?' | '+' | '*' =>
Fail (C & " follows nothing");
when '{' =>
if Is_Curly_Operator (Parse_Pos - 1) then
Fail (C & " follows nothing");
else
Parse_Literal (Expr_Flags, IP);
end if;
when '\' =>
if Parse_Pos > Parse_End then
Fail ("trailing \");
end if;
Parse_Pos := Parse_Pos + 1;
case Expression (Parse_Pos - 1) is
when 'b' =>
IP := Emit_Node (BOUND);
when 'B' =>
IP := Emit_Node (NBOUND);
when 's' =>
IP := Emit_Node (SPACE);
Expr_Flags.Simple := True;
Expr_Flags.Has_Width := True;
when 'S' =>
IP := Emit_Node (NSPACE);
Expr_Flags.Simple := True;
Expr_Flags.Has_Width := True;
when 'd' =>
IP := Emit_Node (DIGIT);
Expr_Flags.Simple := True;
Expr_Flags.Has_Width := True;
when 'D' =>
IP := Emit_Node (NDIGIT);
Expr_Flags.Simple := True;
Expr_Flags.Has_Width := True;
when 'w' =>
IP := Emit_Node (ALNUM);
Expr_Flags.Simple := True;
Expr_Flags.Has_Width := True;
when 'W' =>
IP := Emit_Node (NALNUM);
Expr_Flags.Simple := True;
Expr_Flags.Has_Width := True;
when 'A' =>
IP := Emit_Node (SBOL);
when 'G' =>
IP := Emit_Node (SEOL);
when '0' .. '9' =>
IP := Emit_Node (REFF);
declare
Save : constant Natural := Parse_Pos - 1;
begin
while Parse_Pos <= Expression'Last
and then Is_Digit (Expression (Parse_Pos))
loop
Parse_Pos := Parse_Pos + 1;
end loop;
Emit (Character'Val (Natural'Value
(Expression (Save .. Parse_Pos - 1))));
end;
when others =>
Parse_Pos := Parse_Pos - 1;
Parse_Literal (Expr_Flags, IP);
end case;
when others =>
Parse_Literal (Expr_Flags, IP);
end case;
end Parse_Atom;
------------------
-- Parse_Branch --
------------------
procedure Parse_Branch
(Flags : out Expression_Flags;
First : Boolean;
IP : out Pointer)
is
E : String renames Expression;
Chain : Pointer;
Last : Pointer;
New_Flags : Expression_Flags;
Discard : Pointer;
pragma Warnings (Off, Discard);
begin
Flags := Worst_Expression; -- Tentatively
IP := (if First then Emit_Ptr else Emit_Node (BRANCH));
Chain := 0;
while Parse_Pos <= Parse_End
and then E (Parse_Pos) /= ')'
and then E (Parse_Pos) /= ASCII.LF
and then E (Parse_Pos) /= '|'
loop
Parse_Piece (New_Flags, Last);
if Last = 0 then
IP := 0;
return;
end if;
Flags.Has_Width := Flags.Has_Width or else New_Flags.Has_Width;
if Chain = 0 then -- First piece
Flags.SP_Start := Flags.SP_Start or else New_Flags.SP_Start;
else
Link_Tail (Chain, Last);
end if;
Chain := Last;
end loop;
-- Case where loop ran zero CURLY
if Chain = 0 then
Discard := Emit_Node (NOTHING);
end if;
end Parse_Branch;
---------------------------
-- Parse_Character_Class --
---------------------------
procedure Parse_Character_Class (IP : out Pointer) is
Bitmap : Character_Class;
Invert : Boolean := False;
In_Range : Boolean := False;
Named_Class : Std_Class := ANYOF_NONE;
Value : Character;
Last_Value : Character := ASCII.NUL;
begin
Reset_Class (Bitmap);
-- Do we have an invert character class ?
if Parse_Pos <= Parse_End
and then Expression (Parse_Pos) = '^'
then
Invert := True;
Parse_Pos := Parse_Pos + 1;
end if;
-- First character can be ] or - without closing the class
if Parse_Pos <= Parse_End
and then (Expression (Parse_Pos) = ']'
or else Expression (Parse_Pos) = '-')
then
Set_In_Class (Bitmap, Expression (Parse_Pos));
Parse_Pos := Parse_Pos + 1;
end if;
-- While we don't have the end of the class
while Parse_Pos <= Parse_End
and then Expression (Parse_Pos) /= ']'
loop
Named_Class := ANYOF_NONE;
Value := Expression (Parse_Pos);
Parse_Pos := Parse_Pos + 1;
-- Do we have a Posix character class
if Value = '[' then
Named_Class := Parse_Posix_Character_Class;
elsif Value = '\' then
if Parse_Pos = Parse_End then
Fail ("Trailing \");
end if;
Value := Expression (Parse_Pos);
Parse_Pos := Parse_Pos + 1;
case Value is
when 'w' => Named_Class := ANYOF_ALNUM;
when 'W' => Named_Class := ANYOF_NALNUM;
when 's' => Named_Class := ANYOF_SPACE;
when 'S' => Named_Class := ANYOF_NSPACE;
when 'd' => Named_Class := ANYOF_DIGIT;
when 'D' => Named_Class := ANYOF_NDIGIT;
when 'n' => Value := ASCII.LF;
when 'r' => Value := ASCII.CR;
when 't' => Value := ASCII.HT;
when 'f' => Value := ASCII.FF;
when 'e' => Value := ASCII.ESC;
when 'a' => Value := ASCII.BEL;
-- when 'x' => ??? hexadecimal value
-- when 'c' => ??? control character
-- when '0'..'9' => ??? octal character
when others => null;
end case;
end if;
-- Do we have a character class?
if Named_Class /= ANYOF_NONE then
-- A range like 'a-\d' or 'a-[:digit:] is not a range
if In_Range then
Set_In_Class (Bitmap, Last_Value);
Set_In_Class (Bitmap, '-');
In_Range := False;
end if;
-- Expand the range
case Named_Class is
when ANYOF_NONE => null;
when ANYOF_ALNUM | ANYOF_ALNUMC =>
for Value in Class_Byte'Range loop
if Is_Alnum (Character'Val (Value)) then
Set_In_Class (Bitmap, Character'Val (Value));
end if;
end loop;
when ANYOF_NALNUM | ANYOF_NALNUMC =>
for Value in Class_Byte'Range loop
if not Is_Alnum (Character'Val (Value)) then
Set_In_Class (Bitmap, Character'Val (Value));
end if;
end loop;
when ANYOF_SPACE =>
for Value in Class_Byte'Range loop
if Is_White_Space (Character'Val (Value)) then
Set_In_Class (Bitmap, Character'Val (Value));
end if;
end loop;
when ANYOF_NSPACE =>
for Value in Class_Byte'Range loop
if not Is_White_Space (Character'Val (Value)) then
Set_In_Class (Bitmap, Character'Val (Value));
end if;
end loop;
when ANYOF_DIGIT =>
for Value in Class_Byte'Range loop
if Is_Digit (Character'Val (Value)) then
Set_In_Class (Bitmap, Character'Val (Value));
end if;
end loop;
when ANYOF_NDIGIT =>
for Value in Class_Byte'Range loop
if not Is_Digit (Character'Val (Value)) then
Set_In_Class (Bitmap, Character'Val (Value));
end if;
end loop;
when ANYOF_ALPHA =>
for Value in Class_Byte'Range loop
if Is_Letter (Character'Val (Value)) then
Set_In_Class (Bitmap, Character'Val (Value));
end if;
end loop;
when ANYOF_NALPHA =>
for Value in Class_Byte'Range loop
if not Is_Letter (Character'Val (Value)) then
Set_In_Class (Bitmap, Character'Val (Value));
end if;
end loop;
when ANYOF_ASCII =>
for Value in 0 .. 127 loop
Set_In_Class (Bitmap, Character'Val (Value));
end loop;
when ANYOF_NASCII =>
for Value in 128 .. 255 loop
Set_In_Class (Bitmap, Character'Val (Value));
end loop;
when ANYOF_CNTRL =>
for Value in Class_Byte'Range loop
if Is_Control (Character'Val (Value)) then
Set_In_Class (Bitmap, Character'Val (Value));
end if;
end loop;
when ANYOF_NCNTRL =>
for Value in Class_Byte'Range loop
if not Is_Control (Character'Val (Value)) then
Set_In_Class (Bitmap, Character'Val (Value));
end if;
end loop;
when ANYOF_GRAPH =>
for Value in Class_Byte'Range loop
if Is_Graphic (Character'Val (Value)) then
Set_In_Class (Bitmap, Character'Val (Value));
end if;
end loop;
when ANYOF_NGRAPH =>
for Value in Class_Byte'Range loop
if not Is_Graphic (Character'Val (Value)) then
Set_In_Class (Bitmap, Character'Val (Value));
end if;
end loop;
when ANYOF_LOWER =>
for Value in Class_Byte'Range loop
if Is_Lower (Character'Val (Value)) then
Set_In_Class (Bitmap, Character'Val (Value));
end if;
end loop;
when ANYOF_NLOWER =>
for Value in Class_Byte'Range loop
if not Is_Lower (Character'Val (Value)) then
Set_In_Class (Bitmap, Character'Val (Value));
end if;
end loop;
when ANYOF_PRINT =>
for Value in Class_Byte'Range loop
if Is_Printable (Character'Val (Value)) then
Set_In_Class (Bitmap, Character'Val (Value));
end if;
end loop;
when ANYOF_NPRINT =>
for Value in Class_Byte'Range loop
if not Is_Printable (Character'Val (Value)) then
Set_In_Class (Bitmap, Character'Val (Value));
end if;
end loop;
when ANYOF_PUNCT =>
for Value in Class_Byte'Range loop
if Is_Printable (Character'Val (Value))
and then not Is_White_Space (Character'Val (Value))
and then not Is_Alnum (Character'Val (Value))
then
Set_In_Class (Bitmap, Character'Val (Value));
end if;
end loop;
when ANYOF_NPUNCT =>
for Value in Class_Byte'Range loop
if not Is_Printable (Character'Val (Value))
or else Is_White_Space (Character'Val (Value))
or else Is_Alnum (Character'Val (Value))
then
Set_In_Class (Bitmap, Character'Val (Value));
end if;
end loop;
when ANYOF_UPPER =>
for Value in Class_Byte'Range loop
if Is_Upper (Character'Val (Value)) then
Set_In_Class (Bitmap, Character'Val (Value));
end if;
end loop;
when ANYOF_NUPPER =>
for Value in Class_Byte'Range loop
if not Is_Upper (Character'Val (Value)) then
Set_In_Class (Bitmap, Character'Val (Value));
end if;
end loop;
when ANYOF_XDIGIT =>
for Value in Class_Byte'Range loop
if Is_Hexadecimal_Digit (Character'Val (Value)) then
Set_In_Class (Bitmap, Character'Val (Value));
end if;
end loop;
when ANYOF_NXDIGIT =>
for Value in Class_Byte'Range loop
if not Is_Hexadecimal_Digit
(Character'Val (Value))
then
Set_In_Class (Bitmap, Character'Val (Value));
end if;
end loop;
end case;
-- Not a character range
elsif not In_Range then
Last_Value := Value;
if Parse_Pos > Expression'Last then
Fail ("Empty character class []");
end if;
if Expression (Parse_Pos) = '-'
and then Parse_Pos < Parse_End
and then Expression (Parse_Pos + 1) /= ']'
then
Parse_Pos := Parse_Pos + 1;
In_Range := True;
else
Set_In_Class (Bitmap, Value);
end if;
-- Else in a character range
else
if Last_Value > Value then
Fail ("Invalid Range [" & Last_Value'Img
& "-" & Value'Img & "]");
end if;
while Last_Value <= Value loop
Set_In_Class (Bitmap, Last_Value);
Last_Value := Character'Succ (Last_Value);
end loop;
In_Range := False;
end if;
end loop;
-- Optimize case-insensitive ranges (put the upper case or lower
-- case character into the bitmap)
if (Flags and Case_Insensitive) /= 0 then
for C in Character'Range loop
if Get_From_Class (Bitmap, C) then
Set_In_Class (Bitmap, To_Lower (C));
Set_In_Class (Bitmap, To_Upper (C));
end if;
end loop;
end if;
-- Optimize inverted classes
if Invert then
for J in Bitmap'Range loop
Bitmap (J) := not Bitmap (J);
end loop;
end if;
Parse_Pos := Parse_Pos + 1;
-- Emit the class
IP := Emit_Node (ANYOF);
Emit_Class (Bitmap);
end Parse_Character_Class;
-------------------
-- Parse_Literal --
-------------------
-- This is a bit tricky due to quoted chars and due to
-- the multiplier characters '*', '+', and '?' that
-- take the SINGLE char previous as their operand.
-- On entry, the character at Parse_Pos - 1 is going to go
-- into the string, no matter what it is. It could be
-- following a \ if Parse_Atom was entered from the '\' case.
-- Basic idea is to pick up a good char in C and examine
-- the next char. If Is_Mult (C) then twiddle, if it's a \
-- then frozzle and if it's another magic char then push C and
-- terminate the string. If none of the above, push C on the
-- string and go around again.
-- Start_Pos is used to remember where "the current character"
-- starts in the string, if due to an Is_Mult we need to back
-- up and put the current char in a separate 1-character string.
-- When Start_Pos is 0, C is the only char in the string;
-- this is used in Is_Mult handling, and in setting the SIMPLE
-- flag at the end.
procedure Parse_Literal
(Expr_Flags : out Expression_Flags;
IP : out Pointer)
is
Start_Pos : Natural := 0;
C : Character;
Length_Ptr : Pointer;
Has_Special_Operator : Boolean := False;
begin
Expr_Flags := Worst_Expression; -- Ensure Expr_Flags is initialized
Parse_Pos := Parse_Pos - 1; -- Look at current character
IP :=
Emit_Node
(if (Flags and Case_Insensitive) /= 0 then EXACTF else EXACT);
Length_Ptr := Emit_Ptr;
Emit_Ptr := String_Operand (IP);
Parse_Loop :
loop
C := Expression (Parse_Pos); -- Get current character
case C is
when '.' | '[' | '(' | ')' | '|' | ASCII.LF | '$' | '^' =>
if Start_Pos = 0 then
Start_Pos := Parse_Pos;
Emit (C); -- First character is always emitted
else
exit Parse_Loop; -- Else we are done
end if;
when '?' | '+' | '*' | '{' =>
if Start_Pos = 0 then
Start_Pos := Parse_Pos;
Emit (C); -- First character is always emitted
-- Are we looking at an operator, or is this
-- simply a normal character ?
elsif not Is_Mult (Parse_Pos) then
Start_Pos := Parse_Pos;
Case_Emit (C);
else
-- We've got something like "abc?d". Mark this as a
-- special case. What we want to emit is a first
-- constant string for "ab", then one for "c" that will
-- ultimately be transformed with a CURLY operator, A
-- special case has to be handled for "a?", since there
-- is no initial string to emit.
Has_Special_Operator := True;
exit Parse_Loop;
end if;
when '\' =>
Start_Pos := Parse_Pos;
if Parse_Pos = Parse_End then
Fail ("Trailing \");
else
case Expression (Parse_Pos + 1) is
when 'b' | 'B' | 's' | 'S' | 'd' | 'D'
| 'w' | 'W' | '0' .. '9' | 'G' | 'A'
=> exit Parse_Loop;
when 'n' => Emit (ASCII.LF);
when 't' => Emit (ASCII.HT);
when 'r' => Emit (ASCII.CR);
when 'f' => Emit (ASCII.FF);
when 'e' => Emit (ASCII.ESC);
when 'a' => Emit (ASCII.BEL);
when others => Emit (Expression (Parse_Pos + 1));
end case;
Parse_Pos := Parse_Pos + 1;
end if;
when others =>
Start_Pos := Parse_Pos;
Case_Emit (C);
end case;
Parse_Pos := Parse_Pos + 1;
exit Parse_Loop when Parse_Pos > Parse_End
or else Emit_Ptr - Length_Ptr = 254;
end loop Parse_Loop;
-- Is the string followed by a '*+?{' operator ? If yes, and if there
-- is an initial string to emit, do it now.
if Has_Special_Operator
and then Emit_Ptr >= Length_Ptr + Next_Pointer_Bytes
then
Emit_Ptr := Emit_Ptr - 1;
Parse_Pos := Start_Pos;
end if;
if Length_Ptr <= PM.Size then
Program (Length_Ptr) := Character'Val (Emit_Ptr - Length_Ptr - 2);
end if;
Expr_Flags.Has_Width := True;
-- Slight optimization when there is a single character
if Emit_Ptr = Length_Ptr + 2 then
Expr_Flags.Simple := True;
end if;
end Parse_Literal;
-----------------
-- Parse_Piece --
-----------------
-- Note that the branching code sequences used for '?' and the
-- general cases of '*' and + are somewhat optimized: they use
-- the same NOTHING node as both the endmarker for their branch
-- list and the body of the last branch. It might seem that
-- this node could be dispensed with entirely, but the endmarker
-- role is not redundant.
procedure Parse_Piece
(Expr_Flags : out Expression_Flags;
IP : out Pointer)
is
Op : Character;
New_Flags : Expression_Flags;
Greedy : Boolean := True;
begin
Parse_Atom (New_Flags, IP);
if IP = 0
or else Parse_Pos > Parse_End
or else not Is_Mult (Parse_Pos)
then
Expr_Flags := New_Flags;
return;
end if;
Op := Expression (Parse_Pos);
Expr_Flags :=
(if Op /= '+'
then (SP_Start => True, others => False)
else (Has_Width => True, others => False));
-- Detect non greedy operators in the easy cases
if Op /= '{'
and then Parse_Pos + 1 <= Parse_End
and then Expression (Parse_Pos + 1) = '?'
then
Greedy := False;
Parse_Pos := Parse_Pos + 1;
end if;
-- Generate the byte code
case Op is
when '*' =>
if New_Flags.Simple then
Insert_Operator (STAR, IP, Greedy);
else
Link_Tail (IP, Emit_Node (WHILEM));
Insert_Curly_Operator
(CURLYX, 0, Max_Curly_Repeat, IP, Greedy);
Link_Tail (IP, Emit_Node (NOTHING));
end if;
when '+' =>
if New_Flags.Simple then
Insert_Operator (PLUS, IP, Greedy);
else
Link_Tail (IP, Emit_Node (WHILEM));
Insert_Curly_Operator
(CURLYX, 1, Max_Curly_Repeat, IP, Greedy);
Link_Tail (IP, Emit_Node (NOTHING));
end if;
when '?' =>
if New_Flags.Simple then
Insert_Curly_Operator (CURLY, 0, 1, IP, Greedy);
else
Link_Tail (IP, Emit_Node (WHILEM));
Insert_Curly_Operator (CURLYX, 0, 1, IP, Greedy);
Link_Tail (IP, Emit_Node (NOTHING));
end if;
when '{' =>
declare
Min, Max : Natural;
begin
Get_Curly_Arguments (Parse_Pos, Min, Max, Greedy);
if New_Flags.Simple then
Insert_Curly_Operator (CURLY, Min, Max, IP, Greedy);
else
Link_Tail (IP, Emit_Node (WHILEM));
Insert_Curly_Operator (CURLYX, Min, Max, IP, Greedy);
Link_Tail (IP, Emit_Node (NOTHING));
end if;
end;
when others =>
null;
end case;
Parse_Pos := Parse_Pos + 1;
if Parse_Pos <= Parse_End
and then Is_Mult (Parse_Pos)
then
Fail ("nested *+{");
end if;
end Parse_Piece;
---------------------------------
-- Parse_Posix_Character_Class --
---------------------------------
function Parse_Posix_Character_Class return Std_Class is
Invert : Boolean := False;
Class : Std_Class := ANYOF_NONE;
E : String renames Expression;
-- Class names. Note that code assumes that the length of all
-- classes starting with the same letter have the same length.
Alnum : constant String := "alnum:]";
Alpha : constant String := "alpha:]";
Ascii_C : constant String := "ascii:]";
Cntrl : constant String := "cntrl:]";
Digit : constant String := "digit:]";
Graph : constant String := "graph:]";
Lower : constant String := "lower:]";
Print : constant String := "print:]";
Punct : constant String := "punct:]";
Space : constant String := "space:]";
Upper : constant String := "upper:]";
Word : constant String := "word:]";
Xdigit : constant String := "xdigit:]";
begin
-- Case of character class specified
if Parse_Pos <= Parse_End
and then Expression (Parse_Pos) = ':'
then
Parse_Pos := Parse_Pos + 1;
-- Do we have something like: [[:^alpha:]]
if Parse_Pos <= Parse_End
and then Expression (Parse_Pos) = '^'
then
Invert := True;
Parse_Pos := Parse_Pos + 1;
end if;
-- Check for class names based on first letter
case Expression (Parse_Pos) is
when 'a' =>
-- All 'a' classes have the same length (Alnum'Length)
if Parse_Pos + Alnum'Length - 1 <= Parse_End then
if
E (Parse_Pos .. Parse_Pos + Alnum'Length - 1) = Alnum
then
Class :=
(if Invert then ANYOF_NALNUMC else ANYOF_ALNUMC);
Parse_Pos := Parse_Pos + Alnum'Length;
elsif
E (Parse_Pos .. Parse_Pos + Alpha'Length - 1) = Alpha
then
Class :=
(if Invert then ANYOF_NALPHA else ANYOF_ALPHA);
Parse_Pos := Parse_Pos + Alpha'Length;
elsif E (Parse_Pos .. Parse_Pos + Ascii_C'Length - 1) =
Ascii_C
then
Class :=
(if Invert then ANYOF_NASCII else ANYOF_ASCII);
Parse_Pos := Parse_Pos + Ascii_C'Length;
else
Fail ("Invalid character class: " & E);
end if;
else
Fail ("Invalid character class: " & E);
end if;
when 'c' =>
if Parse_Pos + Cntrl'Length - 1 <= Parse_End
and then
E (Parse_Pos .. Parse_Pos + Cntrl'Length - 1) = Cntrl
then
Class := (if Invert then ANYOF_NCNTRL else ANYOF_CNTRL);
Parse_Pos := Parse_Pos + Cntrl'Length;
else
Fail ("Invalid character class: " & E);
end if;
when 'd' =>
if Parse_Pos + Digit'Length - 1 <= Parse_End
and then
E (Parse_Pos .. Parse_Pos + Digit'Length - 1) = Digit
then
Class := (if Invert then ANYOF_NDIGIT else ANYOF_DIGIT);
Parse_Pos := Parse_Pos + Digit'Length;
end if;
when 'g' =>
if Parse_Pos + Graph'Length - 1 <= Parse_End
and then
E (Parse_Pos .. Parse_Pos + Graph'Length - 1) = Graph
then
Class := (if Invert then ANYOF_NGRAPH else ANYOF_GRAPH);
Parse_Pos := Parse_Pos + Graph'Length;
else
Fail ("Invalid character class: " & E);
end if;
when 'l' =>
if Parse_Pos + Lower'Length - 1 <= Parse_End
and then
E (Parse_Pos .. Parse_Pos + Lower'Length - 1) = Lower
then
Class := (if Invert then ANYOF_NLOWER else ANYOF_LOWER);
Parse_Pos := Parse_Pos + Lower'Length;
else
Fail ("Invalid character class: " & E);
end if;
when 'p' =>
-- All 'p' classes have the same length
if Parse_Pos + Print'Length - 1 <= Parse_End then
if
E (Parse_Pos .. Parse_Pos + Print'Length - 1) = Print
then
Class :=
(if Invert then ANYOF_NPRINT else ANYOF_PRINT);
Parse_Pos := Parse_Pos + Print'Length;
elsif
E (Parse_Pos .. Parse_Pos + Punct'Length - 1) = Punct
then
Class :=
(if Invert then ANYOF_NPUNCT else ANYOF_PUNCT);
Parse_Pos := Parse_Pos + Punct'Length;
else
Fail ("Invalid character class: " & E);
end if;
else
Fail ("Invalid character class: " & E);
end if;
when 's' =>
if Parse_Pos + Space'Length - 1 <= Parse_End
and then
E (Parse_Pos .. Parse_Pos + Space'Length - 1) = Space
then
Class := (if Invert then ANYOF_NSPACE else ANYOF_SPACE);
Parse_Pos := Parse_Pos + Space'Length;
else
Fail ("Invalid character class: " & E);
end if;
when 'u' =>
if Parse_Pos + Upper'Length - 1 <= Parse_End
and then
E (Parse_Pos .. Parse_Pos + Upper'Length - 1) = Upper
then
Class := (if Invert then ANYOF_NUPPER else ANYOF_UPPER);
Parse_Pos := Parse_Pos + Upper'Length;
else
Fail ("Invalid character class: " & E);
end if;
when 'w' =>
if Parse_Pos + Word'Length - 1 <= Parse_End
and then
E (Parse_Pos .. Parse_Pos + Word'Length - 1) = Word
then
Class := (if Invert then ANYOF_NALNUM else ANYOF_ALNUM);
Parse_Pos := Parse_Pos + Word'Length;
else
Fail ("Invalid character class: " & E);
end if;
when 'x' =>
if Parse_Pos + Xdigit'Length - 1 <= Parse_End
and then
E (Parse_Pos .. Parse_Pos + Xdigit'Length - 1) = Xdigit
then
Class := (if Invert then ANYOF_NXDIGIT else ANYOF_XDIGIT);
Parse_Pos := Parse_Pos + Xdigit'Length;
else
Fail ("Invalid character class: " & E);
end if;
when others =>
Fail ("Invalid character class: " & E);
end case;
-- Character class not specified
else
return ANYOF_NONE;
end if;
return Class;
end Parse_Posix_Character_Class;
-- Local Declarations
Result : Pointer;
Expr_Flags : Expression_Flags;
pragma Unreferenced (Expr_Flags);
-- Start of processing for Compile
begin
Parse (False, False, Expr_Flags, Result);
if Result = 0 then
Fail ("Couldn't compile expression");
end if;
Final_Code_Size := Emit_Ptr - 1;
-- Do we want to actually compile the expression, or simply get the
-- code size ???
if Emit_Ptr <= PM.Size then
Optimize (PM);
end if;
PM.Flags := Flags;
end Compile;
function Compile
(Expression : String;
Flags : Regexp_Flags := No_Flags) return Pattern_Matcher
is
-- Assume the compiled regexp will fit in 1000 chars. If it does not we
-- will have to compile a second time once the correct size is known. If
-- it fits, we save a significant amount of time by avoiding the second
-- compilation.
Dummy : Pattern_Matcher (1000);
Size : Program_Size;
begin
Compile (Dummy, Expression, Size, Flags);
if Size <= Dummy.Size then
return Pattern_Matcher'
(Size => Size,
First => Dummy.First,
Anchored => Dummy.Anchored,
Must_Have => Dummy.Must_Have,
Must_Have_Length => Dummy.Must_Have_Length,
Paren_Count => Dummy.Paren_Count,
Flags => Dummy.Flags,
Program =>
Dummy.Program
(Dummy.Program'First .. Dummy.Program'First + Size - 1));
else
-- We have to recompile now that we know the size
-- ??? Can we use Ada 2005's return construct ?
declare
Result : Pattern_Matcher (Size);
begin
Compile (Result, Expression, Size, Flags);
return Result;
end;
end if;
end Compile;
procedure Compile
(Matcher : out Pattern_Matcher;
Expression : String;
Flags : Regexp_Flags := No_Flags)
is
Size : Program_Size;
begin
Compile (Matcher, Expression, Size, Flags);
if Size > Matcher.Size then
raise Expression_Error with "Pattern_Matcher is too small";
end if;
end Compile;
--------------------
-- Dump_Operation --
--------------------
procedure Dump_Operation
(Program : Program_Data;
Index : Pointer;
Indent : Natural)
is
Current : Pointer := Index;
begin
Dump_Until (Program, Current, Current + 1, Indent);
end Dump_Operation;
----------------
-- Dump_Until --
----------------
procedure Dump_Until
(Program : Program_Data;
Index : in out Pointer;
Till : Pointer;
Indent : Natural;
Do_Print : Boolean := True)
is
function Image (S : String) return String;
-- Remove leading space
-----------
-- Image --
-----------
function Image (S : String) return String is
begin
if S (S'First) = ' ' then
return S (S'First + 1 .. S'Last);
else
return S;
end if;
end Image;
-- Local variables
Op : Opcode;
Next : Pointer;
Length : Pointer;
Local_Indent : Natural := Indent;
-- Start of processing for Dump_Until
begin
while Index < Till loop
Op := Opcode'Val (Character'Pos ((Program (Index))));
Next := Get_Next (Program, Index);
if Do_Print then
declare
Point : constant String := Pointer'Image (Index);
begin
Put ((1 .. 4 - Point'Length => ' ')
& Point & ":"
& (1 .. Local_Indent * 2 => ' ') & Opcode'Image (Op));
end;
-- Print the parenthesis number
if Op = OPEN or else Op = CLOSE or else Op = REFF then
Put (Image (Natural'Image
(Character'Pos
(Program (Index + Next_Pointer_Bytes)))));
end if;
if Next = Index then
Put (" (-)");
else
Put (" (" & Image (Pointer'Image (Next)) & ")");
end if;
end if;
case Op is
when ANYOF =>
declare
Bitmap : Character_Class;
Last : Character := ASCII.NUL;
Current : Natural := 0;
Current_Char : Character;
begin
Bitmap_Operand (Program, Index, Bitmap);
if Do_Print then
Put ("[");
while Current <= 255 loop
Current_Char := Character'Val (Current);
-- First item in a range
if Get_From_Class (Bitmap, Current_Char) then
Last := Current_Char;
-- Search for the last item in the range
loop
Current := Current + 1;
exit when Current > 255;
Current_Char := Character'Val (Current);
exit when
not Get_From_Class (Bitmap, Current_Char);
end loop;
if not Is_Graphic (Last) then
Put (Last'Img);
else
Put (Last);
end if;
if Character'Succ (Last) /= Current_Char then
Put ("\-" & Character'Pred (Current_Char));
end if;
else
Current := Current + 1;
end if;
end loop;
Put_Line ("]");
end if;
Index := Index + Next_Pointer_Bytes + Bitmap'Length;
end;
when EXACT | EXACTF =>
Length := String_Length (Program, Index);
if Do_Print then
Put (" (" & Image (Program_Size'Image (Length + 1))
& " chars) <"
& String (Program (String_Operand (Index)
.. String_Operand (Index)
+ Length)));
Put_Line (">");
end if;
Index := String_Operand (Index) + Length + 1;
-- Node operand
when BRANCH | STAR | PLUS =>
if Do_Print then
New_Line;
end if;
Index := Index + Next_Pointer_Bytes;
Dump_Until (Program, Index, Pointer'Min (Next, Till),
Local_Indent + 1, Do_Print);
when CURLY | CURLYX =>
if Do_Print then
Put_Line
(" {"
& Image (Natural'Image
(Read_Natural (Program, Index + Next_Pointer_Bytes)))
& ","
& Image (Natural'Image (Read_Natural (Program, Index + 5)))
& "}");
end if;
Index := Index + 7;
Dump_Until (Program, Index, Pointer'Min (Next, Till),
Local_Indent + 1, Do_Print);
when OPEN =>
if Do_Print then
New_Line;
end if;
Index := Index + 4;
Local_Indent := Local_Indent + 1;
when CLOSE | REFF =>
if Do_Print then
New_Line;
end if;
Index := Index + 4;
if Op = CLOSE then
Local_Indent := Local_Indent - 1;
end if;
when others =>
Index := Index + Next_Pointer_Bytes;
if Do_Print then
New_Line;
end if;
exit when Op = EOP;
end case;
end loop;
end Dump_Until;
----------
-- Dump --
----------
procedure Dump (Self : Pattern_Matcher) is
Program : Program_Data renames Self.Program;
Index : Pointer := Program'First;
-- Start of processing for Dump
begin
Put_Line ("Must start with (Self.First) = "
& Character'Image (Self.First));
if (Self.Flags and Case_Insensitive) /= 0 then
Put_Line (" Case_Insensitive mode");
end if;
if (Self.Flags and Single_Line) /= 0 then
Put_Line (" Single_Line mode");
end if;
if (Self.Flags and Multiple_Lines) /= 0 then
Put_Line (" Multiple_Lines mode");
end if;
Dump_Until (Program, Index, Self.Program'Last + 1, 0);
end Dump;
--------------------
-- Get_From_Class --
--------------------
function Get_From_Class
(Bitmap : Character_Class;
C : Character) return Boolean
is
Value : constant Class_Byte := Character'Pos (C);
begin
return
(Bitmap (Value / 8) and Bit_Conversion (Value mod 8)) /= 0;
end Get_From_Class;
--------------
-- Get_Next --
--------------
function Get_Next (Program : Program_Data; IP : Pointer) return Pointer is
begin
return IP + Pointer (Read_Natural (Program, IP + 1));
end Get_Next;
--------------
-- Is_Alnum --
--------------
function Is_Alnum (C : Character) return Boolean is
begin
return Is_Alphanumeric (C) or else C = '_';
end Is_Alnum;
------------------
-- Is_Printable --
------------------
function Is_Printable (C : Character) return Boolean is
begin
-- Printable if space or graphic character or other whitespace
-- Other white space includes (HT/LF/VT/FF/CR = codes 9-13)
return C in Character'Val (32) .. Character'Val (126)
or else C in ASCII.HT .. ASCII.CR;
end Is_Printable;
--------------------
-- Is_White_Space --
--------------------
function Is_White_Space (C : Character) return Boolean is
begin
-- Note: HT = 9, LF = 10, VT = 11, FF = 12, CR = 13
return C = ' ' or else C in ASCII.HT .. ASCII.CR;
end Is_White_Space;
-----------
-- Match --
-----------
procedure Match
(Self : Pattern_Matcher;
Data : String;
Matches : out Match_Array;
Data_First : Integer := -1;
Data_Last : Positive := Positive'Last)
is
Program : Program_Data renames Self.Program; -- Shorter notation
First_In_Data : constant Integer := Integer'Max (Data_First, Data'First);
Last_In_Data : constant Integer := Integer'Min (Data_Last, Data'Last);
-- Global work variables
Input_Pos : Natural; -- String-input pointer
BOL_Pos : Natural; -- Beginning of input, for ^ check
Matched : Boolean := False; -- Until proven True
Matches_Full : Match_Array (0 .. Natural'Max (Self.Paren_Count,
Matches'Last));
-- Stores the value of all the parenthesis pairs.
-- We do not use directly Matches, so that we can also use back
-- references (REFF) even if Matches is too small.
type Natural_Array is array (Match_Count range <>) of Natural;
Matches_Tmp : Natural_Array (Matches_Full'Range);
-- Save the opening position of parenthesis
Last_Paren : Natural := 0;
-- Last parenthesis seen
Greedy : Boolean := True;
-- True if the next operator should be greedy
type Current_Curly_Record;
type Current_Curly_Access is access all Current_Curly_Record;
type Current_Curly_Record is record
Paren_Floor : Natural; -- How far back to strip parenthesis data
Cur : Integer; -- How many instances of scan we've matched
Min : Natural; -- Minimal number of scans to match
Max : Natural; -- Maximal number of scans to match
Greedy : Boolean; -- Whether to work our way up or down
Scan : Pointer; -- The thing to match
Next : Pointer; -- What has to match after it
Lastloc : Natural; -- Where we started matching this scan
Old_Cc : Current_Curly_Access; -- Before we started this one
end record;
-- Data used to handle the curly operator and the plus and star
-- operators for complex expressions.
Current_Curly : Current_Curly_Access := null;
-- The curly currently being processed
-----------------------
-- Local Subprograms --
-----------------------
function Index (Start : Positive; C : Character) return Natural;
-- Find character C in Data starting at Start and return position
function Repeat
(IP : Pointer;
Max : Natural := Natural'Last) return Natural;
-- Repeatedly match something simple, report how many
-- It only matches on things of length 1.
-- Starting from Input_Pos, it matches at most Max CURLY.
function Try (Pos : Positive) return Boolean;
-- Try to match at specific point
function Match (IP : Pointer) return Boolean;
-- This is the main matching routine. Conceptually the strategy
-- is simple: check to see whether the current node matches,
-- call self recursively to see whether the rest matches,
-- and then act accordingly.
--
-- In practice Match makes some effort to avoid recursion, in
-- particular by going through "ordinary" nodes (that don't
-- need to know whether the rest of the match failed) by
-- using a loop instead of recursion.
-- Why is the above comment part of the spec rather than body ???
function Match_Whilem return Boolean;
-- Return True if a WHILEM matches the Current_Curly
function Recurse_Match (IP : Pointer; From : Natural) return Boolean;
pragma Inline (Recurse_Match);
-- Calls Match recursively. It saves and restores the parenthesis
-- status and location in the input stream correctly, so that
-- backtracking is possible
function Match_Simple_Operator
(Op : Opcode;
Scan : Pointer;
Next : Pointer;
Greedy : Boolean) return Boolean;
-- Return True it the simple operator (possibly non-greedy) matches
Dump_Indent : Integer := -1;
procedure Dump_Current (Scan : Pointer; Prefix : Boolean := True);
procedure Dump_Error (Msg : String);
-- Debug: print the current context
pragma Inline (Index);
pragma Inline (Repeat);
-- These are two complex functions, but used only once
pragma Inline (Match_Whilem);
pragma Inline (Match_Simple_Operator);
-----------
-- Index --
-----------
function Index (Start : Positive; C : Character) return Natural is
begin
for J in Start .. Last_In_Data loop
if Data (J) = C then
return J;
end if;
end loop;
return 0;
end Index;
-------------------
-- Recurse_Match --
-------------------
function Recurse_Match (IP : Pointer; From : Natural) return Boolean is
L : constant Natural := Last_Paren;
Tmp_F : constant Match_Array :=
Matches_Full (From + 1 .. Matches_Full'Last);
Start : constant Natural_Array :=
Matches_Tmp (From + 1 .. Matches_Tmp'Last);
Input : constant Natural := Input_Pos;
Dump_Indent_Save : constant Integer := Dump_Indent;
begin
if Match (IP) then
return True;
end if;
Last_Paren := L;
Matches_Full (Tmp_F'Range) := Tmp_F;
Matches_Tmp (Start'Range) := Start;
Input_Pos := Input;
Dump_Indent := Dump_Indent_Save;
return False;
end Recurse_Match;
------------------
-- Dump_Current --
------------------
procedure Dump_Current (Scan : Pointer; Prefix : Boolean := True) is
Length : constant := 10;
Pos : constant String := Integer'Image (Input_Pos);
begin
if Prefix then
Put ((1 .. 5 - Pos'Length => ' '));
Put (Pos & " <"
& Data (Input_Pos
.. Integer'Min (Last_In_Data, Input_Pos + Length - 1)));
Put ((1 .. Length - 1 - Last_In_Data + Input_Pos => ' '));
Put ("> |");
else
Put (" ");
end if;
Dump_Operation (Program, Scan, Indent => Dump_Indent);
end Dump_Current;
----------------
-- Dump_Error --
----------------
procedure Dump_Error (Msg : String) is
begin
Put (" | ");
Put ((1 .. Dump_Indent * 2 => ' '));
Put_Line (Msg);
end Dump_Error;
-----------
-- Match --
-----------
function Match (IP : Pointer) return Boolean is
Scan : Pointer := IP;
Next : Pointer;
Op : Opcode;
Result : Boolean;
begin
Dump_Indent := Dump_Indent + 1;
State_Machine :
loop
pragma Assert (Scan /= 0);
-- Determine current opcode and count its usage in debug mode
Op := Opcode'Val (Character'Pos (Program (Scan)));
-- Calculate offset of next instruction. Second character is most
-- significant in Program_Data.
Next := Get_Next (Program, Scan);
if Debug then
Dump_Current (Scan);
end if;
case Op is
when EOP =>
Dump_Indent := Dump_Indent - 1;
return True; -- Success
when BRANCH =>
if Program (Next) /= BRANCH then
Next := Operand (Scan); -- No choice, avoid recursion
else
loop
if Recurse_Match (Operand (Scan), 0) then
Dump_Indent := Dump_Indent - 1;
return True;
end if;
Scan := Get_Next (Program, Scan);
exit when Scan = 0 or else Program (Scan) /= BRANCH;
end loop;
exit State_Machine;
end if;
when NOTHING =>
null;
when BOL =>
exit State_Machine when Input_Pos /= BOL_Pos
and then ((Self.Flags and Multiple_Lines) = 0
or else Data (Input_Pos - 1) /= ASCII.LF);
when MBOL =>
exit State_Machine when Input_Pos /= BOL_Pos
and then Data (Input_Pos - 1) /= ASCII.LF;
when SBOL =>
exit State_Machine when Input_Pos /= BOL_Pos;
when EOL =>
-- A combination of MEOL and SEOL
if (Self.Flags and Multiple_Lines) = 0 then
-- Single line mode
exit State_Machine when Input_Pos <= Data'Last;
elsif Input_Pos <= Last_In_Data then
exit State_Machine when Data (Input_Pos) /= ASCII.LF;
else
exit State_Machine when Last_In_Data /= Data'Last;
end if;
when MEOL =>
if Input_Pos <= Last_In_Data then
exit State_Machine when Data (Input_Pos) /= ASCII.LF;
else
exit State_Machine when Last_In_Data /= Data'Last;
end if;
when SEOL =>
-- If there is a character before Data'Last (even if
-- Last_In_Data stops before then), we can't have the
-- end of the line.
exit State_Machine when Input_Pos <= Data'Last;
when BOUND | NBOUND =>
-- Was last char in word ?
declare
N : Boolean := False;
Ln : Boolean := False;
begin
if Input_Pos /= First_In_Data then
N := Is_Alnum (Data (Input_Pos - 1));
end if;
Ln :=
(if Input_Pos > Last_In_Data
then False
else Is_Alnum (Data (Input_Pos)));
if Op = BOUND then
if N = Ln then
exit State_Machine;
end if;
else
if N /= Ln then
exit State_Machine;
end if;
end if;
end;
when SPACE =>
exit State_Machine when Input_Pos > Last_In_Data
or else not Is_White_Space (Data (Input_Pos));
Input_Pos := Input_Pos + 1;
when NSPACE =>
exit State_Machine when Input_Pos > Last_In_Data
or else Is_White_Space (Data (Input_Pos));
Input_Pos := Input_Pos + 1;
when DIGIT =>
exit State_Machine when Input_Pos > Last_In_Data
or else not Is_Digit (Data (Input_Pos));
Input_Pos := Input_Pos + 1;
when NDIGIT =>
exit State_Machine when Input_Pos > Last_In_Data
or else Is_Digit (Data (Input_Pos));
Input_Pos := Input_Pos + 1;
when ALNUM =>
exit State_Machine when Input_Pos > Last_In_Data
or else not Is_Alnum (Data (Input_Pos));
Input_Pos := Input_Pos + 1;
when NALNUM =>
exit State_Machine when Input_Pos > Last_In_Data
or else Is_Alnum (Data (Input_Pos));
Input_Pos := Input_Pos + 1;
when ANY =>
exit State_Machine when Input_Pos > Last_In_Data
or else Data (Input_Pos) = ASCII.LF;
Input_Pos := Input_Pos + 1;
when SANY =>
exit State_Machine when Input_Pos > Last_In_Data;
Input_Pos := Input_Pos + 1;
when EXACT =>
declare
Opnd : Pointer := String_Operand (Scan);
Current : Positive := Input_Pos;
Last : constant Pointer :=
Opnd + String_Length (Program, Scan);
begin
while Opnd <= Last loop
exit State_Machine when Current > Last_In_Data
or else Program (Opnd) /= Data (Current);
Current := Current + 1;
Opnd := Opnd + 1;
end loop;
Input_Pos := Current;
end;
when EXACTF =>
declare
Opnd : Pointer := String_Operand (Scan);
Current : Positive := Input_Pos;
Last : constant Pointer :=
Opnd + String_Length (Program, Scan);
begin
while Opnd <= Last loop
exit State_Machine when Current > Last_In_Data
or else Program (Opnd) /= To_Lower (Data (Current));
Current := Current + 1;
Opnd := Opnd + 1;
end loop;
Input_Pos := Current;
end;
when ANYOF =>
declare
Bitmap : Character_Class;
begin
Bitmap_Operand (Program, Scan, Bitmap);
exit State_Machine when Input_Pos > Last_In_Data
or else not Get_From_Class (Bitmap, Data (Input_Pos));
Input_Pos := Input_Pos + 1;
end;
when OPEN =>
declare
No : constant Natural :=
Character'Pos (Program (Operand (Scan)));
begin
Matches_Tmp (No) := Input_Pos;
end;
when CLOSE =>
declare
No : constant Natural :=
Character'Pos (Program (Operand (Scan)));
begin
Matches_Full (No) := (Matches_Tmp (No), Input_Pos - 1);
if Last_Paren < No then
Last_Paren := No;
end if;
end;
when REFF =>
declare
No : constant Natural :=
Character'Pos (Program (Operand (Scan)));
Data_Pos : Natural;
begin
-- If we haven't seen that parenthesis yet
if Last_Paren < No then
Dump_Indent := Dump_Indent - 1;
if Debug then
Dump_Error ("REFF: No match, backtracking");
end if;
return False;
end if;
Data_Pos := Matches_Full (No).First;
while Data_Pos <= Matches_Full (No).Last loop
if Input_Pos > Last_In_Data
or else Data (Input_Pos) /= Data (Data_Pos)
then
Dump_Indent := Dump_Indent - 1;
if Debug then
Dump_Error ("REFF: No match, backtracking");
end if;
return False;
end if;
Input_Pos := Input_Pos + 1;
Data_Pos := Data_Pos + 1;
end loop;
end;
when MINMOD =>
Greedy := False;
when STAR | PLUS | CURLY =>
declare
Greed : constant Boolean := Greedy;
begin
Greedy := True;
Result := Match_Simple_Operator (Op, Scan, Next, Greed);
Dump_Indent := Dump_Indent - 1;
return Result;
end;
when CURLYX =>
-- Looking at something like:
-- 1: CURLYX {n,m} (->4)
-- 2: code for complex thing (->3)
-- 3: WHILEM (->0)
-- 4: NOTHING
declare
Min : constant Natural :=
Read_Natural (Program, Scan + Next_Pointer_Bytes);
Max : constant Natural :=
Read_Natural
(Program, Scan + Next_Pointer_Bytes + 2);
Cc : aliased Current_Curly_Record;
Has_Match : Boolean;
begin
Cc := (Paren_Floor => Last_Paren,
Cur => -1,
Min => Min,
Max => Max,
Greedy => Greedy,
Scan => Scan + 7,
Next => Next,
Lastloc => 0,
Old_Cc => Current_Curly);
Greedy := True;
Current_Curly := Cc'Unchecked_Access;
Has_Match := Match (Next - Next_Pointer_Bytes);
-- Start on the WHILEM
Current_Curly := Cc.Old_Cc;
Dump_Indent := Dump_Indent - 1;
if not Has_Match then
if Debug then
Dump_Error ("CURLYX failed...");
end if;
end if;
return Has_Match;
end;
when WHILEM =>
Result := Match_Whilem;
Dump_Indent := Dump_Indent - 1;
if Debug and then not Result then
Dump_Error ("WHILEM: no match, backtracking");
end if;
return Result;
end case;
Scan := Next;
end loop State_Machine;
if Debug then
Dump_Error ("failed...");
Dump_Indent := Dump_Indent - 1;
end if;
-- If we get here, there is no match. For successful matches when EOP
-- is the terminating point.
return False;
end Match;
---------------------------
-- Match_Simple_Operator --
---------------------------
function Match_Simple_Operator
(Op : Opcode;
Scan : Pointer;
Next : Pointer;
Greedy : Boolean) return Boolean
is
Next_Char : Character := ASCII.NUL;
Next_Char_Known : Boolean := False;
No : Integer; -- Can be negative
Min : Natural;
Max : Natural := Natural'Last;
Operand_Code : Pointer;
Old : Natural;
Last_Pos : Natural;
Save : constant Natural := Input_Pos;
begin
-- Lookahead to avoid useless match attempts when we know what
-- character comes next.
if Program (Next) = EXACT then
Next_Char := Program (String_Operand (Next));
Next_Char_Known := True;
end if;
-- Find the minimal and maximal values for the operator
case Op is
when STAR =>
Min := 0;
Operand_Code := Operand (Scan);
when PLUS =>
Min := 1;
Operand_Code := Operand (Scan);
when others =>
Min := Read_Natural (Program, Scan + Next_Pointer_Bytes);
Max := Read_Natural (Program, Scan + Next_Pointer_Bytes + 2);
Operand_Code := Scan + 7;
end case;
if Debug then
Dump_Current (Operand_Code, Prefix => False);
end if;
-- Non greedy operators
if not Greedy then
-- Test we can repeat at least Min times
if Min /= 0 then
No := Repeat (Operand_Code, Min);
if No < Min then
if Debug then
Dump_Error ("failed... matched" & No'Img & " times");
end if;
return False;
end if;
end if;
Old := Input_Pos;
-- Find the place where 'next' could work
if Next_Char_Known then
-- Last position to check
if Max = Natural'Last then
Last_Pos := Last_In_Data;
else
Last_Pos := Input_Pos + Max;
if Last_Pos > Last_In_Data then
Last_Pos := Last_In_Data;
end if;
end if;
-- Look for the first possible opportunity
if Debug then
Dump_Error ("Next_Char must be " & Next_Char);
end if;
loop
-- Find the next possible position
while Input_Pos <= Last_Pos
and then Data (Input_Pos) /= Next_Char
loop
Input_Pos := Input_Pos + 1;
end loop;
if Input_Pos > Last_Pos then
return False;
end if;
-- Check that we still match if we stop at the position we
-- just found.
declare
Num : constant Natural := Input_Pos - Old;
begin
Input_Pos := Old;
if Debug then
Dump_Error ("Would we still match at that position?");
end if;
if Repeat (Operand_Code, Num) < Num then
return False;
end if;
end;
-- Input_Pos now points to the new position
if Match (Get_Next (Program, Scan)) then
return True;
end if;
Old := Input_Pos;
Input_Pos := Input_Pos + 1;
end loop;
-- We do not know what the next character is
else
while Max >= Min loop
if Debug then
Dump_Error ("Non-greedy repeat, N=" & Min'Img);
Dump_Error ("Do we still match Next if we stop here?");
end if;
-- If the next character matches
if Recurse_Match (Next, 1) then
return True;
end if;
Input_Pos := Save + Min;
-- Could not or did not match -- move forward
if Repeat (Operand_Code, 1) /= 0 then
Min := Min + 1;
else
if Debug then
Dump_Error ("Non-greedy repeat failed...");
end if;
return False;
end if;
end loop;
end if;
return False;
-- Greedy operators
else
No := Repeat (Operand_Code, Max);
if Debug and then No < Min then
Dump_Error ("failed... matched" & No'Img & " times");
end if;
-- ??? Perl has some special code here in case the next
-- instruction is of type EOL, since $ and \Z can match before
-- *and* after newline at the end.
-- ??? Perl has some special code here in case (paren) is True
-- Else, if we don't have any parenthesis
while No >= Min loop
if not Next_Char_Known
or else (Input_Pos <= Last_In_Data
and then Data (Input_Pos) = Next_Char)
then
if Match (Next) then
return True;
end if;
end if;
-- Could not or did not work, we back up
No := No - 1;
Input_Pos := Save + No;
end loop;
return False;
end if;
end Match_Simple_Operator;
------------------
-- Match_Whilem --
------------------
-- This is really hard to understand, because after we match what we
-- are trying to match, we must make sure the rest of the REx is going
-- to match for sure, and to do that we have to go back UP the parse
-- tree by recursing ever deeper. And if it fails, we have to reset
-- our parent's current state that we can try again after backing off.
function Match_Whilem return Boolean is
Cc : constant Current_Curly_Access := Current_Curly;
N : constant Natural := Cc.Cur + 1;
Ln : Natural := 0;
Lastloc : constant Natural := Cc.Lastloc;
-- Detection of 0-len
begin
-- If degenerate scan matches "", assume scan done
if Input_Pos = Cc.Lastloc
and then N >= Cc.Min
then
-- Temporarily restore the old context, and check that we
-- match was comes after CURLYX.
Current_Curly := Cc.Old_Cc;
if Current_Curly /= null then
Ln := Current_Curly.Cur;
end if;
if Match (Cc.Next) then
return True;
end if;
if Current_Curly /= null then
Current_Curly.Cur := Ln;
end if;
Current_Curly := Cc;
return False;
end if;
-- First, just match a string of min scans
if N < Cc.Min then
Cc.Cur := N;
Cc.Lastloc := Input_Pos;
if Debug then
Dump_Error
("Tests that we match at least" & Cc.Min'Img & " N=" & N'Img);
end if;
if Match (Cc.Scan) then
return True;
end if;
Cc.Cur := N - 1;
Cc.Lastloc := Lastloc;
if Debug then
Dump_Error ("failed...");
end if;
return False;
end if;
-- Prefer next over scan for minimal matching
if not Cc.Greedy then
Current_Curly := Cc.Old_Cc;
if Current_Curly /= null then
Ln := Current_Curly.Cur;
end if;
if Recurse_Match (Cc.Next, Cc.Paren_Floor) then
return True;
end if;
if Current_Curly /= null then
Current_Curly.Cur := Ln;
end if;
Current_Curly := Cc;
-- Maximum greed exceeded ?
if N >= Cc.Max then
if Debug then
Dump_Error ("failed...");
end if;
return False;
end if;
-- Try scanning more and see if it helps
Cc.Cur := N;
Cc.Lastloc := Input_Pos;
if Debug then
Dump_Error ("Next failed, what about Current?");
end if;
if Recurse_Match (Cc.Scan, Cc.Paren_Floor) then
return True;
end if;
Cc.Cur := N - 1;
Cc.Lastloc := Lastloc;
return False;
end if;
-- Prefer scan over next for maximal matching
if N < Cc.Max then -- more greed allowed ?
Cc.Cur := N;
Cc.Lastloc := Input_Pos;
if Debug then
Dump_Error ("Recurse at current position");
end if;
if Recurse_Match (Cc.Scan, Cc.Paren_Floor) then
return True;
end if;
end if;
-- Failed deeper matches of scan, so see if this one works
Current_Curly := Cc.Old_Cc;
if Current_Curly /= null then
Ln := Current_Curly.Cur;
end if;
if Debug then
Dump_Error ("Failed matching for later positions");
end if;
if Match (Cc.Next) then
return True;
end if;
if Current_Curly /= null then
Current_Curly.Cur := Ln;
end if;
Current_Curly := Cc;
Cc.Cur := N - 1;
Cc.Lastloc := Lastloc;
if Debug then
Dump_Error ("failed...");
end if;
return False;
end Match_Whilem;
------------
-- Repeat --
------------
function Repeat
(IP : Pointer;
Max : Natural := Natural'Last) return Natural
is
Scan : Natural := Input_Pos;
Last : Natural;
Op : constant Opcode :=
Opcode'Val (Character'Pos (Program (IP)));
Count : Natural;
C : Character;
Bitmap : Character_Class;
begin
if Max = Natural'Last or else Scan + Max - 1 > Last_In_Data then
Last := Last_In_Data;
else
Last := Scan + Max - 1;
end if;
case Op is
when ANY =>
while Scan <= Last
and then Data (Scan) /= ASCII.LF
loop
Scan := Scan + 1;
end loop;
when SANY =>
Scan := Last + 1;
when EXACT =>
-- The string has only one character if Repeat was called
C := Program (String_Operand (IP));
while Scan <= Last
and then C = Data (Scan)
loop
Scan := Scan + 1;
end loop;
when EXACTF =>
-- The string has only one character if Repeat was called
C := Program (String_Operand (IP));
while Scan <= Last
and then To_Lower (C) = Data (Scan)
loop
Scan := Scan + 1;
end loop;
when ANYOF =>
Bitmap_Operand (Program, IP, Bitmap);
while Scan <= Last
and then Get_From_Class (Bitmap, Data (Scan))
loop
Scan := Scan + 1;
end loop;
when ALNUM =>
while Scan <= Last
and then Is_Alnum (Data (Scan))
loop
Scan := Scan + 1;
end loop;
when NALNUM =>
while Scan <= Last
and then not Is_Alnum (Data (Scan))
loop
Scan := Scan + 1;
end loop;
when SPACE =>
while Scan <= Last
and then Is_White_Space (Data (Scan))
loop
Scan := Scan + 1;
end loop;
when NSPACE =>
while Scan <= Last
and then not Is_White_Space (Data (Scan))
loop
Scan := Scan + 1;
end loop;
when DIGIT =>
while Scan <= Last
and then Is_Digit (Data (Scan))
loop
Scan := Scan + 1;
end loop;
when NDIGIT =>
while Scan <= Last
and then not Is_Digit (Data (Scan))
loop
Scan := Scan + 1;
end loop;
when others =>
raise Program_Error;
end case;
Count := Scan - Input_Pos;
Input_Pos := Scan;
return Count;
end Repeat;
---------
-- Try --
---------
function Try (Pos : Positive) return Boolean is
begin
Input_Pos := Pos;
Last_Paren := 0;
Matches_Full := (others => No_Match);
if Match (Program_First) then
Matches_Full (0) := (Pos, Input_Pos - 1);
return True;
end if;
return False;
end Try;
-- Start of processing for Match
begin
-- Do we have the regexp Never_Match?
if Self.Size = 0 then
Matches := (others => No_Match);
return;
end if;
-- If there is a "must appear" string, look for it
if Self.Must_Have_Length > 0 then
declare
First : constant Character := Program (Self.Must_Have);
Must_First : constant Pointer := Self.Must_Have;
Must_Last : constant Pointer :=
Must_First + Pointer (Self.Must_Have_Length - 1);
Next_Try : Natural := Index (First_In_Data, First);
begin
while Next_Try /= 0
and then Data (Next_Try .. Next_Try + Self.Must_Have_Length - 1)
= String (Program (Must_First .. Must_Last))
loop
Next_Try := Index (Next_Try + 1, First);
end loop;
if Next_Try = 0 then
Matches := (others => No_Match);
return; -- Not present
end if;
end;
end if;
-- Mark beginning of line for ^
BOL_Pos := Data'First;
-- Simplest case first: an anchored match need be tried only once
if Self.Anchored and then (Self.Flags and Multiple_Lines) = 0 then
Matched := Try (First_In_Data);
elsif Self.Anchored then
declare
Next_Try : Natural := First_In_Data;
begin
-- Test the first position in the buffer
Matched := Try (Next_Try);
-- Else only test after newlines
if not Matched then
while Next_Try <= Last_In_Data loop
while Next_Try <= Last_In_Data
and then Data (Next_Try) /= ASCII.LF
loop
Next_Try := Next_Try + 1;
end loop;
Next_Try := Next_Try + 1;
if Next_Try <= Last_In_Data then
Matched := Try (Next_Try);
exit when Matched;
end if;
end loop;
end if;
end;
elsif Self.First /= ASCII.NUL then
-- We know what char it must start with
declare
Next_Try : Natural := Index (First_In_Data, Self.First);
begin
while Next_Try /= 0 loop
Matched := Try (Next_Try);
exit when Matched;
Next_Try := Index (Next_Try + 1, Self.First);
end loop;
end;
else
-- Messy cases: try all locations (including for the empty string)
Matched := Try (First_In_Data);
if not Matched then
for S in First_In_Data + 1 .. Last_In_Data loop
Matched := Try (S);
exit when Matched;
end loop;
end if;
end if;
-- Matched has its value
for J in Last_Paren + 1 .. Matches'Last loop
Matches_Full (J) := No_Match;
end loop;
Matches := Matches_Full (Matches'Range);
end Match;
-----------
-- Match --
-----------
function Match
(Self : Pattern_Matcher;
Data : String;
Data_First : Integer := -1;
Data_Last : Positive := Positive'Last) return Natural
is
Matches : Match_Array (0 .. 0);
begin
Match (Self, Data, Matches, Data_First, Data_Last);
if Matches (0) = No_Match then
return Data'First - 1;
else
return Matches (0).First;
end if;
end Match;
function Match
(Self : Pattern_Matcher;
Data : String;
Data_First : Integer := -1;
Data_Last : Positive := Positive'Last) return Boolean
is
Matches : Match_Array (0 .. 0);
begin
Match (Self, Data, Matches, Data_First, Data_Last);
return Matches (0).First >= Data'First;
end Match;
procedure Match
(Expression : String;
Data : String;
Matches : out Match_Array;
Size : Program_Size := Auto_Size;
Data_First : Integer := -1;
Data_Last : Positive := Positive'Last)
is
PM : Pattern_Matcher (Size);
Finalize_Size : Program_Size;
pragma Unreferenced (Finalize_Size);
begin
if Size = 0 then
Match (Compile (Expression), Data, Matches, Data_First, Data_Last);
else
Compile (PM, Expression, Finalize_Size);
Match (PM, Data, Matches, Data_First, Data_Last);
end if;
end Match;
-----------
-- Match --
-----------
function Match
(Expression : String;
Data : String;
Size : Program_Size := Auto_Size;
Data_First : Integer := -1;
Data_Last : Positive := Positive'Last) return Natural
is
PM : Pattern_Matcher (Size);
Final_Size : Program_Size;
pragma Unreferenced (Final_Size);
begin
if Size = 0 then
return Match (Compile (Expression), Data, Data_First, Data_Last);
else
Compile (PM, Expression, Final_Size);
return Match (PM, Data, Data_First, Data_Last);
end if;
end Match;
-----------
-- Match --
-----------
function Match
(Expression : String;
Data : String;
Size : Program_Size := Auto_Size;
Data_First : Integer := -1;
Data_Last : Positive := Positive'Last) return Boolean
is
Matches : Match_Array (0 .. 0);
PM : Pattern_Matcher (Size);
Final_Size : Program_Size;
pragma Unreferenced (Final_Size);
begin
if Size = 0 then
Match (Compile (Expression), Data, Matches, Data_First, Data_Last);
else
Compile (PM, Expression, Final_Size);
Match (PM, Data, Matches, Data_First, Data_Last);
end if;
return Matches (0).First >= Data'First;
end Match;
-------------
-- Operand --
-------------
function Operand (P : Pointer) return Pointer is
begin
return P + Next_Pointer_Bytes;
end Operand;
--------------
-- Optimize --
--------------
procedure Optimize (Self : in out Pattern_Matcher) is
Scan : Pointer;
Program : Program_Data renames Self.Program;
begin
-- Start with safe defaults (no optimization):
-- * No known first character of match
-- * Does not necessarily start at beginning of line
-- * No string known that has to appear in data
Self.First := ASCII.NUL;
Self.Anchored := False;
Self.Must_Have := Program'Last + 1;
Self.Must_Have_Length := 0;
Scan := Program_First; -- First instruction (can be anything)
if Program (Scan) = EXACT then
Self.First := Program (String_Operand (Scan));
elsif Program (Scan) = BOL
or else Program (Scan) = SBOL
or else Program (Scan) = MBOL
then
Self.Anchored := True;
end if;
end Optimize;
-----------------
-- Paren_Count --
-----------------
function Paren_Count (Regexp : Pattern_Matcher) return Match_Count is
begin
return Regexp.Paren_Count;
end Paren_Count;
-----------
-- Quote --
-----------
function Quote (Str : String) return String is
S : String (1 .. Str'Length * 2);
Last : Natural := 0;
begin
for J in Str'Range loop
case Str (J) is
when '^' | '$' | '|' | '*' | '+' | '?' | '{' |
'}' | '[' | ']' | '(' | ')' | '\' | '.' =>
S (Last + 1) := '\';
S (Last + 2) := Str (J);
Last := Last + 2;
when others =>
S (Last + 1) := Str (J);
Last := Last + 1;
end case;
end loop;
return S (1 .. Last);
end Quote;
------------------
-- Read_Natural --
------------------
function Read_Natural
(Program : Program_Data;
IP : Pointer) return Natural
is
begin
return Character'Pos (Program (IP)) +
256 * Character'Pos (Program (IP + 1));
end Read_Natural;
-----------------
-- Reset_Class --
-----------------
procedure Reset_Class (Bitmap : out Character_Class) is
begin
Bitmap := (others => 0);
end Reset_Class;
------------------
-- Set_In_Class --
------------------
procedure Set_In_Class
(Bitmap : in out Character_Class;
C : Character)
is
Value : constant Class_Byte := Character'Pos (C);
begin
Bitmap (Value / 8) := Bitmap (Value / 8)
or Bit_Conversion (Value mod 8);
end Set_In_Class;
-------------------
-- String_Length --
-------------------
function String_Length
(Program : Program_Data;
P : Pointer) return Program_Size
is
begin
pragma Assert (Program (P) = EXACT or else Program (P) = EXACTF);
return Character'Pos (Program (P + Next_Pointer_Bytes));
end String_Length;
--------------------
-- String_Operand --
--------------------
function String_Operand (P : Pointer) return Pointer is
begin
return P + 4;
end String_Operand;
end System.Regpat;
| 32.499198 | 79 | 0.47366 |
1efe76b400ad078b2c9cf57c1fa3991f9710eb4a | 3,141 | ads | Ada | llvm-gcc-4.2-2.9/gcc/ada/s-pack23.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-pack23.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | llvm-gcc-4.2-2.9/gcc/ada/s-pack23.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . P A C K _ 2 3 --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2005, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- Handling of packed arrays with Component_Size = 23
package System.Pack_23 is
pragma Preelaborate;
Bits : constant := 23;
type Bits_23 is mod 2 ** Bits;
for Bits_23'Size use Bits;
function Get_23 (Arr : System.Address; N : Natural) return Bits_23;
-- Arr is the address of the packed array, N is the zero-based
-- subscript. This element is extracted and returned.
procedure Set_23 (Arr : System.Address; N : Natural; E : Bits_23);
-- Arr is the address of the packed array, N is the zero-based
-- subscript. This element is set to the given value.
end System.Pack_23;
| 59.264151 | 78 | 0.463865 |
8b7a7819d49140d7cd99eaa7683f801cb1035943 | 3,873 | adb | Ada | source/RASCAL-Mode.adb | bracke/Meaning | 709f609df916aa9442f9b75c7dcb62ab807a48e9 | [
"MIT"
] | null | null | null | source/RASCAL-Mode.adb | bracke/Meaning | 709f609df916aa9442f9b75c7dcb62ab807a48e9 | [
"MIT"
] | null | null | null | source/RASCAL-Mode.adb | bracke/Meaning | 709f609df916aa9442f9b75c7dcb62ab807a48e9 | [
"MIT"
] | null | null | null | --------------------------------------------------------------------------------
-- --
-- Copyright (C) 2004, RISC OS Ada Library (RASCAL) developers. --
-- --
-- This library is free software; you can redistribute it and/or --
-- modify it under the terms of the GNU Lesser General Public --
-- License as published by the Free Software Foundation; either --
-- version 2.1 of the License, or (at your option) any later version. --
-- --
-- This library is distributed in the hope that it will be useful, --
-- but WITHOUT ANY WARRANTY; without even the implied warranty of --
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU --
-- Lesser General Public License for more details. --
-- --
-- You should have received a copy of the GNU Lesser General Public --
-- License along with this library; if not, write to the Free Software --
-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA --
-- --
--------------------------------------------------------------------------------
-- $Author$
-- $Date$
-- $Revision$
with Kernel; use Kernel;
with Interfaces.C; use Interfaces.C;
with Reporter;
with RASCAL.Memory; use RASCAL.Memory;
with RASCAL.Utility; use RASCAL.Utility;
with RASCAL.OS;
package body RASCAL.Mode is
OS_ReadModeVariable : constant := 16#35#;
--
function Get_X_Resolution (Unit : Mode_Unit_Type := Pixel) return Integer is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
begin
Register.R(0) := -1;
Register.R(1) := 11;
Error := Kernel.SWI (OS_ReadModeVariable,register'Access,register'Access);
if Error = null then
if Unit = OSUnits then
return (Integer(Register.R(2))+1) * (2**Get_X_Eig_Factor);
else
return Integer(Register.R(2))+1;
end if;
end if;
raise No_Mode_Variable;
end Get_X_Resolution;
--
function Get_Y_Resolution (Unit : Mode_Unit_Type := Pixel) return Integer is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
begin
Register.R(0) := -1;
Register.R(1) := 12;
Error := Kernel.SWI (OS_ReadModeVariable,register'Access,register'Access);
if Error = null then
if Unit = OSUnits then
return (Integer(Register.R(2))+1) * (2**Get_Y_Eig_Factor);
else
return Integer(Register.R(2))+1;
end if;
end if;
raise No_Mode_Variable;
end Get_Y_Resolution;
--
function Get_Y_Eig_Factor return Integer is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
begin
Register.R(0) := -1;
Register.R(1) := 5;
Error := Kernel.SWI (OS_ReadModeVariable,register'Access,register'Access);
if Error = null then
return Integer(Register.R(2));
end if;
raise No_Mode_Variable;
end Get_Y_Eig_Factor;
--
function Get_X_Eig_Factor return Integer is
Register : aliased Kernel.swi_regs;
Error : oserror_access;
begin
Register.R(0) := -1;
Register.R(1) := 4;
Error := Kernel.SWI (OS_ReadModeVariable,register'Access,register'Access);
if Error = null then
return Integer(Register.R(2));
end if;
raise No_Mode_Variable;
end Get_X_Eig_Factor;
--
end RASCAL.Mode; | 33.678261 | 80 | 0.526723 |
1e04d5a20fa1aa906e0d4724c8347a7c7cc6d2ec | 3,508 | adb | Ada | src/fltk-widgets-inputs-integer.adb | micahwelf/FLTK-Ada | 83e0c58ea98e5ede2cbbb158b42eae44196c3ba7 | [
"Unlicense"
] | 1 | 2020-12-18T15:20:13.000Z | 2020-12-18T15:20:13.000Z | src/fltk-widgets-inputs-integer.adb | micahwelf/FLTK-Ada | 83e0c58ea98e5ede2cbbb158b42eae44196c3ba7 | [
"Unlicense"
] | null | null | null | src/fltk-widgets-inputs-integer.adb | micahwelf/FLTK-Ada | 83e0c58ea98e5ede2cbbb158b42eae44196c3ba7 | [
"Unlicense"
] | null | null | null |
with
Interfaces.C.Strings,
System;
use type
Interfaces.C.Strings.chars_ptr,
System.Address;
package body FLTK.Widgets.Inputs.Integer is
procedure int_input_set_draw_hook
(W, D : in System.Address);
pragma Import (C, int_input_set_draw_hook, "int_input_set_draw_hook");
pragma Inline (int_input_set_draw_hook);
procedure int_input_set_handle_hook
(W, H : in System.Address);
pragma Import (C, int_input_set_handle_hook, "int_input_set_handle_hook");
pragma Inline (int_input_set_handle_hook);
function new_fl_int_input
(X, Y, W, H : in Interfaces.C.int;
Text : in Interfaces.C.char_array)
return System.Address;
pragma Import (C, new_fl_int_input, "new_fl_int_input");
pragma Inline (new_fl_int_input);
procedure free_fl_int_input
(F : in System.Address);
pragma Import (C, free_fl_int_input, "free_fl_int_input");
pragma Inline (free_fl_int_input);
procedure fl_int_input_draw
(W : in System.Address);
pragma Import (C, fl_int_input_draw, "fl_int_input_draw");
pragma Inline (fl_int_input_draw);
function fl_int_input_handle
(W : in System.Address;
E : in Interfaces.C.int)
return Interfaces.C.int;
pragma Import (C, fl_int_input_handle, "fl_int_input_handle");
pragma Inline (fl_int_input_handle);
procedure Finalize
(This : in out Integer_Input) is
begin
if This.Void_Ptr /= System.Null_Address and then
This in Integer_Input'Class
then
free_fl_int_input (This.Void_Ptr);
This.Void_Ptr := System.Null_Address;
end if;
Finalize (Input (This));
end Finalize;
package body Forge is
function Create
(X, Y, W, H : in Standard.Integer;
Text : in String)
return Integer_Input is
begin
return This : Integer_Input do
This.Void_Ptr := new_fl_int_input
(Interfaces.C.int (X),
Interfaces.C.int (Y),
Interfaces.C.int (W),
Interfaces.C.int (H),
Interfaces.C.To_C (Text));
fl_widget_set_user_data
(This.Void_Ptr,
Widget_Convert.To_Address (This'Unchecked_Access));
int_input_set_draw_hook (This.Void_Ptr, Draw_Hook'Address);
int_input_set_handle_hook (This.Void_Ptr, Handle_Hook'Address);
end return;
end Create;
end Forge;
function Get_Value
(This : in Integer_Input)
return Standard.Integer
is
Ptr : Interfaces.C.Strings.chars_ptr := fl_input_get_value (This.Void_Ptr);
begin
if Ptr = Interfaces.C.Strings.Null_Ptr then
return 0;
else
return Standard.Integer'Value (Interfaces.C.Strings.Value (Ptr));
end if;
end Get_Value;
procedure Draw
(This : in out Integer_Input) is
begin
fl_int_input_draw (This.Void_Ptr);
end Draw;
function Handle
(This : in out Integer_Input;
Event : in Event_Kind)
return Event_Outcome is
begin
return Event_Outcome'Val
(fl_int_input_handle (This.Void_Ptr, Event_Kind'Pos (Event)));
end Handle;
end FLTK.Widgets.Inputs.Integer;
| 25.605839 | 83 | 0.601197 |
381ce1d23a8ea7eaf5500bb4677d175a42616baa | 1,973 | ads | Ada | src/ships-upgrade.ads | thindil/steamsky | d5d7fea622f7994c91017c4cd7ba5e188153556c | [
"TCL",
"MIT"
] | 80 | 2017-04-08T23:14:07.000Z | 2022-02-10T22:30:51.000Z | src/ships-upgrade.ads | thindil/steamsky | d5d7fea622f7994c91017c4cd7ba5e188153556c | [
"TCL",
"MIT"
] | 89 | 2017-06-24T08:18:26.000Z | 2021-11-12T04:37:36.000Z | src/ships-upgrade.ads | thindil/steamsky | d5d7fea622f7994c91017c4cd7ba5e188153556c | [
"TCL",
"MIT"
] | 9 | 2018-04-14T16:37:25.000Z | 2020-03-21T14:33:49.000Z | -- Copyright 2017-2021 Bartek thindil Jasicki
--
-- This file is part of Steam Sky.
--
-- Steam Sky 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.
--
-- Steam Sky 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 Steam Sky. If not, see <http://www.gnu.org/licenses/>.
-- ****h* Ships/SUpgrade
-- FUNCTION
-- Provided code for upgrade player ship modules
-- SOURCE
package Ships.Upgrade is
-- ****
-- ****e* SUpgrade/SUpgrade.Ship_Upgrade_Error
-- FUNCTION
-- Raised when player can't start upgrading module
-- SOURCE
Ship_Upgrade_Error: exception;
-- ****
-- ****f* SUpgrade/SUpgrade.StartUpgrading
-- FUNCTION
-- Set upgrading order
-- PARAMETERS
-- ModuleIndex - Player ship index of module to upgrade
-- UpgradeType - Type of upgrade to start
-- SOURCE
procedure StartUpgrading
(ModuleIndex: Modules_Container.Extended_Index;
UpgradeType: Positive) with
Pre =>
(ModuleIndex in
Player_Ship.Modules.First_Index .. Player_Ship.Modules.Last_Index and
UpgradeType < 5),
Test_Case => (Name => "Test_StartUpgrading", Mode => Nominal);
-- ****
-- ****f* SUpgrade/SUpgrade.UpgradeShip
-- FUNCTION
-- Upgrade selected module on ship
-- PARAMETERS
-- Minutes - Amount of passed in-game minutes
-- SOURCE
procedure UpgradeShip(Minutes: Positive) with
Test_Case => (Name => "Test_UpgradeShip", Mode => Robustness);
-- ****
end Ships.Upgrade;
| 32.883333 | 78 | 0.667511 |
4b71e383fc30f0b5d9afb8e4ca449cf73847aada | 7,289 | ads | Ada | gcc-gcc-7_3_0-release/gcc/ada/system-freebsd.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/system-freebsd.ads | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/ada/system-freebsd.ads | 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 --
-- --
-- S p e c --
-- (FreeBSD Version) --
-- --
-- Copyright (C) 1992-2017, Free Software Foundation, Inc. --
-- --
-- This specification is derived from the Ada Reference Manual for use with --
-- GNAT. The copyright notice above, and the license provisions that follow --
-- apply solely to the contents of the part following the private keyword. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
package System is
pragma Pure;
-- Note that we take advantage of the implementation permission to make
-- this unit Pure instead of Preelaborable; see RM 13.7.1(15). In Ada
-- 2005, this is Pure in any case (AI-362).
pragma No_Elaboration_Code_All;
-- Allow the use of that restriction in units that WITH this unit
type Name is (SYSTEM_NAME_GNAT);
System_Name : constant Name := SYSTEM_NAME_GNAT;
-- System-Dependent Named Numbers
Min_Int : constant := Long_Long_Integer'First;
Max_Int : constant := Long_Long_Integer'Last;
Max_Binary_Modulus : constant := 2 ** Long_Long_Integer'Size;
Max_Nonbinary_Modulus : constant := 2 ** Integer'Size - 1;
Max_Base_Digits : constant := Long_Long_Float'Digits;
Max_Digits : constant := Long_Long_Float'Digits;
Max_Mantissa : constant := 63;
Fine_Delta : constant := 2.0 ** (-Max_Mantissa);
Tick : constant := 0.000_001;
-- Storage-related Declarations
type Address is private;
pragma Preelaborable_Initialization (Address);
Null_Address : constant Address;
Storage_Unit : constant := 8;
Word_Size : constant := Standard'Word_Size;
Memory_Size : constant := 2 ** Word_Size;
-- Address comparison
function "<" (Left, Right : Address) return Boolean;
function "<=" (Left, Right : Address) return Boolean;
function ">" (Left, Right : Address) return Boolean;
function ">=" (Left, Right : Address) return Boolean;
function "=" (Left, Right : Address) return Boolean;
pragma Import (Intrinsic, "<");
pragma Import (Intrinsic, "<=");
pragma Import (Intrinsic, ">");
pragma Import (Intrinsic, ">=");
pragma Import (Intrinsic, "=");
-- Other System-Dependent Declarations
type Bit_Order is (High_Order_First, Low_Order_First);
Default_Bit_Order : constant Bit_Order :=
Bit_Order'Val (Standard'Default_Bit_Order);
pragma Warnings (Off, Default_Bit_Order); -- kill constant condition warning
-- Priority-related Declarations (RM D.1)
Max_Priority : constant Positive := 30;
Max_Interrupt_Priority : constant Positive := 31;
subtype Any_Priority is Integer range 0 .. 31;
subtype Priority is Any_Priority range 0 .. 30;
subtype Interrupt_Priority is Any_Priority range 31 .. 31;
Default_Priority : constant Priority := 15;
private
type Address is mod Memory_Size;
Null_Address : constant Address := 0;
--------------------------------------
-- System Implementation Parameters --
--------------------------------------
-- These parameters provide information about the target that is used
-- by the compiler. They are in the private part of System, where they
-- can be accessed using the special circuitry in the Targparm unit
-- whose source should be consulted for more detailed descriptions
-- of the individual switch values.
Backend_Divide_Checks : constant Boolean := False;
Backend_Overflow_Checks : constant Boolean := True;
Command_Line_Args : constant Boolean := True;
Configurable_Run_Time : constant Boolean := False;
Denorm : constant Boolean := True;
Duration_32_Bits : constant Boolean := False;
Exit_Status_Supported : constant Boolean := True;
Fractional_Fixed_Ops : constant Boolean := False;
Frontend_Layout : constant Boolean := False;
Machine_Overflows : constant Boolean := False;
Machine_Rounds : constant Boolean := True;
Preallocated_Stacks : constant Boolean := False;
Signed_Zeros : constant Boolean := True;
Stack_Check_Default : constant Boolean := False;
Stack_Check_Probes : constant Boolean := True;
Stack_Check_Limits : constant Boolean := False;
Support_Aggregates : constant Boolean := True;
Support_Atomic_Primitives : constant Boolean := True;
Support_Composite_Assign : constant Boolean := True;
Support_Composite_Compare : constant Boolean := True;
Support_Long_Shifts : constant Boolean := True;
Always_Compatible_Rep : constant Boolean := False;
Suppress_Standard_Library : constant Boolean := False;
Use_Ada_Main_Program_Name : constant Boolean := False;
Frontend_Exceptions : constant Boolean := False;
ZCX_By_Default : constant Boolean := True;
end System;
| 48.593333 | 79 | 0.55179 |
38347a1357456f11a282fc7cc6687e6b1299379f | 1,566 | ads | Ada | src/Sym_Expr/test/test.ads | fintatarta/eugen | 2c384838ff0e81b51172310ce5d0e47d71ffd4fd | [
"MIT"
] | null | null | null | src/Sym_Expr/test/test.ads | fintatarta/eugen | 2c384838ff0e81b51172310ce5d0e47d71ffd4fd | [
"MIT"
] | null | null | null | src/Sym_Expr/test/test.ads | fintatarta/eugen | 2c384838ff0e81b51172310ce5d0e47d71ffd4fd | [
"MIT"
] | null | null | null | ----------------------------------------------------------------------------
-- Symbolic Expressions (symexpr)
--
-- Copyright (C) 2012, Riccardo Bernardini
--
-- This file is part of symexpr.
--
-- symexpr is free software: you can redistribute it and/or modify
-- it under the terms of the Lesser GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.
--
-- symexpr 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 Lesser GNU General Public License
-- along with gclp. If not, see <http://www.gnu.org/licenses/>.
----------------------------------------------------------------------------
with Symbolic_Expressions;
package Test is
function Get_Int (X : String) return String;
type Int_Array is array (Positive range <>) of Integer;
function Call (Name : String; Param : Int_Array)
return Integer;
package Int_Expr is
new Symbolic_Expressions (Scalar_Type => Integer,
Scalar_Array => Int_Array,
Read_Scalar => Get_Int,
Value => Integer'Value,
Image => Integer'Image);
end Test;
| 38.195122 | 83 | 0.551724 |
03744a77fb7a0f29c1855e842d60660d5d6e937b | 1,200 | ads | Ada | awa/src/awa.ads | fuzzysloth/ada-awa | f9b921eeea29841667a028f2fc4528e4385d247a | [
"Apache-2.0"
] | null | null | null | awa/src/awa.ads | fuzzysloth/ada-awa | f9b921eeea29841667a028f2fc4528e4385d247a | [
"Apache-2.0"
] | null | null | null | awa/src/awa.ads | fuzzysloth/ada-awa | f9b921eeea29841667a028f2fc4528e4385d247a | [
"Apache-2.0"
] | null | null | null | -----------------------------------------------------------------------
-- awa -- Ada Web Application
-- Copyright (C) 2009, 2010, 2011, 2012, 2013, 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.
-----------------------------------------------------------------------
-- == Introduction ==
--
-- @include awa.xml
package AWA is
pragma Pure;
-- Library SVN identification
SVN_URL : constant String := "$HeadURL: file:///opt/repository/svn/ada/awa/trunk/src/awa.ads $";
-- Revision used (must run 'make version' to update)
SVN_REV : constant String := "$Rev: 318 $";
end AWA;
| 36.363636 | 99 | 0.615833 |
a0f0eb829ba3531aa432edc42c7470bae97d6f81 | 2,765 | ads | Ada | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-atoope.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-atoope.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-atoope.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . A T O M I C _ O P E R A T I O N S --
-- --
-- S p e c --
-- --
-- Copyright (C) 2019-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. --
-- --
------------------------------------------------------------------------------
package System.Atomic_Operations
with Pure
is
end System.Atomic_Operations;
| 69.125 | 78 | 0.405063 |
032904542545f1bbafc1612fca7be75a28386c7c | 3,092 | ads | Ada | llvm-gcc-4.2-2.9/gcc/ada/s-vxwork-mips.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-vxwork-mips.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | llvm-gcc-4.2-2.9/gcc/ada/s-vxwork-mips.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
-- --
-- S Y S T E M . V X W O R K S --
-- --
-- S p e c --
-- --
-- Copyright (C) 1998-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 the MIPS VxWorks version of this package.
with Interfaces.C;
package System.VxWorks is
pragma Preelaborate;
package IC renames Interfaces.C;
-- Floating point context record. MIPS version
FP_NUM_DREGS : constant := 16;
type Fpx_Array is array (1 .. FP_NUM_DREGS) of IC.double;
type FP_CONTEXT is record
fpx : Fpx_Array;
fpcsr : IC.int;
end record;
pragma Convention (C, FP_CONTEXT);
Num_HW_Interrupts : constant := 256;
-- Number of entries in hardware interrupt vector table.
end System.VxWorks;
| 53.310345 | 78 | 0.464424 |
4b6572cf9bf8428e219bf36eea7a7f9130495810 | 10,426 | ads | Ada | arch/RISC-V/SiFive/drivers/pwm0/sifive-pwm.ads | shakram02/Ada_Drivers_Library | a407ca7ddbc2d9756647016c2f8fd8ef24a239ff | [
"BSD-3-Clause"
] | 192 | 2016-06-01T18:32:04.000Z | 2022-03-26T22:52:31.000Z | arch/RISC-V/SiFive/drivers/pwm0/sifive-pwm.ads | shakram02/Ada_Drivers_Library | a407ca7ddbc2d9756647016c2f8fd8ef24a239ff | [
"BSD-3-Clause"
] | 239 | 2016-05-26T20:02:01.000Z | 2022-03-31T09:46:56.000Z | arch/RISC-V/SiFive/drivers/pwm0/sifive-pwm.ads | shakram02/Ada_Drivers_Library | a407ca7ddbc2d9756647016c2f8fd8ef24a239ff | [
"BSD-3-Clause"
] | 142 | 2016-06-05T08:12:20.000Z | 2022-03-24T17:37:17.000Z | ------------------------------------------------------------------------------
-- --
-- Copyright (C) 2018, AdaCore --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions are --
-- met: --
-- 1. Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- 2. Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in --
-- the documentation and/or other materials provided with the --
-- distribution. --
-- 3. Neither the name of the copyright holder nor the names of its --
-- contributors may be used to endorse or promote products derived --
-- from this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT --
-- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, --
-- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY --
-- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT --
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE --
-- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
with HAL; use HAL;
private with System;
package SiFive.PWM is
type Internal_PWM is limited private;
type PWM_Device (Periph : not null access Internal_PWM) is
limited private;
subtype Count_Value is UInt31;
function Count (This : PWM_Device) return Count_Value;
procedure Set_Count (This : in out PWM_Device;
Value : Count_Value);
subtype Scaled_Value is UInt16;
function Scaled_Counter (This : PWM_Device)
return Scaled_Value;
-- Enable --
procedure Enable_Continous (This : in out PWM_Device);
procedure Enable_One_Shot (This : in out PWM_Device);
procedure Disable (This : in out PWM_Device);
-- Configuration --
procedure Configure (This : in out PWM_Device;
Scale : UInt4;
Sticky : Boolean;
Reset_To_Zero : Boolean;
Deglitch : Boolean);
-- Comparators --
subtype Comparator_ID is Natural range 0 .. 3;
procedure Configure (This : in out PWM_Device;
ID : Comparator_ID;
Compare_Center : Boolean;
Compare_Gang : Boolean);
-- Compare Value --
subtype Compare_Value is UInt16;
procedure Set_Compare (This : in out PWM_Device;
ID : Comparator_ID;
Value : Compare_Value);
function Compare (This : PWM_Device;
ID : Comparator_ID)
return Compare_Value;
-- Interrupts --
function Interrupt_Pending (This : PWM_Device;
ID : Comparator_ID)
return Boolean;
private
---------------
-- Registers --
---------------
subtype CONFIG_SCALE_Field is HAL.UInt4;
-- CONFIG_CMP_CENTER array
type CONFIG_CMP_CENTER_Field_Array is array (0 .. 3) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for CONFIG_CMP_CENTER
type CONFIG_CMP_CENTER_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP_CENTER as a value
Val : HAL.UInt4;
when True =>
-- CMP_CENTER as an array
Arr : CONFIG_CMP_CENTER_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for CONFIG_CMP_CENTER_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- CONFIG_CMP_GANG array
type CONFIG_CMP_GANG_Field_Array is array (0 .. 3) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for CONFIG_CMP_GANG
type CONFIG_CMP_GANG_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP_GANG as a value
Val : HAL.UInt4;
when True =>
-- CMP_GANG as an array
Arr : CONFIG_CMP_GANG_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for CONFIG_CMP_GANG_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- CONFIG_CMP_IP array
type CONFIG_CMP_IP_Field_Array is array (0 .. 3) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for CONFIG_CMP_IP
type CONFIG_CMP_IP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CMP_IP as a value
Val : HAL.UInt4;
when True =>
-- CMP_IP as an array
Arr : CONFIG_CMP_IP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for CONFIG_CMP_IP_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- PWM Configuration Register.
type CONFIG_Register is record
SCALE : CONFIG_SCALE_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
STICKY : Boolean := False;
ZEROCMP : Boolean := False;
DEGLITCH : Boolean := False;
-- unspecified
Reserved_11_11 : HAL.Bit := 16#0#;
ENALWAYS : Boolean := False;
ENONESHOT : Boolean := False;
-- unspecified
Reserved_14_15 : HAL.UInt2 := 16#0#;
CMP_CENTER : CONFIG_CMP_CENTER_Field :=
(As_Array => False, Val => 16#0#);
-- unspecified
Reserved_20_23 : HAL.UInt4 := 16#0#;
CMP_GANG : CONFIG_CMP_GANG_Field :=
(As_Array => False, Val => 16#0#);
CMP_IP : CONFIG_CMP_IP_Field :=
(As_Array => False, Val => 16#0#);
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CONFIG_Register use record
SCALE at 0 range 0 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
STICKY at 0 range 8 .. 8;
ZEROCMP at 0 range 9 .. 9;
DEGLITCH at 0 range 10 .. 10;
Reserved_11_11 at 0 range 11 .. 11;
ENALWAYS at 0 range 12 .. 12;
ENONESHOT at 0 range 13 .. 13;
Reserved_14_15 at 0 range 14 .. 15;
CMP_CENTER at 0 range 16 .. 19;
Reserved_20_23 at 0 range 20 .. 23;
CMP_GANG at 0 range 24 .. 27;
CMP_IP at 0 range 28 .. 31;
end record;
subtype COUNT_CNT_Field is HAL.UInt31;
-- PWM Count Register.
type COUNT_Register is record
CNT : COUNT_CNT_Field := 16#0#;
-- unspecified
Reserved_31_31 : HAL.Bit := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for COUNT_Register use record
CNT at 0 range 0 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype SCALE_COUNT_CNT_Field is HAL.UInt16;
-- PWM Scaled Counter Register.
type SCALE_COUNT_Register is record
CNT : SCALE_COUNT_CNT_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SCALE_COUNT_Register use record
CNT at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype COMPARE_COMPARE_Field is HAL.UInt16;
-- PWM Compare Register.
type COMPARE_Register is record
COMPARE : COMPARE_COMPARE_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for COMPARE_Register use record
COMPARE at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- Pulse-Width Modulation.
type Internal_PWM is record
-- PWM Configuration Register.
CONFIG : aliased CONFIG_Register;
-- PWM Count Register.
COUNT : aliased COUNT_Register;
-- PWM Scaled Counter Register.
SCALE_COUNT : aliased SCALE_COUNT_Register;
-- PWM Compare Register.
COMPARE0 : aliased COMPARE_Register;
-- PWM Compare Register.
COMPARE1 : aliased COMPARE_Register;
-- PWM Compare Register.
COMPARE2 : aliased COMPARE_Register;
-- PWM Compare Register.
COMPARE3 : aliased COMPARE_Register;
end record
with Volatile;
for Internal_PWM use record
CONFIG at 16#0# range 0 .. 31;
COUNT at 16#8# range 0 .. 31;
SCALE_COUNT at 16#10# range 0 .. 31;
COMPARE0 at 16#20# range 0 .. 31;
COMPARE1 at 16#24# range 0 .. 31;
COMPARE2 at 16#28# range 0 .. 31;
COMPARE3 at 16#2C# range 0 .. 31;
end record;
type PWM_Device (Periph : not null access Internal_PWM) is
limited null record;
end SiFive.PWM;
| 34.183607 | 78 | 0.55563 |
a0033fbff71e873caac113486b3342dc694eb211 | 3,341 | ads | Ada | source/oasis/program-elements-generic_package_declarations.ads | reznikmm/gela | 20134f1d154fb763812e73860c6f4b04f353df79 | [
"MIT"
] | null | null | null | source/oasis/program-elements-generic_package_declarations.ads | reznikmm/gela | 20134f1d154fb763812e73860c6f4b04f353df79 | [
"MIT"
] | null | null | null | source/oasis/program-elements-generic_package_declarations.ads | reznikmm/gela | 20134f1d154fb763812e73860c6f4b04f353df79 | [
"MIT"
] | 1 | 2019-10-16T09:05:27.000Z | 2019-10-16T09:05:27.000Z | -- SPDX-FileCopyrightText: 2019 Max Reznik <[email protected]>
--
-- SPDX-License-Identifier: MIT
-------------------------------------------------------------
with Program.Elements.Declarations;
with Program.Lexical_Elements;
with Program.Element_Vectors;
with Program.Elements.Defining_Names;
with Program.Elements.Aspect_Specifications;
with Program.Elements.Expressions;
package Program.Elements.Generic_Package_Declarations is
pragma Pure (Program.Elements.Generic_Package_Declarations);
type Generic_Package_Declaration is
limited interface and Program.Elements.Declarations.Declaration;
type Generic_Package_Declaration_Access is
access all Generic_Package_Declaration'Class with Storage_Size => 0;
not overriding function Formal_Parameters
(Self : Generic_Package_Declaration)
return Program.Element_Vectors.Element_Vector_Access is abstract;
not overriding function Name
(Self : Generic_Package_Declaration)
return not null Program.Elements.Defining_Names.Defining_Name_Access
is abstract;
not overriding function Aspects
(Self : Generic_Package_Declaration)
return Program.Elements.Aspect_Specifications
.Aspect_Specification_Vector_Access is abstract;
not overriding function Visible_Declarations
(Self : Generic_Package_Declaration)
return Program.Element_Vectors.Element_Vector_Access is abstract;
not overriding function Private_Declarations
(Self : Generic_Package_Declaration)
return Program.Element_Vectors.Element_Vector_Access is abstract;
not overriding function End_Name
(Self : Generic_Package_Declaration)
return Program.Elements.Expressions.Expression_Access is abstract;
type Generic_Package_Declaration_Text is limited interface;
type Generic_Package_Declaration_Text_Access is
access all Generic_Package_Declaration_Text'Class with Storage_Size => 0;
not overriding function To_Generic_Package_Declaration_Text
(Self : in out Generic_Package_Declaration)
return Generic_Package_Declaration_Text_Access is abstract;
not overriding function Generic_Token
(Self : Generic_Package_Declaration_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
not overriding function Package_Token
(Self : Generic_Package_Declaration_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
not overriding function With_Token
(Self : Generic_Package_Declaration_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function Is_Token
(Self : Generic_Package_Declaration_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
not overriding function Private_Token
(Self : Generic_Package_Declaration_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function End_Token
(Self : Generic_Package_Declaration_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
not overriding function Semicolon_Token
(Self : Generic_Package_Declaration_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
end Program.Elements.Generic_Package_Declarations;
| 36.315217 | 78 | 0.788087 |
036d524abb67df55a3377cedcc66f95a1f5aa470 | 7,468 | ads | Ada | stm32f4/stm32f411xx/svd/stm32_svd-dbg.ads | ekoeppen/STM32_Generic_Ada_Drivers | 4ff29c3026c4b24280baf22a5b81ea9969375466 | [
"MIT"
] | 1 | 2021-04-06T07:57:56.000Z | 2021-04-06T07:57:56.000Z | stm32f4/stm32f411xx/svd/stm32_svd-dbg.ads | ekoeppen/STM32_Generic_Ada_Drivers | 4ff29c3026c4b24280baf22a5b81ea9969375466 | [
"MIT"
] | null | null | null | stm32f4/stm32f411xx/svd/stm32_svd-dbg.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 STM32F411xx.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with System;
package STM32_SVD.DBG is
pragma Preelaborate;
---------------
-- Registers --
---------------
subtype DBGMCU_IDCODE_DEV_ID_Field is STM32_SVD.UInt12;
subtype DBGMCU_IDCODE_REV_ID_Field is STM32_SVD.UInt16;
-- IDCODE
type DBGMCU_IDCODE_Register is record
-- Read-only. DEV_ID
DEV_ID : DBGMCU_IDCODE_DEV_ID_Field;
-- unspecified
Reserved_12_15 : STM32_SVD.UInt4;
-- Read-only. REV_ID
REV_ID : DBGMCU_IDCODE_REV_ID_Field;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for DBGMCU_IDCODE_Register use record
DEV_ID at 0 range 0 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
REV_ID at 0 range 16 .. 31;
end record;
subtype DBGMCU_CR_DBG_SLEEP_Field is STM32_SVD.Bit;
subtype DBGMCU_CR_DBG_STOP_Field is STM32_SVD.Bit;
subtype DBGMCU_CR_DBG_STANDBY_Field is STM32_SVD.Bit;
subtype DBGMCU_CR_TRACE_IOEN_Field is STM32_SVD.Bit;
subtype DBGMCU_CR_TRACE_MODE_Field is STM32_SVD.UInt2;
-- Control Register
type DBGMCU_CR_Register is record
-- DBG_SLEEP
DBG_SLEEP : DBGMCU_CR_DBG_SLEEP_Field := 16#0#;
-- DBG_STOP
DBG_STOP : DBGMCU_CR_DBG_STOP_Field := 16#0#;
-- DBG_STANDBY
DBG_STANDBY : DBGMCU_CR_DBG_STANDBY_Field := 16#0#;
-- unspecified
Reserved_3_4 : STM32_SVD.UInt2 := 16#0#;
-- TRACE_IOEN
TRACE_IOEN : DBGMCU_CR_TRACE_IOEN_Field := 16#0#;
-- TRACE_MODE
TRACE_MODE : DBGMCU_CR_TRACE_MODE_Field := 16#0#;
-- unspecified
Reserved_8_31 : STM32_SVD.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for DBGMCU_CR_Register use record
DBG_SLEEP at 0 range 0 .. 0;
DBG_STOP at 0 range 1 .. 1;
DBG_STANDBY at 0 range 2 .. 2;
Reserved_3_4 at 0 range 3 .. 4;
TRACE_IOEN at 0 range 5 .. 5;
TRACE_MODE at 0 range 6 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
subtype DBGMCU_APB1_FZ_DBG_TIM2_STOP_Field is STM32_SVD.Bit;
subtype DBGMCU_APB1_FZ_DBG_TIM3_STOP_Field is STM32_SVD.Bit;
subtype DBGMCU_APB1_FZ_DBG_TIM4_STOP_Field is STM32_SVD.Bit;
subtype DBGMCU_APB1_FZ_DBG_TIM5_STOP_Field is STM32_SVD.Bit;
subtype DBGMCU_APB1_FZ_DBG_RTC_Stop_Field is STM32_SVD.Bit;
subtype DBGMCU_APB1_FZ_DBG_WWDG_STOP_Field is STM32_SVD.Bit;
subtype DBGMCU_APB1_FZ_DBG_IWDEG_STOP_Field is STM32_SVD.Bit;
subtype DBGMCU_APB1_FZ_DBG_I2C1_SMBUS_TIMEOUT_Field is STM32_SVD.Bit;
subtype DBGMCU_APB1_FZ_DBG_I2C2_SMBUS_TIMEOUT_Field is STM32_SVD.Bit;
subtype DBGMCU_APB1_FZ_DBG_I2C3SMBUS_TIMEOUT_Field is STM32_SVD.Bit;
-- Debug MCU APB1 Freeze registe
type DBGMCU_APB1_FZ_Register is record
-- DBG_TIM2_STOP
DBG_TIM2_STOP : DBGMCU_APB1_FZ_DBG_TIM2_STOP_Field := 16#0#;
-- DBG_TIM3 _STOP
DBG_TIM3_STOP : DBGMCU_APB1_FZ_DBG_TIM3_STOP_Field := 16#0#;
-- DBG_TIM4_STOP
DBG_TIM4_STOP : DBGMCU_APB1_FZ_DBG_TIM4_STOP_Field := 16#0#;
-- DBG_TIM5_STOP
DBG_TIM5_STOP : DBGMCU_APB1_FZ_DBG_TIM5_STOP_Field := 16#0#;
-- unspecified
Reserved_4_9 : STM32_SVD.UInt6 := 16#0#;
-- RTC stopped when Core is halted
DBG_RTC_Stop : DBGMCU_APB1_FZ_DBG_RTC_Stop_Field := 16#0#;
-- DBG_WWDG_STOP
DBG_WWDG_STOP : DBGMCU_APB1_FZ_DBG_WWDG_STOP_Field := 16#0#;
-- DBG_IWDEG_STOP
DBG_IWDEG_STOP : DBGMCU_APB1_FZ_DBG_IWDEG_STOP_Field := 16#0#;
-- unspecified
Reserved_13_20 : STM32_SVD.Byte := 16#0#;
-- DBG_J2C1_SMBUS_TIMEOUT
DBG_I2C1_SMBUS_TIMEOUT : DBGMCU_APB1_FZ_DBG_I2C1_SMBUS_TIMEOUT_Field :=
16#0#;
-- DBG_J2C2_SMBUS_TIMEOUT
DBG_I2C2_SMBUS_TIMEOUT : DBGMCU_APB1_FZ_DBG_I2C2_SMBUS_TIMEOUT_Field :=
16#0#;
-- DBG_J2C3SMBUS_TIMEOUT
DBG_I2C3SMBUS_TIMEOUT : DBGMCU_APB1_FZ_DBG_I2C3SMBUS_TIMEOUT_Field :=
16#0#;
-- unspecified
Reserved_24_31 : STM32_SVD.Byte := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for DBGMCU_APB1_FZ_Register use record
DBG_TIM2_STOP at 0 range 0 .. 0;
DBG_TIM3_STOP at 0 range 1 .. 1;
DBG_TIM4_STOP at 0 range 2 .. 2;
DBG_TIM5_STOP at 0 range 3 .. 3;
Reserved_4_9 at 0 range 4 .. 9;
DBG_RTC_Stop at 0 range 10 .. 10;
DBG_WWDG_STOP at 0 range 11 .. 11;
DBG_IWDEG_STOP at 0 range 12 .. 12;
Reserved_13_20 at 0 range 13 .. 20;
DBG_I2C1_SMBUS_TIMEOUT at 0 range 21 .. 21;
DBG_I2C2_SMBUS_TIMEOUT at 0 range 22 .. 22;
DBG_I2C3SMBUS_TIMEOUT at 0 range 23 .. 23;
Reserved_24_31 at 0 range 24 .. 31;
end record;
subtype DBGMCU_APB2_FZ_DBG_TIM1_STOP_Field is STM32_SVD.Bit;
subtype DBGMCU_APB2_FZ_DBG_TIM9_STOP_Field is STM32_SVD.Bit;
subtype DBGMCU_APB2_FZ_DBG_TIM10_STOP_Field is STM32_SVD.Bit;
subtype DBGMCU_APB2_FZ_DBG_TIM11_STOP_Field is STM32_SVD.Bit;
-- Debug MCU APB2 Freeze registe
type DBGMCU_APB2_FZ_Register is record
-- TIM1 counter stopped when core is halted
DBG_TIM1_STOP : DBGMCU_APB2_FZ_DBG_TIM1_STOP_Field := 16#0#;
-- unspecified
Reserved_1_15 : STM32_SVD.UInt15 := 16#0#;
-- TIM9 counter stopped when core is halted
DBG_TIM9_STOP : DBGMCU_APB2_FZ_DBG_TIM9_STOP_Field := 16#0#;
-- TIM10 counter stopped when core is halted
DBG_TIM10_STOP : DBGMCU_APB2_FZ_DBG_TIM10_STOP_Field := 16#0#;
-- TIM11 counter stopped when core is halted
DBG_TIM11_STOP : DBGMCU_APB2_FZ_DBG_TIM11_STOP_Field := 16#0#;
-- unspecified
Reserved_19_31 : STM32_SVD.UInt13 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for DBGMCU_APB2_FZ_Register use record
DBG_TIM1_STOP at 0 range 0 .. 0;
Reserved_1_15 at 0 range 1 .. 15;
DBG_TIM9_STOP at 0 range 16 .. 16;
DBG_TIM10_STOP at 0 range 17 .. 17;
DBG_TIM11_STOP at 0 range 18 .. 18;
Reserved_19_31 at 0 range 19 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- Debug support
type DBG_Peripheral is record
-- IDCODE
DBGMCU_IDCODE : aliased DBGMCU_IDCODE_Register;
-- Control Register
DBGMCU_CR : aliased DBGMCU_CR_Register;
-- Debug MCU APB1 Freeze registe
DBGMCU_APB1_FZ : aliased DBGMCU_APB1_FZ_Register;
-- Debug MCU APB2 Freeze registe
DBGMCU_APB2_FZ : aliased DBGMCU_APB2_FZ_Register;
end record
with Volatile;
for DBG_Peripheral use record
DBGMCU_IDCODE at 16#0# range 0 .. 31;
DBGMCU_CR at 16#4# range 0 .. 31;
DBGMCU_APB1_FZ at 16#8# range 0 .. 31;
DBGMCU_APB2_FZ at 16#C# range 0 .. 31;
end record;
-- Debug support
DBG_Periph : aliased DBG_Peripheral
with Import, Address => System'To_Address (16#E0042000#);
end STM32_SVD.DBG;
| 38.102041 | 77 | 0.660418 |
8b2c15d7b2ed9c79ea52ab5d513f7563fd66ef6d | 297 | adb | Ada | day22/src/main.adb | jwarwick/aoc_2020 | b88e5a69f7ce035c4bc0a2474e0e0cdbb7b43377 | [
"MIT"
] | 3 | 2020-12-26T23:44:33.000Z | 2021-12-06T16:00:54.000Z | day22/src/main.adb | jwarwick/aoc_2020 | b88e5a69f7ce035c4bc0a2474e0e0cdbb7b43377 | [
"MIT"
] | null | null | null | day22/src/main.adb | jwarwick/aoc_2020 | b88e5a69f7ce035c4bc0a2474e0e0cdbb7b43377 | [
"MIT"
] | null | null | null | -- AOC 2020, Day 22
with Ada.Text_IO; use Ada.Text_IO;
with Day; use Day;
procedure main is
part1 : constant Natural := combat("input.txt");
part2 : constant Natural := recursive_combat("input.txt");
begin
put_line("Part 1: " & part1'IMAGE);
put_line("Part 2: " & part2'IMAGE);
end main;
| 24.75 | 60 | 0.683502 |
9a1d723e0da5b22d7c1436b78d482d740b4d616d | 203,591 | adb | Ada | Vivado_HLS_Tutorial/Design_Analysis/lab1/dct_prj/solution5/.autopilot/db/dct_dct_2d.sched.adb | williambong/Vivado | 68efafbc44b65c0bb047dbafc0ff7f1b56ee36bb | [
"MIT"
] | null | null | null | Vivado_HLS_Tutorial/Design_Analysis/lab1/dct_prj/solution5/.autopilot/db/dct_dct_2d.sched.adb | williambong/Vivado | 68efafbc44b65c0bb047dbafc0ff7f1b56ee36bb | [
"MIT"
] | null | null | null | Vivado_HLS_Tutorial/Design_Analysis/lab1/dct_prj/solution5/.autopilot/db/dct_dct_2d.sched.adb | williambong/Vivado | 68efafbc44b65c0bb047dbafc0ff7f1b56ee36bb | [
"MIT"
] | null | null | null | <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE boost_serialization>
<boost_serialization signature="serialization::archive" version="11">
<syndb class_id="0" tracking_level="0" version="0">
<userIPLatency>-1</userIPLatency>
<userIPName></userIPName>
<cdfg class_id="1" tracking_level="1" version="0" object_id="_0">
<name>dct_dct_2d</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>1</id>
<name>in_block_0</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo class_id="6" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>in_block[0]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>8</array_size>
<bit_vecs class_id="7" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_2">
<Value>
<Obj>
<type>1</type>
<id>2</id>
<name>in_block_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>in_block[1]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>8</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_3">
<Value>
<Obj>
<type>1</type>
<id>3</id>
<name>in_block_2</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>in_block[2]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>8</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_4">
<Value>
<Obj>
<type>1</type>
<id>4</id>
<name>in_block_3</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>in_block[3]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>8</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_5">
<Value>
<Obj>
<type>1</type>
<id>5</id>
<name>in_block_4</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>in_block[4]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>8</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_6">
<Value>
<Obj>
<type>1</type>
<id>6</id>
<name>in_block_5</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>in_block[5]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>8</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_7">
<Value>
<Obj>
<type>1</type>
<id>7</id>
<name>in_block_6</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>in_block[6]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>8</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_8">
<Value>
<Obj>
<type>1</type>
<id>8</id>
<name>in_block_7</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>in_block[7]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>8</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_9">
<Value>
<Obj>
<type>1</type>
<id>9</id>
<name>out_block</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>out_block</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>64</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>96</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>18</id>
<name>row_outbuf</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>150</item>
</oprand_edges>
<opcode>alloca</opcode>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>19</id>
<name>col_outbuf</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>151</item>
</oprand_edges>
<opcode>alloca</opcode>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>20</id>
<name>col_inbuf_0</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>71</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="11" tracking_level="0" version="0">
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second class_id="12" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="13" tracking_level="0" version="0">
<first class_id="14" tracking_level="0" version="0">
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>71</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>col_inbuf[0]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>152</item>
</oprand_edges>
<opcode>alloca</opcode>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name>col_inbuf_1</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>71</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>71</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>col_inbuf[1]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>153</item>
</oprand_edges>
<opcode>alloca</opcode>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>22</id>
<name>col_inbuf_2</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>71</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>71</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>col_inbuf[2]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>154</item>
</oprand_edges>
<opcode>alloca</opcode>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>23</id>
<name>col_inbuf_3</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>71</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>71</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>col_inbuf[3]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>155</item>
</oprand_edges>
<opcode>alloca</opcode>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>24</id>
<name>col_inbuf_4</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>71</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>71</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>col_inbuf[4]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>156</item>
</oprand_edges>
<opcode>alloca</opcode>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>25</id>
<name>col_inbuf_5</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>71</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>71</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>col_inbuf[5]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>157</item>
</oprand_edges>
<opcode>alloca</opcode>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>26</id>
<name>col_inbuf_6</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>71</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>71</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>col_inbuf[6]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>158</item>
</oprand_edges>
<opcode>alloca</opcode>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>27</id>
<name>col_inbuf_7</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>71</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>71</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>col_inbuf[7]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>159</item>
</oprand_edges>
<opcode>alloca</opcode>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>28</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>76</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>76</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>160</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>30</id>
<name>i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>162</item>
<item>163</item>
<item>164</item>
<item>165</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>31</id>
<name>exitcond5</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>76</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>76</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>166</item>
<item>168</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>33</id>
<name>i_4</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>76</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>76</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>169</item>
<item>171</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>34</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>76</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>76</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>172</item>
<item>173</item>
<item>174</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>77</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>77</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>20</count>
<item_version>0</item_version>
<item>176</item>
<item>177</item>
<item>178</item>
<item>179</item>
<item>180</item>
<item>181</item>
<item>182</item>
<item>183</item>
<item>184</item>
<item>185</item>
<item>186</item>
<item>187</item>
<item>392</item>
<item>393</item>
<item>394</item>
<item>395</item>
<item>396</item>
<item>397</item>
<item>398</item>
<item>399</item>
</oprand_edges>
<opcode>call</opcode>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>76</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>76</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>188</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>indvar_flatten</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>189</item>
<item>190</item>
<item>192</item>
<item>193</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name>j</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>83</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>83</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>194</item>
<item>195</item>
<item>196</item>
<item>197</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>42</id>
<name>i_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>198</item>
<item>199</item>
<item>200</item>
<item>201</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name>exitcond_flatten</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>202</item>
<item>204</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>44</id>
<name>indvar_flatten_next</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>205</item>
<item>207</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>45</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>208</item>
<item>209</item>
<item>210</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>49</id>
<name>exitcond</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>83</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>83</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>214</item>
<item>215</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>50</id>
<name>i_1_mid2</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>83</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>83</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>216</item>
<item>217</item>
<item>218</item>
</oprand_edges>
<opcode>select</opcode>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>51</id>
<name>j_s</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>81</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>81</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>219</item>
<item>220</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>52</id>
<name>j_mid2</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>83</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>83</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>221</item>
<item>222</item>
<item>223</item>
</oprand_edges>
<opcode>select</opcode>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>53</id>
<name>tmp_s</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>224</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>57</id>
<name>tmp_trn_cast</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>83</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>83</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>225</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>58</id>
<name>tmp</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>83</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>83</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>227</item>
<item>228</item>
<item>230</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
</item>
<item class_id_reference="9" object_id="_40">
<Value>
<Obj>
<type>0</type>
<id>59</id>
<name>p_addr_cast</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>231</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>60</id>
<name>p_addr1</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>232</item>
<item>233</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_42">
<Value>
<Obj>
<type>0</type>
<id>61</id>
<name>tmp_5</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>234</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_43">
<Value>
<Obj>
<type>0</type>
<id>62</id>
<name>row_outbuf_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>235</item>
<item>237</item>
<item>238</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_44">
<Value>
<Obj>
<type>0</type>
<id>63</id>
<name>row_outbuf_load</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>239</item>
</oprand_edges>
<opcode>load</opcode>
</item>
<item class_id_reference="9" object_id="_45">
<Value>
<Obj>
<type>0</type>
<id>64</id>
<name>tmp_2</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>83</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>83</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>240</item>
</oprand_edges>
<opcode>trunc</opcode>
</item>
<item class_id_reference="9" object_id="_46">
<Value>
<Obj>
<type>0</type>
<id>65</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>16</count>
<item_version>0</item_version>
<item>241</item>
<item>242</item>
<item>243</item>
<item>244</item>
<item>246</item>
<item>247</item>
<item>249</item>
<item>250</item>
<item>252</item>
<item>253</item>
<item>255</item>
<item>256</item>
<item>258</item>
<item>259</item>
<item>261</item>
<item>262</item>
</oprand_edges>
<opcode>switch</opcode>
</item>
<item class_id_reference="9" object_id="_47">
<Value>
<Obj>
<type>0</type>
<id>67</id>
<name>col_inbuf_6_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>380</item>
<item>381</item>
<item>382</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_48">
<Value>
<Obj>
<type>0</type>
<id>68</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>383</item>
<item>384</item>
</oprand_edges>
<opcode>store</opcode>
</item>
<item class_id_reference="9" object_id="_49">
<Value>
<Obj>
<type>0</type>
<id>69</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>385</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_50">
<Value>
<Obj>
<type>0</type>
<id>71</id>
<name>col_inbuf_5_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>374</item>
<item>375</item>
<item>376</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_51">
<Value>
<Obj>
<type>0</type>
<id>72</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>377</item>
<item>378</item>
</oprand_edges>
<opcode>store</opcode>
</item>
<item class_id_reference="9" object_id="_52">
<Value>
<Obj>
<type>0</type>
<id>73</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>379</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_53">
<Value>
<Obj>
<type>0</type>
<id>75</id>
<name>col_inbuf_4_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>368</item>
<item>369</item>
<item>370</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_54">
<Value>
<Obj>
<type>0</type>
<id>76</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>371</item>
<item>372</item>
</oprand_edges>
<opcode>store</opcode>
</item>
<item class_id_reference="9" object_id="_55">
<Value>
<Obj>
<type>0</type>
<id>77</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>373</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_56">
<Value>
<Obj>
<type>0</type>
<id>79</id>
<name>col_inbuf_3_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></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>
</item>
<item class_id_reference="9" object_id="_57">
<Value>
<Obj>
<type>0</type>
<id>80</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>365</item>
<item>366</item>
</oprand_edges>
<opcode>store</opcode>
</item>
<item class_id_reference="9" object_id="_58">
<Value>
<Obj>
<type>0</type>
<id>81</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>367</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_59">
<Value>
<Obj>
<type>0</type>
<id>83</id>
<name>col_inbuf_2_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>356</item>
<item>357</item>
<item>358</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_60">
<Value>
<Obj>
<type>0</type>
<id>84</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>359</item>
<item>360</item>
</oprand_edges>
<opcode>store</opcode>
</item>
<item class_id_reference="9" object_id="_61">
<Value>
<Obj>
<type>0</type>
<id>85</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>361</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_62">
<Value>
<Obj>
<type>0</type>
<id>87</id>
<name>col_inbuf_1_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>350</item>
<item>351</item>
<item>352</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_63">
<Value>
<Obj>
<type>0</type>
<id>88</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>353</item>
<item>354</item>
</oprand_edges>
<opcode>store</opcode>
</item>
<item class_id_reference="9" object_id="_64">
<Value>
<Obj>
<type>0</type>
<id>89</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>355</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_65">
<Value>
<Obj>
<type>0</type>
<id>91</id>
<name>col_inbuf_0_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>344</item>
<item>345</item>
<item>346</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_66">
<Value>
<Obj>
<type>0</type>
<id>92</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>347</item>
<item>348</item>
</oprand_edges>
<opcode>store</opcode>
</item>
<item class_id_reference="9" object_id="_67">
<Value>
<Obj>
<type>0</type>
<id>93</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>349</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_68">
<Value>
<Obj>
<type>0</type>
<id>95</id>
<name>col_inbuf_7_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>386</item>
<item>387</item>
<item>388</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_69">
<Value>
<Obj>
<type>0</type>
<id>96</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>389</item>
<item>390</item>
</oprand_edges>
<opcode>store</opcode>
</item>
<item class_id_reference="9" object_id="_70">
<Value>
<Obj>
<type>0</type>
<id>97</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>391</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_71">
<Value>
<Obj>
<type>0</type>
<id>100</id>
<name>i_6</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>83</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>83</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>211</item>
<item>212</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_72">
<Value>
<Obj>
<type>0</type>
<id>101</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>213</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_73">
<Value>
<Obj>
<type>0</type>
<id>103</id>
<name>i_2</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>263</item>
<item>264</item>
<item>265</item>
<item>266</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_74">
<Value>
<Obj>
<type>0</type>
<id>104</id>
<name>exitcond2</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>87</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>87</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>267</item>
<item>268</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_75">
<Value>
<Obj>
<type>0</type>
<id>106</id>
<name>i_5</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>87</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>87</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>269</item>
<item>270</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_76">
<Value>
<Obj>
<type>0</type>
<id>107</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>87</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>87</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>271</item>
<item>272</item>
<item>273</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_77">
<Value>
<Obj>
<type>0</type>
<id>110</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>88</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>88</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>20</count>
<item_version>0</item_version>
<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>400</item>
<item>401</item>
<item>402</item>
<item>403</item>
<item>404</item>
<item>405</item>
<item>406</item>
<item>407</item>
</oprand_edges>
<opcode>call</opcode>
</item>
<item class_id_reference="9" object_id="_78">
<Value>
<Obj>
<type>0</type>
<id>111</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>87</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>87</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>286</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_79">
<Value>
<Obj>
<type>0</type>
<id>113</id>
<name>indvar_flatten1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>287</item>
<item>288</item>
<item>289</item>
<item>290</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_80">
<Value>
<Obj>
<type>0</type>
<id>114</id>
<name>j_1</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>94</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>94</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>291</item>
<item>292</item>
<item>293</item>
<item>294</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_81">
<Value>
<Obj>
<type>0</type>
<id>115</id>
<name>i_3</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>295</item>
<item>296</item>
<item>297</item>
<item>298</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_82">
<Value>
<Obj>
<type>0</type>
<id>116</id>
<name>exitcond_flatten1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>299</item>
<item>300</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_83">
<Value>
<Obj>
<type>0</type>
<id>117</id>
<name>indvar_flatten_next1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>301</item>
<item>302</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_84">
<Value>
<Obj>
<type>0</type>
<id>118</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>303</item>
<item>304</item>
<item>305</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_85">
<Value>
<Obj>
<type>0</type>
<id>122</id>
<name>exitcond1</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>94</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>94</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>306</item>
<item>307</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_86">
<Value>
<Obj>
<type>0</type>
<id>123</id>
<name>i_3_mid2</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>94</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>94</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>308</item>
<item>309</item>
<item>310</item>
</oprand_edges>
<opcode>select</opcode>
</item>
<item class_id_reference="9" object_id="_87">
<Value>
<Obj>
<type>0</type>
<id>124</id>
<name>j_2</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>92</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>92</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>311</item>
<item>312</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_88">
<Value>
<Obj>
<type>0</type>
<id>125</id>
<name>j_1_mid2</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>94</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>94</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>313</item>
<item>314</item>
<item>315</item>
</oprand_edges>
<opcode>select</opcode>
</item>
<item class_id_reference="9" object_id="_89">
<Value>
<Obj>
<type>0</type>
<id>129</id>
<name>tmp_4_trn_cast</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>95</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>95</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>316</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_90">
<Value>
<Obj>
<type>0</type>
<id>130</id>
<name>tmp_3_trn_cast</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>94</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>94</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>317</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_91">
<Value>
<Obj>
<type>0</type>
<id>131</id>
<name>tmp_6</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>94</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>94</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>318</item>
<item>319</item>
<item>320</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
</item>
<item class_id_reference="9" object_id="_92">
<Value>
<Obj>
<type>0</type>
<id>132</id>
<name>p_addr2_cast</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>95</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>95</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>321</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_93">
<Value>
<Obj>
<type>0</type>
<id>133</id>
<name>p_addr5</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>95</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>95</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>322</item>
<item>323</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_94">
<Value>
<Obj>
<type>0</type>
<id>134</id>
<name>tmp_7</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>95</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>95</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>324</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_95">
<Value>
<Obj>
<type>0</type>
<id>135</id>
<name>col_outbuf_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>95</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>95</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>325</item>
<item>326</item>
<item>327</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_96">
<Value>
<Obj>
<type>0</type>
<id>136</id>
<name>col_outbuf_load</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>95</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>95</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>328</item>
</oprand_edges>
<opcode>load</opcode>
</item>
<item class_id_reference="9" object_id="_97">
<Value>
<Obj>
<type>0</type>
<id>137</id>
<name>tmp_8</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>94</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>94</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>329</item>
<item>330</item>
<item>331</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
</item>
<item class_id_reference="9" object_id="_98">
<Value>
<Obj>
<type>0</type>
<id>138</id>
<name>p_addr3_cast</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>95</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>95</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>332</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_99">
<Value>
<Obj>
<type>0</type>
<id>139</id>
<name>p_addr4</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>95</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>95</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>333</item>
<item>334</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_100">
<Value>
<Obj>
<type>0</type>
<id>140</id>
<name>tmp_3</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>95</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>95</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>335</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_101">
<Value>
<Obj>
<type>0</type>
<id>141</id>
<name>out_block_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>95</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>95</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>336</item>
<item>337</item>
<item>338</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_102">
<Value>
<Obj>
<type>0</type>
<id>142</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>95</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>95</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>339</item>
<item>340</item>
</oprand_edges>
<opcode>store</opcode>
</item>
<item class_id_reference="9" object_id="_103">
<Value>
<Obj>
<type>0</type>
<id>144</id>
<name>i_7</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>94</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>94</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>341</item>
<item>342</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_104">
<Value>
<Obj>
<type>0</type>
<id>145</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>343</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_105">
<Value>
<Obj>
<type>0</type>
<id>147</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>96</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_2d</second>
</first>
<second>96</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>0</count>
<item_version>0</item_version>
</oprand_edges>
<opcode>ret</opcode>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>16</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_106">
<Value>
<Obj>
<type>2</type>
<id>149</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_107">
<Value>
<Obj>
<type>2</type>
<id>161</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_108">
<Value>
<Obj>
<type>2</type>
<id>167</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<const_type>0</const_type>
<content>8</content>
</item>
<item class_id_reference="16" object_id="_109">
<Value>
<Obj>
<type>2</type>
<id>170</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_110">
<Value>
<Obj>
<type>2</type>
<id>175</id>
<name>dct_dct_1d</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<const_type>6</const_type>
<content><constant:dct_dct_1d></content>
</item>
<item class_id_reference="16" object_id="_111">
<Value>
<Obj>
<type>2</type>
<id>191</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_112">
<Value>
<Obj>
<type>2</type>
<id>203</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<const_type>0</const_type>
<content>64</content>
</item>
<item class_id_reference="16" object_id="_113">
<Value>
<Obj>
<type>2</type>
<id>206</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_114">
<Value>
<Obj>
<type>2</type>
<id>229</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_115">
<Value>
<Obj>
<type>2</type>
<id>236</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_116">
<Value>
<Obj>
<type>2</type>
<id>245</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_117">
<Value>
<Obj>
<type>2</type>
<id>248</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>2</content>
</item>
<item class_id_reference="16" object_id="_118">
<Value>
<Obj>
<type>2</type>
<id>251</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>3</content>
</item>
<item class_id_reference="16" object_id="_119">
<Value>
<Obj>
<type>2</type>
<id>254</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>4</content>
</item>
<item class_id_reference="16" object_id="_120">
<Value>
<Obj>
<type>2</type>
<id>257</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>5</content>
</item>
<item class_id_reference="16" object_id="_121">
<Value>
<Obj>
<type>2</type>
<id>260</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>6</content>
</item>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>19</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_122">
<Obj>
<type>3</type>
<id>29</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>11</count>
<item_version>0</item_version>
<item>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>
</node_objs>
</item>
<item class_id_reference="18" object_id="_123">
<Obj>
<type>3</type>
<id>35</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>30</item>
<item>31</item>
<item>33</item>
<item>34</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_124">
<Obj>
<type>3</type>
<id>39</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>37</item>
<item>38</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_125">
<Obj>
<type>3</type>
<id>46</id>
<name>.preheader7.preheader</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>6</count>
<item_version>0</item_version>
<item>40</item>
<item>41</item>
<item>42</item>
<item>43</item>
<item>44</item>
<item>45</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_126">
<Obj>
<type>3</type>
<id>66</id>
<name>.preheader7</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>14</count>
<item_version>0</item_version>
<item>49</item>
<item>50</item>
<item>51</item>
<item>52</item>
<item>53</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>
</node_objs>
</item>
<item class_id_reference="18" object_id="_127">
<Obj>
<type>3</type>
<id>70</id>
<name>branch6</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>3</count>
<item_version>0</item_version>
<item>67</item>
<item>68</item>
<item>69</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_128">
<Obj>
<type>3</type>
<id>74</id>
<name>branch5</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>3</count>
<item_version>0</item_version>
<item>71</item>
<item>72</item>
<item>73</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_129">
<Obj>
<type>3</type>
<id>78</id>
<name>branch4</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>3</count>
<item_version>0</item_version>
<item>75</item>
<item>76</item>
<item>77</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_130">
<Obj>
<type>3</type>
<id>82</id>
<name>branch3</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>3</count>
<item_version>0</item_version>
<item>79</item>
<item>80</item>
<item>81</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_131">
<Obj>
<type>3</type>
<id>86</id>
<name>branch2</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>3</count>
<item_version>0</item_version>
<item>83</item>
<item>84</item>
<item>85</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_132">
<Obj>
<type>3</type>
<id>90</id>
<name>branch1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>3</count>
<item_version>0</item_version>
<item>87</item>
<item>88</item>
<item>89</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_133">
<Obj>
<type>3</type>
<id>94</id>
<name>branch0</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>3</count>
<item_version>0</item_version>
<item>91</item>
<item>92</item>
<item>93</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_134">
<Obj>
<type>3</type>
<id>98</id>
<name>branch7</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>3</count>
<item_version>0</item_version>
<item>95</item>
<item>96</item>
<item>97</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_135">
<Obj>
<type>3</type>
<id>102</id>
<name>ifBlock</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>100</item>
<item>101</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_136">
<Obj>
<type>3</type>
<id>108</id>
<name>.preheader6</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>103</item>
<item>104</item>
<item>106</item>
<item>107</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_137">
<Obj>
<type>3</type>
<id>112</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>110</item>
<item>111</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_138">
<Obj>
<type>3</type>
<id>119</id>
<name>.preheader.preheader</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>6</count>
<item_version>0</item_version>
<item>113</item>
<item>114</item>
<item>115</item>
<item>116</item>
<item>117</item>
<item>118</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_139">
<Obj>
<type>3</type>
<id>146</id>
<name>.preheader</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>20</count>
<item_version>0</item_version>
<item>122</item>
<item>123</item>
<item>124</item>
<item>125</item>
<item>129</item>
<item>130</item>
<item>131</item>
<item>132</item>
<item>133</item>
<item>134</item>
<item>135</item>
<item>136</item>
<item>137</item>
<item>138</item>
<item>139</item>
<item>140</item>
<item>141</item>
<item>142</item>
<item>144</item>
<item>145</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_140">
<Obj>
<type>3</type>
<id>148</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>147</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>268</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_141">
<id>150</id>
<edge_type>1</edge_type>
<source_obj>149</source_obj>
<sink_obj>18</sink_obj>
</item>
<item class_id_reference="20" object_id="_142">
<id>151</id>
<edge_type>1</edge_type>
<source_obj>149</source_obj>
<sink_obj>19</sink_obj>
</item>
<item class_id_reference="20" object_id="_143">
<id>152</id>
<edge_type>1</edge_type>
<source_obj>149</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_144">
<id>153</id>
<edge_type>1</edge_type>
<source_obj>149</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_145">
<id>154</id>
<edge_type>1</edge_type>
<source_obj>149</source_obj>
<sink_obj>22</sink_obj>
</item>
<item class_id_reference="20" object_id="_146">
<id>155</id>
<edge_type>1</edge_type>
<source_obj>149</source_obj>
<sink_obj>23</sink_obj>
</item>
<item class_id_reference="20" object_id="_147">
<id>156</id>
<edge_type>1</edge_type>
<source_obj>149</source_obj>
<sink_obj>24</sink_obj>
</item>
<item class_id_reference="20" object_id="_148">
<id>157</id>
<edge_type>1</edge_type>
<source_obj>149</source_obj>
<sink_obj>25</sink_obj>
</item>
<item class_id_reference="20" object_id="_149">
<id>158</id>
<edge_type>1</edge_type>
<source_obj>149</source_obj>
<sink_obj>26</sink_obj>
</item>
<item class_id_reference="20" object_id="_150">
<id>159</id>
<edge_type>1</edge_type>
<source_obj>149</source_obj>
<sink_obj>27</sink_obj>
</item>
<item class_id_reference="20" object_id="_151">
<id>160</id>
<edge_type>2</edge_type>
<source_obj>35</source_obj>
<sink_obj>28</sink_obj>
</item>
<item class_id_reference="20" object_id="_152">
<id>162</id>
<edge_type>1</edge_type>
<source_obj>161</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_153">
<id>163</id>
<edge_type>2</edge_type>
<source_obj>29</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_154">
<id>164</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_155">
<id>165</id>
<edge_type>2</edge_type>
<source_obj>39</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_156">
<id>166</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>31</sink_obj>
</item>
<item class_id_reference="20" object_id="_157">
<id>168</id>
<edge_type>1</edge_type>
<source_obj>167</source_obj>
<sink_obj>31</sink_obj>
</item>
<item class_id_reference="20" object_id="_158">
<id>169</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_159">
<id>171</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_160">
<id>172</id>
<edge_type>1</edge_type>
<source_obj>31</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_161">
<id>173</id>
<edge_type>2</edge_type>
<source_obj>39</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_162">
<id>174</id>
<edge_type>2</edge_type>
<source_obj>46</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_163">
<id>176</id>
<edge_type>1</edge_type>
<source_obj>175</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_164">
<id>177</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_165">
<id>178</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_166">
<id>179</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_167">
<id>180</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_168">
<id>181</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_169">
<id>182</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_170">
<id>183</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_171">
<id>184</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_172">
<id>185</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_173">
<id>186</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_174">
<id>187</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_175">
<id>188</id>
<edge_type>2</edge_type>
<source_obj>35</source_obj>
<sink_obj>38</sink_obj>
</item>
<item class_id_reference="20" object_id="_176">
<id>189</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_177">
<id>190</id>
<edge_type>2</edge_type>
<source_obj>102</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_178">
<id>192</id>
<edge_type>1</edge_type>
<source_obj>191</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_179">
<id>193</id>
<edge_type>2</edge_type>
<source_obj>35</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_180">
<id>194</id>
<edge_type>1</edge_type>
<source_obj>52</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_181">
<id>195</id>
<edge_type>2</edge_type>
<source_obj>102</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_182">
<id>196</id>
<edge_type>1</edge_type>
<source_obj>161</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_183">
<id>197</id>
<edge_type>2</edge_type>
<source_obj>35</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_184">
<id>198</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_185">
<id>199</id>
<edge_type>2</edge_type>
<source_obj>102</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_186">
<id>200</id>
<edge_type>1</edge_type>
<source_obj>161</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_187">
<id>201</id>
<edge_type>2</edge_type>
<source_obj>35</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_188">
<id>202</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_189">
<id>204</id>
<edge_type>1</edge_type>
<source_obj>203</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_190">
<id>205</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_191">
<id>207</id>
<edge_type>1</edge_type>
<source_obj>206</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_192">
<id>208</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_193">
<id>209</id>
<edge_type>2</edge_type>
<source_obj>66</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_194">
<id>210</id>
<edge_type>2</edge_type>
<source_obj>108</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_195">
<id>211</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>100</sink_obj>
</item>
<item class_id_reference="20" object_id="_196">
<id>212</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>100</sink_obj>
</item>
<item class_id_reference="20" object_id="_197">
<id>213</id>
<edge_type>2</edge_type>
<source_obj>46</source_obj>
<sink_obj>101</sink_obj>
</item>
<item class_id_reference="20" object_id="_198">
<id>214</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>49</sink_obj>
</item>
<item class_id_reference="20" object_id="_199">
<id>215</id>
<edge_type>1</edge_type>
<source_obj>167</source_obj>
<sink_obj>49</sink_obj>
</item>
<item class_id_reference="20" object_id="_200">
<id>216</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>50</sink_obj>
</item>
<item class_id_reference="20" object_id="_201">
<id>217</id>
<edge_type>1</edge_type>
<source_obj>161</source_obj>
<sink_obj>50</sink_obj>
</item>
<item class_id_reference="20" object_id="_202">
<id>218</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>50</sink_obj>
</item>
<item class_id_reference="20" object_id="_203">
<id>219</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>51</sink_obj>
</item>
<item class_id_reference="20" object_id="_204">
<id>220</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>51</sink_obj>
</item>
<item class_id_reference="20" object_id="_205">
<id>221</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>52</sink_obj>
</item>
<item class_id_reference="20" object_id="_206">
<id>222</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>52</sink_obj>
</item>
<item class_id_reference="20" object_id="_207">
<id>223</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>52</sink_obj>
</item>
<item class_id_reference="20" object_id="_208">
<id>224</id>
<edge_type>1</edge_type>
<source_obj>52</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_209">
<id>225</id>
<edge_type>1</edge_type>
<source_obj>52</source_obj>
<sink_obj>57</sink_obj>
</item>
<item class_id_reference="20" object_id="_210">
<id>228</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>58</sink_obj>
</item>
<item class_id_reference="20" object_id="_211">
<id>230</id>
<edge_type>1</edge_type>
<source_obj>229</source_obj>
<sink_obj>58</sink_obj>
</item>
<item class_id_reference="20" object_id="_212">
<id>231</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>59</sink_obj>
</item>
<item class_id_reference="20" object_id="_213">
<id>232</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>60</sink_obj>
</item>
<item class_id_reference="20" object_id="_214">
<id>233</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>60</sink_obj>
</item>
<item class_id_reference="20" object_id="_215">
<id>234</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>61</sink_obj>
</item>
<item class_id_reference="20" object_id="_216">
<id>235</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>62</sink_obj>
</item>
<item class_id_reference="20" object_id="_217">
<id>237</id>
<edge_type>1</edge_type>
<source_obj>236</source_obj>
<sink_obj>62</sink_obj>
</item>
<item class_id_reference="20" object_id="_218">
<id>238</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>62</sink_obj>
</item>
<item class_id_reference="20" object_id="_219">
<id>239</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>63</sink_obj>
</item>
<item class_id_reference="20" object_id="_220">
<id>240</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>64</sink_obj>
</item>
<item class_id_reference="20" object_id="_221">
<id>241</id>
<edge_type>1</edge_type>
<source_obj>64</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_222">
<id>242</id>
<edge_type>2</edge_type>
<source_obj>98</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_223">
<id>243</id>
<edge_type>1</edge_type>
<source_obj>229</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_224">
<id>244</id>
<edge_type>2</edge_type>
<source_obj>94</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_225">
<id>246</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_226">
<id>247</id>
<edge_type>2</edge_type>
<source_obj>90</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_227">
<id>249</id>
<edge_type>1</edge_type>
<source_obj>248</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_228">
<id>250</id>
<edge_type>2</edge_type>
<source_obj>86</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_229">
<id>252</id>
<edge_type>1</edge_type>
<source_obj>251</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_230">
<id>253</id>
<edge_type>2</edge_type>
<source_obj>82</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_231">
<id>255</id>
<edge_type>1</edge_type>
<source_obj>254</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_232">
<id>256</id>
<edge_type>2</edge_type>
<source_obj>78</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_233">
<id>258</id>
<edge_type>1</edge_type>
<source_obj>257</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_234">
<id>259</id>
<edge_type>2</edge_type>
<source_obj>74</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_235">
<id>261</id>
<edge_type>1</edge_type>
<source_obj>260</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_236">
<id>262</id>
<edge_type>2</edge_type>
<source_obj>70</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_237">
<id>263</id>
<edge_type>1</edge_type>
<source_obj>106</source_obj>
<sink_obj>103</sink_obj>
</item>
<item class_id_reference="20" object_id="_238">
<id>264</id>
<edge_type>2</edge_type>
<source_obj>112</source_obj>
<sink_obj>103</sink_obj>
</item>
<item class_id_reference="20" object_id="_239">
<id>265</id>
<edge_type>1</edge_type>
<source_obj>161</source_obj>
<sink_obj>103</sink_obj>
</item>
<item class_id_reference="20" object_id="_240">
<id>266</id>
<edge_type>2</edge_type>
<source_obj>46</source_obj>
<sink_obj>103</sink_obj>
</item>
<item class_id_reference="20" object_id="_241">
<id>267</id>
<edge_type>1</edge_type>
<source_obj>103</source_obj>
<sink_obj>104</sink_obj>
</item>
<item class_id_reference="20" object_id="_242">
<id>268</id>
<edge_type>1</edge_type>
<source_obj>167</source_obj>
<sink_obj>104</sink_obj>
</item>
<item class_id_reference="20" object_id="_243">
<id>269</id>
<edge_type>1</edge_type>
<source_obj>103</source_obj>
<sink_obj>106</sink_obj>
</item>
<item class_id_reference="20" object_id="_244">
<id>270</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>106</sink_obj>
</item>
<item class_id_reference="20" object_id="_245">
<id>271</id>
<edge_type>1</edge_type>
<source_obj>104</source_obj>
<sink_obj>107</sink_obj>
</item>
<item class_id_reference="20" object_id="_246">
<id>272</id>
<edge_type>2</edge_type>
<source_obj>112</source_obj>
<sink_obj>107</sink_obj>
</item>
<item class_id_reference="20" object_id="_247">
<id>273</id>
<edge_type>2</edge_type>
<source_obj>119</source_obj>
<sink_obj>107</sink_obj>
</item>
<item class_id_reference="20" object_id="_248">
<id>274</id>
<edge_type>1</edge_type>
<source_obj>175</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_249">
<id>275</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_250">
<id>276</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_251">
<id>277</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_252">
<id>278</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_253">
<id>279</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_254">
<id>280</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_255">
<id>281</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_256">
<id>282</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_257">
<id>283</id>
<edge_type>1</edge_type>
<source_obj>103</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_258">
<id>284</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_259">
<id>285</id>
<edge_type>1</edge_type>
<source_obj>103</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_260">
<id>286</id>
<edge_type>2</edge_type>
<source_obj>108</source_obj>
<sink_obj>111</sink_obj>
</item>
<item class_id_reference="20" object_id="_261">
<id>287</id>
<edge_type>1</edge_type>
<source_obj>117</source_obj>
<sink_obj>113</sink_obj>
</item>
<item class_id_reference="20" object_id="_262">
<id>288</id>
<edge_type>2</edge_type>
<source_obj>146</source_obj>
<sink_obj>113</sink_obj>
</item>
<item class_id_reference="20" object_id="_263">
<id>289</id>
<edge_type>1</edge_type>
<source_obj>191</source_obj>
<sink_obj>113</sink_obj>
</item>
<item class_id_reference="20" object_id="_264">
<id>290</id>
<edge_type>2</edge_type>
<source_obj>108</source_obj>
<sink_obj>113</sink_obj>
</item>
<item class_id_reference="20" object_id="_265">
<id>291</id>
<edge_type>1</edge_type>
<source_obj>125</source_obj>
<sink_obj>114</sink_obj>
</item>
<item class_id_reference="20" object_id="_266">
<id>292</id>
<edge_type>2</edge_type>
<source_obj>146</source_obj>
<sink_obj>114</sink_obj>
</item>
<item class_id_reference="20" object_id="_267">
<id>293</id>
<edge_type>1</edge_type>
<source_obj>161</source_obj>
<sink_obj>114</sink_obj>
</item>
<item class_id_reference="20" object_id="_268">
<id>294</id>
<edge_type>2</edge_type>
<source_obj>108</source_obj>
<sink_obj>114</sink_obj>
</item>
<item class_id_reference="20" object_id="_269">
<id>295</id>
<edge_type>1</edge_type>
<source_obj>144</source_obj>
<sink_obj>115</sink_obj>
</item>
<item class_id_reference="20" object_id="_270">
<id>296</id>
<edge_type>2</edge_type>
<source_obj>146</source_obj>
<sink_obj>115</sink_obj>
</item>
<item class_id_reference="20" object_id="_271">
<id>297</id>
<edge_type>1</edge_type>
<source_obj>161</source_obj>
<sink_obj>115</sink_obj>
</item>
<item class_id_reference="20" object_id="_272">
<id>298</id>
<edge_type>2</edge_type>
<source_obj>108</source_obj>
<sink_obj>115</sink_obj>
</item>
<item class_id_reference="20" object_id="_273">
<id>299</id>
<edge_type>1</edge_type>
<source_obj>113</source_obj>
<sink_obj>116</sink_obj>
</item>
<item class_id_reference="20" object_id="_274">
<id>300</id>
<edge_type>1</edge_type>
<source_obj>203</source_obj>
<sink_obj>116</sink_obj>
</item>
<item class_id_reference="20" object_id="_275">
<id>301</id>
<edge_type>1</edge_type>
<source_obj>113</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_276">
<id>302</id>
<edge_type>1</edge_type>
<source_obj>206</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_277">
<id>303</id>
<edge_type>1</edge_type>
<source_obj>116</source_obj>
<sink_obj>118</sink_obj>
</item>
<item class_id_reference="20" object_id="_278">
<id>304</id>
<edge_type>2</edge_type>
<source_obj>146</source_obj>
<sink_obj>118</sink_obj>
</item>
<item class_id_reference="20" object_id="_279">
<id>305</id>
<edge_type>2</edge_type>
<source_obj>148</source_obj>
<sink_obj>118</sink_obj>
</item>
<item class_id_reference="20" object_id="_280">
<id>306</id>
<edge_type>1</edge_type>
<source_obj>115</source_obj>
<sink_obj>122</sink_obj>
</item>
<item class_id_reference="20" object_id="_281">
<id>307</id>
<edge_type>1</edge_type>
<source_obj>167</source_obj>
<sink_obj>122</sink_obj>
</item>
<item class_id_reference="20" object_id="_282">
<id>308</id>
<edge_type>1</edge_type>
<source_obj>122</source_obj>
<sink_obj>123</sink_obj>
</item>
<item class_id_reference="20" object_id="_283">
<id>309</id>
<edge_type>1</edge_type>
<source_obj>161</source_obj>
<sink_obj>123</sink_obj>
</item>
<item class_id_reference="20" object_id="_284">
<id>310</id>
<edge_type>1</edge_type>
<source_obj>115</source_obj>
<sink_obj>123</sink_obj>
</item>
<item class_id_reference="20" object_id="_285">
<id>311</id>
<edge_type>1</edge_type>
<source_obj>114</source_obj>
<sink_obj>124</sink_obj>
</item>
<item class_id_reference="20" object_id="_286">
<id>312</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>124</sink_obj>
</item>
<item class_id_reference="20" object_id="_287">
<id>313</id>
<edge_type>1</edge_type>
<source_obj>122</source_obj>
<sink_obj>125</sink_obj>
</item>
<item class_id_reference="20" object_id="_288">
<id>314</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>125</sink_obj>
</item>
<item class_id_reference="20" object_id="_289">
<id>315</id>
<edge_type>1</edge_type>
<source_obj>114</source_obj>
<sink_obj>125</sink_obj>
</item>
<item class_id_reference="20" object_id="_290">
<id>316</id>
<edge_type>1</edge_type>
<source_obj>123</source_obj>
<sink_obj>129</sink_obj>
</item>
<item class_id_reference="20" object_id="_291">
<id>317</id>
<edge_type>1</edge_type>
<source_obj>125</source_obj>
<sink_obj>130</sink_obj>
</item>
<item class_id_reference="20" object_id="_292">
<id>319</id>
<edge_type>1</edge_type>
<source_obj>123</source_obj>
<sink_obj>131</sink_obj>
</item>
<item class_id_reference="20" object_id="_293">
<id>320</id>
<edge_type>1</edge_type>
<source_obj>229</source_obj>
<sink_obj>131</sink_obj>
</item>
<item class_id_reference="20" object_id="_294">
<id>321</id>
<edge_type>1</edge_type>
<source_obj>131</source_obj>
<sink_obj>132</sink_obj>
</item>
<item class_id_reference="20" object_id="_295">
<id>322</id>
<edge_type>1</edge_type>
<source_obj>130</source_obj>
<sink_obj>133</sink_obj>
</item>
<item class_id_reference="20" object_id="_296">
<id>323</id>
<edge_type>1</edge_type>
<source_obj>132</source_obj>
<sink_obj>133</sink_obj>
</item>
<item class_id_reference="20" object_id="_297">
<id>324</id>
<edge_type>1</edge_type>
<source_obj>133</source_obj>
<sink_obj>134</sink_obj>
</item>
<item class_id_reference="20" object_id="_298">
<id>325</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>135</sink_obj>
</item>
<item class_id_reference="20" object_id="_299">
<id>326</id>
<edge_type>1</edge_type>
<source_obj>236</source_obj>
<sink_obj>135</sink_obj>
</item>
<item class_id_reference="20" object_id="_300">
<id>327</id>
<edge_type>1</edge_type>
<source_obj>134</source_obj>
<sink_obj>135</sink_obj>
</item>
<item class_id_reference="20" object_id="_301">
<id>328</id>
<edge_type>1</edge_type>
<source_obj>135</source_obj>
<sink_obj>136</sink_obj>
</item>
<item class_id_reference="20" object_id="_302">
<id>330</id>
<edge_type>1</edge_type>
<source_obj>125</source_obj>
<sink_obj>137</sink_obj>
</item>
<item class_id_reference="20" object_id="_303">
<id>331</id>
<edge_type>1</edge_type>
<source_obj>229</source_obj>
<sink_obj>137</sink_obj>
</item>
<item class_id_reference="20" object_id="_304">
<id>332</id>
<edge_type>1</edge_type>
<source_obj>137</source_obj>
<sink_obj>138</sink_obj>
</item>
<item class_id_reference="20" object_id="_305">
<id>333</id>
<edge_type>1</edge_type>
<source_obj>129</source_obj>
<sink_obj>139</sink_obj>
</item>
<item class_id_reference="20" object_id="_306">
<id>334</id>
<edge_type>1</edge_type>
<source_obj>138</source_obj>
<sink_obj>139</sink_obj>
</item>
<item class_id_reference="20" object_id="_307">
<id>335</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>140</sink_obj>
</item>
<item class_id_reference="20" object_id="_308">
<id>336</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_309">
<id>337</id>
<edge_type>1</edge_type>
<source_obj>236</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_310">
<id>338</id>
<edge_type>1</edge_type>
<source_obj>140</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_311">
<id>339</id>
<edge_type>1</edge_type>
<source_obj>136</source_obj>
<sink_obj>142</sink_obj>
</item>
<item class_id_reference="20" object_id="_312">
<id>340</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>142</sink_obj>
</item>
<item class_id_reference="20" object_id="_313">
<id>341</id>
<edge_type>1</edge_type>
<source_obj>123</source_obj>
<sink_obj>144</sink_obj>
</item>
<item class_id_reference="20" object_id="_314">
<id>342</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>144</sink_obj>
</item>
<item class_id_reference="20" object_id="_315">
<id>343</id>
<edge_type>2</edge_type>
<source_obj>119</source_obj>
<sink_obj>145</sink_obj>
</item>
<item class_id_reference="20" object_id="_316">
<id>344</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>91</sink_obj>
</item>
<item class_id_reference="20" object_id="_317">
<id>345</id>
<edge_type>1</edge_type>
<source_obj>236</source_obj>
<sink_obj>91</sink_obj>
</item>
<item class_id_reference="20" object_id="_318">
<id>346</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>91</sink_obj>
</item>
<item class_id_reference="20" object_id="_319">
<id>347</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>92</sink_obj>
</item>
<item class_id_reference="20" object_id="_320">
<id>348</id>
<edge_type>1</edge_type>
<source_obj>91</source_obj>
<sink_obj>92</sink_obj>
</item>
<item class_id_reference="20" object_id="_321">
<id>349</id>
<edge_type>2</edge_type>
<source_obj>102</source_obj>
<sink_obj>93</sink_obj>
</item>
<item class_id_reference="20" object_id="_322">
<id>350</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>87</sink_obj>
</item>
<item class_id_reference="20" object_id="_323">
<id>351</id>
<edge_type>1</edge_type>
<source_obj>236</source_obj>
<sink_obj>87</sink_obj>
</item>
<item class_id_reference="20" object_id="_324">
<id>352</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>87</sink_obj>
</item>
<item class_id_reference="20" object_id="_325">
<id>353</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>88</sink_obj>
</item>
<item class_id_reference="20" object_id="_326">
<id>354</id>
<edge_type>1</edge_type>
<source_obj>87</source_obj>
<sink_obj>88</sink_obj>
</item>
<item class_id_reference="20" object_id="_327">
<id>355</id>
<edge_type>2</edge_type>
<source_obj>102</source_obj>
<sink_obj>89</sink_obj>
</item>
<item class_id_reference="20" object_id="_328">
<id>356</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>83</sink_obj>
</item>
<item class_id_reference="20" object_id="_329">
<id>357</id>
<edge_type>1</edge_type>
<source_obj>236</source_obj>
<sink_obj>83</sink_obj>
</item>
<item class_id_reference="20" object_id="_330">
<id>358</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>83</sink_obj>
</item>
<item class_id_reference="20" object_id="_331">
<id>359</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>84</sink_obj>
</item>
<item class_id_reference="20" object_id="_332">
<id>360</id>
<edge_type>1</edge_type>
<source_obj>83</source_obj>
<sink_obj>84</sink_obj>
</item>
<item class_id_reference="20" object_id="_333">
<id>361</id>
<edge_type>2</edge_type>
<source_obj>102</source_obj>
<sink_obj>85</sink_obj>
</item>
<item class_id_reference="20" object_id="_334">
<id>362</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>79</sink_obj>
</item>
<item class_id_reference="20" object_id="_335">
<id>363</id>
<edge_type>1</edge_type>
<source_obj>236</source_obj>
<sink_obj>79</sink_obj>
</item>
<item class_id_reference="20" object_id="_336">
<id>364</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>79</sink_obj>
</item>
<item class_id_reference="20" object_id="_337">
<id>365</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>80</sink_obj>
</item>
<item class_id_reference="20" object_id="_338">
<id>366</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>80</sink_obj>
</item>
<item class_id_reference="20" object_id="_339">
<id>367</id>
<edge_type>2</edge_type>
<source_obj>102</source_obj>
<sink_obj>81</sink_obj>
</item>
<item class_id_reference="20" object_id="_340">
<id>368</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>75</sink_obj>
</item>
<item class_id_reference="20" object_id="_341">
<id>369</id>
<edge_type>1</edge_type>
<source_obj>236</source_obj>
<sink_obj>75</sink_obj>
</item>
<item class_id_reference="20" object_id="_342">
<id>370</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>75</sink_obj>
</item>
<item class_id_reference="20" object_id="_343">
<id>371</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>76</sink_obj>
</item>
<item class_id_reference="20" object_id="_344">
<id>372</id>
<edge_type>1</edge_type>
<source_obj>75</source_obj>
<sink_obj>76</sink_obj>
</item>
<item class_id_reference="20" object_id="_345">
<id>373</id>
<edge_type>2</edge_type>
<source_obj>102</source_obj>
<sink_obj>77</sink_obj>
</item>
<item class_id_reference="20" object_id="_346">
<id>374</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>71</sink_obj>
</item>
<item class_id_reference="20" object_id="_347">
<id>375</id>
<edge_type>1</edge_type>
<source_obj>236</source_obj>
<sink_obj>71</sink_obj>
</item>
<item class_id_reference="20" object_id="_348">
<id>376</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>71</sink_obj>
</item>
<item class_id_reference="20" object_id="_349">
<id>377</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>72</sink_obj>
</item>
<item class_id_reference="20" object_id="_350">
<id>378</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>72</sink_obj>
</item>
<item class_id_reference="20" object_id="_351">
<id>379</id>
<edge_type>2</edge_type>
<source_obj>102</source_obj>
<sink_obj>73</sink_obj>
</item>
<item class_id_reference="20" object_id="_352">
<id>380</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>67</sink_obj>
</item>
<item class_id_reference="20" object_id="_353">
<id>381</id>
<edge_type>1</edge_type>
<source_obj>236</source_obj>
<sink_obj>67</sink_obj>
</item>
<item class_id_reference="20" object_id="_354">
<id>382</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>67</sink_obj>
</item>
<item class_id_reference="20" object_id="_355">
<id>383</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>68</sink_obj>
</item>
<item class_id_reference="20" object_id="_356">
<id>384</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>68</sink_obj>
</item>
<item class_id_reference="20" object_id="_357">
<id>385</id>
<edge_type>2</edge_type>
<source_obj>102</source_obj>
<sink_obj>69</sink_obj>
</item>
<item class_id_reference="20" object_id="_358">
<id>386</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>95</sink_obj>
</item>
<item class_id_reference="20" object_id="_359">
<id>387</id>
<edge_type>1</edge_type>
<source_obj>236</source_obj>
<sink_obj>95</sink_obj>
</item>
<item class_id_reference="20" object_id="_360">
<id>388</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>95</sink_obj>
</item>
<item class_id_reference="20" object_id="_361">
<id>389</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>96</sink_obj>
</item>
<item class_id_reference="20" object_id="_362">
<id>390</id>
<edge_type>1</edge_type>
<source_obj>95</source_obj>
<sink_obj>96</sink_obj>
</item>
<item class_id_reference="20" object_id="_363">
<id>391</id>
<edge_type>2</edge_type>
<source_obj>102</source_obj>
<sink_obj>97</sink_obj>
</item>
<item class_id_reference="20" object_id="_364">
<id>392</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_365">
<id>393</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_366">
<id>394</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_367">
<id>395</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_368">
<id>396</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_369">
<id>397</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_370">
<id>398</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_371">
<id>399</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_372">
<id>400</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_373">
<id>401</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_374">
<id>402</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_375">
<id>403</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_376">
<id>404</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_377">
<id>405</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_378">
<id>406</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_379">
<id>407</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_380">
<id>474</id>
<edge_type>2</edge_type>
<source_obj>29</source_obj>
<sink_obj>35</sink_obj>
</item>
<item class_id_reference="20" object_id="_381">
<id>475</id>
<edge_type>2</edge_type>
<source_obj>35</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_382">
<id>476</id>
<edge_type>2</edge_type>
<source_obj>35</source_obj>
<sink_obj>39</sink_obj>
</item>
<item class_id_reference="20" object_id="_383">
<id>477</id>
<edge_type>2</edge_type>
<source_obj>39</source_obj>
<sink_obj>35</sink_obj>
</item>
<item class_id_reference="20" object_id="_384">
<id>478</id>
<edge_type>2</edge_type>
<source_obj>46</source_obj>
<sink_obj>108</sink_obj>
</item>
<item class_id_reference="20" object_id="_385">
<id>479</id>
<edge_type>2</edge_type>
<source_obj>46</source_obj>
<sink_obj>66</sink_obj>
</item>
<item class_id_reference="20" object_id="_386">
<id>480</id>
<edge_type>2</edge_type>
<source_obj>66</source_obj>
<sink_obj>98</sink_obj>
</item>
<item class_id_reference="20" object_id="_387">
<id>481</id>
<edge_type>2</edge_type>
<source_obj>66</source_obj>
<sink_obj>94</sink_obj>
</item>
<item class_id_reference="20" object_id="_388">
<id>482</id>
<edge_type>2</edge_type>
<source_obj>66</source_obj>
<sink_obj>90</sink_obj>
</item>
<item class_id_reference="20" object_id="_389">
<id>483</id>
<edge_type>2</edge_type>
<source_obj>66</source_obj>
<sink_obj>86</sink_obj>
</item>
<item class_id_reference="20" object_id="_390">
<id>484</id>
<edge_type>2</edge_type>
<source_obj>66</source_obj>
<sink_obj>82</sink_obj>
</item>
<item class_id_reference="20" object_id="_391">
<id>485</id>
<edge_type>2</edge_type>
<source_obj>66</source_obj>
<sink_obj>78</sink_obj>
</item>
<item class_id_reference="20" object_id="_392">
<id>486</id>
<edge_type>2</edge_type>
<source_obj>66</source_obj>
<sink_obj>74</sink_obj>
</item>
<item class_id_reference="20" object_id="_393">
<id>487</id>
<edge_type>2</edge_type>
<source_obj>66</source_obj>
<sink_obj>70</sink_obj>
</item>
<item class_id_reference="20" object_id="_394">
<id>488</id>
<edge_type>2</edge_type>
<source_obj>70</source_obj>
<sink_obj>102</sink_obj>
</item>
<item class_id_reference="20" object_id="_395">
<id>489</id>
<edge_type>2</edge_type>
<source_obj>74</source_obj>
<sink_obj>102</sink_obj>
</item>
<item class_id_reference="20" object_id="_396">
<id>490</id>
<edge_type>2</edge_type>
<source_obj>78</source_obj>
<sink_obj>102</sink_obj>
</item>
<item class_id_reference="20" object_id="_397">
<id>491</id>
<edge_type>2</edge_type>
<source_obj>82</source_obj>
<sink_obj>102</sink_obj>
</item>
<item class_id_reference="20" object_id="_398">
<id>492</id>
<edge_type>2</edge_type>
<source_obj>86</source_obj>
<sink_obj>102</sink_obj>
</item>
<item class_id_reference="20" object_id="_399">
<id>493</id>
<edge_type>2</edge_type>
<source_obj>90</source_obj>
<sink_obj>102</sink_obj>
</item>
<item class_id_reference="20" object_id="_400">
<id>494</id>
<edge_type>2</edge_type>
<source_obj>94</source_obj>
<sink_obj>102</sink_obj>
</item>
<item class_id_reference="20" object_id="_401">
<id>495</id>
<edge_type>2</edge_type>
<source_obj>98</source_obj>
<sink_obj>102</sink_obj>
</item>
<item class_id_reference="20" object_id="_402">
<id>496</id>
<edge_type>2</edge_type>
<source_obj>102</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_403">
<id>497</id>
<edge_type>2</edge_type>
<source_obj>108</source_obj>
<sink_obj>119</sink_obj>
</item>
<item class_id_reference="20" object_id="_404">
<id>498</id>
<edge_type>2</edge_type>
<source_obj>108</source_obj>
<sink_obj>112</sink_obj>
</item>
<item class_id_reference="20" object_id="_405">
<id>499</id>
<edge_type>2</edge_type>
<source_obj>112</source_obj>
<sink_obj>108</sink_obj>
</item>
<item class_id_reference="20" object_id="_406">
<id>500</id>
<edge_type>2</edge_type>
<source_obj>119</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_407">
<id>501</id>
<edge_type>2</edge_type>
<source_obj>119</source_obj>
<sink_obj>146</sink_obj>
</item>
<item class_id_reference="20" object_id="_408">
<id>502</id>
<edge_type>2</edge_type>
<source_obj>146</source_obj>
<sink_obj>119</sink_obj>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_409">
<mId>1</mId>
<mTag>dct_dct_2d</mTag>
<mType>0</mType>
<sub_regions>
<count>6</count>
<item_version>0</item_version>
<item>2</item>
<item>3</item>
<item>4</item>
<item>5</item>
<item>6</item>
<item>7</item>
</sub_regions>
<basic_blocks>
<count>0</count>
<item_version>0</item_version>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>373</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_410">
<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>29</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_411">
<mId>3</mId>
<mTag>Row_DCT_Loop</mTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>35</item>
<item>39</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>8</mMinTripCount>
<mMaxTripCount>8</mMaxTripCount>
<mMinLatency>120</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_412">
<mId>4</mId>
<mTag>Xpose_Row_Outer_Loop_Xpose_Row_Inner_Loop</mTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>11</count>
<item_version>0</item_version>
<item>46</item>
<item>66</item>
<item>70</item>
<item>74</item>
<item>78</item>
<item>82</item>
<item>86</item>
<item>90</item>
<item>94</item>
<item>98</item>
<item>102</item>
</basic_blocks>
<mII>1</mII>
<mDepth>2</mDepth>
<mMinTripCount>64</mMinTripCount>
<mMaxTripCount>64</mMaxTripCount>
<mMinLatency>64</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_413">
<mId>5</mId>
<mTag>Col_DCT_Loop</mTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>108</item>
<item>112</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>8</mMinTripCount>
<mMaxTripCount>8</mMaxTripCount>
<mMinLatency>120</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_414">
<mId>6</mId>
<mTag>Xpose_Col_Outer_Loop_Xpose_Col_Inner_Loop</mTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>119</item>
<item>146</item>
</basic_blocks>
<mII>1</mII>
<mDepth>2</mDepth>
<mMinTripCount>64</mMinTripCount>
<mMaxTripCount>64</mMaxTripCount>
<mMinLatency>64</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_415">
<mId>7</mId>
<mTag>Return</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>148</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
</cdfg_regions>
<fsm class_id="-1"></fsm>
<res class_id="25" tracking_level="1" version="0" object_id="_416">
<dp_component_resource class_id="26" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_component_resource>
<dp_expression_resource>
<count>0</count>
<item_version>0</item_version>
</dp_expression_resource>
<dp_fifo_resource>
<count>0</count>
<item_version>0</item_version>
</dp_fifo_resource>
<dp_memory_resource>
<count>0</count>
<item_version>0</item_version>
</dp_memory_resource>
<dp_multiplexer_resource>
<count>0</count>
<item_version>0</item_version>
</dp_multiplexer_resource>
<dp_register_resource>
<count>0</count>
<item_version>0</item_version>
</dp_register_resource>
<dp_component_map class_id="27" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_component_map>
<dp_expression_map>
<count>0</count>
<item_version>0</item_version>
</dp_expression_map>
<dp_fifo_map>
<count>0</count>
<item_version>0</item_version>
</dp_fifo_map>
<dp_memory_map>
<count>0</count>
<item_version>0</item_version>
</dp_memory_map>
</res>
<node_label_latency class_id="28" tracking_level="0" version="0">
<count>96</count>
<item_version>0</item_version>
<item class_id="29" tracking_level="0" version="0">
<first>18</first>
<second class_id="30" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>19</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>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>30</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>31</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>33</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>34</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>37</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>40</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>41</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>42</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>43</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>44</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>45</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>49</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>50</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>51</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>52</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>53</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>57</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>58</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>59</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>60</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>61</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>62</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>63</first>
<second>
<first>2</first>
<second>1</second>
</second>
</item>
<item>
<first>64</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>65</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>67</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>68</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>69</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>71</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>72</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>73</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>75</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>76</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>77</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>79</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>80</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>81</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>83</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>84</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>85</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>87</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>88</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>89</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>91</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>92</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>93</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>95</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>96</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>97</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>100</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>101</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>110</first>
<second>
<first>3</first>
<second>1</second>
</second>
</item>
<item>
<first>111</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>113</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>114</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>115</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>116</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>117</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>118</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>122</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>123</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>124</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>125</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>129</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>130</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>131</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>132</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>133</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>134</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>135</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>136</first>
<second>
<first>4</first>
<second>1</second>
</second>
</item>
<item>
<first>137</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>138</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>139</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>140</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>141</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>142</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>144</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>145</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>147</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="31" tracking_level="0" version="0">
<count>19</count>
<item_version>0</item_version>
<item class_id="32" tracking_level="0" version="0">
<first>29</first>
<second class_id="33" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>35</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>39</first>
<second>
<first>1</first>
<second>2</second>
</second>
</item>
<item>
<first>46</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>66</first>
<second>
<first>2</first>
<second>3</second>
</second>
</item>
<item>
<first>70</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>74</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>78</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>82</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>86</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>90</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>94</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>98</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>102</first>
<second>
<first>2</first>
<second>3</second>
</second>
</item>
<item>
<first>108</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>112</first>
<second>
<first>3</first>
<second>4</second>
</second>
</item>
<item>
<first>119</first>
<second>
<first>4</first>
<second>4</second>
</second>
</item>
<item>
<first>146</first>
<second>
<first>4</first>
<second>5</second>
</second>
</item>
<item>
<first>148</first>
<second>
<first>5</first>
<second>5</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="34" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="35" tracking_level="1" version="0" object_id="_417">
<region_name>Xpose_Row_Outer_Loop_Xpose_Row_Inner_Loop</region_name>
<basic_blocks>
<count>11</count>
<item_version>0</item_version>
<item>46</item>
<item>66</item>
<item>70</item>
<item>74</item>
<item>78</item>
<item>82</item>
<item>86</item>
<item>90</item>
<item>94</item>
<item>98</item>
<item>102</item>
</basic_blocks>
<nodes>
<count>0</count>
<item_version>0</item_version>
</nodes>
<anchor_node>-1</anchor_node>
<region_type>8</region_type>
<interval>1</interval>
<pipe_depth>2</pipe_depth>
</item>
<item class_id_reference="35" object_id="_418">
<region_name>Xpose_Col_Outer_Loop_Xpose_Col_Inner_Loop</region_name>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>119</item>
<item>146</item>
</basic_blocks>
<nodes>
<count>0</count>
<item_version>0</item_version>
</nodes>
<anchor_node>-1</anchor_node>
<region_type>8</region_type>
<interval>1</interval>
<pipe_depth>2</pipe_depth>
</item>
</regions>
<dp_fu_nodes class_id="36" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="37" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_expression>
<dp_fu_nodes_module>
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_module>
<dp_fu_nodes_io>
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_io>
<return_ports>
<count>0</count>
<item_version>0</item_version>
</return_ports>
<dp_mem_port_nodes class_id="38" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>0</count>
<item_version>0</item_version>
</dp_reg_nodes>
<dp_regname_nodes>
<count>0</count>
<item_version>0</item_version>
</dp_regname_nodes>
<dp_reg_phi>
<count>0</count>
<item_version>0</item_version>
</dp_reg_phi>
<dp_regname_phi>
<count>0</count>
<item_version>0</item_version>
</dp_regname_phi>
<dp_port_io_nodes class_id="39" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_port_io_nodes>
<port2core class_id="40" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
| 26.21906 | 98 | 0.589962 |
1e8d956e16e83c5f01ddf1dac4b8d485cac2fd4c | 3,643 | ads | Ada | tools-src/gnu/gcc/gcc/ada/g-casuti.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/g-casuti.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/g-casuti.ads | modern-tomato/tomato | 96f09fab4929c6ddde5c9113f1b2476ad37133c4 | [
"FSFAP"
] | 69 | 2015-01-02T10:45:56.000Z | 2021-09-06T07:52:13.000Z | ------------------------------------------------------------------------------
-- --
-- GNAT RUNTIME COMPONENTS --
-- --
-- G N A T . C A S E _ U T I L --
-- --
-- S p e c --
-- --
-- $Revision$
-- --
-- Copyright (C) 1995-1998 Ada Core Technologies, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
-- MA 02111-1307, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNAT is maintained by Ada Core Technologies Inc (http://www.gnat.com). --
-- --
------------------------------------------------------------------------------
-- Simple casing functions
-- This package provides simple casing functions that do not require the
-- overhead of the full casing tables found in Ada.Characters.Handling.
package GNAT.Case_Util is
pragma Pure (Case_Util);
-- Note: all the following functions handle the full Latin-1 set
function To_Upper (A : Character) return Character;
-- Converts A to upper case if it is a lower case letter, otherwise
-- returns the input argument unchanged.
procedure To_Upper (A : in out String);
-- Folds all characters of string A to upper csae
function To_Lower (A : Character) return Character;
-- Converts A to lower case if it is an upper case letter, otherwise
-- returns the input argument unchanged.
procedure To_Lower (A : in out String);
-- Folds all characters of string A to lower case
procedure To_Mixed (A : in out String);
-- Converts A to mixed case (i.e. lower case, except for initial
-- character and any character after an underscore, which are
-- converted to upper case.
end GNAT.Case_Util;
| 56.046154 | 78 | 0.477903 |
8b741c5c1756ee4a9c34879531ad61d01ea153e2 | 12,187 | ads | Ada | source/amf/uml/amf-internals-uml_literal_unlimited_naturals.ads | 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_literal_unlimited_naturals.ads | 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_literal_unlimited_naturals.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$
------------------------------------------------------------------------------
with AMF.Internals.UML_Value_Specifications;
with AMF.UML.Dependencies.Collections;
with AMF.UML.Literal_Unlimited_Naturals;
with AMF.UML.Named_Elements;
with AMF.UML.Namespaces;
with AMF.UML.Packages.Collections;
with AMF.UML.Parameterable_Elements;
with AMF.UML.String_Expressions;
with AMF.UML.Template_Parameters;
with AMF.UML.Types;
with AMF.Visitors;
package AMF.Internals.UML_Literal_Unlimited_Naturals is
type UML_Literal_Unlimited_Natural_Proxy is
limited new AMF.Internals.UML_Value_Specifications.UML_Value_Specification_Proxy
and AMF.UML.Literal_Unlimited_Naturals.UML_Literal_Unlimited_Natural with null record;
overriding function Get_Value
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return AMF.Unlimited_Natural;
-- Getter of LiteralUnlimitedNatural::value.
--
-- The specified UnlimitedNatural value.
overriding procedure Set_Value
(Self : not null access UML_Literal_Unlimited_Natural_Proxy;
To : AMF.Unlimited_Natural);
-- Setter of LiteralUnlimitedNatural::value.
--
-- The specified UnlimitedNatural value.
overriding function Get_Type
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return AMF.UML.Types.UML_Type_Access;
-- Getter of TypedElement::type.
--
-- The type of the TypedElement.
-- This information is derived from the return result for this Operation.
overriding procedure Set_Type
(Self : not null access UML_Literal_Unlimited_Natural_Proxy;
To : AMF.UML.Types.UML_Type_Access);
-- Setter of TypedElement::type.
--
-- The type of the TypedElement.
-- This information is derived from the return result for this Operation.
overriding function Get_Client_Dependency
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return AMF.UML.Dependencies.Collections.Set_Of_UML_Dependency;
-- Getter of NamedElement::clientDependency.
--
-- Indicates the dependencies that reference the client.
overriding function Get_Name_Expression
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return AMF.UML.String_Expressions.UML_String_Expression_Access;
-- Getter of NamedElement::nameExpression.
--
-- The string expression used to define the name of this named element.
overriding procedure Set_Name_Expression
(Self : not null access UML_Literal_Unlimited_Natural_Proxy;
To : AMF.UML.String_Expressions.UML_String_Expression_Access);
-- Setter of NamedElement::nameExpression.
--
-- The string expression used to define the name of this named element.
overriding function Get_Namespace
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return AMF.UML.Namespaces.UML_Namespace_Access;
-- Getter of NamedElement::namespace.
--
-- Specifies the namespace that owns the NamedElement.
overriding function Get_Qualified_Name
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return AMF.Optional_String;
-- Getter of NamedElement::qualifiedName.
--
-- A name which allows the NamedElement to be identified within a
-- hierarchy of nested Namespaces. It is constructed from the names of the
-- containing namespaces starting at the root of the hierarchy and ending
-- with the name of the NamedElement itself.
overriding function Get_Owning_Template_Parameter
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return AMF.UML.Template_Parameters.UML_Template_Parameter_Access;
-- Getter of ParameterableElement::owningTemplateParameter.
--
-- The formal template parameter that owns this element.
overriding procedure Set_Owning_Template_Parameter
(Self : not null access UML_Literal_Unlimited_Natural_Proxy;
To : AMF.UML.Template_Parameters.UML_Template_Parameter_Access);
-- Setter of ParameterableElement::owningTemplateParameter.
--
-- The formal template parameter that owns this element.
overriding function Get_Template_Parameter
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return AMF.UML.Template_Parameters.UML_Template_Parameter_Access;
-- Getter of ParameterableElement::templateParameter.
--
-- The template parameter that exposes this element as a formal parameter.
overriding procedure Set_Template_Parameter
(Self : not null access UML_Literal_Unlimited_Natural_Proxy;
To : AMF.UML.Template_Parameters.UML_Template_Parameter_Access);
-- Setter of ParameterableElement::templateParameter.
--
-- The template parameter that exposes this element as a formal parameter.
overriding function Is_Computable
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return Boolean;
-- Operation LiteralUnlimitedNatural::isComputable.
--
-- The query isComputable() is redefined to be true.
overriding function Unlimited_Value
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return AMF.Unlimited_Natural;
-- Operation LiteralUnlimitedNatural::unlimitedValue.
--
-- The query unlimitedValue() gives the value.
overriding function Is_Compatible_With
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy;
P : AMF.UML.Parameterable_Elements.UML_Parameterable_Element_Access)
return Boolean;
-- Operation ValueSpecification::isCompatibleWith.
--
-- The query isCompatibleWith() determines if this parameterable element
-- is compatible with the specified parameterable element. By default
-- parameterable element P is compatible with parameterable element Q if
-- the kind of P is the same or a subtype as the kind of Q. In addition,
-- for ValueSpecification, the type must be conformant with the type of
-- the specified parameterable element.
overriding function Unlimited_Value
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return AMF.Optional_Unlimited_Natural;
-- Operation ValueSpecification::unlimitedValue.
--
-- The query unlimitedValue() gives a single UnlimitedNatural value when
-- one can be computed.
overriding function All_Owning_Packages
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return AMF.UML.Packages.Collections.Set_Of_UML_Package;
-- Operation NamedElement::allOwningPackages.
--
-- The query allOwningPackages() returns all the directly or indirectly
-- owning packages.
overriding function Is_Distinguishable_From
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy;
N : AMF.UML.Named_Elements.UML_Named_Element_Access;
Ns : AMF.UML.Namespaces.UML_Namespace_Access)
return Boolean;
-- Operation NamedElement::isDistinguishableFrom.
--
-- The query isDistinguishableFrom() determines whether two NamedElements
-- may logically co-exist within a Namespace. By default, two named
-- elements are distinguishable if (a) they have unrelated types or (b)
-- they have related types but different names.
overriding function Namespace
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return AMF.UML.Namespaces.UML_Namespace_Access;
-- Operation NamedElement::namespace.
--
-- Missing derivation for NamedElement::/namespace : Namespace
overriding function Is_Template_Parameter
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return Boolean;
-- Operation ParameterableElement::isTemplateParameter.
--
-- The query isTemplateParameter() determines if this parameterable
-- element is exposed as a formal template parameter.
overriding procedure Enter_Element
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control);
-- Dispatch call to corresponding subprogram of visitor interface.
overriding procedure Leave_Element
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control);
-- Dispatch call to corresponding subprogram of visitor interface.
overriding procedure Visit_Element
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy;
Iterator : in out AMF.Visitors.Abstract_Iterator'Class;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control);
-- Dispatch call to corresponding subprogram of iterator interface.
end AMF.Internals.UML_Literal_Unlimited_Naturals;
| 49.141129 | 93 | 0.661443 |
8b133a5b9af2b01a08fb53422da55b5fb3ad023e | 1,811 | ads | Ada | test/mat/vulkan-math-mat4x2-test.ads | zrmyers/VulkanAda | ed8c46d923bc8936db3a5d55d36afebb928a9ede | [
"MIT"
] | 1 | 2021-01-29T21:10:45.000Z | 2021-01-29T21:10:45.000Z | test/mat/vulkan-math-mat4x2-test.ads | zrmyers/VulkanAda | ed8c46d923bc8936db3a5d55d36afebb928a9ede | [
"MIT"
] | 8 | 2020-04-22T14:55:20.000Z | 2021-11-22T03:58:08.000Z | test/mat/vulkan-math-mat4x2-test.ads | zrmyers/VulkanAda | ed8c46d923bc8936db3a5d55d36afebb928a9ede | [
"MIT"
] | 1 | 2021-04-05T13:19:21.000Z | 2021-04-05T13:19:21.000Z | --------------------------------------------------------------------------------
-- MIT License
--
-- Copyright (c) 2021 Zane Myers
--
-- Permission is hereby granted, free of charge, to any person obtaining a copy
-- of this software and associated documentation files (the "Software"), to deal
-- in the Software without restriction, including without limitation the rights
-- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-- copies of the Software, and to permit persons to whom the Software is
-- furnished to do so, subject to the following conditions:
--
-- The above copyright notice and this permission notice shall be included in all
-- copies or substantial portions of the Software.
--
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-- SOFTWARE.
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--< @group Vulkan Math Basic Types
--------------------------------------------------------------------------------
--< @summary
--< This package provides a single precision floating point matrix with 2 rows
--< and 2 columns.
--------------------------------------------------------------------------------
package Vulkan.Math.Mat4x2.Test is
-- Test Harness for Mat4x2 regression tests
procedure Test_Mat4x2;
end Vulkan.Math.Mat4x2.Test;
| 47.657895 | 81 | 0.591938 |
1ea960a81993eda03e0002b679bf8ac4edb6e8cf | 1,629 | adb | Ada | tests/cl_test-platform.adb | flyx/OpenCLAda | a03a82842b11edda44c8a85f737f5111d1a522a4 | [
"0BSD"
] | 8 | 2015-02-10T20:04:25.000Z | 2021-06-25T07:46:31.000Z | tests/cl_test-platform.adb | flyx/OpenCLAda | a03a82842b11edda44c8a85f737f5111d1a522a4 | [
"0BSD"
] | 1 | 2015-09-10T00:01:55.000Z | 2015-09-10T10:42:23.000Z | tests/cl_test-platform.adb | flyx/OpenCLAda | a03a82842b11edda44c8a85f737f5111d1a522a4 | [
"0BSD"
] | 1 | 2017-02-13T23:07:06.000Z | 2017-02-13T23:07:06.000Z | --------------------------------------------------------------------------------
-- Copyright (c) 2013, Felix Krause <[email protected]>
--
-- Permission to use, copy, modify, and/or distribute this software for any
-- purpose with or without fee is hereby granted, provided that the above
-- copyright notice and this permission notice appear in all copies.
--
-- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
--------------------------------------------------------------------------------
with CL.Platforms;
with Ada.Text_IO;
procedure CL_Test.Platform is
package IO renames Ada.Text_IO;
P_List : constant CL.Platforms.Platform_List := CL.Platforms.List;
begin
for Index in P_List'Range loop
IO.Put_Line("Platform" & Index'Img);
IO.Put_Line ("Profile: """ & P_List (Index).Profile & """");
IO.Put_Line ("Version: """ & P_List (Index).Version & """");
IO.Put_Line ("Name: """ & P_List (Index).Name & """");
IO.Put_Line ("Vendor: """ & P_List (Index).Vendor & """");
IO.Put_Line ("Extensions: """ & P_List (Index).Extensions & """");
IO.Put_Line("");
end loop;
end CL_Test.Platform;
| 47.911765 | 80 | 0.616943 |
3838791a45c2e15ea5e2d6f00b35ad5ecdbdfdd6 | 3,586 | adb | Ada | sources/glew/opengl-contexts-internals.adb | godunko/adagl | 5b62d3bac6aa4e11084b4b19171dadbf805e95d6 | [
"BSD-3-Clause"
] | 6 | 2018-01-18T16:57:21.000Z | 2020-01-19T07:40:12.000Z | sources/glew/opengl-contexts-internals.adb | godunko/adagl | 5b62d3bac6aa4e11084b4b19171dadbf805e95d6 | [
"BSD-3-Clause"
] | null | null | null | sources/glew/opengl-contexts-internals.adb | godunko/adagl | 5b62d3bac6aa4e11084b4b19171dadbf805e95d6 | [
"BSD-3-Clause"
] | 1 | 2018-01-20T16:12:26.000Z | 2018-01-20T16:12:26.000Z | ------------------------------------------------------------------------------
-- --
-- Ada binding for OpenGL/WebGL --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2018, 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. --
-- --
------------------------------------------------------------------------------
package body OpenGL.Contexts.Internals is
function Current_GLFW_Context
return GLFW.GLFWwindow_Access is
begin
if OpenGL.Contexts.Current_Context /= null then
return GLFW_Context (OpenGL.Contexts.Current_Context.all);
else
return null;
end if;
end Current_GLFW_Context;
function GLFW_Context
(Self : OpenGL_Context'Class) return GLFW.GLFWwindow_Access is
begin
return Self.Window;
end GLFW_Context;
end OpenGL.Contexts.Internals;
| 58.786885 | 78 | 0.455661 |
1c2770425790726488514fd78d0c672c21e80dcd | 3,507 | ada | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c3/c38005b.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/c38005b.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c3/c38005b.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | -- C38005B.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 ANY OBJECT WITH A FORMAL PRIVATE TYPE, WHOSE ACTUAL
-- TYPE IN AN INSTANTIATION IS AN ACCESS TYPE, IS INITIALIZED BY
-- DEFAULT TO THE VALUE NULL. THIS INCLUDES OBJECTS WHICH ARE ARRAY
-- AND RECORD COMPONENTS.
-- HISTORY:
-- DHH 07/12/88 CREATED ORIGINAL TEST.
WITH REPORT; USE REPORT;
PROCEDURE C38005B IS
BEGIN
TEST("C38005B", "CHECK THAT ANY OBJECT WITH A FORMAL PRIVATE " &
"TYPE, WHOSE ACTUAL TYPE IN AN INSTANTIATION " &
"IS AN ACCESS TYPE, IS INITIALIZED BY DEFAULT " &
"TO THE VALUE NULL. THIS INCLUDES OBJECTS WHICH " &
"ARE ARRAY AND RECORD COMPONENTS");
DECLARE
TYPE ARRY IS ARRAY(1 .. 10) OF BOOLEAN;
TYPE REC1 IS
RECORD
A : INTEGER;
B : ARRY;
END RECORD;
TYPE POINTER IS ACCESS REC1;
GENERIC
TYPE NEW_PTR IS PRIVATE;
PACKAGE GEN_PACK IS
TYPE PTR_ARY IS ARRAY(1 .. 5) OF NEW_PTR;
TYPE RECORD1 IS
RECORD
A : NEW_PTR;
B : PTR_ARY;
END RECORD;
OBJ : NEW_PTR;
ARY : PTR_ARY;
REC : RECORD1;
END GEN_PACK;
PACKAGE TEST_P IS NEW GEN_PACK(POINTER);
USE TEST_P;
BEGIN
IF OBJ /= NULL THEN
FAILED("OBJECT NOT INITIALIZED TO NULL");
END IF;
FOR I IN 1 .. 5 LOOP
IF ARY(I) /= NULL THEN
FAILED("ARRAY COMPONENT " &
INTEGER'IMAGE(I) &
" NOT INITIALIZED TO NULL");
END IF;
END LOOP;
IF REC.A /= NULL THEN
FAILED("RECORD OBJECT NOT INITIALIZED TO NULL");
END IF;
FOR I IN 1 .. 5 LOOP
IF REC.B(I) /= NULL THEN
FAILED("RECORD SUBCOMPONENT " &
INTEGER'IMAGE(I) &
" NOT INITIALIZED TO NULL");
END IF;
END LOOP;
END;
RESULT;
END C38005B;
| 35.424242 | 79 | 0.54434 |
1ea58ee03e4984fb4a6a9b2a2ae6a6ff5d125d8e | 177 | ads | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/tree_static_def.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/testsuite/gnat.dg/tree_static_def.ads | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/tree_static_def.ads | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | package TREE_STATIC_Def is
type Int is record
Value : Integer;
end record;
procedure check (I : Int; v : integer);
One : constant Int := (Value => 1);
end;
| 16.090909 | 42 | 0.615819 |
ad13ce49b9c7c90df025f0fa48b361a48d998264 | 9,795 | adb | Ada | src/windows/trendy_terminal-platform.adb | pyjarrett/archaic_terminal | ce1e5331a66ed9aa7ae0dc6c41ffa4851919a1f8 | [
"Apache-2.0"
] | 3 | 2021-11-03T18:27:41.000Z | 2022-03-01T18:15:34.000Z | src/windows/trendy_terminal-platform.adb | pyjarrett/archaic_terminal | ce1e5331a66ed9aa7ae0dc6c41ffa4851919a1f8 | [
"Apache-2.0"
] | 2 | 2021-09-05T13:35:39.000Z | 2021-09-11T21:27:38.000Z | src/windows/trendy_terminal-platform.adb | pyjarrett/trendy_terminal | ce1e5331a66ed9aa7ae0dc6c41ffa4851919a1f8 | [
"Apache-2.0"
] | null | null | null | -------------------------------------------------------------------------------
-- Copyright 2021, The Trendy Terminal Developers (see AUTHORS file)
-- 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.Characters.Latin_1;
with Ada.Text_IO;
with Ada.Unchecked_Conversion;
with Interfaces.C.Strings;
with Trendy_Terminal.VT100;
with Trendy_Terminal.Windows;
package body Trendy_Terminal.Platform is
package Win renames Trendy_Terminal.Windows;
use all type ASU.Unbounded_String;
use type Win.BOOL;
use type Win.HANDLE;
---------------------------------------------------------------------------
-- Original settings
---------------------------------------------------------------------------
Input_Settings, Output_Settings, Error_Settings : Win.DWORD;
Original_Input_CP, Original_Output_CP : Win.UINT;
type Input_Stream is record
Handle : Win.HANDLE := Win.INVALID_HANDLE_VALUE;
Settings : Win.Console_Input_Mode := Win.To_Console_Input_Mode (0);
end record;
type Output_Stream is record
Handle : Win.HANDLE := Win.INVALID_HANDLE_VALUE;
Settings : Win.Console_Output_Mode := Win.To_Console_Output_Mode (0);
end record;
---------------------------------------------------------------------------
-- The triad of I/O streams.
---------------------------------------------------------------------------
Std_Input : Input_Stream;
Std_Output, Std_Error : Output_Stream;
---------------------------------------------------------------------------
-- Output
---------------------------------------------------------------------------
procedure Put (H : Win.Handle; C : Character) is
S : constant String := (1 => C);
Native : aliased Interfaces.C.Strings.chars_ptr := Interfaces.C.Strings.New_String(S);
Written : aliased Win.DWORD;
begin
if Win.WriteFile (H, Win.LPCVOID(Native), S'Length, Written'Unchecked_Access, 0) = 0 then
null;
end if;
Interfaces.C.Strings.Free(Native);
end Put;
procedure Put(C : Character) is
begin
Put (Std_Output.Handle, C);
end Put;
procedure Put(S : String) is
Native : aliased Interfaces.C.Strings.chars_ptr := Interfaces.C.Strings.New_String(S);
Written : aliased Win.DWORD;
begin
if Win.WriteFile (Std_Output.Handle, Win.LPCVOID(Native), S'Length, Written'Unchecked_Access, 0) = 0 then
null;
end if;
Interfaces.C.Strings.Free(Native);
end Put;
---------------------------------------------------------------------------
-- Start and Shutdown
---------------------------------------------------------------------------
function Load_Std_Settings return Boolean is
Input_DWORD, Output_DWORD, Error_DWORD : aliased Win.DWORD;
begin
if Win.GetConsoleMode (Std_Input.Handle, Input_DWORD'Unchecked_Access) = 0 then
return False;
end if;
if Win.GetConsoleMode (Std_Output.Handle, Output_DWORD'Unchecked_Access) = 0 then
return False;
end if;
if Win.GetConsoleMode (Std_Error.Handle, Error_DWORD'Unchecked_Access) = 0 then
return False;
end if;
Std_Input.Settings := Win.To_Console_Input_Mode (Input_DWORD);
Std_Output.Settings := Win.To_Console_Output_Mode (Output_DWORD);
Std_Error.Settings := Win.To_Console_Output_Mode (Error_DWORD);
return True;
end Load_Std_Settings;
function Enable_UTF8 return Boolean is
begin
return Win.SetConsoleCP (Win.CP_UTF8) /= 0 and then Win.SetConsoleOutputCP (Win.CP_UTF8) /= 0;
end Enable_UTF8;
function Init return Boolean is
begin
Std_Output.Handle := Win.GetStdHandle (Win.STD_OUTPUT_HANDLE);
Std_Input.Handle := Win.GetStdHandle (Win.STD_INPUT_HANDLE);
Std_Error.Handle := Win.GetStdHandle (Win.STD_ERROR_HANDLE);
if Std_Output.Handle = Win.INVALID_HANDLE_VALUE or else Std_Input.Handle = Win.INVALID_HANDLE_VALUE
or else Std_Error.Handle = Win.INVALID_HANDLE_VALUE then
Ada.Text_IO.Put_Line ("Unable to get one or more of in/out/err handles.");
return False;
end if;
if not Load_Std_Settings then
return False;
end if;
-- Save the initial settings to be restored later.
Input_Settings := Win.To_DWORD (Std_Input.Settings);
Output_Settings := Win.To_DWORD (Std_Output.Settings);
Error_Settings := Win.To_DWORD (Std_Error.Settings);
Original_Input_CP := Win.GetConsoleCP;
Original_Output_CP := Win.GetConsoleOutputCP;
if not Enable_UTF8 then
Ada.Text_IO.Put_Line ("Unable to set UTF8 code page.");
return False;
end if;
return True;
end Init;
procedure Shutdown is
begin
if Win.SetConsoleMode (Std_Input.Handle, Input_Settings) = 0
or else Win.SetConsoleMode (Std_Output.Handle, Output_Settings) = 0
or else Win.SetConsoleMode (Std_Error.Handle, Error_Settings) = 0 then
Ada.Text_IO.Put_Line ("Unable to restore all terminal settings to originals.");
end if;
if Win.SetConsoleCP (Original_Input_CP) = 0 or else Win.SetConsoleOutputCP (Original_Output_CP) = 0 then
Ada.Text_IO.Put_Line ("Unable to restore original terminal code page.");
end if;
end Shutdown;
procedure Apply (Input : Input_Stream) is
begin
if Win.SetConsoleMode(Input.Handle, Win.To_DWORD(Input.Settings)) = 0 then
Ada.Text_IO.Put_Line ("Unable to change console modes: ERROR#" & Win.GetLastError'Image);
end if;
end Apply;
procedure Apply (Output : Output_Stream) is
begin
if Win.SetConsoleMode(Output.Handle, Win.To_DWORD(Output.Settings)) = 0 then
Ada.Text_IO.Put_Line ("Unable to change console modes: ERROR# " & Win.GetLastError'Image);
end if;
end Apply;
procedure Set (Setting : Input_Setting; Enabled : Boolean) is
begin
case Setting is
when Echo =>
Std_Input.Settings (Win.ENABLE_ECHO_INPUT) := Enabled;
Apply(Std_Input);
when Line_Input =>
Std_Input.Settings (Win.ENABLE_LINE_INPUT) := Enabled;
Apply(Std_Input);
when Signals_As_Input =>
Std_Input.Settings (Win.ENABLE_PROCESSED_INPUT) := not Enabled;
Apply(Std_Input);
end case;
end Set;
procedure Set (Setting : Output_Setting; Enabled : Boolean) is
begin
case Setting is
when Escape_Sequences =>
Std_Output.Settings (Win.ENABLE_VIRTUAL_TERMINAL_PROCESSING) := Enabled;
Std_Output.Settings (Win.ENABLE_WRAP_AT_EOL_OUTPUT) := True;
Std_Output.Settings (Win.DISABLE_NEWLINE_AUTO_RETURN) := False;
Std_Output.Settings (Win.ENABLE_PROCESSED_OUTPUT) := True;
Std_Error.Settings (Win.ENABLE_VIRTUAL_TERMINAL_PROCESSING) := Enabled;
Std_Error.Settings (Win.ENABLE_WRAP_AT_EOL_OUTPUT) := True;
Std_Error.Settings (Win.DISABLE_NEWLINE_AUTO_RETURN) := False;
Std_Error.Settings (Win.ENABLE_PROCESSED_OUTPUT) := True;
Std_Input.Settings (Win.ENABLE_VIRTUAL_TERMINAL_INPUT) := Enabled;
Apply(Std_Input);
Apply(Std_Output);
Apply(Std_Error);
end case;
end Set;
---------------------------------------------------------------------------
-- Inputs
---------------------------------------------------------------------------
-- Gets an entire input line from one keypress. E.g. all the characters
-- received for a controlling keypress, such as an arrow key.
function Get_Input return String is
Buffer_Size : constant := 512;
Buffer : aliased Interfaces.C.char_array := (1 .. Interfaces.C.size_t(Buffer_Size) => Interfaces.C.nul);
Chars_Read : aliased Win.DWORD;
use all type Interfaces.C.size_t;
begin
if Win.ReadConsoleA (Std_Input.Handle, Win.LPVOID(Interfaces.C.Strings.To_Chars_Ptr(Buffer'Unchecked_Access)),
Buffer_Size, Chars_Read'Unchecked_Access, 0) /= 0 then
return Interfaces.C.To_Ada(Buffer(1 .. Interfaces.C.size_t(Chars_Read) + 1));
else
return "";
end if;
end Get_Input;
function End_Of_Line return String is
begin
return Ada.Characters.Latin_1.CR & Ada.Characters.Latin_1.LF;
end End_Of_Line;
procedure Print_Configuration is
begin
Ada.Text_IO.Put_Line ("Input Mode: " & Win.To_DWORD (Std_Input.Settings)'Image);
Ada.Text_IO.Put_Line ("Output Mode: " & Win.To_DWORD (Std_Output.Settings)'Image);
Ada.Text_IO.Put_Line ("Error Mode: " & Win.To_DWORD (Std_Error.Settings)'Image);
end Print_Configuration;
end Trendy_Terminal.Platform;
| 40.143443 | 118 | 0.586524 |
8ba90dbfde405fe67060e692e249c76c89963da9 | 975 | ads | Ada | gdb/testsuite/gdb.ada/pckd_neg/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/pckd_neg/pck.ads | greyblue9/binutils-gdb | 05377632b124fe7600eea7f4ee0e9a35d1b0cbdc | [
"BSD-3-Clause"
] | null | null | null | gdb/testsuite/gdb.ada/pckd_neg/pck.ads | greyblue9/binutils-gdb | 05377632b124fe7600eea7f4ee0e9a35d1b0cbdc | [
"BSD-3-Clause"
] | null | null | null | -- Copyright (C) 2015-2021 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
package Pck is
type Signed_Small is new Integer range - (2 ** 5) .. (2 ** 5 - 1);
type Signed_Simple_Array is array (1 .. 4) of Signed_Small;
pragma Pack (Signed_Simple_Array);
procedure Update_Signed_Small (S : in out Signed_Small);
end Pck;
| 42.391304 | 73 | 0.724103 |
a04588ebc316c3acc434fc82cddc104f7ac3cfe5 | 4,896 | adb | Ada | source/amf/mof/amf-internals-amf_links.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | source/amf/mof/amf-internals-amf_links.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | source/amf/mof/amf-internals-amf_links.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, 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.Internals.Helpers;
with AMF.Internals.Tables.AMF_Link_Table;
package body AMF.Internals.AMF_Links is
------------
-- Delete --
------------
overriding procedure Delete
(Self : not null access constant AMF_Link_Proxy) is
begin
raise Program_Error;
end Delete;
---------------------
-- Get_Association --
---------------------
function Get_Association
(Self : not null access constant AMF_Link_Proxy)
return not null AMF.CMOF.Associations.CMOF_Association_Access is
begin
return
AMF.CMOF.Associations.CMOF_Association_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.AMF_Link_Table.Table
(Self.Id).Association));
end Get_Association;
-------------------
-- Get_First_End --
-------------------
function Get_First_End
(Self : not null access constant AMF_Link_Proxy)
return not null AMF.Elements.Element_Access is
begin
return
AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.AMF_Link_Table.Table
(Self.Id).Second_Element);
end Get_First_End;
--------------------
-- Get_Second_End --
--------------------
function Get_Second_End
(Self : not null access constant AMF_Link_Proxy)
return not null AMF.Elements.Element_Access is
begin
return
AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.AMF_Link_Table.Table
(Self.Id).First_Element);
end Get_Second_End;
end AMF.Internals.AMF_Links;
| 47.533981 | 78 | 0.461193 |
38ce395e269b97048df6110bbd4516c06d70ceb0 | 4,584 | adb | Ada | samples/json.adb | Letractively/ada-util | e4c63b93635dc07c46e95f12ba02d18903b307b3 | [
"Apache-2.0"
] | null | null | null | samples/json.adb | Letractively/ada-util | e4c63b93635dc07c46e95f12ba02d18903b307b3 | [
"Apache-2.0"
] | null | null | null | samples/json.adb | Letractively/ada-util | e4c63b93635dc07c46e95f12ba02d18903b307b3 | [
"Apache-2.0"
] | null | null | null | -----------------------------------------------------------------------
-- json -- JSON Reader
-- Copyright (C) 2010, 2011, 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 Ada.Strings.Unbounded;
with Ada.Text_IO;
with Ada.Command_Line;
with Util.Serialize.IO.JSON;
with Ada.Containers;
with Mapping;
with Util.Serialize.Mappers.Vector_Mapper;
with Util.Streams.Texts;
with Util.Streams.Buffered;
procedure Json is
use Util.Streams.Buffered;
use Ada.Strings.Unbounded;
use type Mapping.Person_Access;
use type Ada.Containers.Count_Type;
Reader : Util.Serialize.IO.JSON.Parser;
Count : constant Natural := Ada.Command_Line.Argument_Count;
package Person_Vector_Mapper is
new Util.Serialize.Mappers.Vector_Mapper (Vectors => Person_Vector,
Element_Mapper => Person_Mapper);
subtype Person_Vector_Context is Person_Vector_Mapper.Vector_Data;
-- Mapping for a list of Person records (stored as a Vector).
Person_Vector_Mapping : aliased Person_Vector_Mapper.Mapper;
procedure Print (P : in Mapping.Person_Vector.Cursor);
procedure Print (P : in Mapping.Person);
procedure Print (P : in Mapping.Person) is
begin
Ada.Text_IO.Put_Line ("Name : " & To_String (P.Name));
Ada.Text_IO.Put_Line ("first_name : " & To_String (P.First_Name));
Ada.Text_IO.Put_Line ("last_name : " & To_String (P.Last_Name));
Ada.Text_IO.Put_Line ("Age : " & Natural'Image (P.Age));
Ada.Text_IO.Put_Line ("Street : " & To_String (P.Addr.Street));
Ada.Text_IO.Put_Line ("City : " & To_String (P.Addr.City));
Ada.Text_IO.Put_Line ("Zip : " & Natural'Image (P.Addr.Zip));
Ada.Text_IO.Put_Line ("Country : " & To_String (P.Addr.Country));
Ada.Text_IO.Put_Line ("Info : " & To_String (P.Addr.Info.Name)
& "=" & To_String (P.Addr.Info.Value));
end Print;
procedure Print (P : in Mapping.Person_Vector.Cursor) is
begin
Print (Mapping.Person_Vector.Element (P));
end Print;
begin
if Count = 0 then
Ada.Text_IO.Put_Line ("Usage: json file...");
return;
end if;
Person_Vector_Mapping.Set_Mapping (Mapping.Get_Person_Mapper);
Reader.Add_Mapping ("/list", Mapping.Get_Person_Vector_Mapper.all'Access);
Reader.Add_Mapping ("/person", Mapping.Get_Person_Mapper.all'Access);
for I in 1 .. Count loop
declare
S : constant String := Ada.Command_Line.Argument (I);
List : aliased Mapping.Person_Vector.Vector;
P : aliased Mapping.Person;
begin
Mapping.Person_Vector_Mapper.Set_Context (Reader, List'Unchecked_Access);
Mapping.Person_Mapper.Set_Context (Reader, P'Unchecked_Access);
Reader.Parse (S);
-- The list now contains our elements.
List.Iterate (Process => Print'Access);
if List.Length = 0 then
Print (P);
end if;
declare
Output : Util.Serialize.IO.JSON.Output_Stream;
begin
Output.Initialize (Size => 10000);
Mapping.Get_Person_Mapper.Write (Output, P);
Ada.Text_IO.Put_Line ("Person: "
& Util.Streams.Texts.To_String (Buffered_Stream (Output)));
end;
declare
Output : Util.Serialize.IO.JSON.Output_Stream;
begin
Output.Initialize (Size => 10000);
Output.Write ("{""list"":");
Mapping.Get_Person_Vector_Mapper.Write (Output, List);
Output.Write ("}");
Ada.Text_IO.Put_Line ("IO:");
Ada.Text_IO.Put_Line (Util.Streams.Texts.To_String (Buffered_Stream (Output)));
end;
end;
end loop;
end Json;
| 38.847458 | 94 | 0.608202 |
8b37548acd2dc6c344a42143abe61cc18be0626f | 1,830 | ads | Ada | resources/scripts/cert/googlect.ads | VK9D/AttackSurfaceMappingTool | 2d98de364508e8a10c09fbeebfa576e4671957d4 | [
"Apache-2.0"
] | 1 | 2021-02-15T11:03:27.000Z | 2021-02-15T11:03:27.000Z | resources/scripts/cert/googlect.ads | VK9D/AttackSurfaceMappingTool | 2d98de364508e8a10c09fbeebfa576e4671957d4 | [
"Apache-2.0"
] | null | null | null | resources/scripts/cert/googlect.ads | VK9D/AttackSurfaceMappingTool | 2d98de364508e8a10c09fbeebfa576e4671957d4 | [
"Apache-2.0"
] | 1 | 2021-02-19T16:41:50.000Z | 2021-02-19T16:41:50.000Z | -- Copyright 2017 Jeff Foley. All rights reserved.
-- Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
local url = require("url")
name = "GoogleCT"
type = "cert"
function start()
setratelimit(1)
end
function vertical(ctx, domain)
local token = ""
local hdrs={
Connection="close",
Referer="https://transparencyreport.google.com/https/certificates",
}
while(true) do
local page, err = request(ctx, {
['url']=buildurl(domain, token),
headers=hdrs,
})
if (err ~= nil and err ~= "") then
break
end
sendnames(ctx, page)
token = gettoken(page)
if token == "" then
break
end
checkratelimit()
end
end
function buildurl(domain, token)
local base = "https://www.google.com/transparencyreport/api/v3/httpsreport/ct/certsearch"
if token ~= "" then
base = base .. "/page"
end
local params = {
['domain']=domain,
['include_expired']="true",
['include_subdomains']="true",
}
if token ~= "" then
params['p'] = token
end
return base .. "?" .. url.build_query_string(params)
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 gettoken(content)
local pattern = "\\[(null|\"[a-zA-Z0-9]+\"),\"([a-zA-Z0-9]+)\",null,([0-9]+),([0-9]+)\\]"
local match = submatch(content, pattern)
if (match ~= nil and #match == 5 and (match[4] < match[5])) then
return match[3]
end
return ""
end
| 22.048193 | 97 | 0.559563 |
034d5328fd0951e679f22066f3079b59618f30d0 | 4,279 | adb | Ada | src/sdl-cpus.adb | mosteo/sdlada | 429c594de613c5ba2f0d7c59f8708956697e14f1 | [
"Zlib"
] | 89 | 2015-01-03T01:41:23.000Z | 2022-02-23T18:21:11.000Z | src/sdl-cpus.adb | mosteo/sdlada | 429c594de613c5ba2f0d7c59f8708956697e14f1 | [
"Zlib"
] | 66 | 2015-05-01T00:54:03.000Z | 2022-01-20T04:09:59.000Z | src/sdl-cpus.adb | Jellix/sdlada | 997d2ae2da5c75e2ea99cee98372cf5b752519cf | [
"Zlib"
] | 33 | 2015-04-30T23:39:31.000Z | 2022-01-03T13:00:41.000Z | --------------------------------------------------------------------------------------------------------------------
-- Copyright (c) 2013-2020, Luke A. Guest
--
-- This software is provided 'as-is', without any express or implied
-- warranty. In no event will the authors be held liable for any damages
-- arising from the use of this software.
--
-- Permission is granted to anyone to use this software for any purpose,
-- including commercial applications, and to alter it and redistribute it
-- freely, subject to the following restrictions:
--
-- 1. The origin of this software must not be misrepresented; you must not
-- claim that you wrote the original software. If you use this software
-- in a product, an acknowledgment in the product documentation would be
-- appreciated but is not required.
--
-- 2. Altered source versions must be plainly marked as such, and must not be
-- misrepresented as being the original software.
--
-- 3. This notice may not be removed or altered from any source
-- distribution.
--------------------------------------------------------------------------------------------------------------------
with Interfaces.C;
package body SDL.CPUS is
package C renames Interfaces.C;
function Count return Positive is
function SDL_Get_CPU_Count return C.int with
Import => True,
Convention => C,
External_Name => "SDL_GetCPUCount";
begin
return Positive (SDL_Get_CPU_Count);
end Count;
function Cache_Line_Size return Positive is
function SDL_Cache_Line_Size return C.int with
Import => True,
Convention => C,
External_Name => "SDL_GetCPUCacheLineSize";
begin
return Positive (SDL_Cache_Line_Size);
end Cache_Line_Size;
function Has_3DNow return Boolean is
function SDL_Has_3DNow return C.int with
Import => True,
Convention => C,
External_Name => "SDL_Has3DNow";
begin
return (if SDL_Has_3DNow = 1 then True else False);
end Has_3DNow;
function Has_AltiVec return Boolean is
function SDL_Has_AltiVec return C.int with
Import => True,
Convention => C,
External_Name => "SDL_HasAltiVec";
begin
return (if SDL_Has_AltiVec = 1 then True else False);
end Has_AltiVec;
function Has_MMX return Boolean is
function SDL_Has_MMX return C.int with
Import => True,
Convention => C,
External_Name => "SDL_HasMMX";
begin
return (if SDL_Has_MMX = 1 then True else False);
end Has_MMX;
function Has_RDTSC return Boolean is
function SDL_Has_RDTSC return C.int with
Import => True,
Convention => C,
External_Name => "SDL_HasRDTSC";
begin
return (if SDL_Has_RDTSC = 1 then True else False);
end Has_RDTSC;
function Has_SSE return Boolean is
function SDL_Has_SSE return C.int with
Import => True,
Convention => C,
External_Name => "SDL_HasSSE";
begin
return (if SDL_Has_SSE = 1 then True else False);
end Has_SSE;
function Has_SSE_2 return Boolean is
function SDL_Has_SSE_2 return C.int with
Import => True,
Convention => C,
External_Name => "SDL_HasSSE2";
begin
return (if SDL_Has_SSE_2 = 1 then True else False);
end Has_SSE_2;
function Has_SSE_3 return Boolean is
function SDL_Has_SSE_3 return C.int with
Import => True,
Convention => C,
External_Name => "SDL_HasSSE3";
begin
return (if SDL_Has_SSE_3 = 1 then True else False);
end Has_SSE_3;
function Has_SSE_4_1 return Boolean is
function SDL_Has_SSE_4_1 return C.int with
Import => True,
Convention => C,
External_Name => "SDL_HasSSE41";
begin
return (if SDL_Has_SSE_4_1 = 1 then True else False);
end Has_SSE_4_1;
function Has_SSE_4_2 return Boolean is
function SDL_Has_SSE_4_2 return C.int with
Import => True,
Convention => C,
External_Name => "SDL_HasSSE42";
begin
return (if SDL_Has_SSE_4_2 = 1 then True else False);
end Has_SSE_4_2;
end SDL.CPUS;
| 33.692913 | 116 | 0.61463 |
1a5bfb3ff3e3b5a42e9c50cf2b10e8cd588a75a3 | 10,136 | adb | Ada | src/covidsimform.adb | ohenley/COVID-19_Simulator | 97bf99cb1aed95b882c65bb01107388f268b0c92 | [
"MIT"
] | 6 | 2020-10-03T06:47:29.000Z | 2021-06-12T20:51:22.000Z | src/covidsimform.adb | ohenley/covidsim | 97bf99cb1aed95b882c65bb01107388f268b0c92 | [
"MIT"
] | 12 | 2020-10-03T17:55:50.000Z | 2020-10-29T20:26:15.000Z | src/covidsimform.adb | ohenley/covidsim | 97bf99cb1aed95b882c65bb01107388f268b0c92 | [
"MIT"
] | 1 | 2020-10-03T14:17:49.000Z | 2020-10-03T14:17:49.000Z | with Ada.Characters.Handling; use Ada.Characters.Handling;
with Ada.Text_IO; use Ada.Text_IO;
with Ada.Exceptions; use Ada.Exceptions;
with Qt.QObject; use Qt.QObject;
with Qt.QUiLoader; use Qt.QUiLoader;
with Qt.QSpinBox; use Qt.QSpinBox;
with Qt.QWidget; use Qt.QWidget;
with Qt.QString; use Qt.QString;
with Qt.QLabel; use Qt.QLabel;
with Qt.QComboBox; use Qt.QComboBox;
with Qt.QStringList; use Qt.QStringList;
with Qt.QLineSeries; use Qt.QLineSeries;
with Qt.QXYSeries; use Qt.QXYSeries;
with Qt.QGraphicsView; use Qt.QGraphicsView;
with Qt.QChart; use Qt.QChart;
with Qt.QLegend; use Qt.QLegend;
with Qt.QChartView; use Qt.QChartView;
with Qt.QPainter; use Qt.QPainter;
with Qt.QLayout; use Qt.QLayout;
with Qt.QSize; use Qt.QSize;
with Qt.QGroupBox; use Qt.QGroupBox;
with Qt.QAbstractSeries; use Qt.QAbstractSeries;
with Qt.QValueAxis; use Qt.QValueAxis;
with Qt.QAbstractAxis; use Qt.QAbstractAxis;
with Qt.QObjectList; use Qt.QObjectList;
with Qt.QButton; use Qt.QButton;
with Qt.QStackedLayout; use Qt.QStackedLayout;
with Qt.QStackedWidget; use Qt.QStackedWidget;
with Qt.QDateTime; use Qt.QDateTime;
with Qt.QCheckBox; use Qt.QCheckBox;
with platform; use platform;
with covid_19; use covid_19;
with xph_model; use xph_model;
package body CovidSimForm is
simulation_engine_choice : QComboBoxH;
simulation_engines : QStringListH := QStringList_create;
--stack : QStackedLayoutH;
--stack_widget: QStackedWidgetH;
scenario_choice : QComboBoxH;
scenarios : QStringListH := QStringList_create;
graphic_view : QGraphicsViewH;
chart : QChartH;
number_iterations : QSpinBoxH;
number_population : QSpinBoxH;
export_button : QAbstractButtonH;
function enum_image_to_beautiful_image (image : String) return String is
lower_name : String := to_lower (image);
begin
for i in lower_name'Range loop
if lower_name(i) = '_' then
lower_name(i) := ' ';
end if;
end loop;
return lower_name;
end;
function beautiful_image_to_enum_image (lower_name : String) return String is
upper_name : String := to_upper(lower_name);
begin
for i in upper_name'Range loop
if upper_name(i) = ' ' then
upper_name(i) := '_';
end if;
end loop;
return upper_name;
end;
procedure init_simulation_engine_choice is
begin
simulation_engine_choice := QComboBoxH (QObject_findChild (QObjectH (covidsim_form), s2qs ("simulation_engine_choice")));
for s in simulation_engine loop
QStringList_append(handle => simulation_engines, s => s2qs(enum_image_to_beautiful_image(s'Image)));
end loop;
QComboBox_addItems (handle => simulation_engine_choice, texts => simulation_engines);
end;
procedure update_line_chart (sim_data : Simulation_Data; scenario_beautiful_name: QStringH) is
type Series is array (Status) of QSeriesH;
data_series : Series;
axes : QObjectListH;
begin
QChart_removeAllSeries (chart);
for i in sim_data'range (1) loop
data_series(i) := QLineSeries_create;
QAbstractSeries_setName(data_series(i), s2qs(enum_image_to_beautiful_image(i'Image)));
for j in sim_data'range (2) loop
QXYSeries_append (data_series (i), qreal (j), qreal (sim_data(i,j)));
end loop;
QChart_addSeries (chart, data_series(i));
end loop;
QChart_createDefaultAxes (chart);
axes := QChart_axes(chart);
QAbstractAxis_setTitletext(QAxisH(QObjectList_at(axes, 0)), s2qs("Iterations"));
QValueAxis_setLabelFormat(QAxisH(QObjectList_at(axes, 0)), s2qs("%d"));
QAbstractAxis_setTitletext(QAxisH(QObjectList_at(axes, 1)), s2qs("Population"));
QValueAxis_setLabelFormat(QAxisH(QObjectList_at(axes, 1)), s2qs("%d"));
QChart_setTitle (chart, scenario_beautiful_name);
exception
when Error: others =>
Put ("Unexpected exception: ");
Put_Line (Exception_Information(Error));
end;
procedure update_simulation is
scenario_name : String := beautiful_image_to_enum_image(qs2s(QComboBox_currentText(scenario_choice)));
results : Simulation_Data := Simulation(Scenario'Value(scenario_name), QSpinBox_value(number_population), QSpinBox_value(number_iterations));
begin
update_line_chart(results, QComboBox_currentText(scenario_choice));
end;
procedure set_simulation_engine_panel is
simulation_engine_name : String := beautiful_image_to_enum_image(qs2s(QComboBox_currentText(simulation_engine_choice)));
simulation_choice : Simulation_Engine := Simulation_Engine'Value(simulation_engine_name);
stack : QStackedWidgetH := QStackedWidgetH (QObject_findChild (QObjectH (covidsim_form), s2qs ("simulation_panels")));
begin
if simulation_choice = XPH_Pharmaceutical then
QStackedWidget_setCurrentIndex (stack, 0);
slot_change_country_choice (s2qs (""));
end if;
if simulation_choice = Lancet then
QStackedWidget_setCurrentIndex (stack, 1);
update_simulation; -- lancet model stuff TODO : move to lancet_model
end if;
end;
procedure init_chart is
legend : QLegendH;
chart_view : QGraphicsViewH;
horizontal_layout : QBoxLayoutH := QHBoxLayout_create;
begin
chart := QChart_create;
legend := QChart_legend (chart);
QLegend_setVisible (legend, true);
chart_view := QChartView_create (chart);
QGraphicsView_setRenderHint (chart_view, QPainterAntialiasing);
QBoxLayout_addWidget (horizontal_layout, QWidgetH(chart_view));
QWidget_setLayout (QwidgetH (graphic_view), horizontal_layout);
end;
procedure init_scenario_choices is
begin
scenario_choice := QComboBoxH (QObject_findChild (QObjectH (covidsim_form), s2qs ("scenario_choice")));
for s in Scenario loop
QStringList_append(handle => scenarios, s => s2qs(enum_image_to_beautiful_image(s'Image)));
end loop;
QComboBox_addItems (handle => scenario_choice, texts => scenarios);
end;
procedure set_xph_model_ui (form : QWidgetH) is
compute_xph_button : QPushButtonH := QPushButtonH (QObject_findChild (QObjectH (covidsim_form), s2qs ("compute_xph")));
country_choice : QComboBoxH := QComboBoxH (QObject_findChild (QObjectH (covidsim_form), s2qs ("country_choice")));
start_date_value : QDateEditH := QDateEditH (QObject_findChild (QObjectH (covidsim_form), s2qs ("start_date_value")));
end_date_value : QDateEditH := QDateEditH (QObject_findChild (QObjectH (covidsim_form), s2qs ("end_date_value")));
forecast_days_value : QSpinBoxH := QSpinBoxH (QObject_findChild (QObjectH (covidsim_form), s2qs ("forecast_days_value")));
refine_search : QCheckBoxH := QCheckBoxH (QObject_findChild (QObjectH (covidsim_form), s2qs ("refine_search")));
begin
QAbstractButton_signal_slot_clicked (compute_xph_button, slot_compute_xph'access);
QComboBox_signal_slot_activated2 (country_choice, slot_change_country_choice'access);
QDateEdit_signal_slot_userDateChanged (start_date_value, slot_start_date_changed'access);
QDateEdit_signal_slot_userDateChanged (end_date_value, slot_end_date_changed'access);
QSpinBox_signal_slot_valueChanged (forecast_days_value, slot_change_forecast_days'access);
QCheckBox_signal_slot_stateChanged (refine_search, slot_change_refine_search'access);
init_model (form, chart);
end;
procedure covidsim_form_init (parent : QWidgetH := null) is
begin
-- create the UI based on QTDesigner .ui file specification
covidsim_form := QUiLoader_loadFromFile (QUiLoader_create, s2qs (get_ui_specification_filepath));
-- fetch and 'cache' the widgets we want to manipulate, by name, from our .ui design
graphic_view := QGraphicsViewH (QObject_findChild (QObjectH (covidsim_form), s2qs ("graphic_view")));
number_iterations := QSpinBoxH (QObject_findChild (QObjectH (covidsim_form), s2qs ("number_iterations")));
number_population := QSpinBoxH (QObject_findChild (QObjectH (covidsim_form), s2qs ("number_population")));
export_button := QAbstractButtonH (QObject_findChild (QObjectH (covidsim_form), s2qs ("export_to_csv")));
-- populate 'complex' widgets
init_chart;
init_scenario_choices;
init_simulation_engine_choice;
set_simulation_engine_panel;
-- define and set qt 'callbacks' on widgets of interest
QComboBox_signal_slot_activated2 (simulation_engine_choice, slot_change_simulation_engine'access);
QComboBox_signal_slot_activated2 (scenario_choice, slot_change_scenario'access);
QSpinBox_signal_slot_valueChanged (number_iterations, slot_change_iterations'access);
QSpinBox_signal_slot_valueChanged (number_population, slot_change_population'access);
QAbstractButton_signal_slot_clicked (export_button, slot_export_to_csv'access);
set_xph_model_ui (covidsim_form);
-- we do a first draw of the chart
update_simulation;
exception
when Error: others =>
Put ("Unexpected exception: ");
Put_Line (Exception_Information(Error));
end;
procedure slot_change_simulation_engine (simulation_engine_beautiful_name: QStringH) is
begin
set_simulation_engine_panel;
end;
procedure slot_change_scenario (scenario_beautiful_name: QStringH) is
begin
update_simulation;
end;
procedure slot_change_iterations (iterations: Integer) is
begin
update_simulation;
end;
procedure slot_change_population (population: Integer) is
begin
update_simulation;
end;
procedure slot_export_to_csv is
scenario_name : String := beautiful_image_to_enum_image(qs2s(QComboBox_currentText(scenario_choice)));
results : Simulation_Data := Simulation(Scenario'Value(scenario_name), QSpinBox_value(number_population), QSpinBox_value(number_iterations));
begin
Export_To_CSV (results, Scenario'Value(scenario_name), QSpinBox_value(number_population), QSpinBox_value(number_iterations));
end;
end;
| 36.858182 | 147 | 0.736287 |
043f5d0309fa100fdfeaf5c242e5f7d688807e69 | 450 | ads | Ada | Sources/Graphics/graphics_framerates.ads | ForYouEyesOnly/Space-Convoy | be4904f6a02695f7c4c5c3c965f4871cd3250003 | [
"MIT"
] | 1 | 2019-09-21T09:40:34.000Z | 2019-09-21T09:40:34.000Z | Sources/Graphics/graphics_framerates.ads | ForYouEyesOnly/Space-Convoy | be4904f6a02695f7c4c5c3c965f4871cd3250003 | [
"MIT"
] | null | null | null | Sources/Graphics/graphics_framerates.ads | ForYouEyesOnly/Space-Convoy | be4904f6a02695f7c4c5c3c965f4871cd3250003 | [
"MIT"
] | 1 | 2019-09-25T12:29:27.000Z | 2019-09-25T12:29:27.000Z | --
-- Jan & Uwe R. Zimmer, Australia, July 2011
--
with Ada.Real_Time; use Ada.Real_Time;
with Real_Type; use Real_Type;
package Graphics_FrameRates is
Smoothing_Buffer_Size : constant Positive := 24;
subtype Hz is Real range 0.0 .. Real'Last;
function Measure_Interval return Time_Span;
function Average_Framerate (Interval : Time_Span) return Hz;
procedure Framerate_Limiter (Max_Framerate : Hz);
end Graphics_FrameRates;
| 21.428571 | 63 | 0.744444 |
4b12792a189de6e9266a8a9b32335756244742cb | 1,878 | ads | Ada | tests/natools-accumulators-tests.ads | faelys/natools | 947c004e6f69ca144942c6af40e102d089223cf8 | [
"0BSD"
] | null | null | null | tests/natools-accumulators-tests.ads | faelys/natools | 947c004e6f69ca144942c6af40e102d089223cf8 | [
"0BSD"
] | null | null | null | tests/natools-accumulators-tests.ads | faelys/natools | 947c004e6f69ca144942c6af40e102d089223cf8 | [
"0BSD"
] | null | null | null | ------------------------------------------------------------------------------
-- Copyright (c) 2013, 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.Accumulators.Tests is a test suite for any object implementing --
-- the accumulator interface. --
------------------------------------------------------------------------------
with Natools.Tests;
package Natools.Accumulators.Tests is
pragma Preelaborate (Tests);
procedure Test
(Report : in out Natools.Tests.Reporter'Class;
Accumulator : in out String_Accumulator'Class);
-- Run a sequence of tests on Accumulator.
-- This append a sequence of items to Report in the current section.
end Natools.Accumulators.Tests;
| 55.235294 | 78 | 0.50426 |
1ed37fb578ac69cbf82a5c6c59b5c7d9f5aabe03 | 3,449 | adb | Ada | bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/s-imaged.adb | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/s-imaged.adb | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/s-imaged.adb | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . I M A G E _ D --
-- --
-- B o d y --
-- --
-- Copyright (C) 2020-2021, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with System.Img_Util; use System.Img_Util;
package body System.Image_D is
-------------------
-- Image_Decimal --
-------------------
procedure Image_Decimal
(V : Int;
S : in out String;
P : out Natural;
Scale : Integer)
is
pragma Assert (S'First = 1);
begin
-- Add space at start for non-negative numbers
if V >= 0 then
S (1) := ' ';
P := 1;
else
P := 0;
end if;
Set_Image_Decimal (V, S, P, Scale, 1, Integer'Max (1, Scale), 0);
end Image_Decimal;
-----------------------
-- Set_Image_Decimal --
-----------------------
procedure Set_Image_Decimal
(V : Int;
S : in out String;
P : in out Natural;
Scale : Integer;
Fore : Natural;
Aft : Natural;
Exp : Natural)
is
Digs : String := Int'Image (V);
-- Sign and digits of decimal value
begin
Set_Decimal_Digits (Digs, Digs'Length, S, P, Scale, Fore, Aft, Exp);
end Set_Image_Decimal;
end System.Image_D;
| 42.060976 | 78 | 0.356625 |
a0513d0196977fe9941e4f4d1eaf564f3e80279c | 1,643 | ads | Ada | llvm-gcc-4.2-2.9/gcc/ada/a-numeri.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-numeri.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | llvm-gcc-4.2-2.9/gcc/ada/a-numeri.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . N U M E R I C S --
-- --
-- S p e c --
-- --
-- This specification is adapted from the Ada Reference Manual for use with --
-- GNAT. In accordance with the copyright of that document, you can freely --
-- copy and modify this specification, provided that if you redistribute a --
-- modified version, any changes that you have made are clearly indicated. --
-- --
------------------------------------------------------------------------------
package Ada.Numerics is
pragma Pure;
Argument_Error : exception;
Pi : constant :=
3.14159_26535_89793_23846_26433_83279_50288_41971_69399_37511;
["03C0"] : constant := Pi;
-- This is the greek letter Pi (for Ada 2005 AI-388). Note that it is
-- conforming to have this present even in Ada 95 mode, because there is
-- no way for a normal mode Ada 95 program to reference this identifier.
e : constant :=
2.71828_18284_59045_23536_02874_71352_66249_77572_47093_69996;
end Ada.Numerics;
| 49.787879 | 78 | 0.398661 |
a07cb104932e90e3201d6662ccfb250574608b6c | 14,106 | adb | Ada | src/fsmaker-target-littlefs.adb | Fabien-Chouteau/fsmaker | 3d96522852077c3865bb21ad3705f570733f1d7a | [
"MIT"
] | null | null | null | src/fsmaker-target-littlefs.adb | Fabien-Chouteau/fsmaker | 3d96522852077c3865bb21ad3705f570733f1d7a | [
"MIT"
] | null | null | null | src/fsmaker-target-littlefs.adb | Fabien-Chouteau/fsmaker | 3d96522852077c3865bb21ad3705f570733f1d7a | [
"MIT"
] | null | null | null | with Ada.Unchecked_Deallocation;
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
with GNAT.Source_Info;
with System;
with Interfaces; use Interfaces;
with Interfaces.C; use Interfaces.C;
with Simple_Logging;
with Littlefs; use Littlefs;
package body FSmaker.Target.LittleFS is
function ftruncate (FS : int;
Length : Long_Integer)
return int;
pragma Import (C, ftruncate, "ftruncate");
function fsync (FS : int)
return int;
pragma Import (C, fsync, "fsync");
procedure Free is new Ada.Unchecked_Deallocation (LFS_Config,
LFS_Config_Access);
package FD_Backend is
function Create (FD : aliased GNAT.OS_Lib.File_Descriptor)
return LFS_Config_Access;
end FD_Backend;
package body FD_Backend is
function Read (C : access constant LFS_Config;
Block : LFS_Block;
Off : LFS_Offset;
Buffer : System.Address;
Size : LFS_Size)
return int
with Convention => C;
function Prog (C : access constant LFS_Config;
Block : LFS_Block;
Off : LFS_Offset;
Buffer : System.Address;
Size : LFS_Size)
return int
with Convention => C;
function Erase (C : access constant LFS_Config;
Block : LFS_Block)
return int
with Convention => C;
function Sync (C : access constant LFS_Config) return int
with Convention => C;
----------
-- Read --
----------
function Read (C : access constant LFS_Config;
Block : LFS_Block;
Off : LFS_Offset;
Buffer : System.Address;
Size : LFS_Size)
return int
is
Offset : constant LFS_Offset := Off + C.Block_Size * LFS_Size (Block);
FD : GNAT.OS_Lib.File_Descriptor with Address => C.Context;
begin
GNAT.OS_Lib.Lseek (FD => FD,
offset => Long_Integer (Offset),
origin => GNAT.OS_Lib.Seek_Set);
if GNAT.OS_Lib.Read (FD, Buffer, Integer (Size)) = Integer (Size) then
return 0;
else
Simple_Logging.Error (GNAT.Source_Info.Enclosing_Entity & ": " &
GNAT.OS_Lib.Errno_Message);
return LFS_ERR_IO;
end if;
end Read;
----------
-- Prog --
----------
function Prog (C : access constant LFS_Config;
Block : LFS_Block;
Off : LFS_Offset;
Buffer : System.Address;
Size : LFS_Size)
return int
is
Offset : constant LFS_Offset := Off + C.Block_Size * LFS_Size (Block);
FD : GNAT.OS_Lib.File_Descriptor with Address => C.Context;
begin
GNAT.OS_Lib.Lseek (FD => FD,
offset => Long_Integer (Offset),
origin => GNAT.OS_Lib.Seek_Set);
if GNAT.OS_Lib.Write (FD, Buffer, Integer (Size)) = Integer (Size) then
return 0;
else
Simple_Logging.Error (GNAT.Source_Info.Enclosing_Entity & ": " &
GNAT.OS_Lib.Errno_Message);
return LFS_ERR_IO;
end if;
end Prog;
-----------
-- Erase --
-----------
function Erase (C : access constant LFS_Config;
Block : LFS_Block)
return int
is
Offset : constant LFS_Offset := C.Block_Size * LFS_Size (Block);
FD : GNAT.OS_Lib.File_Descriptor with Address => C.Context;
Zeros : constant array (1 .. C.Block_Size) of Unsigned_8 :=
(others => 0);
Size : constant Integer := Integer (C.Block_Size);
begin
GNAT.OS_Lib.Lseek (FD => FD,
offset => Long_Integer (Offset),
origin => GNAT.OS_Lib.Seek_Set);
if GNAT.OS_Lib.Write (FD, Zeros'Address, Size) = Size then
return 0;
else
Simple_Logging.Error (GNAT.Source_Info.Enclosing_Entity & ": " &
GNAT.OS_Lib.Errno_Message);
return LFS_ERR_IO;
end if;
end Erase;
----------
-- Sync --
----------
function Sync (C : access constant LFS_Config) return int is
pragma Unreferenced (C);
begin
return 0;
end Sync;
------------
-- Create --
------------
function Create (FD : aliased GNAT.OS_Lib.File_Descriptor)
return LFS_Config_Access
is
Ret : constant LFS_Config_Access := new LFS_Config;
begin
Ret.Context := FD'Address;
Ret.Read := Read'Access;
Ret.Prog := Prog'Access;
Ret.Erase := Erase'Access;
Ret.Sync := Sync'Access;
Ret.Read_Size := 2048;
Ret.Prog_Size := 2048;
Ret.Block_Size := 2048;
Simple_Logging.Debug ("Create FD backend -> File size: " &
GNAT.OS_Lib.File_Length (FD)'Img);
Ret.Block_Count :=
LFS_Size (GNAT.OS_Lib.File_Length (FD)) / Ret.Block_Size;
Ret.Block_Cycles := 700;
Ret.Cache_Size := Ret.Block_Size;
Ret.Lookahead_Size := Ret.Block_Size;
Ret.Read_Buffer := System.Null_Address;
Ret.Prog_Buffer := System.Null_Address;
Ret.Lookahead_Buffer := System.Null_Address;
Ret.Name_Max := 0;
Ret.File_Max := 0;
Ret.Attr_Max := 0;
return Ret;
end Create;
end FD_Backend;
---------------
-- Error_Img --
---------------
function Error_Img (Err : int) return String
is (case Err is
when LFS_ERR_OK => "No error",
when LFS_ERR_IO => "Error during device operation",
when LFS_ERR_CORRUPT => "Corrupted",
when LFS_ERR_NOENT => "No directory entry",
when LFS_ERR_EXIST => "Entry already exists",
when LFS_ERR_NOTDIR => "Entry is not a dir",
when LFS_ERR_ISDIR => "Entry is a dir",
when LFS_ERR_NOTEMPTY => "Dir is not empty",
when LFS_ERR_BADF => "Bad file number",
when LFS_ERR_FBIG => "File too large",
when LFS_ERR_INVAL => "Invalid parameter",
when LFS_ERR_NOSPC => "No space left on device",
when LFS_ERR_NOMEM => "No more memory available",
when LFS_ERR_NOATTR => "No data/attr available",
when LFS_ERR_NAMETOOLONG => "File name too long",
when others => "Unknown LFS error (" & Err'Img & ")");
------------
-- Format --
------------
overriding
procedure Format (This : in out Instance;
FD : GNAT.OS_Lib.File_Descriptor;
Size : Natural)
is
use GNAT.OS_Lib;
Unused : Integer;
Err : int;
Config : LFS_Config_Access;
FD_Aliased : aliased constant File_Descriptor := FD;
begin
Simple_Logging.Always ("File size: " & GNAT.OS_Lib.File_Length (FD)'Img);
if GNAT.OS_Lib.File_Length (FD) /= Long_Integer (Size) then
raise Program_Error with "File size different than expected";
end if;
Config := FD_Backend.Create (FD_Aliased);
Err := Format (This.LFS, Config.all);
Free (Config);
if Err /= 0 then
raise Program_Error with "format: " & Error_Img (Err);
end if;
end Format;
-----------
-- Mount --
-----------
overriding
procedure Mount (This : in out Instance;
FD : GNAT.OS_Lib.File_Descriptor)
is
Err : int;
begin
This.FD := FD;
This.Config := FD_Backend.Create (This.FD);
Err := Mount (This.LFS, This.Config.all);
if Err /= 0 then
raise Program_Error with "mount: " & Error_Img (Err);
end if;
end Mount;
--------------
-- Make_Dir --
--------------
overriding
procedure Make_Dir (This : in out Instance;
Path : Target_Path)
is
Err : int;
Full_Path : Ada.Strings.Unbounded.Unbounded_String;
begin
for Dir of Path loop
Full_Path := Full_Path & "/" & Dir;
Simple_Logging.Always ("LFS: Making dir: '" &
To_String (Full_Path) & "'");
Err := Mkdir (This.LFS, To_String (Full_Path));
if Err not in LFS_ERR_OK | LFS_ERR_EXIST then
raise Program_Error with "mkdir: " & Error_Img (Err);
end if;
end loop;
end Make_Dir;
----------
-- Tree --
----------
overriding
function Tree (This : in out Instance;
Path : Target_Path)
return Directory_Tree
is
function Tree_Rec (Dir_Path : String) return Directory_Tree is
Dir : aliased LFS_Dir;
Err : int;
Info : aliased Entry_Info;
Res : Node_Vectors.Vector;
begin
Simple_Logging.Always ("Listing path: '" & Dir_Path & "'");
Err := Open (This.LFS, Dir, Dir_Path);
if Err /= LFS_ERR_OK then
raise Program_Error with "tree: " & Error_Img (Err);
end if;
loop
Err := Read (This.LFS, Dir, Info);
case Err is
when LFS_ERR_OK =>
exit; -- End of directory
when int'First .. -1 =>
raise Program_Error with "tree: " & Error_Img (Err);
when 1 .. int'Last =>
declare
Name : constant String := Standard.Littlefs.Name (Info);
begin
if Name /= "." and then Name /= ".." then
case Kind (Info) is
when Register =>
Res.Append
(new Node'(Kind => File,
Name => To_Unbounded_String (Name)));
when Directory =>
Res.Append
(new Node'(Kind => FSmaker.Dir,
Name => To_Unbounded_String (Name),
Entries => Tree_Rec (Dir_Path & Name & "/")));
end case;
end if;
end;
end case;
end loop;
Err := Close (This.LFS, Dir);
if Err /= LFS_ERR_OK then
raise Program_Error with "tree: " & Error_Img (Err);
end if;
return Res;
end Tree_Rec;
Full_Path : constant String := "/" & Path.Flatten ("/") & "/";
begin
return Tree_Rec (Full_Path);
end Tree;
------------
-- Import --
------------
procedure Import (This : in out Instance;
Path : Target_Path;
Src : in out Source.Instance)
is
Err : int;
File : aliased LFS_File;
Full_Path : constant String := "/" & Path.Flatten ("/");
Dir_Path : Target_Path := Path;
begin
-- Remove filename from the path
Dir_Path.Delete_Last;
-- Make sure the directory hierarchy exists
This.Make_Dir (Dir_Path);
Err := Open (This.LFS, File, Full_Path, LFS_O_CREAT or LFS_O_WRONLY);
if Err /= LFS_ERR_OK then
raise Program_Error with "import: " & Error_Img (Err);
end if;
declare
Buffer : array (1 .. 4046) of Unsigned_8;
Read_Len : Natural;
Write_Len : Integer_32;
begin
loop
Read_Len := Src.Read (Buffer'Address, Buffer'Length);
exit when Read_Len = 0;
Write_Len := Write (This.LFS,
File,
Buffer'Address,
Unsigned_32 (Read_Len));
if Write_Len < 0 then
raise Program_Error with "import: " &
Error_Img (int (Write_Len));
end if;
exit when Write_Len /= Integer_32 (Read_Len);
end loop;
end;
Err := Close (This.LFS, File);
if Err /= LFS_ERR_OK then
raise Program_Error with "import: " & Error_Img (Err);
end if;
Src.Close;
end Import;
---------
-- Cat --
---------
procedure Cat (This : in out Instance;
Path : Target_Path;
Dst : in out FSmaker.Sink.Class)
is
Err : int;
File : aliased LFS_File;
Full_Path : constant String := "/" & Path.Flatten ("/");
begin
Err := Open (This.LFS, File, Full_Path, LFS_O_RDONLY);
if Err /= LFS_ERR_OK then
raise Program_Error with "cat: " & Error_Img (Err);
end if;
loop
declare
Buffer : array (1 .. 4096) of Unsigned_8;
Read_Len : Integer_32;
Write_Len : Natural;
begin
Read_Len := Read (This.LFS, File, Buffer'Address, Buffer'Length);
exit when Read_Len = 0;
if Read_Len < 0 then
raise Program_Error with "cat: " & Error_Img (int (Err));
end if;
Write_Len := Dst.Write (Buffer'Address, Integer (Read_Len));
if Write_Len < 0 then
raise Program_Error with
"cat: GNAT.OS_Lib.Write: " & GNAT.OS_Lib.Errno_Message;
end if;
exit when Read_Len /= Buffer'Length;
end;
end loop;
Dst.Close;
end Cat;
end FSmaker.Target.LittleFS;
| 30.732026 | 86 | 0.493407 |
033688b54956df0e667fd91abb69a4b699aad5e9 | 1,494 | adb | Ada | gdb/testsuite/gdb.ada/unchecked_union/unchecked_union.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/unchecked_union/unchecked_union.adb | greyblue9/binutils-gdb | 05377632b124fe7600eea7f4ee0e9a35d1b0cbdc | [
"BSD-3-Clause"
] | null | null | null | gdb/testsuite/gdb.ada/unchecked_union/unchecked_union.adb | greyblue9/binutils-gdb | 05377632b124fe7600eea7f4ee0e9a35d1b0cbdc | [
"BSD-3-Clause"
] | null | null | null | -- Copyright 2019-2021 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
with System;
with Pck; use Pck;
procedure Foo is
type Key is (Alpha, Omega);
type Inner(Disc : Key := Omega) is record
case Disc is
when Alpha =>
Small : Integer range 0..255;
when others =>
Large : Integer range 255..510;
end case;
end record;
pragma Unchecked_Union (Inner);
type Outer(Disc : Key := Alpha) is record
case Disc is
when Alpha =>
Field_One : Integer range 0..255;
when others =>
Field_Two : Integer range 255..510;
end case;
end record;
pragma Unchecked_Union (Outer);
type Pair is record
Pone : Inner;
Ptwo : Outer;
end record;
Value : Pair;
begin
Do_Nothing (Value'Address); -- BREAK
end Foo;
| 28.730769 | 73 | 0.649264 |
1ee38e1659f4203c1e57ae8dd8ac299302a1eea0 | 5,825 | ads | Ada | bb-runtimes/src/s-bbpara__leon.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | bb-runtimes/src/s-bbpara__leon.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | bb-runtimes/src/s-bbpara__leon.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
-- --
-- S Y S T E M . B B . P A R A M E T E R S --
-- --
-- S p e c --
-- --
-- Copyright (C) 1999-2002 Universidad Politecnica de Madrid --
-- Copyright (C) 2003-2005 The European Space Agency --
-- Copyright (C) 2003-2016, AdaCore --
-- --
-- GNARL is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. 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. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNARL was developed by the GNARL team at Florida State University. --
-- Extensive contributions were provided by Ada Core Technologies, Inc. --
-- --
-- The port of GNARL to bare board targets was initially developed by the --
-- Real-Time Systems Group at the Technical University of Madrid. --
-- --
------------------------------------------------------------------------------
-- This package defines basic parameters used by the low level tasking system
-- This is the ERC32/LEON/LEON3 version of this package
pragma Restrictions (No_Elaboration_Code);
with System.BB.Board_Parameters;
package System.BB.Parameters is
pragma Pure;
--------------------
-- Hardware clock --
--------------------
Clock_Frequency : constant := System.BB.Board_Parameters.Clock_Frequency;
-- Frequency of the system clock
Ticks_Per_Second : constant :=
Clock_Frequency / (Board_Parameters.Prescaler_Min + 1);
-- The prescaler is clocked by the system clock. When it underflows, it
-- is reloaded from the prescaler reload register and a timer tick is
-- generated. The effective division rate is therefore equal to the
-- prescaler reload register value plus 1.
----------------
-- Interrupts --
----------------
-- The following are ERC32/LEON/LEON3 definitions and they cannot be
-- modified.
-- These definitions are in this package in order to isolate target
-- dependencies.
Interrupt_Range_Last : constant :=
(if Board_Parameters.Extended_Interrupts_Level /= 0 then 31 else 15);
subtype Interrupt_Range is Natural range 1 .. Interrupt_Range_Last;
-- Number of interrupts in the SPARC architecture
Trap_Vectors : constant := 256;
-- The SPARC arquitecture supports 256 vectors
------------------------
-- Context Management --
------------------------
-- The SPARC processor needs to save:
--
-- * 18 integer registers of 32 bits (7 global, 8 output, PSR, Y, and WIM)
-- for normal processing
--
-- * 33 floating point registers of 32 bits
--
-- * the number of register windows saved to the stack
-- (the input and local registers are saved to the stack).
--
-- * interrupt nesting level corresponding to the task
--
-- * for LEON, to slots for the Cache Control Register
--
-- This would be 55 slots for LEON/LEON3 and 53 otherwise, but
-- this need to be rounded up to an even number to allow more
-- efficient access.
--
-- For LEON, we store the Cache Control Register to be able to keep the
-- cache status per task. We keep the base Cache Control Register (which
-- is not affected by automatic changes related to the freeze-on-interrupt
-- capability) and the actual Cache Control Register (the one directly
-- extracted from the hardware).
Base_CCR_Context_Index : constant := 53;
CCR_Context_Index : constant := 54;
Context_Buffer_Capacity : constant := 56;
------------
-- Stacks --
------------
Interrupt_Stack_Size : constant := 8 * 1024; -- bytes
-- Size of each of the interrupt stacks
----------
-- CPUS --
----------
Max_Number_Of_CPUs : constant := Board_Parameters.Max_Number_Of_CPUs;
-- Maximum number of CPUs
Multiprocessor : constant Boolean := Max_Number_Of_CPUs /= 1;
-- Are we on a multiprocessor board?
end System.BB.Parameters;
| 44.128788 | 79 | 0.520343 |
a0853471f78804af0082acc43079d46c27b80bf1 | 4,649 | ads | Ada | src/semantica.ads | alvaromb/Compilemon | de5f88f084705868d38e301d95bb4a19a46a1156 | [
"MIT"
] | 1 | 2018-08-11T01:51:27.000Z | 2018-08-11T01:51:27.000Z | src/semantica.ads | alvaromb/Compilemon | de5f88f084705868d38e301d95bb4a19a46a1156 | [
"MIT"
] | null | null | null | src/semantica.ads | alvaromb/Compilemon | de5f88f084705868d38e301d95bb4a19a46a1156 | [
"MIT"
] | null | null | null | with Decls.Dgenerals,
Decls.Dtnode,
Decls.D_Taula_De_Noms,
Decls.D_Atribut,
Decls.dtsimbols,
Ada.Text_Io,
Decls.dtdesc;
use Decls.Dgenerals,
Decls.Dtnode,
Decls.D_Taula_De_Noms,
Decls.D_Atribut,
Decls.dtsimbols,
Ada.Text_Io,
Decls.dtdesc;
package Semantica is
--Definicions basiques
type tInstruccio is
(--1 operand
Rtn,
Call,
Preamb,
Params,
Etiqueta,
Branc_Inc,
-- 2 operands
Negacio,
Op_Not,
Copia,
Paramc,
--3 operands
Suma,
Resta,
Producte,
Divisio,
Modul,
Op_And,
Op_Or,
Consindex,
Asigindex,
Menor,
Menorigual,
Igual,
Majorigual,
Major,
Diferent);
type tCamp is
(Proc,
Var,
Etiq,
Const);
type Camp(tc : tCamp:=Const) is record
case Tc is
when Proc => Idp : num_Proc;
when Var => Idv : num_var;
when Etiq => Ide : num_etiq;
when Const => Idc : num_var;
when others => null;
end case;
end record;
type C3a is record
Instr : tInstruccio;
Camp1 : Camp;
Camp2 : Camp;
Camp3 : Camp;
end record;
type Tprocediment is
(Intern,
Extern);
type Info_Proc (Tp : Tprocediment := Intern) is
record
Ocup_Param : Despl;
case Tp is
when Intern =>
Idn : Id_Nom;
Prof : nprof;
Ocup_Var : Despl;
Etiq : Num_Etiq;
when Extern =>
Etiq_extern : Id_Nom;
end case;
end record;
Info_Proc_Nul : Info_Proc := (Intern, 0, Id_Nul,
0, 0, Etiq_Nul);
type Taula_P is array
(Num_Proc) of Info_Proc;
type T_Procs is record
Tp : Taula_P;
Np : Num_Proc;
end record;
Tp : T_Procs;
--Taula de variables
type Info_Var is record
Id : Id_Nom;
Np : num_proc;
Ocup : Despl;
Desp : Despl;
Tsub : Tipussubjacent;
Param : Boolean;
Const : Boolean;
Valconst : Valor;
end record;
Info_Var_Nul : Info_Var :=
(Id => Id_Nul,
Np => proc_nul,
Ocup => 0,
Desp => 0,
Tsub => Tsnul,
Param => False,
Const => False,
Valconst => 0);
type taula_v is array
(Num_Var) of Info_Var;
type T_Vars is record
Tv : taula_v;
Nv : num_var;
end record;
Tv : T_Vars;
Ne : Num_Etiq := 0;
Arbre : Pnode;
-- Per els brancaments
Zero,
MenysU : num_Var;
-- Procediments
procedure Abuit
(P : out pnode);
procedure creaNode_programa
(P : out Atribut;
A : in Atribut);
procedure creaNode
(p : out atribut;
fe, fd : in atribut;
tn : in Tipusnode);
procedure creaNode
(p : out atribut;
fe, fc, fd : in atribut;
tn : in Tipusnode);
procedure creaNode
(p : out atribut;
fe, fce, fc, fd : in atribut;
tn : in Tipusnode);
procedure creaNode
(p : out atribut;
f : in atribut;
tn : in Tipusnode);
procedure creaNode
(p : out atribut;
fe, fd: in atribut;
op : in operacio;
tn : in Tipusnode);
procedure creaNode
(p : out atribut;
f : in atribut;
op : in operacio;
tn : in Tipusnode);
procedure CreaNode_ID
(p : out atribut;
id : in atribut;
tn : in Tipusnode);
procedure CreaNode_VAL
(p : out atribut;
a : in atribut;
tn : in Tipusnode;
S : in Valor);
procedure CreaNode_MODE
(P : out Atribut;
M : in Mmode;
Tn : in Tipusnode);
procedure creaNode
(P : out Atribut;
Tn : in Tipusnode);
procedure Remunta
(P : out Atribut;
A : in Atribut);
procedure Cons_Tnode
(P : in Pnode;
Tn : out Tipusnode);
-- Procediments per a les Taules
procedure Noves_taules
(Tp : out T_Procs;
Tv : out T_Vars);
-- Procediments per Taula de Procediments
procedure Posa
(Tp : in out T_Procs;
Ip : in Info_Proc;
Idp : out num_Proc);
procedure Modif_Descripcio
(Tp : in out T_Procs;
Idp : in num_proc;
Ip : in Info_Proc);
-- Procediments per Taula de Variables
procedure Posa
(Tv : in out T_Vars;
Iv : in Info_Var;
Idv : out num_var);
private
Ts : Tsimbols;
Tts: Ttsimbols;
Tn : Taula_De_Noms;
Nv : Num_Var;
Np : Num_Proc;
Id_Puts : Num_Proc;
Id_Gets : Num_Proc;
end Semantica;
| 19.131687 | 51 | 0.536459 |
032aef4e71125ece87a5acf2f6ee95be26ebe586 | 845 | ads | Ada | university/language-concepts-labs/9/ada/bubble.ads | honno/code-solutions | 48bba6aa5b9d77ac628de484357459e7bfb92d4b | [
"MIT"
] | null | null | null | university/language-concepts-labs/9/ada/bubble.ads | honno/code-solutions | 48bba6aa5b9d77ac628de484357459e7bfb92d4b | [
"MIT"
] | null | null | null | university/language-concepts-labs/9/ada/bubble.ads | honno/code-solutions | 48bba6aa5b9d77ac628de484357459e7bfb92d4b | [
"MIT"
] | null | null | null | -- specification of the package -
-- read this to get an overview of the package;
-- see bubble.adb for the implementation
package Bubble is
-- state shared by all tasks (ie threads)
protected State is
-- a setter for a, b, c, d
procedure Set_All(a, b, c, d : Integer);
-- get a, b, c, d but only when a <= b <= c <= d
-- block when they are not sorted
entry Wait_Until_Sorted(a, b, c, d : out Integer);
-- entries for detecting when neighbouring numbers
-- are not in order and swapping them:
entry BubbleAB;
entry BubbleBC;
entry BubbleCD;
private
procedure Print_State;
a, b, c, d : Integer := 0;
end State;
-- tasks for swapping neighbours in State:
task BubbleAB;
task BubbleBC;
task BubbleCD;
end Bubble;
| 26.40625 | 58 | 0.604734 |
0367b3ad310adc23d4b67931f4f2932a7c9dae88 | 175 | adb | Ada | tests/typing/bad/testfile-inout-8.adb | xuedong/mini-ada | 59a8b966cf50ba22a3b5a7cb449f671e4da32e44 | [
"MIT"
] | null | null | null | tests/typing/bad/testfile-inout-8.adb | xuedong/mini-ada | 59a8b966cf50ba22a3b5a7cb449f671e4da32e44 | [
"MIT"
] | 1 | 2019-03-10T19:13:21.000Z | 2019-03-10T19:19:46.000Z | tests/typing/bad/testfile-inout-8.adb | xuedong/mini-ada | 59a8b966cf50ba22a3b5a7cb449f671e4da32e44 | [
"MIT"
] | null | null | null | with Ada.Text_IO; use Ada.Text_IO;
procedure Test is
type R is record A: Integer; end record;
procedure P(X: in R) is begin X.A := 0; end;
v: R;
begin
P(v);
end;
| 17.5 | 47 | 0.634286 |
22d66abafd44195973e24ab7a1174ce8e7a3ed0e | 2,404 | adb | Ada | testsuite/tests/logging/src/tc_log_filtering.adb | shakram02/Ada_Drivers_Library | a407ca7ddbc2d9756647016c2f8fd8ef24a239ff | [
"BSD-3-Clause"
] | 192 | 2016-06-01T18:32:04.000Z | 2022-03-26T22:52:31.000Z | testsuite/tests/logging/src/tc_log_filtering.adb | shakram02/Ada_Drivers_Library | a407ca7ddbc2d9756647016c2f8fd8ef24a239ff | [
"BSD-3-Clause"
] | 239 | 2016-05-26T20:02:01.000Z | 2022-03-31T09:46:56.000Z | testsuite/tests/logging/src/tc_log_filtering.adb | shakram02/Ada_Drivers_Library | a407ca7ddbc2d9756647016c2f8fd8ef24a239ff | [
"BSD-3-Clause"
] | 142 | 2016-06-05T08:12:20.000Z | 2022-03-24T17:37:17.000Z | with Ada.Text_IO;
with Logging_With_Categories;
procedure TC_Log_Filtering is
type Categories is (Debug, Warning, Error);
procedure Print (Str : String; Prio : Natural);
package Log is new Logging_With_Categories
(Categories => Categories,
Priorities => Natural,
Default_Category => Error,
Default_Priority => 0,
Categories_Enabled_By_Default => False,
Prefix_Enabled_By_Default => False,
Log_Line_Backend => Print);
procedure Print (Str : String; Prio : Natural) is
begin
Ada.Text_IO.Put_Line ("Prio:" & Prio'Img & " -> " & Str);
end Print;
begin
Ada.Text_IO.Put_Line ("--- Log test begin ---");
-- All categories should be disabled so no message is expected here
Log.Log_Line (Debug, "Don't print this");
Log.Log_Line (Warning, "Don't print this");
Log.Log_Line (Error, "Don't print this");
-- Enabled categories one by one and print something
Log.Enable (Debug);
Log.Log_Line (Debug, "This Debug should print");
Log.Log_Line (Warning, "Don't print this");
Log.Log_Line (Error, "Don't print this");
Log.Enable (Warning);
Log.Log_Line (Warning, "This Warning should print");
Log.Log_Line (Error, "Don't print this");
Log.Enable (Error);
Log.Log_Line (Error, "This Error should print");
-- Change priorities
Log.Set_Priority (Debug, 1);
Log.Log_Line (Debug, "This Debug should print prio 1");
Log.Set_Priority (Warning, 2);
Log.Log_Line (Warning, "This Warning should print prio 2");
Log.Set_Priority (Error, 3);
Log.Log_Line (Error, "This Error should print prio 3");
-- Enabled prefixes one by one and print something
Log.Enable_Prefix (Debug);
Log.Log_Line (Debug, "This Debug should print with prefix");
Log.Log_Line (Warning, "This Warning should print without prefix");
Log.Log_Line (Error, "This Error should print without prefix");
Log.Enable_Prefix (Warning);
Log.Log_Line (Warning, "This Warning should print with prefix");
Log.Log_Line (Error, "This Error should print without prefix");
Log.Enable_Prefix (Error);
Log.Log_Line (Error, "This Error should print with prefix");
Log.Log_Line ("This should print in the Error category");
Ada.Text_IO.Put_Line ("--- Log test end ---");
end TC_Log_Filtering;
| 34.84058 | 71 | 0.655574 |
9a73c1b5c05670bd6f467f48c91ec2f1ce0f4725 | 692 | adb | Ada | courses/fundamentals_of_ada/labs/prompts/135_visibility/main.adb | AdaCore/training_material | 6651eb2c53f8c39649b8e0b3c757bc8ff963025a | [
"CC-BY-4.0"
] | 15 | 2020-10-07T08:56:45.000Z | 2022-02-08T23:13:22.000Z | courses/fundamentals_of_ada/labs/prompts/135_visibility/main.adb | AdaCore/training_material | 6651eb2c53f8c39649b8e0b3c757bc8ff963025a | [
"CC-BY-4.0"
] | 20 | 2020-11-05T14:35:20.000Z | 2022-01-13T15:59:33.000Z | courses/fundamentals_of_ada/labs/prompts/135_visibility/main.adb | AdaCore/training_material | 6651eb2c53f8c39649b8e0b3c757bc8ff963025a | [
"CC-BY-4.0"
] | 6 | 2020-10-08T15:57:06.000Z | 2021-08-31T12:03:08.000Z | with Ada.Text_IO; use Ada.Text_IO;
with Types;
with Types.Strings;
procedure Main is
-- Use 'renames' to simplfy access to global formatting objects
Hours : Types.Hours_T;
Miles : Types.Miles_T;
function Get
(Prompt : String)
return String is
begin
Put (Prompt & "> ");
return Get_Line;
end Get;
begin
-- Query user for distance and time values
-- Calculate and print MPH for all distance/time combinations
Miles := Types.Miles_T'value (Get ("Miles"));
Hours := Types.Hours_T'value (Get ("Hours"));
Put_Line
(Types.Strings.To_String (Miles) & " miles / " &
Types.Strings.To_String (Hours) & " hour = ? mph");
end Main;
| 23.066667 | 66 | 0.648844 |
8b0ec574348a8c1e8695057f123f8cc051d80bfb | 3,075 | ada | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/cd/cd5014m.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/cd/cd5014m.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/cd/cd5014m.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | -- CD5014M.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 AN ADDRESS CLAUSE CAN BE GIVEN IN THE VISIBLE PART
-- OF A GENERIC PACKAGE SPECIFICATION FOR A VARIABLE OF AN ACCESS
-- TYPE, WHERE THE VARIABLE IS DECLARED IN THE VISIBLE PART OF
-- THE SPECIFICATION.
-- HISTORY:
-- CDJ 07/24/87 CREATED ORIGINAL TEST.
-- BCB 10/01/87 CHANGED TEST TO STANDARD FORMAT.
-- PWB 05/11/89 CHANGED EXTENSION FROM '.DEP' TO '.ADA'.
-- MCH 04/03/90 ADDED INSTANTIATION.
WITH SYSTEM; USE SYSTEM;
WITH SPPRT13; USE SPPRT13;
WITH REPORT; USE REPORT;
PROCEDURE CD5014M IS
BEGIN
TEST ("CD5014M", " AN ADDRESS CLAUSE CAN BE GIVEN " &
"IN THE VISIBLE PART OF A GENERIC PACKAGE " &
"SPECIFICATION FOR A VARIABLE OF AN ACCESS " &
"TYPE, WHERE THE VARIABLE IS DECLARED IN THE " &
"VISIBLE PART OF THE SPECIFICATION");
DECLARE
GENERIC
PACKAGE PKG IS
TYPE ACCESS_TYPE;
TYPE POINTER_TYPE IS ACCESS ACCESS_TYPE;
TYPE ACCESS_TYPE IS RECORD
VAL1 : INTEGER;
NEXT : POINTER_TYPE;
END RECORD;
POINTER_OBJ1 : POINTER_TYPE := NEW ACCESS_TYPE'(0,NULL);
FOR POINTER_OBJ1 USE AT VARIABLE_ADDRESS;
END PKG;
PACKAGE BODY PKG IS
BEGIN
IF EQUAL(3,3) THEN
POINTER_OBJ1 := NEW ACCESS_TYPE'(10,NULL);
END IF;
IF POINTER_OBJ1.ALL /= (10,NULL) THEN
FAILED ("INCORRECT VALUE FOR ACCESS VARIABLE");
END IF;
IF POINTER_OBJ1'ADDRESS /= VARIABLE_ADDRESS THEN
FAILED ("INCORRECT ADDRESS FOR ACCESS VARIABLE");
END IF;
END PKG;
PACKAGE INSTANTIATE IS NEW PKG;
BEGIN
NULL;
END;
RESULT;
END CD5014M;
| 34.550562 | 79 | 0.62374 |
8b168d60e5c1e555d974aff73e49391b341891a7 | 567,616 | adb | Ada | Acceleration/memcached/hls/memcachedPipeline_prj/solution1/.autopilot/db/remux.bind.adb | pratik0509/HLSx_Xilinx_edit | 14bdbcdb3107aa225e46a0bfe7d4a2a426e9e1ca | [
"BSD-3-Clause"
] | null | null | null | Acceleration/memcached/hls/memcachedPipeline_prj/solution1/.autopilot/db/remux.bind.adb | pratik0509/HLSx_Xilinx_edit | 14bdbcdb3107aa225e46a0bfe7d4a2a426e9e1ca | [
"BSD-3-Clause"
] | null | null | null | Acceleration/memcached/hls/memcachedPipeline_prj/solution1/.autopilot/db/remux.bind.adb | pratik0509/HLSx_Xilinx_edit | 14bdbcdb3107aa225e46a0bfe7d4a2a426e9e1ca | [
"BSD-3-Clause"
] | 1 | 2018-11-13T17:59:49.000Z | 2018-11-13T17:59:49.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></userIPName>
<cdfg class_id="1" tracking_level="1" version="0" object_id="_0">
<name>remux</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>5</id>
<name>metadataBuffer_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo class_id="6" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName>FIFO</coreName>
</Obj>
<bitwidth>128</bitwidth>
</Value>
<direction>0</direction>
<if_type>3</if_type>
<array_size>0</array_size>
<bit_vecs class_id="7" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_2">
<Value>
<Obj>
<type>1</type>
<id>6</id>
<name>keyBuffer_V_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName>FIFO</coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<direction>0</direction>
<if_type>3</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_3">
<Value>
<Obj>
<type>1</type>
<id>7</id>
<name>valueStoreDram2merge_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName>FIFO</coreName>
</Obj>
<bitwidth>256</bitwidth>
</Value>
<direction>1</direction>
<if_type>3</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_4">
<Value>
<Obj>
<type>1</type>
<id>8</id>
<name>getPath2remux_V_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName>FIFO</coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<direction>0</direction>
<if_type>3</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>184</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_5">
<Value>
<Obj>
<type>0</type>
<id>15</id>
<name>remuxState_load</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>598</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="10" tracking_level="0" version="0">
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</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>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>598</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>245</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_6">
<Value>
<Obj>
<type>0</type>
<id>16</id>
<name>rmMdBuffer_metadata_1</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>610</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>610</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>124</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>246</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_7">
<Value>
<Obj>
<type>0</type>
<id>17</id>
<name>rmKeyLength_load</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>611</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>611</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>247</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_8">
<Value>
<Obj>
<type>0</type>
<id>18</id>
<name>rmValueLength_load</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>693</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>693</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>248</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_9">
<Value>
<Obj>
<type>0</type>
<id>19</id>
<name>tmp_s</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>651</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>651</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>249</item>
<item>251</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.86</m_delay>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>20</id>
<name>tmp_97</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>655</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>655</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>253</item>
<item>254</item>
<item>256</item>
<item>258</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name>icmp</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>655</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>655</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>259</item>
<item>261</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.87</m_delay>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>22</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>598</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>598</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>14</count>
<item_version>0</item_version>
<item>262</item>
<item>263</item>
<item>265</item>
<item>266</item>
<item>268</item>
<item>269</item>
<item>271</item>
<item>272</item>
<item>274</item>
<item>275</item>
<item>277</item>
<item>278</item>
<item>280</item>
<item>281</item>
</oprand_edges>
<opcode>switch</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.20</m_delay>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>24</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>718</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>718</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>691</item>
<item>692</item>
<item>693</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>26</id>
<name>tmp_3</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>718</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>718</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>694</item>
<item>695</item>
<item>696</item>
</oprand_edges>
<opcode>nbreadreq</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>27</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>718</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>718</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>697</item>
<item>698</item>
<item>699</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.20</m_delay>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>29</id>
<name>tmp_64_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>718</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>718</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>700</item>
<item>701</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.18</m_delay>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>30</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>718</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>718</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>702</item>
<item>703</item>
<item>704</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>32</id>
<name>tmp_10</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>718</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>718</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>705</item>
<item>706</item>
<item>707</item>
</oprand_edges>
<opcode>nbreadreq</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>33</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>718</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>718</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>708</item>
<item>709</item>
<item>710</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.20</m_delay>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>35</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>719</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>719</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>711</item>
<item>712</item>
<item>713</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.85</m_delay>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name>tmp_V_13</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>720</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>720</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>714</item>
<item>715</item>
<item>1178</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>2.39</m_delay>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name>tmp_71_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>722</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>722</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>716</item>
<item>717</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.35</m_delay>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>39</id>
<name>storemerge7_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>722</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>722</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>718</item>
<item>719</item>
<item>720</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.37</m_delay>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>723</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>723</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>721</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.85</m_delay>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>42</id>
<name>tmp_keyValid_V_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>tmp.keyValid.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>722</item>
<item>723</item>
<item>724</item>
<item>725</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name>rmKeyLength_load_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>611</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>611</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>726</item>
<item>727</item>
<item>728</item>
<item>729</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>44</id>
<name>tmp_key_V_4</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>outputWord.key.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>730</item>
<item>731</item>
<item>732</item>
<item>733</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>45</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>724</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>724</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>734</item>
<item>735</item>
<item>736</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.85</m_delay>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>47</id>
<name>tmp_V_14</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>725</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>725</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>737</item>
<item>738</item>
<item>1179</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>2.39</m_delay>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>48</id>
<name>tmp_111</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>727</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>727</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>739</item>
<item>740</item>
<item>741</item>
<item>742</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>49</id>
<name>icmp1</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>727</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>727</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>743</item>
<item>744</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.06</m_delay>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>50</id>
<name>tmp_77_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>727</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>727</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>745</item>
<item>746</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.30</m_delay>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>51</id>
<name>storemerge_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>727</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>727</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>747</item>
<item>748</item>
<item>749</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.47</m_delay>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>52</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>727</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>727</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>750</item>
<item>751</item>
<item>1175</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.92</m_delay>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>53</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>728</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>728</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>752</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.85</m_delay>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>55</id>
<name>tmp_83_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>727</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>727</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>753</item>
<item>754</item>
<item>755</item>
<item>756</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>56</id>
<name>tmp_valueValid_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>tmp.valueValid.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>757</item>
<item>758</item>
<item>759</item>
<item>760</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>57</id>
<name>tmp_value_V_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>outputWord.value.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>761</item>
<item>762</item>
<item>763</item>
<item>764</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>58</id>
<name>tmp_84_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>729</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>729</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>765</item>
<item>766</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.18</m_delay>
</item>
<item class_id_reference="9" object_id="_40">
<Value>
<Obj>
<type>0</type>
<id>59</id>
<name>tmp_85_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>729</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>729</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>767</item>
<item>768</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.86</m_delay>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>60</id>
<name>tmp_EOP_V_2</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>729</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>729</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.EOP.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>769</item>
<item>770</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.48</m_delay>
</item>
<item class_id_reference="9" object_id="_42">
<Value>
<Obj>
<type>0</type>
<id>61</id>
<name>tmp_10_2</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>733</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>733</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.10</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>256</bitwidth>
</Value>
<oprand_edges>
<count>7</count>
<item_version>0</item_version>
<item>772</item>
<item>773</item>
<item>774</item>
<item>775</item>
<item>776</item>
<item>777</item>
<item>779</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_43">
<Value>
<Obj>
<type>0</type>
<id>62</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>733</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>733</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>780</item>
<item>781</item>
<item>782</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>2.39</m_delay>
</item>
<item class_id_reference="9" object_id="_44">
<Value>
<Obj>
<type>0</type>
<id>63</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>734</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>734</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>783</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.20</m_delay>
</item>
<item class_id_reference="9" object_id="_45">
<Value>
<Obj>
<type>0</type>
<id>65</id>
<name>tmp_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>tmp</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>580</item>
<item>581</item>
<item>582</item>
</oprand_edges>
<opcode>nbreadreq</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_46">
<Value>
<Obj>
<type>0</type>
<id>66</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>693</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>693</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>583</item>
<item>584</item>
<item>585</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.20</m_delay>
</item>
<item class_id_reference="9" object_id="_47">
<Value>
<Obj>
<type>0</type>
<id>68</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>693</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>693</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>586</item>
<item>587</item>
<item>588</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_48">
<Value>
<Obj>
<type>0</type>
<id>70</id>
<name>tmp_8</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>693</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>693</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>589</item>
<item>590</item>
<item>591</item>
</oprand_edges>
<opcode>nbreadreq</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_49">
<Value>
<Obj>
<type>0</type>
<id>71</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>693</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>693</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>592</item>
<item>593</item>
<item>594</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.20</m_delay>
</item>
<item class_id_reference="9" object_id="_50">
<Value>
<Obj>
<type>0</type>
<id>73</id>
<name>tmp_68_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>693</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>693</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>595</item>
<item>597</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.18</m_delay>
</item>
<item class_id_reference="9" object_id="_51">
<Value>
<Obj>
<type>0</type>
<id>74</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>693</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>693</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>598</item>
<item>599</item>
<item>600</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_52">
<Value>
<Obj>
<type>0</type>
<id>76</id>
<name>tmp_13</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>693</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>693</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>601</item>
<item>602</item>
<item>603</item>
</oprand_edges>
<opcode>nbreadreq</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_53">
<Value>
<Obj>
<type>0</type>
<id>77</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>693</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>693</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>604</item>
<item>605</item>
<item>606</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.20</m_delay>
</item>
<item class_id_reference="9" object_id="_54">
<Value>
<Obj>
<type>0</type>
<id>79</id>
<name>tmp_8_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>tmp.8</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>128</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>607</item>
<item>608</item>
<item>1180</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>2.39</m_delay>
</item>
<item class_id_reference="9" object_id="_55">
<Value>
<Obj>
<type>0</type>
<id>80</id>
<name>outputWord_metadata_1</name>
<fileName>sources/valueStore/../globals.h</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>128</lineNumber>
<contextFuncName>operator=</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first>
<second>read</second>
</first>
<second>127</second>
</item>
<item>
<first>
<first>sources/valueStore/../globals.h</first>
<second>operator=</second>
</first>
<second>128</second>
</item>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>694</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>outputWord.metadata.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>124</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>609</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_56">
<Value>
<Obj>
<type>0</type>
<id>81</id>
<name></name>
<fileName>sources/valueStore/../globals.h</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>128</lineNumber>
<contextFuncName>operator=</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first>
<second>read</second>
</first>
<second>127</second>
</item>
<item>
<first>
<first>sources/valueStore/../globals.h</first>
<second>operator=</second>
</first>
<second>128</second>
</item>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>694</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>610</item>
<item>611</item>
<item>1174</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.92</m_delay>
</item>
<item class_id_reference="9" object_id="_57">
<Value>
<Obj>
<type>0</type>
<id>82</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>695</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>695</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>612</item>
<item>613</item>
<item>614</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.85</m_delay>
</item>
<item class_id_reference="9" object_id="_58">
<Value>
<Obj>
<type>0</type>
<id>84</id>
<name>tmp_V_11</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>696</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>696</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>615</item>
<item>616</item>
<item>1181</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>2.39</m_delay>
</item>
<item class_id_reference="9" object_id="_59">
<Value>
<Obj>
<type>0</type>
<id>85</id>
<name>tmp_75_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>698</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>698</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>617</item>
<item>618</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.35</m_delay>
</item>
<item class_id_reference="9" object_id="_60">
<Value>
<Obj>
<type>0</type>
<id>86</id>
<name>storemerge8_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>698</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>698</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>619</item>
<item>620</item>
<item>621</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.37</m_delay>
</item>
<item class_id_reference="9" object_id="_61">
<Value>
<Obj>
<type>0</type>
<id>87</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>699</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>699</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>622</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.85</m_delay>
</item>
<item class_id_reference="9" object_id="_62">
<Value>
<Obj>
<type>0</type>
<id>89</id>
<name>tmp_keyValid_V_2</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>tmp.keyValid.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>623</item>
<item>624</item>
<item>625</item>
<item>626</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_63">
<Value>
<Obj>
<type>0</type>
<id>90</id>
<name>rmKeyLength_load_1_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>611</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>611</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>627</item>
<item>628</item>
<item>629</item>
<item>630</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_64">
<Value>
<Obj>
<type>0</type>
<id>91</id>
<name>tmp_key_V_5</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>outputWord.key.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>631</item>
<item>632</item>
<item>633</item>
<item>634</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_65">
<Value>
<Obj>
<type>0</type>
<id>92</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>700</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>700</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>635</item>
<item>636</item>
<item>637</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.85</m_delay>
</item>
<item class_id_reference="9" object_id="_66">
<Value>
<Obj>
<type>0</type>
<id>94</id>
<name>tmp_V_12</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>701</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>701</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>638</item>
<item>639</item>
<item>1182</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>2.39</m_delay>
</item>
<item class_id_reference="9" object_id="_67">
<Value>
<Obj>
<type>0</type>
<id>95</id>
<name>tmp_112</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>703</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>703</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>641</item>
<item>642</item>
<item>643</item>
<item>645</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_68">
<Value>
<Obj>
<type>0</type>
<id>96</id>
<name>icmp2</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>703</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>703</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>646</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_delay>1.06</m_delay>
</item>
<item class_id_reference="9" object_id="_69">
<Value>
<Obj>
<type>0</type>
<id>97</id>
<name>tmp_82_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>703</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>703</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>648</item>
<item>650</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.30</m_delay>
</item>
<item class_id_reference="9" object_id="_70">
<Value>
<Obj>
<type>0</type>
<id>98</id>
<name>storemerge9_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>703</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>703</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>651</item>
<item>652</item>
<item>653</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.47</m_delay>
</item>
<item class_id_reference="9" object_id="_71">
<Value>
<Obj>
<type>0</type>
<id>99</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>703</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>703</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>654</item>
<item>655</item>
<item>1177</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.92</m_delay>
</item>
<item class_id_reference="9" object_id="_72">
<Value>
<Obj>
<type>0</type>
<id>100</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>704</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>704</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>656</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.85</m_delay>
</item>
<item class_id_reference="9" object_id="_73">
<Value>
<Obj>
<type>0</type>
<id>102</id>
<name>tmp_88_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>703</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>703</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>657</item>
<item>658</item>
<item>659</item>
<item>660</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_74">
<Value>
<Obj>
<type>0</type>
<id>103</id>
<name>tmp_valueValid_V_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>tmp.valueValid.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>661</item>
<item>662</item>
<item>663</item>
<item>664</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_75">
<Value>
<Obj>
<type>0</type>
<id>104</id>
<name>tmp_value_V_2</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>outputWord.value.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>665</item>
<item>666</item>
<item>667</item>
<item>668</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_76">
<Value>
<Obj>
<type>0</type>
<id>105</id>
<name>tmp_89_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>706</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>706</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>669</item>
<item>670</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.18</m_delay>
</item>
<item class_id_reference="9" object_id="_77">
<Value>
<Obj>
<type>0</type>
<id>106</id>
<name>tmp_90_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>706</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>706</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>671</item>
<item>672</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.86</m_delay>
</item>
<item class_id_reference="9" object_id="_78">
<Value>
<Obj>
<type>0</type>
<id>107</id>
<name>tmp_EOP_V_3</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>706</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>706</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.EOP.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>673</item>
<item>674</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.48</m_delay>
</item>
<item class_id_reference="9" object_id="_79">
<Value>
<Obj>
<type>0</type>
<id>108</id>
<name>storemerge1_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>706</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>706</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>675</item>
<item>676</item>
<item>677</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.51</m_delay>
</item>
<item class_id_reference="9" object_id="_80">
<Value>
<Obj>
<type>0</type>
<id>109</id>
<name>tmp_9_1</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>712</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>712</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.9</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>256</bitwidth>
</Value>
<oprand_edges>
<count>8</count>
<item_version>0</item_version>
<item>679</item>
<item>680</item>
<item>681</item>
<item>682</item>
<item>683</item>
<item>684</item>
<item>685</item>
<item>686</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_81">
<Value>
<Obj>
<type>0</type>
<id>110</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>712</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>712</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>687</item>
<item>688</item>
<item>689</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>2.39</m_delay>
</item>
<item class_id_reference="9" object_id="_82">
<Value>
<Obj>
<type>0</type>
<id>111</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>713</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>713</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>690</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.20</m_delay>
</item>
<item class_id_reference="9" object_id="_83">
<Value>
<Obj>
<type>0</type>
<id>113</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>677</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>677</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>551</item>
<item>552</item>
<item>553</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.20</m_delay>
</item>
<item class_id_reference="9" object_id="_84">
<Value>
<Obj>
<type>0</type>
<id>115</id>
<name>tmp_2</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>678</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>678</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>554</item>
<item>555</item>
<item>556</item>
</oprand_edges>
<opcode>nbreadreq</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_85">
<Value>
<Obj>
<type>0</type>
<id>116</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>678</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>678</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>557</item>
<item>558</item>
<item>559</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.20</m_delay>
</item>
<item class_id_reference="9" object_id="_86">
<Value>
<Obj>
<type>0</type>
<id>118</id>
<name>tmp_V_10</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>679</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>679</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>560</item>
<item>561</item>
<item>1183</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>2.39</m_delay>
</item>
<item class_id_reference="9" object_id="_87">
<Value>
<Obj>
<type>0</type>
<id>119</id>
<name>tmp_62_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>681</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>681</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>562</item>
<item>563</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.35</m_delay>
</item>
<item class_id_reference="9" object_id="_88">
<Value>
<Obj>
<type>0</type>
<id>120</id>
<name>storemerge4_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>681</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>681</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>564</item>
<item>565</item>
<item>566</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.37</m_delay>
</item>
<item class_id_reference="9" object_id="_89">
<Value>
<Obj>
<type>0</type>
<id>121</id>
<name>tmp_EOP_V</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>682</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>682</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.EOP.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>567</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_delay>0.86</m_delay>
</item>
<item class_id_reference="9" object_id="_90">
<Value>
<Obj>
<type>0</type>
<id>122</id>
<name>tmp_7</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>686</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>686</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.7</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>256</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>570</item>
<item>571</item>
<item>572</item>
<item>573</item>
<item>575</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_91">
<Value>
<Obj>
<type>0</type>
<id>123</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>686</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>686</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>576</item>
<item>577</item>
<item>578</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>2.39</m_delay>
</item>
<item class_id_reference="9" object_id="_92">
<Value>
<Obj>
<type>0</type>
<id>124</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>687</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>687</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>579</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.20</m_delay>
</item>
<item class_id_reference="9" object_id="_93">
<Value>
<Obj>
<type>0</type>
<id>126</id>
<name>tmp_9</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>tmp</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>498</item>
<item>499</item>
<item>500</item>
</oprand_edges>
<opcode>nbreadreq</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_94">
<Value>
<Obj>
<type>0</type>
<id>127</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>649</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>649</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>501</item>
<item>502</item>
<item>503</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.20</m_delay>
</item>
<item class_id_reference="9" object_id="_95">
<Value>
<Obj>
<type>0</type>
<id>129</id>
<name>tmp_4</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>tmp.4</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>128</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>504</item>
<item>505</item>
<item>1184</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>2.39</m_delay>
</item>
<item class_id_reference="9" object_id="_96">
<Value>
<Obj>
<type>0</type>
<id>130</id>
<name>outputWord_metadata_s</name>
<fileName>sources/valueStore/../globals.h</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>128</lineNumber>
<contextFuncName>operator=</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first>
<second>read</second>
</first>
<second>127</second>
</item>
<item>
<first>
<first>sources/valueStore/../globals.h</first>
<second>operator=</second>
</first>
<second>128</second>
</item>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>650</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>outputWord.metadata.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>124</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>506</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_97">
<Value>
<Obj>
<type>0</type>
<id>131</id>
<name></name>
<fileName>sources/valueStore/../globals.h</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>128</lineNumber>
<contextFuncName>operator=</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first>
<second>read</second>
</first>
<second>127</second>
</item>
<item>
<first>
<first>sources/valueStore/../globals.h</first>
<second>operator=</second>
</first>
<second>128</second>
</item>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>650</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>507</item>
<item>508</item>
<item>1172</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.92</m_delay>
</item>
<item class_id_reference="9" object_id="_98">
<Value>
<Obj>
<type>0</type>
<id>132</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>651</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>651</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>509</item>
<item>510</item>
<item>511</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_99">
<Value>
<Obj>
<type>0</type>
<id>134</id>
<name>tmp_5</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>652</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>652</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>512</item>
<item>513</item>
<item>514</item>
</oprand_edges>
<opcode>nbreadreq</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_100">
<Value>
<Obj>
<type>0</type>
<id>135</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>652</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>652</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>515</item>
<item>516</item>
<item>517</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.20</m_delay>
</item>
<item class_id_reference="9" object_id="_101">
<Value>
<Obj>
<type>0</type>
<id>137</id>
<name>tmp_V_9</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>653</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>653</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>518</item>
<item>519</item>
<item>1185</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>2.39</m_delay>
</item>
<item class_id_reference="9" object_id="_102">
<Value>
<Obj>
<type>0</type>
<id>138</id>
<name>tmp_66_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>655</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>655</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>520</item>
<item>521</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.35</m_delay>
</item>
<item class_id_reference="9" object_id="_103">
<Value>
<Obj>
<type>0</type>
<id>139</id>
<name>storemerge5_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>655</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>655</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>522</item>
<item>523</item>
<item>524</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.37</m_delay>
</item>
<item class_id_reference="9" object_id="_104">
<Value>
<Obj>
<type>0</type>
<id>140</id>
<name>tmp_EOP_V_1</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>657</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>657</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.EOP.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>525</item>
<item>526</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.86</m_delay>
</item>
<item class_id_reference="9" object_id="_105">
<Value>
<Obj>
<type>0</type>
<id>141</id>
<name>not_tmp_EOP_V_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>657</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>657</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>527</item>
<item>528</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_106">
<Value>
<Obj>
<type>0</type>
<id>142</id>
<name>storemerge6_cast_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>657</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>657</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>529</item>
<item>530</item>
<item>531</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.49</m_delay>
</item>
<item class_id_reference="9" object_id="_107">
<Value>
<Obj>
<type>0</type>
<id>143</id>
<name>tmp_5_2</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>663</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>663</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.5</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>256</bitwidth>
</Value>
<oprand_edges>
<count>6</count>
<item_version>0</item_version>
<item>533</item>
<item>534</item>
<item>535</item>
<item>536</item>
<item>537</item>
<item>538</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_108">
<Value>
<Obj>
<type>0</type>
<id>144</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>663</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>663</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>539</item>
<item>540</item>
<item>541</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>2.39</m_delay>
</item>
<item class_id_reference="9" object_id="_109">
<Value>
<Obj>
<type>0</type>
<id>145</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>664</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>664</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>542</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.20</m_delay>
</item>
<item class_id_reference="9" object_id="_110">
<Value>
<Obj>
<type>0</type>
<id>147</id>
<name>tmp_6</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>670</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>670</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.6</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>256</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>543</item>
<item>545</item>
<item>546</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_111">
<Value>
<Obj>
<type>0</type>
<id>148</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>670</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>670</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>547</item>
<item>548</item>
<item>549</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>2.39</m_delay>
</item>
<item class_id_reference="9" object_id="_112">
<Value>
<Obj>
<type>0</type>
<id>149</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>550</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.20</m_delay>
</item>
<item class_id_reference="9" object_id="_113">
<Value>
<Obj>
<type>0</type>
<id>151</id>
<name>tmp</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>tmp</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>283</item>
<item>284</item>
<item>286</item>
</oprand_edges>
<opcode>nbreadreq</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_114">
<Value>
<Obj>
<type>0</type>
<id>152</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>601</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>601</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>287</item>
<item>288</item>
<item>289</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.85</m_delay>
</item>
<item class_id_reference="9" object_id="_115">
<Value>
<Obj>
<type>0</type>
<id>154</id>
<name>tmp372</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>tmp372</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>128</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>291</item>
<item>292</item>
<item>1186</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>1</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>2.39</m_delay>
</item>
<item class_id_reference="9" object_id="_116">
<Value>
<Obj>
<type>0</type>
<id>155</id>
<name>p_Val2_s</name>
<fileName>sources/valueStore/../globals.h</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>128</lineNumber>
<contextFuncName>operator=</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first>
<second>read</second>
</first>
<second>127</second>
</item>
<item>
<first>
<first>sources/valueStore/../globals.h</first>
<second>operator=</second>
</first>
<second>128</second>
</item>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>602</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Val2__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>124</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>293</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_117">
<Value>
<Obj>
<type>0</type>
<id>156</id>
<name></name>
<fileName>sources/valueStore/../globals.h</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>128</lineNumber>
<contextFuncName>operator=</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first>
<second>read</second>
</first>
<second>127</second>
</item>
<item>
<first>
<first>sources/valueStore/../globals.h</first>
<second>operator=</second>
</first>
<second>128</second>
</item>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>602</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>294</item>
<item>295</item>
<item>1171</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.92</m_delay>
</item>
<item class_id_reference="9" object_id="_118">
<Value>
<Obj>
<type>0</type>
<id>157</id>
<name>tmp_99</name>
<fileName>sources/valueStore/../globals.h</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>128</lineNumber>
<contextFuncName>operator=</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first>
<second>read</second>
</first>
<second>127</second>
</item>
<item>
<first>
<first>sources/valueStore/../globals.h</first>
<second>operator=</second>
</first>
<second>128</second>
</item>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>602</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>297</item>
<item>298</item>
<item>300</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>1</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_119">
<Value>
<Obj>
<type>0</type>
<id>158</id>
<name>tmp_100</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>604</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>604</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>301</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_120">
<Value>
<Obj>
<type>0</type>
<id>159</id>
<name>p_s</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>603</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>603</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>302</item>
<item>304</item>
<item>306</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>1</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.49</m_delay>
</item>
<item class_id_reference="9" object_id="_121">
<Value>
<Obj>
<type>0</type>
<id>160</id>
<name>p_rmKeyLength_load</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>603</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>603</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>307</item>
<item>308</item>
<item>309</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.37</m_delay>
</item>
<item class_id_reference="9" object_id="_122">
<Value>
<Obj>
<type>0</type>
<id>161</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>603</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>603</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>310</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>1</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.85</m_delay>
</item>
<item class_id_reference="9" object_id="_123">
<Value>
<Obj>
<type>0</type>
<id>163</id>
<name>remuxState_flag_2_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>603</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>603</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>6</count>
<item_version>0</item_version>
<item>311</item>
<item>312</item>
<item>313</item>
<item>314</item>
<item>315</item>
<item>316</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_124">
<Value>
<Obj>
<type>0</type>
<id>164</id>
<name>p_Val2_10</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>__Val2__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>124</bitwidth>
</Value>
<oprand_edges>
<count>6</count>
<item_version>0</item_version>
<item>317</item>
<item>318</item>
<item>319</item>
<item>320</item>
<item>321</item>
<item>322</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_125">
<Value>
<Obj>
<type>0</type>
<id>165</id>
<name>rmKeyLength_loc_2_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>611</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>611</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>6</count>
<item_version>0</item_version>
<item>323</item>
<item>324</item>
<item>325</item>
<item>326</item>
<item>327</item>
<item>328</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>1</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.85</m_delay>
</item>
<item class_id_reference="9" object_id="_126">
<Value>
<Obj>
<type>0</type>
<id>166</id>
<name>p_Result_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>610</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>610</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>330</item>
<item>331</item>
<item>333</item>
<item>335</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_127">
<Value>
<Obj>
<type>0</type>
<id>167</id>
<name>tmp_69_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>610</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>610</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>336</item>
<item>338</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.86</m_delay>
</item>
<item class_id_reference="9" object_id="_128">
<Value>
<Obj>
<type>0</type>
<id>168</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>610</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>610</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>339</item>
<item>340</item>
<item>341</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_129">
<Value>
<Obj>
<type>0</type>
<id>170</id>
<name>p_Result_20_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>610</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>610</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>342</item>
<item>343</item>
<item>345</item>
<item>347</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_130">
<Value>
<Obj>
<type>0</type>
<id>171</id>
<name>tmp_102</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>610</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>610</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>348</item>
<item>350</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.86</m_delay>
</item>
<item class_id_reference="9" object_id="_131">
<Value>
<Obj>
<type>0</type>
<id>172</id>
<name>tmp_103</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>610</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>610</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>351</item>
<item>353</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.86</m_delay>
</item>
<item class_id_reference="9" object_id="_132">
<Value>
<Obj>
<type>0</type>
<id>173</id>
<name>tmp_104</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>610</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>610</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>354</item>
<item>355</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_133">
<Value>
<Obj>
<type>0</type>
<id>174</id>
<name>tmp_105</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>610</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>610</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>356</item>
<item>357</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.86</m_delay>
</item>
<item class_id_reference="9" object_id="_134">
<Value>
<Obj>
<type>0</type>
<id>175</id>
<name>tmp_106</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>610</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>610</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>358</item>
<item>359</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.48</m_delay>
</item>
<item class_id_reference="9" object_id="_135">
<Value>
<Obj>
<type>0</type>
<id>176</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>610</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>610</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>360</item>
<item>361</item>
<item>362</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_136">
<Value>
<Obj>
<type>0</type>
<id>178</id>
<name>tmp_72_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>629</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>629</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>410</item>
<item>411</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.86</m_delay>
</item>
<item class_id_reference="9" object_id="_137">
<Value>
<Obj>
<type>0</type>
<id>179</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>629</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>629</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>412</item>
<item>413</item>
<item>414</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.20</m_delay>
</item>
<item class_id_reference="9" object_id="_138">
<Value>
<Obj>
<type>0</type>
<id>181</id>
<name>tmp_12</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>629</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>629</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>415</item>
<item>416</item>
<item>417</item>
</oprand_edges>
<opcode>nbreadreq</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_139">
<Value>
<Obj>
<type>0</type>
<id>182</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>629</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>629</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>418</item>
<item>419</item>
<item>420</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.20</m_delay>
</item>
<item class_id_reference="9" object_id="_140">
<Value>
<Obj>
<type>0</type>
<id>184</id>
<name>tmp_78_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>630</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>630</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>421</item>
<item>422</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.86</m_delay>
</item>
<item class_id_reference="9" object_id="_141">
<Value>
<Obj>
<type>0</type>
<id>185</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>630</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>630</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>423</item>
<item>424</item>
<item>425</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.85</m_delay>
</item>
<item class_id_reference="9" object_id="_142">
<Value>
<Obj>
<type>0</type>
<id>187</id>
<name>tmp_V_7</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>631</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>631</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>426</item>
<item>427</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>2.39</m_delay>
</item>
<item class_id_reference="9" object_id="_143">
<Value>
<Obj>
<type>0</type>
<id>188</id>
<name>tmp_109</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>633</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>633</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>428</item>
<item>429</item>
<item>430</item>
<item>431</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_144">
<Value>
<Obj>
<type>0</type>
<id>189</id>
<name>icmp6</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>633</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>633</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>432</item>
<item>433</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.87</m_delay>
</item>
<item class_id_reference="9" object_id="_145">
<Value>
<Obj>
<type>0</type>
<id>190</id>
<name>tmp_87_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>633</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>633</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>434</item>
<item>435</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>1</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.35</m_delay>
</item>
<item class_id_reference="9" object_id="_146">
<Value>
<Obj>
<type>0</type>
<id>191</id>
<name>storemerge3_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>633</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>633</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>436</item>
<item>437</item>
<item>438</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>1</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.37</m_delay>
</item>
<item class_id_reference="9" object_id="_147">
<Value>
<Obj>
<type>0</type>
<id>192</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>634</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>634</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>439</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>1</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.85</m_delay>
</item>
<item class_id_reference="9" object_id="_148">
<Value>
<Obj>
<type>0</type>
<id>194</id>
<name>rmKeyLength_flag_5_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>603</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>603</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>440</item>
<item>441</item>
<item>442</item>
<item>443</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>1</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.85</m_delay>
</item>
<item class_id_reference="9" object_id="_149">
<Value>
<Obj>
<type>0</type>
<id>195</id>
<name>rmKeyLength_new_5_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>611</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>611</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>444</item>
<item>445</item>
<item>446</item>
<item>447</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_150">
<Value>
<Obj>
<type>0</type>
<id>196</id>
<name>tmp_keyValid_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>tmp.keyValid.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>448</item>
<item>449</item>
<item>450</item>
<item>451</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_151">
<Value>
<Obj>
<type>0</type>
<id>197</id>
<name>tmp_key_V_3</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>outputWord.key.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>453</item>
<item>454</item>
<item>455</item>
<item>456</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_152">
<Value>
<Obj>
<type>0</type>
<id>198</id>
<name>p_Result_21_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>635</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>635</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>458</item>
<item>459</item>
<item>461</item>
<item>463</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_153">
<Value>
<Obj>
<type>0</type>
<id>199</id>
<name>tmp_110</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>636</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>636</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>465</item>
<item>466</item>
<item>468</item>
<item>469</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_154">
<Value>
<Obj>
<type>0</type>
<id>200</id>
<name>icmp9</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>636</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>636</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>470</item>
<item>472</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.94</m_delay>
</item>
<item class_id_reference="9" object_id="_155">
<Value>
<Obj>
<type>0</type>
<id>201</id>
<name>tmp_93_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>636</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>636</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>474</item>
<item>475</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.32</m_delay>
</item>
<item class_id_reference="9" object_id="_156">
<Value>
<Obj>
<type>0</type>
<id>202</id>
<name>storemerge10_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>636</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>636</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>476</item>
<item>477</item>
<item>479</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.62</m_delay>
</item>
<item class_id_reference="9" object_id="_157">
<Value>
<Obj>
<type>0</type>
<id>203</id>
<name>storemerge10_cast_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>636</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>636</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>480</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_158">
<Value>
<Obj>
<type>0</type>
<id>204</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>636</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>636</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>481</item>
<item>482</item>
<item>1176</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.92</m_delay>
</item>
<item class_id_reference="9" object_id="_159">
<Value>
<Obj>
<type>0</type>
<id>205</id>
<name>tmp_V_8</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>637</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>637</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>483</item>
<item>484</item>
<item>1187</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>2.39</m_delay>
</item>
<item class_id_reference="9" object_id="_160">
<Value>
<Obj>
<type>0</type>
<id>206</id>
<name>tmp_3_2</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>642</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>642</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.3</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>256</bitwidth>
</Value>
<oprand_edges>
<count>7</count>
<item_version>0</item_version>
<item>486</item>
<item>487</item>
<item>488</item>
<item>490</item>
<item>491</item>
<item>492</item>
<item>493</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_161">
<Value>
<Obj>
<type>0</type>
<id>207</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>642</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>642</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>494</item>
<item>495</item>
<item>496</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>2.39</m_delay>
</item>
<item class_id_reference="9" object_id="_162">
<Value>
<Obj>
<type>0</type>
<id>208</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>643</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>643</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>497</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>1</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.20</m_delay>
</item>
<item class_id_reference="9" object_id="_163">
<Value>
<Obj>
<type>0</type>
<id>210</id>
<name>tmp_73_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>611</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>611</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>363</item>
<item>364</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.86</m_delay>
</item>
<item class_id_reference="9" object_id="_164">
<Value>
<Obj>
<type>0</type>
<id>211</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>611</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>611</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>365</item>
<item>366</item>
<item>367</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_165">
<Value>
<Obj>
<type>0</type>
<id>213</id>
<name>tmp_11</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>612</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>612</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>369</item>
<item>370</item>
<item>371</item>
</oprand_edges>
<opcode>nbreadreq</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_166">
<Value>
<Obj>
<type>0</type>
<id>214</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>612</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>612</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>372</item>
<item>373</item>
<item>374</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.20</m_delay>
</item>
<item class_id_reference="9" object_id="_167">
<Value>
<Obj>
<type>0</type>
<id>216</id>
<name>tmp_V</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>613</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>613</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>376</item>
<item>377</item>
<item>1188</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>2.39</m_delay>
</item>
<item class_id_reference="9" object_id="_168">
<Value>
<Obj>
<type>0</type>
<id>217</id>
<name>tmp_107</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>615</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>615</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>378</item>
<item>379</item>
<item>380</item>
<item>381</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_169">
<Value>
<Obj>
<type>0</type>
<id>218</id>
<name>icmp3</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>615</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>615</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>382</item>
<item>383</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.87</m_delay>
</item>
<item class_id_reference="9" object_id="_170">
<Value>
<Obj>
<type>0</type>
<id>219</id>
<name>tmp_80_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>615</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>615</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>384</item>
<item>386</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.35</m_delay>
</item>
<item class_id_reference="9" object_id="_171">
<Value>
<Obj>
<type>0</type>
<id>220</id>
<name>storemerge2_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>615</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>615</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>387</item>
<item>388</item>
<item>389</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.37</m_delay>
</item>
<item class_id_reference="9" object_id="_172">
<Value>
<Obj>
<type>0</type>
<id>221</id>
<name>tmp_1_5</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>619</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>619</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.1</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>256</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>391</item>
<item>392</item>
<item>394</item>
<item>395</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_173">
<Value>
<Obj>
<type>0</type>
<id>222</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>619</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>619</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>397</item>
<item>398</item>
<item>399</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>2.39</m_delay>
</item>
<item class_id_reference="9" object_id="_174">
<Value>
<Obj>
<type>0</type>
<id>223</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>620</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>620</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>400</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.20</m_delay>
</item>
<item class_id_reference="9" object_id="_175">
<Value>
<Obj>
<type>0</type>
<id>225</id>
<name>tmp_2_2</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>626</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>626</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.2</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>256</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>402</item>
<item>404</item>
<item>405</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_176">
<Value>
<Obj>
<type>0</type>
<id>226</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>626</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>626</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>406</item>
<item>407</item>
<item>408</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>2.39</m_delay>
</item>
<item class_id_reference="9" object_id="_177">
<Value>
<Obj>
<type>0</type>
<id>227</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>409</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.20</m_delay>
</item>
<item class_id_reference="9" object_id="_178">
<Value>
<Obj>
<type>0</type>
<id>229</id>
<name>remuxState_flag_14_i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>tmp.EOP.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>42</count>
<item_version>0</item_version>
<item>784</item>
<item>785</item>
<item>786</item>
<item>787</item>
<item>788</item>
<item>789</item>
<item>790</item>
<item>791</item>
<item>792</item>
<item>793</item>
<item>794</item>
<item>795</item>
<item>796</item>
<item>797</item>
<item>798</item>
<item>799</item>
<item>800</item>
<item>801</item>
<item>802</item>
<item>803</item>
<item>804</item>
<item>805</item>
<item>806</item>
<item>807</item>
<item>808</item>
<item>809</item>
<item>810</item>
<item>811</item>
<item>812</item>
<item>813</item>
<item>814</item>
<item>815</item>
<item>816</item>
<item>817</item>
<item>818</item>
<item>819</item>
<item>820</item>
<item>821</item>
<item>822</item>
<item>823</item>
<item>824</item>
<item>825</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_179">
<Value>
<Obj>
<type>0</type>
<id>230</id>
<name>remuxState_new_1_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>657</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>657</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>42</count>
<item_version>0</item_version>
<item>827</item>
<item>828</item>
<item>829</item>
<item>830</item>
<item>831</item>
<item>832</item>
<item>833</item>
<item>834</item>
<item>835</item>
<item>836</item>
<item>837</item>
<item>838</item>
<item>839</item>
<item>840</item>
<item>841</item>
<item>842</item>
<item>843</item>
<item>844</item>
<item>845</item>
<item>846</item>
<item>847</item>
<item>848</item>
<item>849</item>
<item>850</item>
<item>851</item>
<item>852</item>
<item>853</item>
<item>854</item>
<item>855</item>
<item>856</item>
<item>857</item>
<item>858</item>
<item>859</item>
<item>860</item>
<item>861</item>
<item>862</item>
<item>863</item>
<item>864</item>
<item>865</item>
<item>866</item>
<item>867</item>
<item>868</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_180">
<Value>
<Obj>
<type>0</type>
<id>231</id>
<name>rmKeyLength_flag_15_s</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>tmp.keyValid.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>42</count>
<item_version>0</item_version>
<item>869</item>
<item>870</item>
<item>871</item>
<item>872</item>
<item>873</item>
<item>874</item>
<item>875</item>
<item>876</item>
<item>877</item>
<item>878</item>
<item>879</item>
<item>880</item>
<item>881</item>
<item>882</item>
<item>883</item>
<item>884</item>
<item>885</item>
<item>886</item>
<item>887</item>
<item>888</item>
<item>889</item>
<item>890</item>
<item>891</item>
<item>892</item>
<item>893</item>
<item>894</item>
<item>895</item>
<item>896</item>
<item>897</item>
<item>898</item>
<item>899</item>
<item>900</item>
<item>901</item>
<item>902</item>
<item>903</item>
<item>904</item>
<item>905</item>
<item>906</item>
<item>907</item>
<item>908</item>
<item>909</item>
<item>910</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_181">
<Value>
<Obj>
<type>0</type>
<id>232</id>
<name>rmKeyLength_new_12_i</name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>615</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>615</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>42</count>
<item_version>0</item_version>
<item>912</item>
<item>913</item>
<item>914</item>
<item>915</item>
<item>916</item>
<item>917</item>
<item>918</item>
<item>919</item>
<item>920</item>
<item>921</item>
<item>922</item>
<item>923</item>
<item>924</item>
<item>925</item>
<item>926</item>
<item>927</item>
<item>928</item>
<item>929</item>
<item>930</item>
<item>931</item>
<item>932</item>
<item>933</item>
<item>934</item>
<item>935</item>
<item>936</item>
<item>937</item>
<item>938</item>
<item>939</item>
<item>940</item>
<item>941</item>
<item>942</item>
<item>943</item>
<item>944</item>
<item>945</item>
<item>946</item>
<item>947</item>
<item>948</item>
<item>949</item>
<item>950</item>
<item>951</item>
<item>952</item>
<item>953</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_182">
<Value>
<Obj>
<type>0</type>
<id>233</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>603</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>603</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>954</item>
<item>955</item>
<item>956</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_183">
<Value>
<Obj>
<type>0</type>
<id>235</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>604</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>604</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>960</item>
<item>961</item>
<item>1170</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_184">
<Value>
<Obj>
<type>0</type>
<id>236</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>962</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_185">
<Value>
<Obj>
<type>0</type>
<id>238</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>603</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>603</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>963</item>
<item>964</item>
<item>965</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_186">
<Value>
<Obj>
<type>0</type>
<id>240</id>
<name></name>
<fileName>sources/valueStore/valueStore.cpp</fileName>
<fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory>
<lineNumber>605</lineNumber>
<contextFuncName>remux</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>sources/valueStore/valueStore.cpp</first>
<second>remux</second>
</first>
<second>605</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>957</item>
<item>958</item>
<item>1173</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_187">
<Value>
<Obj>
<type>0</type>
<id>241</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>959</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_188">
<Value>
<Obj>
<type>0</type>
<id>243</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>0</count>
<item_version>0</item_version>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>40</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_189">
<Value>
<Obj>
<type>2</type>
<id>250</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_190">
<Value>
<Obj>
<type>2</type>
<id>255</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>3</content>
</item>
<item class_id_reference="16" object_id="_191">
<Value>
<Obj>
<type>2</type>
<id>257</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>7</content>
</item>
<item class_id_reference="16" object_id="_192">
<Value>
<Obj>
<type>2</type>
<id>260</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_193">
<Value>
<Obj>
<type>2</type>
<id>264</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_194">
<Value>
<Obj>
<type>2</type>
<id>267</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_195">
<Value>
<Obj>
<type>2</type>
<id>270</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>2</content>
</item>
<item class_id_reference="16" object_id="_196">
<Value>
<Obj>
<type>2</type>
<id>273</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>7</content>
</item>
<item class_id_reference="16" object_id="_197">
<Value>
<Obj>
<type>2</type>
<id>276</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>5</content>
</item>
<item class_id_reference="16" object_id="_198">
<Value>
<Obj>
<type>2</type>
<id>279</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>4</content>
</item>
<item class_id_reference="16" object_id="_199">
<Value>
<Obj>
<type>2</type>
<id>285</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_200">
<Value>
<Obj>
<type>2</type>
<id>299</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>124</content>
</item>
<item class_id_reference="16" object_id="_201">
<Value>
<Obj>
<type>2</type>
<id>303</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_202">
<Value>
<Obj>
<type>2</type>
<id>305</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_203">
<Value>
<Obj>
<type>2</type>
<id>332</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>112</content>
</item>
<item class_id_reference="16" object_id="_204">
<Value>
<Obj>
<type>2</type>
<id>334</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>119</content>
</item>
<item class_id_reference="16" object_id="_205">
<Value>
<Obj>
<type>2</type>
<id>337</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_206">
<Value>
<Obj>
<type>2</type>
<id>344</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>104</content>
</item>
<item class_id_reference="16" object_id="_207">
<Value>
<Obj>
<type>2</type>
<id>346</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>111</content>
</item>
<item class_id_reference="16" object_id="_208">
<Value>
<Obj>
<type>2</type>
<id>349</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>0</const_type>
<content>8</content>
</item>
<item class_id_reference="16" object_id="_209">
<Value>
<Obj>
<type>2</type>
<id>352</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>0</const_type>
<content>4</content>
</item>
<item class_id_reference="16" object_id="_210">
<Value>
<Obj>
<type>2</type>
<id>385</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>0</const_type>
<content>248</content>
</item>
<item class_id_reference="16" object_id="_211">
<Value>
<Obj>
<type>2</type>
<id>393</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>68</bitwidth>
</Value>
<const_type>0</const_type>
<content>3</content>
</item>
<item class_id_reference="16" object_id="_212">
<Value>
<Obj>
<type>2</type>
<id>403</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>132</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_213">
<Value>
<Obj>
<type>2</type>
<id>452</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_214">
<Value>
<Obj>
<type>2</type>
<id>460</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>8</content>
</item>
<item class_id_reference="16" object_id="_215">
<Value>
<Obj>
<type>2</type>
<id>462</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>20</content>
</item>
<item class_id_reference="16" object_id="_216">
<Value>
<Obj>
<type>2</type>
<id>467</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>11</content>
</item>
<item class_id_reference="16" object_id="_217">
<Value>
<Obj>
<type>2</type>
<id>471</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_218">
<Value>
<Obj>
<type>2</type>
<id>473</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<const_type>0</const_type>
<content>8184</content>
</item>
<item class_id_reference="16" object_id="_219">
<Value>
<Obj>
<type>2</type>
<id>478</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_220">
<Value>
<Obj>
<type>2</type>
<id>489</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_221">
<Value>
<Obj>
<type>2</type>
<id>544</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>132</bitwidth>
</Value>
<const_type>0</const_type>
<content>8</content>
</item>
<item class_id_reference="16" object_id="_222">
<Value>
<Obj>
<type>2</type>
<id>574</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>127</bitwidth>
</Value>
<const_type>0</const_type>
<content>42535295865117307932921825928971026432</content>
</item>
<item class_id_reference="16" object_id="_223">
<Value>
<Obj>
<type>2</type>
<id>596</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_224">
<Value>
<Obj>
<type>2</type>
<id>644</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>15</content>
</item>
<item class_id_reference="16" object_id="_225">
<Value>
<Obj>
<type>2</type>
<id>649</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<const_type>0</const_type>
<content>65528</content>
</item>
<item class_id_reference="16" object_id="_226">
<Value>
<Obj>
<type>2</type>
<id>778</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>125</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_227">
<Value>
<Obj>
<type>2</type>
<id>826</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>4</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_228">
<Value>
<Obj>
<type>2</type>
<id>911</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>4</const_type>
<content>0</content>
</item>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>46</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_229">
<Obj>
<type>3</type>
<id>23</id>
<name>entry</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>8</count>
<item_version>0</item_version>
<item>15</item>
<item>16</item>
<item>17</item>
<item>18</item>
<item>19</item>
<item>20</item>
<item>21</item>
<item>22</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_230">
<Obj>
<type>3</type>
<id>25</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_231">
<Obj>
<type>3</type>
<id>28</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>26</item>
<item>27</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_232">
<Obj>
<type>3</type>
<id>31</id>
<name>._crit_edge36.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>29</item>
<item>30</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_233">
<Obj>
<type>3</type>
<id>34</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>32</item>
<item>33</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_234">
<Obj>
<type>3</type>
<id>36</id>
<name>._crit_edge40.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_235">
<Obj>
<type>3</type>
<id>41</id>
<name>._crit_edge45.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>37</item>
<item>38</item>
<item>39</item>
<item>40</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_236">
<Obj>
<type>3</type>
<id>46</id>
<name>._crit_edge44.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>42</item>
<item>43</item>
<item>44</item>
<item>45</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_237">
<Obj>
<type>3</type>
<id>54</id>
<name>._crit_edge47.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>7</count>
<item_version>0</item_version>
<item>47</item>
<item>48</item>
<item>49</item>
<item>50</item>
<item>51</item>
<item>52</item>
<item>53</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_238">
<Obj>
<type>3</type>
<id>64</id>
<name>._crit_edge46.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>9</count>
<item_version>0</item_version>
<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>
</node_objs>
</item>
<item class_id_reference="18" object_id="_239">
<Obj>
<type>3</type>
<id>67</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>65</item>
<item>66</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_240">
<Obj>
<type>3</type>
<id>69</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_241">
<Obj>
<type>3</type>
<id>72</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>70</item>
<item>71</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_242">
<Obj>
<type>3</type>
<id>75</id>
<name>._crit_edge24.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>73</item>
<item>74</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_243">
<Obj>
<type>3</type>
<id>78</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>76</item>
<item>77</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_244">
<Obj>
<type>3</type>
<id>83</id>
<name>._crit_edge28.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>79</item>
<item>80</item>
<item>81</item>
<item>82</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_245">
<Obj>
<type>3</type>
<id>88</id>
<name>._crit_edge33.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>84</item>
<item>85</item>
<item>86</item>
<item>87</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_246">
<Obj>
<type>3</type>
<id>93</id>
<name>._crit_edge32.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>89</item>
<item>90</item>
<item>91</item>
<item>92</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_247">
<Obj>
<type>3</type>
<id>101</id>
<name>._crit_edge35.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>7</count>
<item_version>0</item_version>
<item>94</item>
<item>95</item>
<item>96</item>
<item>97</item>
<item>98</item>
<item>99</item>
<item>100</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_248">
<Obj>
<type>3</type>
<id>112</id>
<name>._crit_edge34.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>10</count>
<item_version>0</item_version>
<item>102</item>
<item>103</item>
<item>104</item>
<item>105</item>
<item>106</item>
<item>107</item>
<item>108</item>
<item>109</item>
<item>110</item>
<item>111</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_249">
<Obj>
<type>3</type>
<id>114</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>113</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_250">
<Obj>
<type>3</type>
<id>117</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>115</item>
<item>116</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_251">
<Obj>
<type>3</type>
<id>125</id>
<name>._crit_edge21.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>7</count>
<item_version>0</item_version>
<item>118</item>
<item>119</item>
<item>120</item>
<item>121</item>
<item>122</item>
<item>123</item>
<item>124</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_252">
<Obj>
<type>3</type>
<id>128</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>126</item>
<item>127</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_253">
<Obj>
<type>3</type>
<id>133</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>129</item>
<item>130</item>
<item>131</item>
<item>132</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_254">
<Obj>
<type>3</type>
<id>136</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>134</item>
<item>135</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_255">
<Obj>
<type>3</type>
<id>146</id>
<name>._crit_edge18.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>9</count>
<item_version>0</item_version>
<item>137</item>
<item>138</item>
<item>139</item>
<item>140</item>
<item>141</item>
<item>142</item>
<item>143</item>
<item>144</item>
<item>145</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_256">
<Obj>
<type>3</type>
<id>150</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>3</count>
<item_version>0</item_version>
<item>147</item>
<item>148</item>
<item>149</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_257">
<Obj>
<type>3</type>
<id>153</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>151</item>
<item>152</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_258">
<Obj>
<type>3</type>
<id>162</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>8</count>
<item_version>0</item_version>
<item>154</item>
<item>155</item>
<item>156</item>
<item>157</item>
<item>158</item>
<item>159</item>
<item>160</item>
<item>161</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_259">
<Obj>
<type>3</type>
<id>169</id>
<name>._crit_edge2.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>6</count>
<item_version>0</item_version>
<item>163</item>
<item>164</item>
<item>165</item>
<item>166</item>
<item>167</item>
<item>168</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_260">
<Obj>
<type>3</type>
<id>177</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>7</count>
<item_version>0</item_version>
<item>170</item>
<item>171</item>
<item>172</item>
<item>173</item>
<item>174</item>
<item>175</item>
<item>176</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_261">
<Obj>
<type>3</type>
<id>180</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>178</item>
<item>179</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_262">
<Obj>
<type>3</type>
<id>183</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>181</item>
<item>182</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_263">
<Obj>
<type>3</type>
<id>186</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>184</item>
<item>185</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_264">
<Obj>
<type>3</type>
<id>193</id>
<name>._crit_edge14.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>6</count>
<item_version>0</item_version>
<item>187</item>
<item>188</item>
<item>189</item>
<item>190</item>
<item>191</item>
<item>192</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_265">
<Obj>
<type>3</type>
<id>209</id>
<name>._crit_edge13.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>15</count>
<item_version>0</item_version>
<item>194</item>
<item>195</item>
<item>196</item>
<item>197</item>
<item>198</item>
<item>199</item>
<item>200</item>
<item>201</item>
<item>202</item>
<item>203</item>
<item>204</item>
<item>205</item>
<item>206</item>
<item>207</item>
<item>208</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_266">
<Obj>
<type>3</type>
<id>212</id>
<name>._crit_edge5.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>210</item>
<item>211</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_267">
<Obj>
<type>3</type>
<id>215</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>213</item>
<item>214</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_268">
<Obj>
<type>3</type>
<id>224</id>
<name>._crit_edge10.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>8</count>
<item_version>0</item_version>
<item>216</item>
<item>217</item>
<item>218</item>
<item>219</item>
<item>220</item>
<item>221</item>
<item>222</item>
<item>223</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_269">
<Obj>
<type>3</type>
<id>228</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>3</count>
<item_version>0</item_version>
<item>225</item>
<item>226</item>
<item>227</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_270">
<Obj>
<type>3</type>
<id>234</id>
<name>._crit_edge1.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>5</count>
<item_version>0</item_version>
<item>229</item>
<item>230</item>
<item>231</item>
<item>232</item>
<item>233</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_271">
<Obj>
<type>3</type>
<id>237</id>
<name>mergeST537.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>235</item>
<item>236</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_272">
<Obj>
<type>3</type>
<id>239</id>
<name>._crit_edge1.new538.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>238</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_273">
<Obj>
<type>3</type>
<id>242</id>
<name>mergeST.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>240</item>
<item>241</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_274">
<Obj>
<type>3</type>
<id>244</id>
<name>remux.exit</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>243</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>712</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_275">
<id>245</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>15</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_276">
<id>246</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>16</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_277">
<id>247</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_278">
<id>248</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>18</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_279">
<id>249</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>19</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_280">
<id>251</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>19</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_281">
<id>254</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>20</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_282">
<id>256</id>
<edge_type>1</edge_type>
<source_obj>255</source_obj>
<sink_obj>20</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_283">
<id>258</id>
<edge_type>1</edge_type>
<source_obj>257</source_obj>
<sink_obj>20</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_284">
<id>259</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_285">
<id>261</id>
<edge_type>1</edge_type>
<source_obj>260</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_286">
<id>262</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_287">
<id>263</id>
<edge_type>2</edge_type>
<source_obj>234</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_288">
<id>265</id>
<edge_type>1</edge_type>
<source_obj>264</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_289">
<id>266</id>
<edge_type>2</edge_type>
<source_obj>153</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_290">
<id>268</id>
<edge_type>1</edge_type>
<source_obj>267</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_291">
<id>269</id>
<edge_type>2</edge_type>
<source_obj>169</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_292">
<id>271</id>
<edge_type>1</edge_type>
<source_obj>270</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_293">
<id>272</id>
<edge_type>2</edge_type>
<source_obj>128</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_294">
<id>274</id>
<edge_type>1</edge_type>
<source_obj>273</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_295">
<id>275</id>
<edge_type>2</edge_type>
<source_obj>114</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_296">
<id>277</id>
<edge_type>1</edge_type>
<source_obj>276</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_297">
<id>278</id>
<edge_type>2</edge_type>
<source_obj>67</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_298">
<id>280</id>
<edge_type>1</edge_type>
<source_obj>279</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_299">
<id>281</id>
<edge_type>2</edge_type>
<source_obj>25</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_300">
<id>284</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_301">
<id>286</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_302">
<id>287</id>
<edge_type>1</edge_type>
<source_obj>151</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_303">
<id>288</id>
<edge_type>2</edge_type>
<source_obj>169</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_304">
<id>289</id>
<edge_type>2</edge_type>
<source_obj>162</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_305">
<id>292</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>154</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_306">
<id>293</id>
<edge_type>1</edge_type>
<source_obj>154</source_obj>
<sink_obj>155</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_307">
<id>294</id>
<edge_type>1</edge_type>
<source_obj>155</source_obj>
<sink_obj>156</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_308">
<id>295</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>156</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_309">
<id>298</id>
<edge_type>1</edge_type>
<source_obj>154</source_obj>
<sink_obj>157</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_310">
<id>300</id>
<edge_type>1</edge_type>
<source_obj>299</source_obj>
<sink_obj>157</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_311">
<id>301</id>
<edge_type>1</edge_type>
<source_obj>154</source_obj>
<sink_obj>158</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_312">
<id>302</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="_313">
<id>304</id>
<edge_type>1</edge_type>
<source_obj>303</source_obj>
<sink_obj>159</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_314">
<id>306</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>159</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_315">
<id>307</id>
<edge_type>1</edge_type>
<source_obj>157</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_316">
<id>308</id>
<edge_type>1</edge_type>
<source_obj>158</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_317">
<id>309</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_318">
<id>310</id>
<edge_type>2</edge_type>
<source_obj>169</source_obj>
<sink_obj>161</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_319">
<id>311</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>163</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_320">
<id>312</id>
<edge_type>2</edge_type>
<source_obj>23</source_obj>
<sink_obj>163</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_321">
<id>313</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>163</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_322">
<id>314</id>
<edge_type>2</edge_type>
<source_obj>153</source_obj>
<sink_obj>163</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_323">
<id>315</id>
<edge_type>1</edge_type>
<source_obj>159</source_obj>
<sink_obj>163</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_324">
<id>316</id>
<edge_type>2</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="_325">
<id>317</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>164</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_326">
<id>318</id>
<edge_type>2</edge_type>
<source_obj>23</source_obj>
<sink_obj>164</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_327">
<id>319</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>164</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_328">
<id>320</id>
<edge_type>2</edge_type>
<source_obj>153</source_obj>
<sink_obj>164</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_329">
<id>321</id>
<edge_type>1</edge_type>
<source_obj>155</source_obj>
<sink_obj>164</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_330">
<id>322</id>
<edge_type>2</edge_type>
<source_obj>162</source_obj>
<sink_obj>164</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_331">
<id>323</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>165</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_332">
<id>324</id>
<edge_type>2</edge_type>
<source_obj>23</source_obj>
<sink_obj>165</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_333">
<id>325</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>165</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_334">
<id>326</id>
<edge_type>2</edge_type>
<source_obj>153</source_obj>
<sink_obj>165</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_335">
<id>327</id>
<edge_type>1</edge_type>
<source_obj>160</source_obj>
<sink_obj>165</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_336">
<id>328</id>
<edge_type>2</edge_type>
<source_obj>162</source_obj>
<sink_obj>165</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_337">
<id>331</id>
<edge_type>1</edge_type>
<source_obj>164</source_obj>
<sink_obj>166</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_338">
<id>333</id>
<edge_type>1</edge_type>
<source_obj>332</source_obj>
<sink_obj>166</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_339">
<id>335</id>
<edge_type>1</edge_type>
<source_obj>334</source_obj>
<sink_obj>166</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_340">
<id>336</id>
<edge_type>1</edge_type>
<source_obj>166</source_obj>
<sink_obj>167</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_341">
<id>338</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>167</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_342">
<id>339</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="_343">
<id>340</id>
<edge_type>2</edge_type>
<source_obj>177</source_obj>
<sink_obj>168</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_344">
<id>341</id>
<edge_type>2</edge_type>
<source_obj>212</source_obj>
<sink_obj>168</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_345">
<id>343</id>
<edge_type>1</edge_type>
<source_obj>164</source_obj>
<sink_obj>170</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_346">
<id>345</id>
<edge_type>1</edge_type>
<source_obj>344</source_obj>
<sink_obj>170</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_347">
<id>347</id>
<edge_type>1</edge_type>
<source_obj>346</source_obj>
<sink_obj>170</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_348">
<id>348</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>171</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>349</source_obj>
<sink_obj>171</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>170</source_obj>
<sink_obj>172</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_351">
<id>353</id>
<edge_type>1</edge_type>
<source_obj>352</source_obj>
<sink_obj>172</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_352">
<id>354</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="_353">
<id>355</id>
<edge_type>1</edge_type>
<source_obj>171</source_obj>
<sink_obj>173</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_354">
<id>356</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>174</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_355">
<id>357</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>174</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_356">
<id>358</id>
<edge_type>1</edge_type>
<source_obj>174</source_obj>
<sink_obj>175</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_357">
<id>359</id>
<edge_type>1</edge_type>
<source_obj>173</source_obj>
<sink_obj>175</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_358">
<id>360</id>
<edge_type>1</edge_type>
<source_obj>175</source_obj>
<sink_obj>176</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_359">
<id>361</id>
<edge_type>2</edge_type>
<source_obj>180</source_obj>
<sink_obj>176</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_360">
<id>362</id>
<edge_type>2</edge_type>
<source_obj>212</source_obj>
<sink_obj>176</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_361">
<id>363</id>
<edge_type>1</edge_type>
<source_obj>165</source_obj>
<sink_obj>210</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_362">
<id>364</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>210</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_363">
<id>365</id>
<edge_type>1</edge_type>
<source_obj>210</source_obj>
<sink_obj>211</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_364">
<id>366</id>
<edge_type>2</edge_type>
<source_obj>215</source_obj>
<sink_obj>211</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_365">
<id>367</id>
<edge_type>2</edge_type>
<source_obj>228</source_obj>
<sink_obj>211</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_366">
<id>370</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>213</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_367">
<id>371</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>213</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_368">
<id>372</id>
<edge_type>1</edge_type>
<source_obj>213</source_obj>
<sink_obj>214</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_369">
<id>373</id>
<edge_type>2</edge_type>
<source_obj>234</source_obj>
<sink_obj>214</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_370">
<id>374</id>
<edge_type>2</edge_type>
<source_obj>224</source_obj>
<sink_obj>214</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_371">
<id>377</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>216</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_372">
<id>379</id>
<edge_type>1</edge_type>
<source_obj>165</source_obj>
<sink_obj>217</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_373">
<id>380</id>
<edge_type>1</edge_type>
<source_obj>255</source_obj>
<sink_obj>217</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_374">
<id>381</id>
<edge_type>1</edge_type>
<source_obj>257</source_obj>
<sink_obj>217</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_375">
<id>382</id>
<edge_type>1</edge_type>
<source_obj>217</source_obj>
<sink_obj>218</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_376">
<id>383</id>
<edge_type>1</edge_type>
<source_obj>260</source_obj>
<sink_obj>218</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_377">
<id>384</id>
<edge_type>1</edge_type>
<source_obj>165</source_obj>
<sink_obj>219</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_378">
<id>386</id>
<edge_type>1</edge_type>
<source_obj>385</source_obj>
<sink_obj>219</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_379">
<id>387</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>220</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_380">
<id>388</id>
<edge_type>1</edge_type>
<source_obj>219</source_obj>
<sink_obj>220</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_381">
<id>389</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>220</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_382">
<id>392</id>
<edge_type>1</edge_type>
<source_obj>216</source_obj>
<sink_obj>221</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_383">
<id>394</id>
<edge_type>1</edge_type>
<source_obj>393</source_obj>
<sink_obj>221</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_384">
<id>395</id>
<edge_type>1</edge_type>
<source_obj>164</source_obj>
<sink_obj>221</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_385">
<id>398</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>222</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_386">
<id>399</id>
<edge_type>1</edge_type>
<source_obj>221</source_obj>
<sink_obj>222</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_387">
<id>400</id>
<edge_type>2</edge_type>
<source_obj>234</source_obj>
<sink_obj>223</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_388">
<id>404</id>
<edge_type>1</edge_type>
<source_obj>403</source_obj>
<sink_obj>225</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_389">
<id>405</id>
<edge_type>1</edge_type>
<source_obj>164</source_obj>
<sink_obj>225</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_390">
<id>407</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>226</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_391">
<id>408</id>
<edge_type>1</edge_type>
<source_obj>225</source_obj>
<sink_obj>226</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_392">
<id>409</id>
<edge_type>2</edge_type>
<source_obj>234</source_obj>
<sink_obj>227</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_393">
<id>410</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>178</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_394">
<id>411</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>178</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_395">
<id>412</id>
<edge_type>1</edge_type>
<source_obj>178</source_obj>
<sink_obj>179</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_396">
<id>413</id>
<edge_type>2</edge_type>
<source_obj>234</source_obj>
<sink_obj>179</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_397">
<id>414</id>
<edge_type>2</edge_type>
<source_obj>183</source_obj>
<sink_obj>179</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_398">
<id>416</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>181</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_399">
<id>417</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>181</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_400">
<id>418</id>
<edge_type>1</edge_type>
<source_obj>181</source_obj>
<sink_obj>182</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_401">
<id>419</id>
<edge_type>2</edge_type>
<source_obj>234</source_obj>
<sink_obj>182</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_402">
<id>420</id>
<edge_type>2</edge_type>
<source_obj>186</source_obj>
<sink_obj>182</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_403">
<id>421</id>
<edge_type>1</edge_type>
<source_obj>165</source_obj>
<sink_obj>184</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_404">
<id>422</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>184</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_405">
<id>423</id>
<edge_type>1</edge_type>
<source_obj>184</source_obj>
<sink_obj>185</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_406">
<id>424</id>
<edge_type>2</edge_type>
<source_obj>193</source_obj>
<sink_obj>185</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_407">
<id>425</id>
<edge_type>2</edge_type>
<source_obj>209</source_obj>
<sink_obj>185</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_408">
<id>427</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>187</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_409">
<id>429</id>
<edge_type>1</edge_type>
<source_obj>165</source_obj>
<sink_obj>188</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_410">
<id>430</id>
<edge_type>1</edge_type>
<source_obj>255</source_obj>
<sink_obj>188</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_411">
<id>431</id>
<edge_type>1</edge_type>
<source_obj>257</source_obj>
<sink_obj>188</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_412">
<id>432</id>
<edge_type>1</edge_type>
<source_obj>188</source_obj>
<sink_obj>189</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_413">
<id>433</id>
<edge_type>1</edge_type>
<source_obj>260</source_obj>
<sink_obj>189</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_414">
<id>434</id>
<edge_type>1</edge_type>
<source_obj>165</source_obj>
<sink_obj>190</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_415">
<id>435</id>
<edge_type>1</edge_type>
<source_obj>385</source_obj>
<sink_obj>190</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_416">
<id>436</id>
<edge_type>1</edge_type>
<source_obj>189</source_obj>
<sink_obj>191</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_417">
<id>437</id>
<edge_type>1</edge_type>
<source_obj>190</source_obj>
<sink_obj>191</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_418">
<id>438</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>191</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_419">
<id>439</id>
<edge_type>2</edge_type>
<source_obj>209</source_obj>
<sink_obj>192</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_420">
<id>440</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>194</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_421">
<id>441</id>
<edge_type>2</edge_type>
<source_obj>186</source_obj>
<sink_obj>194</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_422">
<id>442</id>
<edge_type>1</edge_type>
<source_obj>303</source_obj>
<sink_obj>194</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_423">
<id>443</id>
<edge_type>2</edge_type>
<source_obj>193</source_obj>
<sink_obj>194</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_424">
<id>444</id>
<edge_type>1</edge_type>
<source_obj>165</source_obj>
<sink_obj>195</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_425">
<id>445</id>
<edge_type>2</edge_type>
<source_obj>186</source_obj>
<sink_obj>195</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_426">
<id>446</id>
<edge_type>1</edge_type>
<source_obj>191</source_obj>
<sink_obj>195</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_427">
<id>447</id>
<edge_type>2</edge_type>
<source_obj>193</source_obj>
<sink_obj>195</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_428">
<id>448</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>196</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_429">
<id>449</id>
<edge_type>2</edge_type>
<source_obj>186</source_obj>
<sink_obj>196</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_430">
<id>450</id>
<edge_type>1</edge_type>
<source_obj>303</source_obj>
<sink_obj>196</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_431">
<id>451</id>
<edge_type>2</edge_type>
<source_obj>193</source_obj>
<sink_obj>196</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_432">
<id>453</id>
<edge_type>1</edge_type>
<source_obj>452</source_obj>
<sink_obj>197</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_433">
<id>454</id>
<edge_type>2</edge_type>
<source_obj>186</source_obj>
<sink_obj>197</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_434">
<id>455</id>
<edge_type>1</edge_type>
<source_obj>187</source_obj>
<sink_obj>197</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_435">
<id>456</id>
<edge_type>2</edge_type>
<source_obj>193</source_obj>
<sink_obj>197</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_436">
<id>459</id>
<edge_type>1</edge_type>
<source_obj>164</source_obj>
<sink_obj>198</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_437">
<id>461</id>
<edge_type>1</edge_type>
<source_obj>460</source_obj>
<sink_obj>198</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_438">
<id>463</id>
<edge_type>1</edge_type>
<source_obj>462</source_obj>
<sink_obj>198</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_439">
<id>466</id>
<edge_type>1</edge_type>
<source_obj>164</source_obj>
<sink_obj>199</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_440">
<id>468</id>
<edge_type>1</edge_type>
<source_obj>467</source_obj>
<sink_obj>199</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_441">
<id>469</id>
<edge_type>1</edge_type>
<source_obj>462</source_obj>
<sink_obj>199</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_442">
<id>470</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>200</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_443">
<id>472</id>
<edge_type>1</edge_type>
<source_obj>471</source_obj>
<sink_obj>200</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_444">
<id>474</id>
<edge_type>1</edge_type>
<source_obj>473</source_obj>
<sink_obj>201</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_445">
<id>475</id>
<edge_type>1</edge_type>
<source_obj>198</source_obj>
<sink_obj>201</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_446">
<id>476</id>
<edge_type>1</edge_type>
<source_obj>200</source_obj>
<sink_obj>202</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_447">
<id>477</id>
<edge_type>1</edge_type>
<source_obj>201</source_obj>
<sink_obj>202</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_448">
<id>479</id>
<edge_type>1</edge_type>
<source_obj>478</source_obj>
<sink_obj>202</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_449">
<id>480</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>203</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_450">
<id>481</id>
<edge_type>1</edge_type>
<source_obj>203</source_obj>
<sink_obj>204</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_451">
<id>482</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>204</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_452">
<id>484</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>205</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_453">
<id>487</id>
<edge_type>1</edge_type>
<source_obj>197</source_obj>
<sink_obj>206</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_454">
<id>488</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>206</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_455">
<id>490</id>
<edge_type>1</edge_type>
<source_obj>489</source_obj>
<sink_obj>206</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_456">
<id>491</id>
<edge_type>1</edge_type>
<source_obj>196</source_obj>
<sink_obj>206</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_457">
<id>492</id>
<edge_type>1</edge_type>
<source_obj>303</source_obj>
<sink_obj>206</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_458">
<id>493</id>
<edge_type>1</edge_type>
<source_obj>164</source_obj>
<sink_obj>206</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_459">
<id>495</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>207</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_460">
<id>496</id>
<edge_type>1</edge_type>
<source_obj>206</source_obj>
<sink_obj>207</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_461">
<id>497</id>
<edge_type>2</edge_type>
<source_obj>234</source_obj>
<sink_obj>208</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_462">
<id>499</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="_463">
<id>500</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>126</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_464">
<id>501</id>
<edge_type>1</edge_type>
<source_obj>126</source_obj>
<sink_obj>127</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_465">
<id>502</id>
<edge_type>2</edge_type>
<source_obj>234</source_obj>
<sink_obj>127</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_466">
<id>503</id>
<edge_type>2</edge_type>
<source_obj>133</source_obj>
<sink_obj>127</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_467">
<id>505</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>129</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_468">
<id>506</id>
<edge_type>1</edge_type>
<source_obj>129</source_obj>
<sink_obj>130</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_469">
<id>507</id>
<edge_type>1</edge_type>
<source_obj>130</source_obj>
<sink_obj>131</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_470">
<id>508</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>131</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_471">
<id>509</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_472">
<id>510</id>
<edge_type>2</edge_type>
<source_obj>136</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_473">
<id>511</id>
<edge_type>2</edge_type>
<source_obj>150</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_474">
<id>513</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_475">
<id>514</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_476">
<id>515</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="_477">
<id>516</id>
<edge_type>2</edge_type>
<source_obj>234</source_obj>
<sink_obj>135</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_478">
<id>517</id>
<edge_type>2</edge_type>
<source_obj>146</source_obj>
<sink_obj>135</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_479">
<id>519</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>137</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_480">
<id>520</id>
<edge_type>1</edge_type>
<source_obj>385</source_obj>
<sink_obj>138</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_481">
<id>521</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>138</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_482">
<id>522</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>139</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_483">
<id>523</id>
<edge_type>1</edge_type>
<source_obj>138</source_obj>
<sink_obj>139</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_484">
<id>524</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>139</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_485">
<id>525</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>140</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_486">
<id>526</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>140</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_487">
<id>527</id>
<edge_type>1</edge_type>
<source_obj>140</source_obj>
<sink_obj>141</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_488">
<id>528</id>
<edge_type>1</edge_type>
<source_obj>303</source_obj>
<sink_obj>141</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_489">
<id>529</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_490">
<id>530</id>
<edge_type>1</edge_type>
<source_obj>273</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_491">
<id>531</id>
<edge_type>1</edge_type>
<source_obj>264</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_492">
<id>534</id>
<edge_type>1</edge_type>
<source_obj>137</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_493">
<id>535</id>
<edge_type>1</edge_type>
<source_obj>452</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_494">
<id>536</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="_495">
<id>537</id>
<edge_type>1</edge_type>
<source_obj>270</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_496">
<id>538</id>
<edge_type>1</edge_type>
<source_obj>130</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_497">
<id>540</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>144</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_498">
<id>541</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="_499">
<id>542</id>
<edge_type>2</edge_type>
<source_obj>234</source_obj>
<sink_obj>145</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_500">
<id>545</id>
<edge_type>1</edge_type>
<source_obj>544</source_obj>
<sink_obj>147</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_501">
<id>546</id>
<edge_type>1</edge_type>
<source_obj>130</source_obj>
<sink_obj>147</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_502">
<id>548</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>148</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_503">
<id>549</id>
<edge_type>1</edge_type>
<source_obj>147</source_obj>
<sink_obj>148</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_504">
<id>550</id>
<edge_type>2</edge_type>
<source_obj>234</source_obj>
<sink_obj>149</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_505">
<id>551</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>113</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_506">
<id>552</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="_507">
<id>553</id>
<edge_type>2</edge_type>
<source_obj>234</source_obj>
<sink_obj>113</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_508">
<id>555</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_509">
<id>556</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_510">
<id>557</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="_511">
<id>558</id>
<edge_type>2</edge_type>
<source_obj>234</source_obj>
<sink_obj>116</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_512">
<id>559</id>
<edge_type>2</edge_type>
<source_obj>125</source_obj>
<sink_obj>116</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_513">
<id>561</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>118</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_514">
<id>562</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>119</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_515">
<id>563</id>
<edge_type>1</edge_type>
<source_obj>385</source_obj>
<sink_obj>119</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_516">
<id>564</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>120</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_517">
<id>565</id>
<edge_type>1</edge_type>
<source_obj>119</source_obj>
<sink_obj>120</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_518">
<id>566</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>120</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_519">
<id>567</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="_520">
<id>568</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>121</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_521">
<id>571</id>
<edge_type>1</edge_type>
<source_obj>118</source_obj>
<sink_obj>122</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_522">
<id>572</id>
<edge_type>1</edge_type>
<source_obj>452</source_obj>
<sink_obj>122</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_523">
<id>573</id>
<edge_type>1</edge_type>
<source_obj>121</source_obj>
<sink_obj>122</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_524">
<id>575</id>
<edge_type>1</edge_type>
<source_obj>574</source_obj>
<sink_obj>122</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_525">
<id>577</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>123</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_526">
<id>578</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="_527">
<id>579</id>
<edge_type>2</edge_type>
<source_obj>234</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_528">
<id>581</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_529">
<id>582</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_530">
<id>583</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>66</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_531">
<id>584</id>
<edge_type>2</edge_type>
<source_obj>234</source_obj>
<sink_obj>66</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_532">
<id>585</id>
<edge_type>2</edge_type>
<source_obj>69</source_obj>
<sink_obj>66</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_533">
<id>586</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>68</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_534">
<id>587</id>
<edge_type>2</edge_type>
<source_obj>72</source_obj>
<sink_obj>68</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_535">
<id>588</id>
<edge_type>2</edge_type>
<source_obj>75</source_obj>
<sink_obj>68</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_536">
<id>590</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>70</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_537">
<id>591</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>70</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_538">
<id>592</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="_539">
<id>593</id>
<edge_type>2</edge_type>
<source_obj>234</source_obj>
<sink_obj>71</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_540">
<id>594</id>
<edge_type>2</edge_type>
<source_obj>75</source_obj>
<sink_obj>71</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_541">
<id>595</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>73</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_542">
<id>597</id>
<edge_type>1</edge_type>
<source_obj>596</source_obj>
<sink_obj>73</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_543">
<id>598</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_544">
<id>599</id>
<edge_type>2</edge_type>
<source_obj>78</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_545">
<id>600</id>
<edge_type>2</edge_type>
<source_obj>83</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_546">
<id>602</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>76</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_547">
<id>603</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>76</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_548">
<id>604</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="_549">
<id>605</id>
<edge_type>2</edge_type>
<source_obj>234</source_obj>
<sink_obj>77</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_550">
<id>606</id>
<edge_type>2</edge_type>
<source_obj>83</source_obj>
<sink_obj>77</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_551">
<id>608</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_552">
<id>609</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>80</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_553">
<id>610</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="_554">
<id>611</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_555">
<id>612</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_556">
<id>613</id>
<edge_type>2</edge_type>
<source_obj>88</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_557">
<id>614</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_558">
<id>616</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_559">
<id>617</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_560">
<id>618</id>
<edge_type>1</edge_type>
<source_obj>385</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_561">
<id>619</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_562">
<id>620</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_563">
<id>621</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_564">
<id>622</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_565">
<id>623</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>89</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_566">
<id>624</id>
<edge_type>2</edge_type>
<source_obj>83</source_obj>
<sink_obj>89</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_567">
<id>625</id>
<edge_type>1</edge_type>
<source_obj>303</source_obj>
<sink_obj>89</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_568">
<id>626</id>
<edge_type>2</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="_569">
<id>627</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>90</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_570">
<id>628</id>
<edge_type>2</edge_type>
<source_obj>83</source_obj>
<sink_obj>90</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_571">
<id>629</id>
<edge_type>1</edge_type>
<source_obj>86</source_obj>
<sink_obj>90</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_572">
<id>630</id>
<edge_type>2</edge_type>
<source_obj>88</source_obj>
<sink_obj>90</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_573">
<id>631</id>
<edge_type>1</edge_type>
<source_obj>452</source_obj>
<sink_obj>91</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_574">
<id>632</id>
<edge_type>2</edge_type>
<source_obj>83</source_obj>
<sink_obj>91</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_575">
<id>633</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>91</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_576">
<id>634</id>
<edge_type>2</edge_type>
<source_obj>88</source_obj>
<sink_obj>91</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_577">
<id>635</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>92</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_578">
<id>636</id>
<edge_type>2</edge_type>
<source_obj>101</source_obj>
<sink_obj>92</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_579">
<id>637</id>
<edge_type>2</edge_type>
<source_obj>112</source_obj>
<sink_obj>92</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_580">
<id>639</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>94</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_581">
<id>642</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_582">
<id>643</id>
<edge_type>1</edge_type>
<source_obj>255</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_583">
<id>645</id>
<edge_type>1</edge_type>
<source_obj>644</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_584">
<id>646</id>
<edge_type>1</edge_type>
<source_obj>95</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_585">
<id>647</id>
<edge_type>1</edge_type>
<source_obj>478</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_586">
<id>648</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>97</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_587">
<id>650</id>
<edge_type>1</edge_type>
<source_obj>649</source_obj>
<sink_obj>97</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_588">
<id>651</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_589">
<id>652</id>
<edge_type>1</edge_type>
<source_obj>97</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_590">
<id>653</id>
<edge_type>1</edge_type>
<source_obj>596</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_591">
<id>654</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="_592">
<id>655</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_593">
<id>656</id>
<edge_type>2</edge_type>
<source_obj>112</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_594">
<id>657</id>
<edge_type>1</edge_type>
<source_obj>98</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_595">
<id>658</id>
<edge_type>2</edge_type>
<source_obj>101</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_596">
<id>659</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_597">
<id>660</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_598">
<id>661</id>
<edge_type>1</edge_type>
<source_obj>303</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_599">
<id>662</id>
<edge_type>2</edge_type>
<source_obj>101</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_600">
<id>663</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_601">
<id>664</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_602">
<id>665</id>
<edge_type>1</edge_type>
<source_obj>94</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_603">
<id>666</id>
<edge_type>2</edge_type>
<source_obj>101</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_604">
<id>667</id>
<edge_type>1</edge_type>
<source_obj>452</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_605">
<id>668</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_606">
<id>669</id>
<edge_type>1</edge_type>
<source_obj>102</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_607">
<id>670</id>
<edge_type>1</edge_type>
<source_obj>596</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_608">
<id>671</id>
<edge_type>1</edge_type>
<source_obj>90</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_609">
<id>672</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_610">
<id>673</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>107</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_611">
<id>674</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="_612">
<id>675</id>
<edge_type>1</edge_type>
<source_obj>107</source_obj>
<sink_obj>108</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_613">
<id>676</id>
<edge_type>1</edge_type>
<source_obj>264</source_obj>
<sink_obj>108</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_614">
<id>677</id>
<edge_type>1</edge_type>
<source_obj>279</source_obj>
<sink_obj>108</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_615">
<id>680</id>
<edge_type>1</edge_type>
<source_obj>91</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_616">
<id>681</id>
<edge_type>1</edge_type>
<source_obj>104</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_617">
<id>682</id>
<edge_type>1</edge_type>
<source_obj>107</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_618">
<id>683</id>
<edge_type>1</edge_type>
<source_obj>103</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_619">
<id>684</id>
<edge_type>1</edge_type>
<source_obj>89</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_620">
<id>685</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_621">
<id>686</id>
<edge_type>1</edge_type>
<source_obj>80</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_622">
<id>688</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_623">
<id>689</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="_624">
<id>690</id>
<edge_type>2</edge_type>
<source_obj>234</source_obj>
<sink_obj>111</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_625">
<id>691</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>24</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_626">
<id>692</id>
<edge_type>2</edge_type>
<source_obj>28</source_obj>
<sink_obj>24</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_627">
<id>693</id>
<edge_type>2</edge_type>
<source_obj>31</source_obj>
<sink_obj>24</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_628">
<id>695</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>26</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_629">
<id>696</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>26</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_630">
<id>697</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>27</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_631">
<id>698</id>
<edge_type>2</edge_type>
<source_obj>234</source_obj>
<sink_obj>27</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_632">
<id>699</id>
<edge_type>2</edge_type>
<source_obj>31</source_obj>
<sink_obj>27</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_633">
<id>700</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>29</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_634">
<id>701</id>
<edge_type>1</edge_type>
<source_obj>596</source_obj>
<sink_obj>29</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_635">
<id>702</id>
<edge_type>1</edge_type>
<source_obj>29</source_obj>
<sink_obj>30</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_636">
<id>703</id>
<edge_type>2</edge_type>
<source_obj>34</source_obj>
<sink_obj>30</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_637">
<id>704</id>
<edge_type>2</edge_type>
<source_obj>36</source_obj>
<sink_obj>30</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_638">
<id>706</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>32</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_639">
<id>707</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>32</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_640">
<id>708</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>33</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_641">
<id>709</id>
<edge_type>2</edge_type>
<source_obj>234</source_obj>
<sink_obj>33</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_642">
<id>710</id>
<edge_type>2</edge_type>
<source_obj>36</source_obj>
<sink_obj>33</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_643">
<id>711</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_644">
<id>712</id>
<edge_type>2</edge_type>
<source_obj>41</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_645">
<id>713</id>
<edge_type>2</edge_type>
<source_obj>46</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_646">
<id>715</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_647">
<id>716</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>38</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_648">
<id>717</id>
<edge_type>1</edge_type>
<source_obj>385</source_obj>
<sink_obj>38</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_649">
<id>718</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_650">
<id>719</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_651">
<id>720</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_652">
<id>721</id>
<edge_type>2</edge_type>
<source_obj>46</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_653">
<id>722</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_654">
<id>723</id>
<edge_type>2</edge_type>
<source_obj>36</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_655">
<id>724</id>
<edge_type>1</edge_type>
<source_obj>303</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_656">
<id>725</id>
<edge_type>2</edge_type>
<source_obj>41</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_657">
<id>726</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_658">
<id>727</id>
<edge_type>2</edge_type>
<source_obj>36</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_659">
<id>728</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_660">
<id>729</id>
<edge_type>2</edge_type>
<source_obj>41</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_661">
<id>730</id>
<edge_type>1</edge_type>
<source_obj>452</source_obj>
<sink_obj>44</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_662">
<id>731</id>
<edge_type>2</edge_type>
<source_obj>36</source_obj>
<sink_obj>44</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_663">
<id>732</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>44</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_664">
<id>733</id>
<edge_type>2</edge_type>
<source_obj>41</source_obj>
<sink_obj>44</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_665">
<id>734</id>
<edge_type>1</edge_type>
<source_obj>29</source_obj>
<sink_obj>45</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_666">
<id>735</id>
<edge_type>2</edge_type>
<source_obj>54</source_obj>
<sink_obj>45</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_667">
<id>736</id>
<edge_type>2</edge_type>
<source_obj>64</source_obj>
<sink_obj>45</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_668">
<id>738</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_669">
<id>740</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>48</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_670">
<id>741</id>
<edge_type>1</edge_type>
<source_obj>255</source_obj>
<sink_obj>48</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_671">
<id>742</id>
<edge_type>1</edge_type>
<source_obj>644</source_obj>
<sink_obj>48</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_672">
<id>743</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="_673">
<id>744</id>
<edge_type>1</edge_type>
<source_obj>478</source_obj>
<sink_obj>49</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_674">
<id>745</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_675">
<id>746</id>
<edge_type>1</edge_type>
<source_obj>649</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_676">
<id>747</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>51</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_677">
<id>748</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="_678">
<id>749</id>
<edge_type>1</edge_type>
<source_obj>596</source_obj>
<sink_obj>51</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_679">
<id>750</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>52</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_680">
<id>751</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>52</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_681">
<id>752</id>
<edge_type>2</edge_type>
<source_obj>64</source_obj>
<sink_obj>53</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_682">
<id>753</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>55</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_683">
<id>754</id>
<edge_type>2</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="_684">
<id>755</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>55</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_685">
<id>756</id>
<edge_type>2</edge_type>
<source_obj>46</source_obj>
<sink_obj>55</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_686">
<id>757</id>
<edge_type>1</edge_type>
<source_obj>303</source_obj>
<sink_obj>56</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_687">
<id>758</id>
<edge_type>2</edge_type>
<source_obj>54</source_obj>
<sink_obj>56</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_688">
<id>759</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>56</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_689">
<id>760</id>
<edge_type>2</edge_type>
<source_obj>46</source_obj>
<sink_obj>56</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_690">
<id>761</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>57</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_691">
<id>762</id>
<edge_type>2</edge_type>
<source_obj>54</source_obj>
<sink_obj>57</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_692">
<id>763</id>
<edge_type>1</edge_type>
<source_obj>452</source_obj>
<sink_obj>57</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_693">
<id>764</id>
<edge_type>2</edge_type>
<source_obj>46</source_obj>
<sink_obj>57</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_694">
<id>765</id>
<edge_type>1</edge_type>
<source_obj>55</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_695">
<id>766</id>
<edge_type>1</edge_type>
<source_obj>596</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_696">
<id>767</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>59</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_697">
<id>768</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>59</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_698">
<id>769</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>60</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_699">
<id>770</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>60</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_700">
<id>773</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>61</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_701">
<id>774</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>61</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_702">
<id>775</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="_703">
<id>776</id>
<edge_type>1</edge_type>
<source_obj>56</source_obj>
<sink_obj>61</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_704">
<id>777</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>61</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_705">
<id>779</id>
<edge_type>1</edge_type>
<source_obj>778</source_obj>
<sink_obj>61</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_706">
<id>781</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_707">
<id>782</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_708">
<id>783</id>
<edge_type>2</edge_type>
<source_obj>234</source_obj>
<sink_obj>63</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_709">
<id>784</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_710">
<id>785</id>
<edge_type>2</edge_type>
<source_obj>23</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_711">
<id>786</id>
<edge_type>1</edge_type>
<source_obj>303</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_712">
<id>787</id>
<edge_type>2</edge_type>
<source_obj>228</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_713">
<id>788</id>
<edge_type>1</edge_type>
<source_obj>303</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_714">
<id>789</id>
<edge_type>2</edge_type>
<source_obj>224</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_715">
<id>790</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_716">
<id>791</id>
<edge_type>2</edge_type>
<source_obj>215</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_717">
<id>792</id>
<edge_type>1</edge_type>
<source_obj>303</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_718">
<id>793</id>
<edge_type>2</edge_type>
<source_obj>209</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_719">
<id>794</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_720">
<id>795</id>
<edge_type>2</edge_type>
<source_obj>183</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_721">
<id>796</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_722">
<id>797</id>
<edge_type>2</edge_type>
<source_obj>180</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_723">
<id>798</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_724">
<id>799</id>
<edge_type>2</edge_type>
<source_obj>128</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_725">
<id>800</id>
<edge_type>1</edge_type>
<source_obj>303</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_726">
<id>801</id>
<edge_type>2</edge_type>
<source_obj>150</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_727">
<id>802</id>
<edge_type>1</edge_type>
<source_obj>303</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_728">
<id>803</id>
<edge_type>2</edge_type>
<source_obj>146</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_729">
<id>804</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_730">
<id>805</id>
<edge_type>2</edge_type>
<source_obj>136</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_731">
<id>806</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_732">
<id>807</id>
<edge_type>2</edge_type>
<source_obj>114</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_733">
<id>808</id>
<edge_type>1</edge_type>
<source_obj>121</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_734">
<id>809</id>
<edge_type>2</edge_type>
<source_obj>125</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_735">
<id>810</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_736">
<id>811</id>
<edge_type>2</edge_type>
<source_obj>117</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_737">
<id>812</id>
<edge_type>1</edge_type>
<source_obj>303</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_738">
<id>813</id>
<edge_type>2</edge_type>
<source_obj>112</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_739">
<id>814</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_740">
<id>815</id>
<edge_type>2</edge_type>
<source_obj>78</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_741">
<id>816</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_742">
<id>817</id>
<edge_type>2</edge_type>
<source_obj>72</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_743">
<id>818</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_744">
<id>819</id>
<edge_type>2</edge_type>
<source_obj>67</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_745">
<id>820</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_746">
<id>821</id>
<edge_type>2</edge_type>
<source_obj>64</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_747">
<id>822</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_748">
<id>823</id>
<edge_type>2</edge_type>
<source_obj>34</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_749">
<id>824</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_750">
<id>825</id>
<edge_type>2</edge_type>
<source_obj>28</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_751">
<id>827</id>
<edge_type>1</edge_type>
<source_obj>826</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_752">
<id>828</id>
<edge_type>2</edge_type>
<source_obj>23</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_753">
<id>829</id>
<edge_type>1</edge_type>
<source_obj>270</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_754">
<id>830</id>
<edge_type>2</edge_type>
<source_obj>228</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_755">
<id>831</id>
<edge_type>1</edge_type>
<source_obj>270</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_756">
<id>832</id>
<edge_type>2</edge_type>
<source_obj>224</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_757">
<id>833</id>
<edge_type>1</edge_type>
<source_obj>267</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_758">
<id>834</id>
<edge_type>2</edge_type>
<source_obj>215</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_759">
<id>835</id>
<edge_type>1</edge_type>
<source_obj>276</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_760">
<id>836</id>
<edge_type>2</edge_type>
<source_obj>209</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_761">
<id>837</id>
<edge_type>1</edge_type>
<source_obj>267</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_762">
<id>838</id>
<edge_type>2</edge_type>
<source_obj>183</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_763">
<id>839</id>
<edge_type>1</edge_type>
<source_obj>267</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_764">
<id>840</id>
<edge_type>2</edge_type>
<source_obj>180</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_765">
<id>841</id>
<edge_type>1</edge_type>
<source_obj>826</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_766">
<id>842</id>
<edge_type>2</edge_type>
<source_obj>128</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_767">
<id>843</id>
<edge_type>1</edge_type>
<source_obj>264</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_768">
<id>844</id>
<edge_type>2</edge_type>
<source_obj>150</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_769">
<id>845</id>
<edge_type>1</edge_type>
<source_obj>142</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_770">
<id>846</id>
<edge_type>2</edge_type>
<source_obj>146</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_771">
<id>847</id>
<edge_type>1</edge_type>
<source_obj>826</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_772">
<id>848</id>
<edge_type>2</edge_type>
<source_obj>136</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_773">
<id>849</id>
<edge_type>1</edge_type>
<source_obj>264</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_774">
<id>850</id>
<edge_type>2</edge_type>
<source_obj>114</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_775">
<id>851</id>
<edge_type>1</edge_type>
<source_obj>264</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_776">
<id>852</id>
<edge_type>2</edge_type>
<source_obj>125</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_777">
<id>853</id>
<edge_type>1</edge_type>
<source_obj>264</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_778">
<id>854</id>
<edge_type>2</edge_type>
<source_obj>117</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_779">
<id>855</id>
<edge_type>1</edge_type>
<source_obj>108</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_780">
<id>856</id>
<edge_type>2</edge_type>
<source_obj>112</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_781">
<id>857</id>
<edge_type>1</edge_type>
<source_obj>826</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_782">
<id>858</id>
<edge_type>2</edge_type>
<source_obj>78</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_783">
<id>859</id>
<edge_type>1</edge_type>
<source_obj>826</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_784">
<id>860</id>
<edge_type>2</edge_type>
<source_obj>72</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_785">
<id>861</id>
<edge_type>1</edge_type>
<source_obj>826</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_786">
<id>862</id>
<edge_type>2</edge_type>
<source_obj>67</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_787">
<id>863</id>
<edge_type>1</edge_type>
<source_obj>264</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_788">
<id>864</id>
<edge_type>2</edge_type>
<source_obj>64</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_789">
<id>865</id>
<edge_type>1</edge_type>
<source_obj>264</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_790">
<id>866</id>
<edge_type>2</edge_type>
<source_obj>34</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_791">
<id>867</id>
<edge_type>1</edge_type>
<source_obj>264</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_792">
<id>868</id>
<edge_type>2</edge_type>
<source_obj>28</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_793">
<id>869</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_794">
<id>870</id>
<edge_type>2</edge_type>
<source_obj>23</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_795">
<id>871</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_796">
<id>872</id>
<edge_type>2</edge_type>
<source_obj>228</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_797">
<id>873</id>
<edge_type>1</edge_type>
<source_obj>303</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_798">
<id>874</id>
<edge_type>2</edge_type>
<source_obj>224</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_799">
<id>875</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_800">
<id>876</id>
<edge_type>2</edge_type>
<source_obj>215</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_801">
<id>877</id>
<edge_type>1</edge_type>
<source_obj>194</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_802">
<id>878</id>
<edge_type>2</edge_type>
<source_obj>209</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_803">
<id>879</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_804">
<id>880</id>
<edge_type>2</edge_type>
<source_obj>183</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_805">
<id>881</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_806">
<id>882</id>
<edge_type>2</edge_type>
<source_obj>180</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_807">
<id>883</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_808">
<id>884</id>
<edge_type>2</edge_type>
<source_obj>128</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_809">
<id>885</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_810">
<id>886</id>
<edge_type>2</edge_type>
<source_obj>150</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_811">
<id>887</id>
<edge_type>1</edge_type>
<source_obj>303</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_812">
<id>888</id>
<edge_type>2</edge_type>
<source_obj>146</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_813">
<id>889</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_814">
<id>890</id>
<edge_type>2</edge_type>
<source_obj>136</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_815">
<id>891</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_816">
<id>892</id>
<edge_type>2</edge_type>
<source_obj>114</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_817">
<id>893</id>
<edge_type>1</edge_type>
<source_obj>303</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_818">
<id>894</id>
<edge_type>2</edge_type>
<source_obj>125</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_819">
<id>895</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_820">
<id>896</id>
<edge_type>2</edge_type>
<source_obj>117</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_821">
<id>897</id>
<edge_type>1</edge_type>
<source_obj>89</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_822">
<id>898</id>
<edge_type>2</edge_type>
<source_obj>112</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_823">
<id>899</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_824">
<id>900</id>
<edge_type>2</edge_type>
<source_obj>78</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_825">
<id>901</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_826">
<id>902</id>
<edge_type>2</edge_type>
<source_obj>72</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_827">
<id>903</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_828">
<id>904</id>
<edge_type>2</edge_type>
<source_obj>67</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_829">
<id>905</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_830">
<id>906</id>
<edge_type>2</edge_type>
<source_obj>64</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_831">
<id>907</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_832">
<id>908</id>
<edge_type>2</edge_type>
<source_obj>34</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_833">
<id>909</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_834">
<id>910</id>
<edge_type>2</edge_type>
<source_obj>28</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_835">
<id>912</id>
<edge_type>1</edge_type>
<source_obj>911</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_836">
<id>913</id>
<edge_type>2</edge_type>
<source_obj>23</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_837">
<id>914</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_838">
<id>915</id>
<edge_type>2</edge_type>
<source_obj>228</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_839">
<id>916</id>
<edge_type>1</edge_type>
<source_obj>220</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_840">
<id>917</id>
<edge_type>2</edge_type>
<source_obj>224</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_841">
<id>918</id>
<edge_type>1</edge_type>
<source_obj>165</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_842">
<id>919</id>
<edge_type>2</edge_type>
<source_obj>215</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_843">
<id>920</id>
<edge_type>1</edge_type>
<source_obj>195</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_844">
<id>921</id>
<edge_type>2</edge_type>
<source_obj>209</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_845">
<id>922</id>
<edge_type>1</edge_type>
<source_obj>165</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_846">
<id>923</id>
<edge_type>2</edge_type>
<source_obj>183</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_847">
<id>924</id>
<edge_type>1</edge_type>
<source_obj>165</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_848">
<id>925</id>
<edge_type>2</edge_type>
<source_obj>180</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_849">
<id>926</id>
<edge_type>1</edge_type>
<source_obj>911</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_850">
<id>927</id>
<edge_type>2</edge_type>
<source_obj>128</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_851">
<id>928</id>
<edge_type>1</edge_type>
<source_obj>911</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_852">
<id>929</id>
<edge_type>2</edge_type>
<source_obj>150</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_853">
<id>930</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_854">
<id>931</id>
<edge_type>2</edge_type>
<source_obj>146</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_855">
<id>932</id>
<edge_type>1</edge_type>
<source_obj>911</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_856">
<id>933</id>
<edge_type>2</edge_type>
<source_obj>136</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_857">
<id>934</id>
<edge_type>1</edge_type>
<source_obj>911</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_858">
<id>935</id>
<edge_type>2</edge_type>
<source_obj>114</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_859">
<id>936</id>
<edge_type>1</edge_type>
<source_obj>120</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_860">
<id>937</id>
<edge_type>2</edge_type>
<source_obj>125</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_861">
<id>938</id>
<edge_type>1</edge_type>
<source_obj>911</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_862">
<id>939</id>
<edge_type>2</edge_type>
<source_obj>117</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_863">
<id>940</id>
<edge_type>1</edge_type>
<source_obj>90</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_864">
<id>941</id>
<edge_type>2</edge_type>
<source_obj>112</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_865">
<id>942</id>
<edge_type>1</edge_type>
<source_obj>911</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_866">
<id>943</id>
<edge_type>2</edge_type>
<source_obj>78</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_867">
<id>944</id>
<edge_type>1</edge_type>
<source_obj>911</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_868">
<id>945</id>
<edge_type>2</edge_type>
<source_obj>72</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_869">
<id>946</id>
<edge_type>1</edge_type>
<source_obj>911</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_870">
<id>947</id>
<edge_type>2</edge_type>
<source_obj>67</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_871">
<id>948</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_872">
<id>949</id>
<edge_type>2</edge_type>
<source_obj>64</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_873">
<id>950</id>
<edge_type>1</edge_type>
<source_obj>911</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_874">
<id>951</id>
<edge_type>2</edge_type>
<source_obj>34</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_875">
<id>952</id>
<edge_type>1</edge_type>
<source_obj>911</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_876">
<id>953</id>
<edge_type>2</edge_type>
<source_obj>28</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_877">
<id>954</id>
<edge_type>1</edge_type>
<source_obj>231</source_obj>
<sink_obj>233</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_878">
<id>955</id>
<edge_type>2</edge_type>
<source_obj>239</source_obj>
<sink_obj>233</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_879">
<id>956</id>
<edge_type>2</edge_type>
<source_obj>237</source_obj>
<sink_obj>233</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_880">
<id>957</id>
<edge_type>1</edge_type>
<source_obj>230</source_obj>
<sink_obj>240</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_881">
<id>958</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>240</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_882">
<id>959</id>
<edge_type>2</edge_type>
<source_obj>244</source_obj>
<sink_obj>241</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_883">
<id>960</id>
<edge_type>1</edge_type>
<source_obj>232</source_obj>
<sink_obj>235</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_884">
<id>961</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>235</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_885">
<id>962</id>
<edge_type>2</edge_type>
<source_obj>239</source_obj>
<sink_obj>236</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_886">
<id>963</id>
<edge_type>1</edge_type>
<source_obj>229</source_obj>
<sink_obj>238</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_887">
<id>964</id>
<edge_type>2</edge_type>
<source_obj>244</source_obj>
<sink_obj>238</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_888">
<id>965</id>
<edge_type>2</edge_type>
<source_obj>242</source_obj>
<sink_obj>238</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_889">
<id>1089</id>
<edge_type>2</edge_type>
<source_obj>23</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_890">
<id>1090</id>
<edge_type>2</edge_type>
<source_obj>23</source_obj>
<sink_obj>153</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_891">
<id>1091</id>
<edge_type>2</edge_type>
<source_obj>23</source_obj>
<sink_obj>169</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_892">
<id>1092</id>
<edge_type>2</edge_type>
<source_obj>23</source_obj>
<sink_obj>128</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_893">
<id>1093</id>
<edge_type>2</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="_894">
<id>1094</id>
<edge_type>2</edge_type>
<source_obj>23</source_obj>
<sink_obj>67</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_895">
<id>1095</id>
<edge_type>2</edge_type>
<source_obj>23</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_896">
<id>1096</id>
<edge_type>2</edge_type>
<source_obj>25</source_obj>
<sink_obj>31</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_897">
<id>1097</id>
<edge_type>2</edge_type>
<source_obj>25</source_obj>
<sink_obj>28</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_898">
<id>1098</id>
<edge_type>2</edge_type>
<source_obj>28</source_obj>
<sink_obj>31</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_899">
<id>1099</id>
<edge_type>2</edge_type>
<source_obj>28</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_900">
<id>1100</id>
<edge_type>2</edge_type>
<source_obj>31</source_obj>
<sink_obj>36</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_901">
<id>1101</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="_902">
<id>1102</id>
<edge_type>2</edge_type>
<source_obj>34</source_obj>
<sink_obj>36</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_903">
<id>1103</id>
<edge_type>2</edge_type>
<source_obj>34</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_904">
<id>1104</id>
<edge_type>2</edge_type>
<source_obj>36</source_obj>
<sink_obj>46</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_905">
<id>1105</id>
<edge_type>2</edge_type>
<source_obj>36</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_906">
<id>1106</id>
<edge_type>2</edge_type>
<source_obj>41</source_obj>
<sink_obj>46</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_907">
<id>1107</id>
<edge_type>2</edge_type>
<source_obj>46</source_obj>
<sink_obj>64</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_908">
<id>1108</id>
<edge_type>2</edge_type>
<source_obj>46</source_obj>
<sink_obj>54</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_909">
<id>1109</id>
<edge_type>2</edge_type>
<source_obj>54</source_obj>
<sink_obj>64</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_910">
<id>1110</id>
<edge_type>2</edge_type>
<source_obj>64</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_911">
<id>1111</id>
<edge_type>2</edge_type>
<source_obj>67</source_obj>
<sink_obj>69</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_912">
<id>1112</id>
<edge_type>2</edge_type>
<source_obj>67</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_913">
<id>1113</id>
<edge_type>2</edge_type>
<source_obj>69</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_914">
<id>1114</id>
<edge_type>2</edge_type>
<source_obj>69</source_obj>
<sink_obj>72</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_915">
<id>1115</id>
<edge_type>2</edge_type>
<source_obj>72</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_916">
<id>1116</id>
<edge_type>2</edge_type>
<source_obj>72</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_917">
<id>1117</id>
<edge_type>2</edge_type>
<source_obj>75</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_918">
<id>1118</id>
<edge_type>2</edge_type>
<source_obj>75</source_obj>
<sink_obj>78</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_919">
<id>1119</id>
<edge_type>2</edge_type>
<source_obj>78</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_920">
<id>1120</id>
<edge_type>2</edge_type>
<source_obj>78</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_921">
<id>1121</id>
<edge_type>2</edge_type>
<source_obj>83</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_922">
<id>1122</id>
<edge_type>2</edge_type>
<source_obj>83</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_923">
<id>1123</id>
<edge_type>2</edge_type>
<source_obj>88</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_924">
<id>1124</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>112</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_925">
<id>1125</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_926">
<id>1126</id>
<edge_type>2</edge_type>
<source_obj>101</source_obj>
<sink_obj>112</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_927">
<id>1127</id>
<edge_type>2</edge_type>
<source_obj>112</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_928">
<id>1128</id>
<edge_type>2</edge_type>
<source_obj>114</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_929">
<id>1129</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="_930">
<id>1130</id>
<edge_type>2</edge_type>
<source_obj>117</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_931">
<id>1131</id>
<edge_type>2</edge_type>
<source_obj>117</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_932">
<id>1132</id>
<edge_type>2</edge_type>
<source_obj>125</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_933">
<id>1133</id>
<edge_type>2</edge_type>
<source_obj>128</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_934">
<id>1134</id>
<edge_type>2</edge_type>
<source_obj>128</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_935">
<id>1135</id>
<edge_type>2</edge_type>
<source_obj>133</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_936">
<id>1136</id>
<edge_type>2</edge_type>
<source_obj>133</source_obj>
<sink_obj>136</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_937">
<id>1137</id>
<edge_type>2</edge_type>
<source_obj>136</source_obj>
<sink_obj>146</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_938">
<id>1138</id>
<edge_type>2</edge_type>
<source_obj>136</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_939">
<id>1139</id>
<edge_type>2</edge_type>
<source_obj>146</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_940">
<id>1140</id>
<edge_type>2</edge_type>
<source_obj>150</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_941">
<id>1141</id>
<edge_type>2</edge_type>
<source_obj>153</source_obj>
<sink_obj>162</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_942">
<id>1142</id>
<edge_type>2</edge_type>
<source_obj>153</source_obj>
<sink_obj>169</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_943">
<id>1143</id>
<edge_type>2</edge_type>
<source_obj>162</source_obj>
<sink_obj>169</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_944">
<id>1144</id>
<edge_type>2</edge_type>
<source_obj>169</source_obj>
<sink_obj>212</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_945">
<id>1145</id>
<edge_type>2</edge_type>
<source_obj>169</source_obj>
<sink_obj>177</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_946">
<id>1146</id>
<edge_type>2</edge_type>
<source_obj>177</source_obj>
<sink_obj>212</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_947">
<id>1147</id>
<edge_type>2</edge_type>
<source_obj>177</source_obj>
<sink_obj>180</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_948">
<id>1148</id>
<edge_type>2</edge_type>
<source_obj>180</source_obj>
<sink_obj>183</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_949">
<id>1149</id>
<edge_type>2</edge_type>
<source_obj>180</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_950">
<id>1150</id>
<edge_type>2</edge_type>
<source_obj>183</source_obj>
<sink_obj>186</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_951">
<id>1151</id>
<edge_type>2</edge_type>
<source_obj>183</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_952">
<id>1152</id>
<edge_type>2</edge_type>
<source_obj>186</source_obj>
<sink_obj>209</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_953">
<id>1153</id>
<edge_type>2</edge_type>
<source_obj>186</source_obj>
<sink_obj>193</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_954">
<id>1154</id>
<edge_type>2</edge_type>
<source_obj>193</source_obj>
<sink_obj>209</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_955">
<id>1155</id>
<edge_type>2</edge_type>
<source_obj>209</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_956">
<id>1156</id>
<edge_type>2</edge_type>
<source_obj>212</source_obj>
<sink_obj>228</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_957">
<id>1157</id>
<edge_type>2</edge_type>
<source_obj>212</source_obj>
<sink_obj>215</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_958">
<id>1158</id>
<edge_type>2</edge_type>
<source_obj>215</source_obj>
<sink_obj>224</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_959">
<id>1159</id>
<edge_type>2</edge_type>
<source_obj>215</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_960">
<id>1160</id>
<edge_type>2</edge_type>
<source_obj>224</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_961">
<id>1161</id>
<edge_type>2</edge_type>
<source_obj>228</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_962">
<id>1162</id>
<edge_type>2</edge_type>
<source_obj>234</source_obj>
<sink_obj>237</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_963">
<id>1163</id>
<edge_type>2</edge_type>
<source_obj>234</source_obj>
<sink_obj>239</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_964">
<id>1164</id>
<edge_type>2</edge_type>
<source_obj>237</source_obj>
<sink_obj>239</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_965">
<id>1165</id>
<edge_type>2</edge_type>
<source_obj>239</source_obj>
<sink_obj>242</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_966">
<id>1166</id>
<edge_type>2</edge_type>
<source_obj>239</source_obj>
<sink_obj>244</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_967">
<id>1167</id>
<edge_type>2</edge_type>
<source_obj>242</source_obj>
<sink_obj>244</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_968">
<id>1170</id>
<edge_type>4</edge_type>
<source_obj>17</source_obj>
<sink_obj>235</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_969">
<id>1171</id>
<edge_type>4</edge_type>
<source_obj>16</source_obj>
<sink_obj>156</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_970">
<id>1172</id>
<edge_type>4</edge_type>
<source_obj>16</source_obj>
<sink_obj>131</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_971">
<id>1173</id>
<edge_type>4</edge_type>
<source_obj>15</source_obj>
<sink_obj>240</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_972">
<id>1174</id>
<edge_type>4</edge_type>
<source_obj>16</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_973">
<id>1175</id>
<edge_type>4</edge_type>
<source_obj>18</source_obj>
<sink_obj>52</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_974">
<id>1176</id>
<edge_type>4</edge_type>
<source_obj>18</source_obj>
<sink_obj>204</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_975">
<id>1177</id>
<edge_type>4</edge_type>
<source_obj>18</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_976">
<id>1178</id>
<edge_type>4</edge_type>
<source_obj>26</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_977">
<id>1179</id>
<edge_type>4</edge_type>
<source_obj>32</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_978">
<id>1180</id>
<edge_type>4</edge_type>
<source_obj>65</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_979">
<id>1181</id>
<edge_type>4</edge_type>
<source_obj>70</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_980">
<id>1182</id>
<edge_type>4</edge_type>
<source_obj>76</source_obj>
<sink_obj>94</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_981">
<id>1183</id>
<edge_type>4</edge_type>
<source_obj>115</source_obj>
<sink_obj>118</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_982">
<id>1184</id>
<edge_type>4</edge_type>
<source_obj>126</source_obj>
<sink_obj>129</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_983">
<id>1185</id>
<edge_type>4</edge_type>
<source_obj>134</source_obj>
<sink_obj>137</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_984">
<id>1186</id>
<edge_type>4</edge_type>
<source_obj>151</source_obj>
<sink_obj>154</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_985">
<id>1187</id>
<edge_type>4</edge_type>
<source_obj>181</source_obj>
<sink_obj>205</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_986">
<id>1188</id>
<edge_type>4</edge_type>
<source_obj>213</source_obj>
<sink_obj>216</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_987">
<mId>1</mId>
<mTag>remux</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>46</count>
<item_version>0</item_version>
<item>23</item>
<item>25</item>
<item>28</item>
<item>31</item>
<item>34</item>
<item>36</item>
<item>41</item>
<item>46</item>
<item>54</item>
<item>64</item>
<item>67</item>
<item>69</item>
<item>72</item>
<item>75</item>
<item>78</item>
<item>83</item>
<item>88</item>
<item>93</item>
<item>101</item>
<item>112</item>
<item>114</item>
<item>117</item>
<item>125</item>
<item>128</item>
<item>133</item>
<item>136</item>
<item>146</item>
<item>150</item>
<item>153</item>
<item>162</item>
<item>169</item>
<item>177</item>
<item>180</item>
<item>183</item>
<item>186</item>
<item>193</item>
<item>209</item>
<item>212</item>
<item>215</item>
<item>224</item>
<item>228</item>
<item>234</item>
<item>237</item>
<item>239</item>
<item>242</item>
<item>244</item>
</basic_blocks>
<mII>1</mII>
<mDepth>2</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>1</mMinLatency>
<mMaxLatency>1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
</cdfg_regions>
<fsm class_id="24" tracking_level="1" version="0" object_id="_988">
<states class_id="25" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="26" tracking_level="1" version="0" object_id="_989">
<id>1</id>
<operations class_id="27" tracking_level="0" version="0">
<count>157</count>
<item_version>0</item_version>
<item class_id="28" tracking_level="1" version="0" object_id="_990">
<id>15</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_991">
<id>16</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_992">
<id>17</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_993">
<id>18</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_994">
<id>19</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_995">
<id>20</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_996">
<id>21</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_997">
<id>22</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_998">
<id>24</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_999">
<id>26</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1000">
<id>27</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1001">
<id>29</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1002">
<id>30</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1003">
<id>32</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1004">
<id>33</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1005">
<id>35</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1006">
<id>37</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1007">
<id>38</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1008">
<id>39</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1009">
<id>40</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1010">
<id>42</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1011">
<id>43</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1012">
<id>45</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1013">
<id>47</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1014">
<id>48</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1015">
<id>49</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1016">
<id>50</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1017">
<id>51</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1018">
<id>52</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1019">
<id>53</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1020">
<id>55</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1021">
<id>58</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1022">
<id>59</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1023">
<id>60</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1024">
<id>63</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1025">
<id>65</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1026">
<id>66</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1027">
<id>68</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1028">
<id>70</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1029">
<id>71</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1030">
<id>73</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1031">
<id>74</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1032">
<id>76</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1033">
<id>77</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1034">
<id>79</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1035">
<id>80</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1036">
<id>81</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1037">
<id>82</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1038">
<id>84</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1039">
<id>85</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1040">
<id>86</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1041">
<id>87</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1042">
<id>89</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1043">
<id>90</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1044">
<id>92</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1045">
<id>94</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1046">
<id>95</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1047">
<id>96</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1048">
<id>97</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1049">
<id>98</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1050">
<id>99</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1051">
<id>100</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1052">
<id>102</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1053">
<id>105</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1054">
<id>106</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1055">
<id>107</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1056">
<id>108</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1057">
<id>111</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1058">
<id>113</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1059">
<id>115</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1060">
<id>116</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1061">
<id>118</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1062">
<id>119</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1063">
<id>120</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1064">
<id>121</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1065">
<id>124</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1066">
<id>126</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1067">
<id>127</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1068">
<id>129</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1069">
<id>130</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1070">
<id>131</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1071">
<id>132</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1072">
<id>134</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1073">
<id>135</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1074">
<id>137</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1075">
<id>138</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1076">
<id>139</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1077">
<id>140</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1078">
<id>141</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1079">
<id>142</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1080">
<id>145</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1081">
<id>149</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1082">
<id>151</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1083">
<id>152</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1084">
<id>154</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1085">
<id>155</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1086">
<id>156</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1087">
<id>157</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1088">
<id>158</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1089">
<id>159</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1090">
<id>160</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1091">
<id>161</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1092">
<id>163</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1093">
<id>164</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1094">
<id>165</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1095">
<id>166</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1096">
<id>167</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1097">
<id>168</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1098">
<id>170</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1099">
<id>171</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1100">
<id>172</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1101">
<id>173</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1102">
<id>174</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1103">
<id>175</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1104">
<id>176</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1105">
<id>178</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1106">
<id>179</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1107">
<id>181</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1108">
<id>182</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1109">
<id>184</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1110">
<id>185</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1111">
<id>187</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1112">
<id>188</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1113">
<id>189</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1114">
<id>190</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1115">
<id>191</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1116">
<id>192</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1117">
<id>194</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1118">
<id>195</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1119">
<id>198</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1120">
<id>199</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1121">
<id>200</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1122">
<id>201</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1123">
<id>202</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1124">
<id>203</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1125">
<id>204</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1126">
<id>205</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1127">
<id>208</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1128">
<id>210</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1129">
<id>211</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1130">
<id>213</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1131">
<id>214</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1132">
<id>216</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1133">
<id>217</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1134">
<id>218</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1135">
<id>219</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1136">
<id>220</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1137">
<id>223</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1138">
<id>227</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1139">
<id>229</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1140">
<id>230</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1141">
<id>231</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1142">
<id>232</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1143">
<id>233</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1144">
<id>235</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1145">
<id>238</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1146">
<id>240</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1147">
<id>2</id>
<operations>
<count>33</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1148">
<id>9</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1149">
<id>10</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1150">
<id>11</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1151">
<id>12</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1152">
<id>13</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1153">
<id>14</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1154">
<id>44</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1155">
<id>56</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1156">
<id>57</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1157">
<id>61</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1158">
<id>62</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1159">
<id>91</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1160">
<id>103</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1161">
<id>104</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1162">
<id>109</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1163">
<id>110</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1164">
<id>122</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1165">
<id>123</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1166">
<id>143</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1167">
<id>144</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1168">
<id>147</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1169">
<id>148</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1170">
<id>196</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1171">
<id>197</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1172">
<id>206</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1173">
<id>207</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1174">
<id>221</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1175">
<id>222</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1176">
<id>225</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1177">
<id>226</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1178">
<id>236</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1179">
<id>241</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1180">
<id>243</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="29" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="1" version="0" object_id="_1181">
<inState>1</inState>
<outState>2</outState>
<condition class_id="31" tracking_level="0" version="0">
<id>227</id>
<sop class_id="32" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="33" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
</transitions>
</fsm>
<res class_id="-1"></res>
<node_label_latency class_id="35" tracking_level="0" version="0">
<count>184</count>
<item_version>0</item_version>
<item class_id="36" tracking_level="0" version="0">
<first>15</first>
<second class_id="37" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>16</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>17</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>18</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>19</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>20</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>21</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>22</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>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>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>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>35</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>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>1</first>
<second>0</second>
</second>
</item>
<item>
<first>45</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>55</first>
<second>
<first>0</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>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>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>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>68</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>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>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>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>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>89</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>90</first>
<second>
<first>0</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>0</first>
<second>0</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>0</first>
<second>0</second>
</second>
</item>
<item>
<first>97</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>98</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>99</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>100</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>102</first>
<second>
<first>0</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>0</first>
<second>0</second>
</second>
</item>
<item>
<first>106</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>107</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>108</first>
<second>
<first>0</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>0</first>
<second>0</second>
</second>
</item>
<item>
<first>113</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>115</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>116</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>118</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>119</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>120</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>121</first>
<second>
<first>0</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>0</first>
<second>0</second>
</second>
</item>
<item>
<first>126</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>127</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>129</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>130</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>131</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>132</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>134</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>135</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>137</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>138</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>139</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>140</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>141</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>142</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>143</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>144</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>145</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>147</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>148</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>149</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>151</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>152</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>154</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>155</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>156</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>157</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>158</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>159</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>160</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>161</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>163</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>164</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>165</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>166</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>167</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>168</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>170</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>171</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>172</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>173</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>174</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>175</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>176</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>178</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>179</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>181</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>182</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>184</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>185</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>187</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>188</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>189</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>190</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>191</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>192</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>194</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>195</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>196</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>197</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>198</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>199</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>200</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>201</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>202</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>203</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>204</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>205</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>206</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>207</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>208</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>210</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>211</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>213</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>214</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>216</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>217</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>218</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>219</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>220</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>221</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>222</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>223</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>225</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>226</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>227</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>229</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>230</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>231</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>232</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>233</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>235</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>236</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>238</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>240</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>241</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>243</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="38" tracking_level="0" version="0">
<count>46</count>
<item_version>0</item_version>
<item class_id="39" tracking_level="0" version="0">
<first>23</first>
<second class_id="40" tracking_level="0" version="0">
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>25</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>31</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>36</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>46</first>
<second>
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>54</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>64</first>
<second>
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>67</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>72</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>78</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>88</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>93</first>
<second>
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>101</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>112</first>
<second>
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>114</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>117</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>125</first>
<second>
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>128</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>133</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>136</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>146</first>
<second>
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>150</first>
<second>
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>153</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>162</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>169</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>177</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>180</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>183</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>186</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>193</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>209</first>
<second>
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>212</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>215</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>224</first>
<second>
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>228</first>
<second>
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>234</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>237</first>
<second>
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>239</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>242</first>
<second>
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>244</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="41" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="42" tracking_level="1" version="0" object_id="_1182">
<region_name>remux</region_name>
<basic_blocks>
<count>46</count>
<item_version>0</item_version>
<item>23</item>
<item>25</item>
<item>28</item>
<item>31</item>
<item>34</item>
<item>36</item>
<item>41</item>
<item>46</item>
<item>54</item>
<item>64</item>
<item>67</item>
<item>69</item>
<item>72</item>
<item>75</item>
<item>78</item>
<item>83</item>
<item>88</item>
<item>93</item>
<item>101</item>
<item>112</item>
<item>114</item>
<item>117</item>
<item>125</item>
<item>128</item>
<item>133</item>
<item>136</item>
<item>146</item>
<item>150</item>
<item>153</item>
<item>162</item>
<item>169</item>
<item>177</item>
<item>180</item>
<item>183</item>
<item>186</item>
<item>193</item>
<item>209</item>
<item>212</item>
<item>215</item>
<item>224</item>
<item>228</item>
<item>234</item>
<item>237</item>
<item>239</item>
<item>242</item>
<item>244</item>
</basic_blocks>
<nodes>
<count>0</count>
<item_version>0</item_version>
</nodes>
<anchor_node>-1</anchor_node>
<region_type>8</region_type>
<interval>1</interval>
<pipe_depth>2</pipe_depth>
</item>
</regions>
<dp_fu_nodes class_id="43" tracking_level="0" version="0">
<count>99</count>
<item_version>0</item_version>
<item class_id="44" tracking_level="0" version="0">
<first>196</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>26</item>
<item>70</item>
<item>115</item>
<item>134</item>
<item>213</item>
</second>
</item>
<item>
<first>204</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>32</item>
<item>76</item>
<item>181</item>
</second>
</item>
<item>
<first>212</first>
<second>
<count>6</count>
<item_version>0</item_version>
<item>37</item>
<item>84</item>
<item>118</item>
<item>137</item>
<item>187</item>
<item>216</item>
</second>
</item>
<item>
<first>218</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>47</item>
<item>94</item>
<item>205</item>
</second>
</item>
<item>
<first>224</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>65</item>
<item>126</item>
<item>151</item>
</second>
</item>
<item>
<first>232</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>79</item>
<item>129</item>
<item>154</item>
</second>
</item>
<item>
<first>238</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>62</item>
<item>110</item>
<item>123</item>
<item>144</item>
<item>148</item>
<item>207</item>
<item>222</item>
<item>226</item>
</second>
</item>
<item>
<first>248</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>260</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>269</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>278</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
<item>
<first>290</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>299</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>308</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>163</item>
</second>
</item>
<item>
<first>321</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>164</item>
</second>
</item>
<item>
<first>333</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>165</item>
</second>
</item>
<item>
<first>344</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>194</item>
</second>
</item>
<item>
<first>355</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>195</item>
</second>
</item>
<item>
<first>365</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>229</item>
</second>
</item>
<item>
<first>432</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>230</item>
</second>
</item>
<item>
<first>498</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>231</item>
</second>
</item>
<item>
<first>567</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>232</item>
</second>
</item>
<item>
<first>633</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>645</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>657</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>668</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
<item>
<first>680</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>692</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>704</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>196</item>
</second>
</item>
<item>
<first>716</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>197</item>
</second>
</item>
<item>
<first>723</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>29</item>
<item>73</item>
</second>
</item>
<item>
<first>728</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>38</item>
<item>85</item>
<item>119</item>
</second>
</item>
<item>
<first>733</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>39</item>
<item>86</item>
<item>120</item>
</second>
</item>
<item>
<first>743</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>48</item>
<item>95</item>
</second>
</item>
<item>
<first>752</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>49</item>
<item>96</item>
</second>
</item>
<item>
<first>758</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>50</item>
<item>97</item>
</second>
</item>
<item>
<first>763</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>51</item>
<item>98</item>
</second>
</item>
<item>
<first>773</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>52</item>
<item>99</item>
</second>
</item>
<item>
<first>779</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>184</item>
<item>210</item>
</second>
</item>
<item>
<first>785</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>188</item>
<item>217</item>
</second>
</item>
<item>
<first>795</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>189</item>
<item>218</item>
</second>
</item>
<item>
<first>801</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>190</item>
<item>219</item>
</second>
</item>
<item>
<first>807</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>191</item>
<item>220</item>
</second>
</item>
<item>
<first>830</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>834</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>840</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>849</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>858</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>864</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>874</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>881</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>887</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>893</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>900</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>904</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>910</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>916</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>922</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>107</item>
</second>
</item>
<item>
<first>928</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>108</item>
</second>
</item>
<item>
<first>937</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</second>
</item>
<item>
<first>944</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>130</item>
</second>
</item>
<item>
<first>948</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>131</item>
</second>
</item>
<item>
<first>954</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>138</item>
</second>
</item>
<item>
<first>960</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>139</item>
</second>
</item>
<item>
<first>969</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>140</item>
</second>
</item>
<item>
<first>975</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>141</item>
</second>
</item>
<item>
<first>981</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>142</item>
</second>
</item>
<item>
<first>990</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>155</item>
</second>
</item>
<item>
<first>995</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>156</item>
</second>
</item>
<item>
<first>1001</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>157</item>
</second>
</item>
<item>
<first>1009</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>158</item>
</second>
</item>
<item>
<first>1013</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>159</item>
</second>
</item>
<item>
<first>1022</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>160</item>
</second>
</item>
<item>
<first>1031</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>166</item>
</second>
</item>
<item>
<first>1041</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>167</item>
</second>
</item>
<item>
<first>1047</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>170</item>
</second>
</item>
<item>
<first>1057</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>171</item>
</second>
</item>
<item>
<first>1063</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>172</item>
</second>
</item>
<item>
<first>1069</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>173</item>
</second>
</item>
<item>
<first>1075</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>174</item>
</second>
</item>
<item>
<first>1081</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>175</item>
</second>
</item>
<item>
<first>1087</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>178</item>
</second>
</item>
<item>
<first>1093</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>198</item>
</second>
</item>
<item>
<first>1103</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>199</item>
</second>
</item>
<item>
<first>1113</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>200</item>
</second>
</item>
<item>
<first>1119</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>201</item>
</second>
</item>
<item>
<first>1125</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>202</item>
</second>
</item>
<item>
<first>1133</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>203</item>
</second>
</item>
<item>
<first>1137</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>204</item>
</second>
</item>
<item>
<first>1143</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>235</item>
</second>
</item>
<item>
<first>1149</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>240</item>
</second>
</item>
<item>
<first>1155</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>1171</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>1188</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>122</item>
</second>
</item>
<item>
<first>1200</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>143</item>
</second>
</item>
<item>
<first>1213</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>147</item>
</second>
</item>
<item>
<first>1221</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>206</item>
</second>
</item>
<item>
<first>1238</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>221</item>
</second>
</item>
<item>
<first>1249</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>225</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="46" tracking_level="0" version="0">
<count>81</count>
<item_version>0</item_version>
<item class_id="47" tracking_level="0" version="0">
<first>grp_fu_723</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>29</item>
<item>73</item>
</second>
</item>
<item>
<first>grp_fu_728</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>38</item>
<item>85</item>
<item>119</item>
</second>
</item>
<item>
<first>grp_fu_733</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>39</item>
<item>86</item>
<item>120</item>
</second>
</item>
<item>
<first>grp_fu_743</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>48</item>
<item>95</item>
</second>
</item>
<item>
<first>grp_fu_752</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>49</item>
<item>96</item>
</second>
</item>
<item>
<first>grp_fu_758</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>50</item>
<item>97</item>
</second>
</item>
<item>
<first>grp_fu_763</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>51</item>
<item>98</item>
</second>
</item>
<item>
<first>grp_fu_779</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>184</item>
<item>210</item>
</second>
</item>
<item>
<first>grp_fu_785</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>188</item>
<item>217</item>
</second>
</item>
<item>
<first>grp_fu_795</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>189</item>
<item>218</item>
</second>
</item>
<item>
<first>grp_fu_801</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>190</item>
<item>219</item>
</second>
</item>
<item>
<first>grp_fu_807</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>191</item>
<item>220</item>
</second>
</item>
<item>
<first>icmp9_fu_1113</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>200</item>
</second>
</item>
<item>
<first>icmp_fu_874</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>not_tmp_EOP_V_i_fu_975</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>141</item>
</second>
</item>
<item>
<first>outputWord_metadata_1_fu_900</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>outputWord_metadata_s_fu_944</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>130</item>
</second>
</item>
<item>
<first>p_Result_20_i_fu_1047</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>170</item>
</second>
</item>
<item>
<first>p_Result_21_i_fu_1093</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>198</item>
</second>
</item>
<item>
<first>p_Result_i_fu_1031</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>166</item>
</second>
</item>
<item>
<first>p_Val2_10_phi_fu_321</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>164</item>
</second>
</item>
<item>
<first>p_Val2_s_fu_990</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>155</item>
</second>
</item>
<item>
<first>p_rmKeyLength_load_fu_1022</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>160</item>
</second>
</item>
<item>
<first>p_s_fu_1013</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>159</item>
</second>
</item>
<item>
<first>remuxState_flag_14_i_phi_fu_365</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>229</item>
</second>
</item>
<item>
<first>remuxState_flag_2_i_phi_fu_308</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>163</item>
</second>
</item>
<item>
<first>remuxState_new_1_i_phi_fu_432</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>230</item>
</second>
</item>
<item>
<first>rmKeyLength_flag_15_s_phi_fu_498</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>231</item>
</second>
</item>
<item>
<first>rmKeyLength_flag_5_i_phi_fu_344</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>194</item>
</second>
</item>
<item>
<first>rmKeyLength_load_1_i_phi_fu_290</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>rmKeyLength_load_i_phi_fu_260</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>rmKeyLength_loc_2_i_phi_fu_333</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>165</item>
</second>
</item>
<item>
<first>rmKeyLength_new_12_i_phi_fu_567</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>232</item>
</second>
</item>
<item>
<first>rmKeyLength_new_5_i_phi_fu_355</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>195</item>
</second>
</item>
<item>
<first>storemerge10_cast_i_fu_1133</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>203</item>
</second>
</item>
<item>
<first>storemerge10_i_fu_1125</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>202</item>
</second>
</item>
<item>
<first>storemerge1_i_fu_928</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>108</item>
</second>
</item>
<item>
<first>storemerge5_i_fu_960</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>139</item>
</second>
</item>
<item>
<first>storemerge6_cast_i_fu_981</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>142</item>
</second>
</item>
<item>
<first>tmp_100_fu_1009</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>158</item>
</second>
</item>
<item>
<first>tmp_102_fu_1057</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>171</item>
</second>
</item>
<item>
<first>tmp_103_fu_1063</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>172</item>
</second>
</item>
<item>
<first>tmp_104_fu_1069</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>173</item>
</second>
</item>
<item>
<first>tmp_105_fu_1075</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>174</item>
</second>
</item>
<item>
<first>tmp_106_fu_1081</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>175</item>
</second>
</item>
<item>
<first>tmp_10_2_fu_1155</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>tmp_110_fu_1103</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>199</item>
</second>
</item>
<item>
<first>tmp_1_5_fu_1238</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>221</item>
</second>
</item>
<item>
<first>tmp_2_2_fu_1249</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>225</item>
</second>
</item>
<item>
<first>tmp_3_2_fu_1221</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>206</item>
</second>
</item>
<item>
<first>tmp_5_2_fu_1200</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>143</item>
</second>
</item>
<item>
<first>tmp_66_i_fu_954</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>138</item>
</second>
</item>
<item>
<first>tmp_69_i_fu_1041</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>167</item>
</second>
</item>
<item>
<first>tmp_6_fu_1213</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>147</item>
</second>
</item>
<item>
<first>tmp_72_i_fu_1087</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>178</item>
</second>
</item>
<item>
<first>tmp_7_fu_1188</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>122</item>
</second>
</item>
<item>
<first>tmp_83_i_phi_fu_269</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>tmp_84_i_fu_881</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>tmp_85_i_fu_887</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>tmp_88_i_phi_fu_299</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>tmp_89_i_fu_910</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>tmp_90_i_fu_916</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>tmp_93_i_fu_1119</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>201</item>
</second>
</item>
<item>
<first>tmp_97_fu_864</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>tmp_99_fu_1001</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>157</item>
</second>
</item>
<item>
<first>tmp_9_1_fu_1171</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>tmp_EOP_V_1_fu_969</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>140</item>
</second>
</item>
<item>
<first>tmp_EOP_V_2_fu_893</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>tmp_EOP_V_3_fu_922</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>107</item>
</second>
</item>
<item>
<first>tmp_EOP_V_fu_937</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</second>
</item>
<item>
<first>tmp_keyValid_V_1_phi_fu_248</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>tmp_keyValid_V_2_phi_fu_278</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
<item>
<first>tmp_keyValid_V_phi_fu_704</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>196</item>
</second>
</item>
<item>
<first>tmp_key_V_3_phi_fu_716</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>197</item>
</second>
</item>
<item>
<first>tmp_key_V_4_phi_fu_633</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>tmp_key_V_5_phi_fu_668</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
<item>
<first>tmp_s_fu_858</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>tmp_valueValid_V_1_phi_fu_680</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>tmp_valueValid_V_phi_fu_645</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>tmp_value_V_1_phi_fu_657</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>tmp_value_V_2_phi_fu_692</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</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>18</count>
<item_version>0</item_version>
<item>
<first>StgValue_138_store_fu_1137</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>204</item>
</second>
</item>
<item>
<first>StgValue_157_store_fu_1143</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>235</item>
</second>
</item>
<item>
<first>StgValue_159_store_fu_1149</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>240</item>
</second>
</item>
<item>
<first>StgValue_49_store_fu_904</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>StgValue_83_store_fu_948</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>131</item>
</second>
</item>
<item>
<first>StgValue_99_store_fu_995</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>156</item>
</second>
</item>
<item>
<first>grp_nbreadreq_fu_196</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>26</item>
<item>70</item>
<item>115</item>
<item>134</item>
<item>213</item>
</second>
</item>
<item>
<first>grp_nbreadreq_fu_204</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>32</item>
<item>76</item>
<item>181</item>
</second>
</item>
<item>
<first>grp_nbreadreq_fu_224</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>65</item>
<item>126</item>
<item>151</item>
</second>
</item>
<item>
<first>grp_read_fu_212</first>
<second>
<count>6</count>
<item_version>0</item_version>
<item>37</item>
<item>84</item>
<item>118</item>
<item>137</item>
<item>187</item>
<item>216</item>
</second>
</item>
<item>
<first>grp_read_fu_218</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>47</item>
<item>94</item>
<item>205</item>
</second>
</item>
<item>
<first>grp_read_fu_232</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>79</item>
<item>129</item>
<item>154</item>
</second>
</item>
<item>
<first>grp_store_fu_773</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>52</item>
<item>99</item>
</second>
</item>
<item>
<first>grp_write_fu_238</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>62</item>
<item>110</item>
<item>123</item>
<item>144</item>
<item>148</item>
<item>207</item>
<item>222</item>
<item>226</item>
</second>
</item>
<item>
<first>remuxState_load_load_fu_830</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>rmKeyLength_load_load_fu_840</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>rmMdBuffer_metadata_1_load_fu_834</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>rmValueLength_load_load_fu_849</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</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="48" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>49</count>
<item_version>0</item_version>
<item>
<first>245</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>257</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>266</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>275</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
<item>
<first>287</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>296</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>305</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>163</item>
</second>
</item>
<item>
<first>318</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>164</item>
</second>
</item>
<item>
<first>330</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>165</item>
</second>
</item>
<item>
<first>341</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>194</item>
</second>
</item>
<item>
<first>352</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>195</item>
</second>
</item>
<item>
<first>362</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>229</item>
</second>
</item>
<item>
<first>429</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>230</item>
</second>
</item>
<item>
<first>495</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>231</item>
</second>
</item>
<item>
<first>564</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>232</item>
</second>
</item>
<item>
<first>629</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>640</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>653</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>664</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
<item>
<first>675</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>688</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>699</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>196</item>
</second>
</item>
<item>
<first>712</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>197</item>
</second>
</item>
<item>
<first>817</first>
<second>
<count>6</count>
<item_version>0</item_version>
<item>37</item>
<item>84</item>
<item>118</item>
<item>137</item>
<item>187</item>
<item>216</item>
</second>
</item>
<item>
<first>824</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>47</item>
<item>94</item>
<item>205</item>
</second>
</item>
<item>
<first>1258</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>1262</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>1266</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>1270</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
<item>
<first>1274</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>1278</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>1283</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>1287</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>70</item>
</second>
</item>
<item>
<first>1291</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>1295</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>1299</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>1304</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>107</item>
</second>
</item>
<item>
<first>1309</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
<item>
<first>1313</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</second>
</item>
<item>
<first>1318</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>126</item>
</second>
</item>
<item>
<first>1322</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>130</item>
</second>
</item>
<item>
<first>1328</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>134</item>
</second>
</item>
<item>
<first>1332</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>140</item>
</second>
</item>
<item>
<first>1340</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>167</item>
</second>
</item>
<item>
<first>1344</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>175</item>
</second>
</item>
<item>
<first>1348</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>178</item>
</second>
</item>
<item>
<first>1352</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>181</item>
</second>
</item>
<item>
<first>1359</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>210</item>
</second>
</item>
<item>
<first>1363</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>213</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>49</count>
<item_version>0</item_version>
<item>
<first>outputWord_metadata_1_reg_1299</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>outputWord_metadata_s_reg_1322</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>130</item>
</second>
</item>
<item>
<first>p_Val2_10_reg_318</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>164</item>
</second>
</item>
<item>
<first>reg_817</first>
<second>
<count>6</count>
<item_version>0</item_version>
<item>37</item>
<item>84</item>
<item>118</item>
<item>137</item>
<item>187</item>
<item>216</item>
</second>
</item>
<item>
<first>reg_824</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>47</item>
<item>94</item>
<item>205</item>
</second>
</item>
<item>
<first>remuxState_flag_14_i_reg_362</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>229</item>
</second>
</item>
<item>
<first>remuxState_flag_2_i_reg_305</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>163</item>
</second>
</item>
<item>
<first>remuxState_load_reg_1258</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>remuxState_new_1_i_reg_429</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>230</item>
</second>
</item>
<item>
<first>rmKeyLength_flag_15_s_reg_495</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>231</item>
</second>
</item>
<item>
<first>rmKeyLength_flag_5_i_reg_341</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>194</item>
</second>
</item>
<item>
<first>rmKeyLength_load_1_i_reg_287</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>rmKeyLength_load_i_reg_257</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>rmKeyLength_loc_2_i_reg_330</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>165</item>
</second>
</item>
<item>
<first>rmKeyLength_new_12_i_reg_564</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>232</item>
</second>
</item>
<item>
<first>rmKeyLength_new_5_i_reg_352</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>195</item>
</second>
</item>
<item>
<first>tmp_106_reg_1344</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>175</item>
</second>
</item>
<item>
<first>tmp_10_reg_1274</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>tmp_11_reg_1363</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>213</item>
</second>
</item>
<item>
<first>tmp_12_reg_1352</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>181</item>
</second>
</item>
<item>
<first>tmp_13_reg_1295</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>tmp_1_reg_1283</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>tmp_2_reg_1309</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
<item>
<first>tmp_3_reg_1266</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>tmp_5_reg_1328</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>134</item>
</second>
</item>
<item>
<first>tmp_64_i_reg_1270</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
<item>
<first>tmp_68_i_reg_1291</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>tmp_69_i_reg_1340</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>167</item>
</second>
</item>
<item>
<first>tmp_72_i_reg_1348</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>178</item>
</second>
</item>
<item>
<first>tmp_73_i_reg_1359</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>210</item>
</second>
</item>
<item>
<first>tmp_83_i_reg_266</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>tmp_88_i_reg_296</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>tmp_8_reg_1287</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>70</item>
</second>
</item>
<item>
<first>tmp_9_reg_1318</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>126</item>
</second>
</item>
<item>
<first>tmp_EOP_V_1_reg_1332</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>140</item>
</second>
</item>
<item>
<first>tmp_EOP_V_2_reg_1278</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>tmp_EOP_V_3_reg_1304</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>107</item>
</second>
</item>
<item>
<first>tmp_EOP_V_reg_1313</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</second>
</item>
<item>
<first>tmp_keyValid_V_1_reg_245</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>tmp_keyValid_V_2_reg_275</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
<item>
<first>tmp_keyValid_V_reg_699</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>196</item>
</second>
</item>
<item>
<first>tmp_key_V_3_reg_712</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>197</item>
</second>
</item>
<item>
<first>tmp_key_V_4_reg_629</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>tmp_key_V_5_reg_664</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
<item>
<first>tmp_s_reg_1262</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>tmp_valueValid_V_1_reg_675</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>tmp_valueValid_V_reg_640</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>tmp_value_V_1_reg_653</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>tmp_value_V_2_reg_688</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
</dp_regname_nodes>
<dp_reg_phi>
<count>23</count>
<item_version>0</item_version>
<item>
<first>245</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>257</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>266</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>275</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
<item>
<first>287</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>296</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>305</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>163</item>
</second>
</item>
<item>
<first>318</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>164</item>
</second>
</item>
<item>
<first>330</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>165</item>
</second>
</item>
<item>
<first>341</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>194</item>
</second>
</item>
<item>
<first>352</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>195</item>
</second>
</item>
<item>
<first>362</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>229</item>
</second>
</item>
<item>
<first>429</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>230</item>
</second>
</item>
<item>
<first>495</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>231</item>
</second>
</item>
<item>
<first>564</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>232</item>
</second>
</item>
<item>
<first>629</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>640</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>653</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>664</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
<item>
<first>675</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>688</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>699</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>196</item>
</second>
</item>
<item>
<first>712</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>197</item>
</second>
</item>
</dp_reg_phi>
<dp_regname_phi>
<count>23</count>
<item_version>0</item_version>
<item>
<first>p_Val2_10_reg_318</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>164</item>
</second>
</item>
<item>
<first>remuxState_flag_14_i_reg_362</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>229</item>
</second>
</item>
<item>
<first>remuxState_flag_2_i_reg_305</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>163</item>
</second>
</item>
<item>
<first>remuxState_new_1_i_reg_429</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>230</item>
</second>
</item>
<item>
<first>rmKeyLength_flag_15_s_reg_495</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>231</item>
</second>
</item>
<item>
<first>rmKeyLength_flag_5_i_reg_341</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>194</item>
</second>
</item>
<item>
<first>rmKeyLength_load_1_i_reg_287</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>rmKeyLength_load_i_reg_257</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>rmKeyLength_loc_2_i_reg_330</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>165</item>
</second>
</item>
<item>
<first>rmKeyLength_new_12_i_reg_564</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>232</item>
</second>
</item>
<item>
<first>rmKeyLength_new_5_i_reg_352</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>195</item>
</second>
</item>
<item>
<first>tmp_83_i_reg_266</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>tmp_88_i_reg_296</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>tmp_keyValid_V_1_reg_245</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>tmp_keyValid_V_2_reg_275</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
<item>
<first>tmp_keyValid_V_reg_699</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>196</item>
</second>
</item>
<item>
<first>tmp_key_V_3_reg_712</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>197</item>
</second>
</item>
<item>
<first>tmp_key_V_4_reg_629</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>tmp_key_V_5_reg_664</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
<item>
<first>tmp_valueValid_V_1_reg_675</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>tmp_valueValid_V_reg_640</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>tmp_value_V_1_reg_653</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>tmp_value_V_2_reg_688</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
</dp_regname_phi>
<dp_port_io_nodes class_id="49" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="50" tracking_level="0" version="0">
<first>getPath2remux_V_V</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>nbreadreq</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>181</item>
<item>76</item>
<item>32</item>
</second>
</item>
<item>
<first>read</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>205</item>
<item>94</item>
<item>47</item>
</second>
</item>
</second>
</item>
<item>
<first>keyBuffer_V_V</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>nbreadreq</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>213</item>
<item>134</item>
<item>115</item>
<item>70</item>
<item>26</item>
</second>
</item>
<item>
<first>read</first>
<second>
<count>6</count>
<item_version>0</item_version>
<item>216</item>
<item>187</item>
<item>137</item>
<item>118</item>
<item>84</item>
<item>37</item>
</second>
</item>
</second>
</item>
<item>
<first>metadataBuffer_V</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>nbreadreq</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>151</item>
<item>126</item>
<item>65</item>
</second>
</item>
<item>
<first>read</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>154</item>
<item>129</item>
<item>79</item>
</second>
</item>
</second>
</item>
<item>
<first>valueStoreDram2merge_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>222</item>
<item>226</item>
<item>207</item>
<item>144</item>
<item>148</item>
<item>123</item>
<item>110</item>
<item>62</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core class_id="51" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="52" tracking_level="0" version="0">
<first>5</first>
<second>FIFO</second>
</item>
<item>
<first>6</first>
<second>FIFO</second>
</item>
<item>
<first>7</first>
<second>FIFO</second>
</item>
<item>
<first>8</first>
<second>FIFO</second>
</item>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
| 26.35906 | 105 | 0.602939 |
38fcc9202fa4336a35c891325fee887646cb95e7 | 1,443 | ads | Ada | tier-1/xcb/source/thin/xcb-xcb_timecoord_iterator_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_timecoord_iterator_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_timecoord_iterator_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 xcb.xcb_timecoord_t;
with Interfaces.C;
with Interfaces.C.Pointers;
package xcb.xcb_timecoord_iterator_t is
-- Item
--
type Item is record
data : access xcb.xcb_timecoord_t.Item;
the_rem : aliased Interfaces.C.int;
index : aliased Interfaces.C.int;
end record;
-- Item_Array
--
type Item_Array is
array
(Interfaces.C.size_t range <>) of aliased xcb.xcb_timecoord_iterator_t
.Item;
-- Pointer
--
package C_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_timecoord_iterator_t.Item,
Element_Array => xcb.xcb_timecoord_iterator_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_timecoord_iterator_t
.Pointer;
-- Pointer_Pointer
--
package C_Pointer_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_timecoord_iterator_t.Pointer,
Element_Array => xcb.xcb_timecoord_iterator_t.Pointer_Array,
Default_Terminator => null);
subtype Pointer_Pointer is C_Pointer_Pointers.Pointer;
end xcb.xcb_timecoord_iterator_t;
| 26.722222 | 77 | 0.668746 |
1e07fbdbd2ba9b3cd04e94cab1eda4e004614dcb | 1,322 | ads | Ada | llvm-gcc-4.2-2.9/gcc/ada/a-szuzha.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-szuzha.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | llvm-gcc-4.2-2.9/gcc/ada/a-szuzha.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT LIBRARY COMPONENTS --
-- --
-- A D A . S T R I N G S . W I D E _ U N B O U N D E D . W I D E _ H A S H --
-- --
-- S p e c --
-- --
-- This specification is adapted from the Ada Reference Manual for use with --
-- GNAT. In accordance with the copyright of that document, you can freely --
-- copy and modify this specification, provided that if you redistribute a --
-- modified version, any changes that you have made are clearly indicated. --
-- --
------------------------------------------------------------------------------
with Ada.Containers;
function Ada.Strings.Wide_Wide_Unbounded.Wide_Wide_Hash
(Key : Unbounded_Wide_Wide_String) return Containers.Hash_Type;
pragma Preelaborate (Ada.Strings.Wide_Wide_Unbounded.Wide_Wide_Hash);
| 60.090909 | 78 | 0.36233 |
8b2b4642ee30ef6f51c8d212f9992e78227663e2 | 6,782 | ads | Ada | software/hal/hpl/STM32/drivers/i2c_stm32f4/stm32-i2c.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 12 | 2017-06-08T14:19:57.000Z | 2022-03-09T02:48:59.000Z | software/hal/hpl/STM32/drivers/i2c_stm32f4/stm32-i2c.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 6 | 2017-06-08T13:13:50.000Z | 2020-05-15T09:32:43.000Z | software/hal/hpl/STM32/drivers/i2c_stm32f4/stm32-i2c.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 3 | 2017-06-30T14:05:06.000Z | 2022-02-17T12:20:45.000Z | ------------------------------------------------------------------------------
-- --
-- Copyright (C) 2015-2016, AdaCore --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions are --
-- met: --
-- 1. Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- 2. Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in --
-- the documentation and/or other materials provided with the --
-- distribution. --
-- 3. Neither the name of STMicroelectronics nor the names of its --
-- contributors may be used to endorse or promote products derived --
-- from this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT --
-- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, --
-- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY --
-- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT --
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE --
-- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
-- --
-- This file is based on: --
-- --
-- @file stm32f4xx_hal_i2c.h --
-- @author MCD Application Team --
-- @version V1.1.0 --
-- @date 19-June-2014 --
-- @brief Header file of I2C HAL module. --
-- --
-- COPYRIGHT(c) 2014 STMicroelectronics --
------------------------------------------------------------------------------
-- This file provides definitions for the STM32F4 (ARM Cortex M4F
-- from ST Microelectronics) Inter-Integrated Circuit (I2C) facility.
private with STM32_SVD.I2C;
with HAL.I2C;
package STM32.I2C is
type I2C_Device_Mode is
(I2C_Mode,
SMBusDevice_Mode,
SMBusHost_Mode);
type I2C_Duty_Cycle is
(DutyCycle_16_9,
DutyCycle_2);
type I2C_Acknowledgement is (Ack_Disable, Ack_Enable);
type I2C_Direction is (Transmitter, Receiver);
type I2C_Addressing_Mode is
(Addressing_Mode_7bit,
Addressing_Mode_10bit);
type I2C_Configuration is record
Clock_Speed : Word;
Mode : I2C_Device_Mode := I2C_Mode;
Duty_Cycle : I2C_Duty_Cycle := DutyCycle_2;
Addressing_Mode : I2C_Addressing_Mode;
Own_Address : UInt10;
-- an I2C general call dispatches the same data to all connected
-- devices.
General_Call_Enabled : Boolean := False;
-- Clock stretching is a mean for a slave device to slow down the
-- i2c clock in order to process the communication.
Clock_Stretching_Enabled : Boolean := True;
end record;
type Internal_I2C_Port is private;
type I2C_Port (Periph : not null access Internal_I2C_Port) is
limited new HAL.I2C.I2C_Port with private;
procedure Configure
(Handle : in out I2C_Port;
Conf : I2C_Configuration)
with Post => Port_Enabled (Handle);
procedure Set_State (This : in out I2C_Port; Enabled : Boolean);
function Port_Enabled (This : I2C_Port) return Boolean;
overriding
procedure Master_Transmit
(Handle : in out I2C_Port;
Addr : HAL.I2C.I2C_Address;
Data : HAL.I2C.I2C_Data;
Status : out HAL.I2C.I2C_Status;
Timeout : Natural := 1000);
overriding
procedure Master_Receive
(Handle : in out I2C_Port;
Addr : HAL.I2C.I2C_Address;
Data : out HAL.I2C.I2C_Data;
Status : out HAL.I2C.I2C_Status;
Timeout : Natural := 1000);
overriding
procedure Mem_Write
(Handle : in out I2C_Port;
Addr : HAL.I2C.I2C_Address;
Mem_Addr : Short;
Mem_Addr_Size : HAL.I2C.I2C_Memory_Address_Size;
Data : HAL.I2C.I2C_Data;
Status : out HAL.I2C.I2C_Status;
Timeout : Natural := 1000);
overriding
procedure Mem_Read
(Handle : in out I2C_Port;
Addr : HAL.I2C.I2C_Address;
Mem_Addr : Short;
Mem_Addr_Size : HAL.I2C.I2C_Memory_Address_Size;
Data : out HAL.I2C.I2C_Data;
Status : out HAL.I2C.I2C_Status;
Timeout : Natural := 1000);
type I2C_Interrupt is
(Error_Interrupt,
Event_Interrupt,
Buffer_Interrupt);
procedure Enable_Interrupt
(This : in out I2C_Port;
Source : I2C_Interrupt)
with Post => Enabled (This, Source);
procedure Disable_Interrupt
(This : in out I2C_Port;
Source : I2C_Interrupt)
with Post => not Enabled (This, Source);
function Enabled
(This : I2C_Port;
Source : I2C_Interrupt)
return Boolean;
private
type I2C_State is
(Reset,
Ready,
Master_Busy_Tx,
Master_Busy_Rx,
Mem_Busy_Tx,
Mem_Busy_Rx);
type Internal_I2C_Port is new STM32_SVD.I2C.I2C_Peripheral;
type I2C_Port (Periph : not null access Internal_I2C_Port) is
limited new HAL.I2C.I2C_Port with record
Config : I2C_Configuration;
State : I2C_State := Reset;
end record;
end STM32.I2C;
| 40.130178 | 78 | 0.538337 |
a0262dc8fe5c00b8be6d9365b93903f3b9762ae9 | 3,340 | adb | Ada | src/traces/agate-traces_output__console.adb | Fabien-Chouteau/AGATE | cd8dbc54c1c70379c833e7cd710e2326ad6e9a91 | [
"BSD-3-Clause"
] | 3 | 2017-12-23T10:25:07.000Z | 2021-06-09T13:47:19.000Z | src/traces/agate-traces_output__console.adb | Fabien-Chouteau/AGATE | cd8dbc54c1c70379c833e7cd710e2326ad6e9a91 | [
"BSD-3-Clause"
] | null | null | null | src/traces/agate-traces_output__console.adb | Fabien-Chouteau/AGATE | cd8dbc54c1c70379c833e7cd710e2326ad6e9a91 | [
"BSD-3-Clause"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- Copyright (C) 2018, Fabien Chouteau --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions are --
-- met: --
-- 1. Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- 2. Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in --
-- the documentation and/or other materials provided with the --
-- distribution. --
-- 3. Neither the name of the copyright holder nor the names of its --
-- contributors may be used to endorse or promote products derived --
-- from this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT --
-- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, --
-- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY --
-- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT --
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE --
-- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
with AGATE.Console; use AGATE.Console;
package body AGATE.Traces_Output is
Init_Done : Boolean := False;
----------------
-- Initialize --
----------------
procedure Initialize
(Filename : String)
is
pragma Unreferenced (Filename);
begin
Init_Done := True;
end Initialize;
--------------
-- Finalize --
--------------
procedure Finalize is null;
-----------------
-- Initialized --
-----------------
function Initialized return Boolean is
begin
return Init_Done;
end Initialized;
-----------
-- Write --
-----------
function Write
(Buffer_Address : System.Address;
Buffer_Size : Natural)
return Natural
is
Str : array (1 .. Buffer_Size) of Character
with Address => Buffer_Address;
begin
for C of Str loop
AGATE.Console.Print (C);
end loop;
return Buffer_Size;
end Write;
end AGATE.Traces_Output;
| 39.761905 | 78 | 0.513772 |
Subsets and Splits