CombinedText stringlengths 4 3.42M |
|---|
with GNAT.Exception_Traces;
with GNAT.Traceback.Symbolic;
with Ada.Text_IO; use Ada.Text_IO;
with Ada.Command_Line;
with Ada.Directories;
procedure Taglib.Tests.Main is
procedure Test (Name : String) is
F : constant File := File_New (Name);
T : constant Tag := F.Get_Tag;
begin
Put_Line (Name);
Put_Line (" Title => " & T.Title);
Put_Line (" Artist => " & T.Artist);
Put_Line (" Album => " & T.Album);
Put_Line (" Comment => " & T.Comment);
Put_Line (" Year => " & T.Year'Img);
Put_Line (" Track => " & T.Track'Img);
end;
begin
GNAT.Exception_Traces.Trace_On (GNAT.Exception_Traces.Every_Raise);
GNAT.Exception_Traces.Set_Trace_Decorator (GNAT.Traceback.Symbolic.Symbolic_Traceback_No_Hex'Access);
for I in 1 .. Ada.Command_Line.Argument_Count loop
if Ada.Directories.Exists (Ada.Command_Line.Argument (I)) then
Test (Ada.Command_Line.Argument (I));
else
Put_Line (Ada.Command_Line.Argument (I) & " is not found");
end if;
end loop;
end taglib.Tests.Main;
|
-- { dg-do compile }
procedure Entry_Queues3 is
generic
type Large_Range is range <>;
package Queue is
end;
package body Queue is
task T is
entry E(Large_Range);
end T ;
task body T is
begin
accept E(Large_Range'First) do
null;
end e ;
end T ;
end Queue;
type Large_Range is range 0 .. Long_Integer'Last;
package My_Queue is new Queue(Large_Range); -- { dg-warning "warning" }
begin
null;
end;
|
with CONFIG;
package body PREFACE is
procedure PUT(S : STRING) is
begin
if not CONFIG.SUPPRESS_PREFACE then
TEXT_IO.PUT(TEXT_IO.CURRENT_OUTPUT, S);
end if;
end PUT;
procedure SET_COL(PC : TEXT_IO.POSITIVE_COUNT) is
begin
if not CONFIG.SUPPRESS_PREFACE then
TEXT_IO.SET_COL(TEXT_IO.CURRENT_OUTPUT, PC);
end if;
end SET_COL;
procedure PUT_LINE(S : STRING) is
begin
if not CONFIG.SUPPRESS_PREFACE then
TEXT_IO.PUT_LINE(TEXT_IO.CURRENT_OUTPUT, S);
end if;
end PUT_LINE;
procedure NEW_LINE(SPACING : TEXT_IO.POSITIVE_COUNT := 1) is
begin
if not CONFIG.SUPPRESS_PREFACE then
TEXT_IO.NEW_LINE(TEXT_IO.CURRENT_OUTPUT, SPACING);
end if;
end NEW_LINE;
procedure PUT(N : INTEGER; WIDTH : TEXT_IO.FIELD := INTEGER'WIDTH) is
package INTEGER_IO is new TEXT_IO.INTEGER_IO(INTEGER);
begin
if not CONFIG.SUPPRESS_PREFACE then
INTEGER_IO.PUT(TEXT_IO.CURRENT_OUTPUT, N, WIDTH);
end if;
end PUT;
end PREFACE;
|
-----------------------------------------------------------------------
-- net -- Network stack
-- Copyright (C) 2016 Stephane Carrez
-- Written by Stephane Carrez (Stephane.Carrez@gmail.com)
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
package body Net is
-- ------------------------------
-- Returns true if the IPv4 address is a multicast address.
-- ------------------------------
function Is_Multicast (IP : in Ip_Addr) return Boolean is
begin
return (IP (IP'First) and 16#f0#) = 16#e0#;
end Is_Multicast;
end Net;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S E M _ C H 1 0 --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2006, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Atree; use Atree;
with Debug; use Debug;
with Einfo; use Einfo;
with Errout; use Errout;
with Exp_Util; use Exp_Util;
with Fname; use Fname;
with Fname.UF; use Fname.UF;
with Freeze; use Freeze;
with Impunit; use Impunit;
with Inline; use Inline;
with Lib; use Lib;
with Lib.Load; use Lib.Load;
with Lib.Xref; use Lib.Xref;
with Namet; use Namet;
with Nlists; use Nlists;
with Nmake; use Nmake;
with Opt; use Opt;
with Output; use Output;
with Restrict; use Restrict;
with Rtsfind; use Rtsfind;
with Sem; use Sem;
with Sem_Ch6; use Sem_Ch6;
with Sem_Ch7; use Sem_Ch7;
with Sem_Ch8; use Sem_Ch8;
with Sem_Dist; use Sem_Dist;
with Sem_Prag; use Sem_Prag;
with Sem_Util; use Sem_Util;
with Sem_Warn; use Sem_Warn;
with Stand; use Stand;
with Sinfo; use Sinfo;
with Sinfo.CN; use Sinfo.CN;
with Sinput; use Sinput;
with Snames; use Snames;
with Style; use Style;
with Stylesw; use Stylesw;
with Tbuild; use Tbuild;
with Ttypes; use Ttypes;
with Uname; use Uname;
package body Sem_Ch10 is
-----------------------
-- Local Subprograms --
-----------------------
procedure Analyze_Context (N : Node_Id);
-- Analyzes items in the context clause of compilation unit
procedure Build_Limited_Views (N : Node_Id);
-- Build and decorate the list of shadow entities for a package mentioned
-- in a limited_with clause. If the package was not previously analyzed
-- then it also performs a basic decoration of the real entities; this
-- is required to do not pass non-decorated entities to the back-end.
-- Implements Ada 2005 (AI-50217).
procedure Check_Body_Needed_For_SAL (Unit_Name : Entity_Id);
-- Check whether the source for the body of a compilation unit must
-- be included in a standalone library.
procedure Check_With_Type_Clauses (N : Node_Id);
-- If N is a body, verify that any with_type clauses on the spec, or
-- on the spec of any parent, have a matching with_clause.
procedure Check_Private_Child_Unit (N : Node_Id);
-- If a with_clause mentions a private child unit, the compilation
-- unit must be a member of the same family, as described in 10.1.2 (8).
procedure Check_Stub_Level (N : Node_Id);
-- Verify that a stub is declared immediately within a compilation unit,
-- and not in an inner frame.
procedure Expand_With_Clause (Item : Node_Id; Nam : Node_Id; N : Node_Id);
-- When a child unit appears in a context clause, the implicit withs on
-- parents are made explicit, and with clauses are inserted in the context
-- clause before the one for the child. If a parent in the with_clause
-- is a renaming, the implicit with_clause is on the renaming whose name
-- is mentioned in the with_clause, and not on the package it renames.
-- N is the compilation unit whose list of context items receives the
-- implicit with_clauses.
function Get_Parent_Entity (Unit : Node_Id) return Entity_Id;
-- Get defining entity of parent unit of a child unit. In most cases this
-- is the defining entity of the unit, but for a child instance whose
-- parent needs a body for inlining, the instantiation node of the parent
-- has not yet been rewritten as a package declaration, and the entity has
-- to be retrieved from the Instance_Spec of the unit.
procedure Implicit_With_On_Parent (Child_Unit : Node_Id; N : Node_Id);
-- If the main unit is a child unit, implicit withs are also added for
-- all its ancestors.
function In_Chain (E : Entity_Id) return Boolean;
-- Check that the shadow entity is not already in the homonym chain, for
-- example through a limited_with clause in a parent unit.
procedure Install_Context_Clauses (N : Node_Id);
-- Subsidiary to Install_Context and Install_Parents. Process only with_
-- and use_clauses for current unit and its library unit if any.
procedure Install_Limited_Context_Clauses (N : Node_Id);
-- Subsidiary to Install_Context. Process only limited with_clauses
-- for current unit. Implements Ada 2005 (AI-50217).
procedure Install_Limited_Withed_Unit (N : Node_Id);
-- Place shadow entities for a limited_with package in the visibility
-- structures for the current compilation. Implements Ada 2005 (AI-50217).
procedure Install_Withed_Unit
(With_Clause : Node_Id;
Private_With_OK : Boolean := False);
-- If the unit is not a child unit, make unit immediately visible.
-- The caller ensures that the unit is not already currently installed.
-- The flag Private_With_OK is set true in Install_Private_With_Clauses,
-- which is called when compiling the private part of a package, or
-- installing the private declarations of a parent unit.
procedure Install_Parents (Lib_Unit : Node_Id; Is_Private : Boolean);
-- This procedure establishes the context for the compilation of a child
-- unit. If Lib_Unit is a child library spec then the context of the parent
-- is installed, and the parent itself made immediately visible, so that
-- the child unit is processed in the declarative region of the parent.
-- Install_Parents makes a recursive call to itself to ensure that all
-- parents are loaded in the nested case. If Lib_Unit is a library body,
-- the only effect of Install_Parents is to install the private decls of
-- the parents, because the visible parent declarations will have been
-- installed as part of the context of the corresponding spec.
procedure Install_Siblings (U_Name : Entity_Id; N : Node_Id);
-- In the compilation of a child unit, a child of any of the ancestor
-- units is directly visible if it is visible, because the parent is in
-- an enclosing scope. Iterate over context to find child units of U_Name
-- or of some ancestor of it.
function Is_Child_Spec (Lib_Unit : Node_Id) return Boolean;
-- Lib_Unit is a library unit which may be a spec or a body. Is_Child_Spec
-- returns True if Lib_Unit is a library spec which is a child spec, i.e.
-- a library spec that has a parent. If the call to Is_Child_Spec returns
-- True, then Parent_Spec (Lib_Unit) is non-Empty and points to the
-- compilation unit for the parent spec.
--
-- Lib_Unit can also be a subprogram body that acts as its own spec. If
-- the Parent_Spec is non-empty, this is also a child unit.
procedure Remove_With_Type_Clause (Name : Node_Id);
-- Remove imported type and its enclosing package from visibility, and
-- remove attributes of imported type so they don't interfere with its
-- analysis (should it appear otherwise in the context).
procedure Remove_Context_Clauses (N : Node_Id);
-- Subsidiary of previous one. Remove use_ and with_clauses
procedure Remove_Limited_With_Clause (N : Node_Id);
-- Remove from visibility the shadow entities introduced for a package
-- mentioned in a limited_with clause. Implements Ada 2005 (AI-50217).
procedure Remove_Parents (Lib_Unit : Node_Id);
-- Remove_Parents checks if Lib_Unit is a child spec. If so then the parent
-- contexts established by the corresponding call to Install_Parents are
-- removed. Remove_Parents contains a recursive call to itself to ensure
-- that all parents are removed in the nested case.
procedure Remove_Unit_From_Visibility (Unit_Name : Entity_Id);
-- Reset all visibility flags on unit after compiling it, either as a
-- main unit or as a unit in the context.
procedure Unchain (E : Entity_Id);
-- Remove single entity from visibility list
procedure Analyze_Proper_Body (N : Node_Id; Nam : Entity_Id);
-- Common processing for all stubs (subprograms, tasks, packages, and
-- protected cases). N is the stub to be analyzed. Once the subunit
-- name is established, load and analyze. Nam is the non-overloadable
-- entity for which the proper body provides a completion. Subprogram
-- stubs are handled differently because they can be declarations.
--------------------------
-- Limited_With_Clauses --
--------------------------
-- Limited_With clauses are the mechanism chosen for Ada05 to support
-- mutually recursive types declared in different units. A limited_with
-- clause that names package P in the context of unit U makes the types
-- declared in the visible part of P available within U, but with the
-- restriction that these types can only be used as incomplete types.
-- The limited_with clause does not impose a semantic dependence on P,
-- and it is possible for two packages to have limited_with_clauses on
-- each other without creating an elaboration circularity.
-- To support this feature, the analysis of a limited_with clause must
-- create an abbreviated view of the package, without performing any
-- semantic analysis on it. This "package abstract" contains shadow
-- types that are in one-one correspondence with the real types in the
-- package, and that have the properties of incomplete types.
-- The implementation creates two element lists: one to chain the shadow
-- entities, and one to chain the corresponding type entities in the tree
-- of the package. Links between corresponding entities in both chains
-- allow the compiler to select the proper view of a given type, depending
-- on the context. Note that in contrast with the handling of private
-- types, the limited view and the non-limited view of a type are treated
-- as separate entities, and no entity exchange needs to take place, which
-- makes the implementation must simpler than could be feared.
------------------------------
-- Analyze_Compilation_Unit --
------------------------------
procedure Analyze_Compilation_Unit (N : Node_Id) is
Unit_Node : constant Node_Id := Unit (N);
Lib_Unit : Node_Id := Library_Unit (N);
Spec_Id : Node_Id;
Main_Cunit : constant Node_Id := Cunit (Main_Unit);
Par_Spec_Name : Unit_Name_Type;
Unum : Unit_Number_Type;
procedure Check_Redundant_Withs
(Context_Items : List_Id;
Spec_Context_Items : List_Id := No_List);
-- Determine whether the context list of a compilation unit contains
-- redundant with clauses. When checking body clauses against spec
-- clauses, set Context_Items to the context list of the body and
-- Spec_Context_Items to that of the spec. Parent packages are not
-- examined for documentation purposes.
procedure Generate_Parent_References (N : Node_Id; P_Id : Entity_Id);
-- Generate cross-reference information for the parents of child units.
-- N is a defining_program_unit_name, and P_Id is the immediate parent.
---------------------------
-- Check_Redundant_Withs --
---------------------------
procedure Check_Redundant_Withs
(Context_Items : List_Id;
Spec_Context_Items : List_Id := No_List)
is
Clause : Node_Id;
procedure Process_Body_Clauses
(Context_List : List_Id;
Clause : Node_Id;
Used : in out Boolean;
Used_Type_Or_Elab : in out Boolean);
-- Examine the context clauses of a package body, trying to match
-- the name entity of Clause with any list element. If the match
-- occurs on a use package clause, set Used to True, for a use
-- type clause, pragma Elaborate or pragma Elaborate_All, set
-- Used_Type_Or_Elab to True.
procedure Process_Spec_Clauses
(Context_List : List_Id;
Clause : Node_Id;
Used : in out Boolean;
Withed : in out Boolean;
Exit_On_Self : Boolean := False);
-- Examine the context clauses of a package spec, trying to match
-- the name entity of Clause with any list element. If the match
-- occurs on a use package clause, set Used to True, for a with
-- package clause other than Clause, set Withed to True. Limited
-- with clauses, implicitly generated with clauses and withs
-- having pragmas Elaborate or Elaborate_All applied to them are
-- skipped. Exit_On_Self is used to control the search loop and
-- force an exit whenever Clause sees itself in the search.
--------------------------
-- Process_Body_Clauses --
--------------------------
procedure Process_Body_Clauses
(Context_List : List_Id;
Clause : Node_Id;
Used : in out Boolean;
Used_Type_Or_Elab : in out Boolean)
is
Nam_Ent : constant Entity_Id := Entity (Name (Clause));
Cont_Item : Node_Id;
Prag_Unit : Node_Id;
Subt_Mark : Node_Id;
Use_Item : Node_Id;
begin
Used := False;
Used_Type_Or_Elab := False;
Cont_Item := First (Context_List);
while Present (Cont_Item) loop
-- Package use clause
if Nkind (Cont_Item) = N_Use_Package_Clause
and then not Used
then
Use_Item := First (Names (Cont_Item));
while Present (Use_Item) and then not Used loop
if Entity (Use_Item) = Nam_Ent then
Used := True;
end if;
Next (Use_Item);
end loop;
-- Type use clause
elsif Nkind (Cont_Item) = N_Use_Type_Clause
and then not Used_Type_Or_Elab
then
Subt_Mark := First (Subtype_Marks (Cont_Item));
while Present (Subt_Mark)
and then not Used_Type_Or_Elab
loop
if Entity (Prefix (Subt_Mark)) = Nam_Ent then
Used_Type_Or_Elab := True;
end if;
Next (Subt_Mark);
end loop;
-- Pragma Elaborate or Elaborate_All
elsif Nkind (Cont_Item) = N_Pragma
and then
(Chars (Cont_Item) = Name_Elaborate
or else
Chars (Cont_Item) = Name_Elaborate_All)
and then not Used_Type_Or_Elab
then
Prag_Unit :=
First (Pragma_Argument_Associations (Cont_Item));
while Present (Prag_Unit)
and then not Used_Type_Or_Elab
loop
if Entity (Expression (Prag_Unit)) = Nam_Ent then
Used_Type_Or_Elab := True;
end if;
Next (Prag_Unit);
end loop;
end if;
Next (Cont_Item);
end loop;
end Process_Body_Clauses;
--------------------------
-- Process_Spec_Clauses --
--------------------------
procedure Process_Spec_Clauses
(Context_List : List_Id;
Clause : Node_Id;
Used : in out Boolean;
Withed : in out Boolean;
Exit_On_Self : Boolean := False)
is
Nam_Ent : constant Entity_Id := Entity (Name (Clause));
Cont_Item : Node_Id;
Use_Item : Node_Id;
begin
Used := False;
Withed := False;
Cont_Item := First (Context_List);
while Present (Cont_Item) loop
-- Stop the search since the context items after Cont_Item
-- have already been examined in a previous iteration of
-- the reverse loop in Check_Redundant_Withs.
if Exit_On_Self
and Cont_Item = Clause
then
exit;
end if;
-- Package use clause
if Nkind (Cont_Item) = N_Use_Package_Clause
and then not Used
then
Use_Item := First (Names (Cont_Item));
while Present (Use_Item) and then not Used loop
if Entity (Use_Item) = Nam_Ent then
Used := True;
end if;
Next (Use_Item);
end loop;
-- Package with clause. Avoid processing self, implicitly
-- generated with clauses or limited with clauses. Note
-- that we examine with clauses having pragmas Elaborate
-- or Elaborate_All applied to them due to cases such as:
--
-- with Pack;
-- with Pack;
-- pragma Elaborate (Pack);
--
-- In this case, the second with clause is redundant since
-- the pragma applies only to the first "with Pack;".
elsif Nkind (Cont_Item) = N_With_Clause
and then not Implicit_With (Cont_Item)
and then not Limited_Present (Cont_Item)
and then Cont_Item /= Clause
and then Entity (Name (Cont_Item)) = Nam_Ent
then
Withed := True;
end if;
Next (Cont_Item);
end loop;
end Process_Spec_Clauses;
-- Start of processing for Check_Redundant_Withs
begin
Clause := Last (Context_Items);
while Present (Clause) loop
-- Avoid checking implicitly generated with clauses, limited
-- with clauses or withs that have pragma Elaborate or
-- Elaborate_All apllied.
if Nkind (Clause) = N_With_Clause
and then not Implicit_With (Clause)
and then not Limited_Present (Clause)
and then not Elaborate_Present (Clause)
then
-- Package body-to-spec check
if Present (Spec_Context_Items) then
declare
Used_In_Body : Boolean := False;
Used_In_Spec : Boolean := False;
Used_Type_Or_Elab : Boolean := False;
Withed_In_Spec : Boolean := False;
begin
Process_Spec_Clauses
(Context_List => Spec_Context_Items,
Clause => Clause,
Used => Used_In_Spec,
Withed => Withed_In_Spec);
Process_Body_Clauses
(Context_List => Context_Items,
Clause => Clause,
Used => Used_In_Body,
Used_Type_Or_Elab => Used_Type_Or_Elab);
-- "Type Elab" refers to the presence of either a use
-- type clause, pragmas Elaborate or Elaborate_All.
-- +---------------+---------------------------+------+
-- | Spec | Body | Warn |
-- +--------+------+--------+------+-----------+------+
-- | Withed | Used | Withed | Used | Type Elab | |
-- | X | | X | | | X |
-- | X | | X | X | | |
-- | X | | X | | X | |
-- | X | | X | X | X | |
-- | X | X | X | | | X |
-- | X | X | X | | X | |
-- | X | X | X | X | | X |
-- | X | X | X | X | X | |
-- +--------+------+--------+------+-----------+------+
if (Withed_In_Spec
and then not Used_Type_Or_Elab)
and then
((not Used_In_Spec
and then not Used_In_Body)
or else
Used_In_Spec)
then
Error_Msg_N ("?redundant with clause in body", Clause);
end if;
Used_In_Body := False;
Used_In_Spec := False;
Used_Type_Or_Elab := False;
Withed_In_Spec := False;
end;
-- Standalone package spec or body check
else
declare
Dont_Care : Boolean := False;
Withed : Boolean := False;
begin
-- The mechanism for examining the context clauses of a
-- package spec can be applied to package body clauses.
Process_Spec_Clauses
(Context_List => Context_Items,
Clause => Clause,
Used => Dont_Care,
Withed => Withed,
Exit_On_Self => True);
if Withed then
Error_Msg_N ("?redundant with clause", Clause);
end if;
end;
end if;
end if;
Prev (Clause);
end loop;
end Check_Redundant_Withs;
--------------------------------
-- Generate_Parent_References --
--------------------------------
procedure Generate_Parent_References (N : Node_Id; P_Id : Entity_Id) is
Pref : Node_Id;
P_Name : Entity_Id := P_Id;
begin
Pref := Name (Parent (Defining_Entity (N)));
if Nkind (Pref) = N_Expanded_Name then
-- Done already, if the unit has been compiled indirectly as
-- part of the closure of its context because of inlining.
return;
end if;
while Nkind (Pref) = N_Selected_Component loop
Change_Selected_Component_To_Expanded_Name (Pref);
Set_Entity (Pref, P_Name);
Set_Etype (Pref, Etype (P_Name));
Generate_Reference (P_Name, Pref, 'r');
Pref := Prefix (Pref);
P_Name := Scope (P_Name);
end loop;
-- The guard here on P_Name is to handle the error condition where
-- the parent unit is missing because the file was not found.
if Present (P_Name) then
Set_Entity (Pref, P_Name);
Set_Etype (Pref, Etype (P_Name));
Generate_Reference (P_Name, Pref, 'r');
Style.Check_Identifier (Pref, P_Name);
end if;
end Generate_Parent_References;
-- Start of processing for Analyze_Compilation_Unit
begin
Process_Compilation_Unit_Pragmas (N);
-- If the unit is a subunit whose parent has not been analyzed (which
-- indicates that the main unit is a subunit, either the current one or
-- one of its descendents) then the subunit is compiled as part of the
-- analysis of the parent, which we proceed to do. Basically this gets
-- handled from the top down and we don't want to do anything at this
-- level (i.e. this subunit will be handled on the way down from the
-- parent), so at this level we immediately return. If the subunit
-- ends up not analyzed, it means that the parent did not contain a
-- stub for it, or that there errors were dectected in some ancestor.
if Nkind (Unit_Node) = N_Subunit
and then not Analyzed (Lib_Unit)
then
Semantics (Lib_Unit);
if not Analyzed (Proper_Body (Unit_Node)) then
if Serious_Errors_Detected > 0 then
Error_Msg_N ("subunit not analyzed (errors in parent unit)", N);
else
Error_Msg_N ("missing stub for subunit", N);
end if;
end if;
return;
end if;
-- Analyze context (this will call Sem recursively for with'ed units)
Analyze_Context (N);
-- If the unit is a package body, the spec is already loaded and must
-- be analyzed first, before we analyze the body.
if Nkind (Unit_Node) = N_Package_Body then
-- If no Lib_Unit, then there was a serious previous error, so
-- just ignore the entire analysis effort
if No (Lib_Unit) then
return;
else
Semantics (Lib_Unit);
Check_Unused_Withs (Get_Cunit_Unit_Number (Lib_Unit));
-- Verify that the library unit is a package declaration
if Nkind (Unit (Lib_Unit)) /= N_Package_Declaration
and then
Nkind (Unit (Lib_Unit)) /= N_Generic_Package_Declaration
then
Error_Msg_N
("no legal package declaration for package body", N);
return;
-- Otherwise, the entity in the declaration is visible. Update
-- the version to reflect dependence of this body on the spec.
else
Spec_Id := Defining_Entity (Unit (Lib_Unit));
Set_Is_Immediately_Visible (Spec_Id, True);
Version_Update (N, Lib_Unit);
if Nkind (Defining_Unit_Name (Unit_Node))
= N_Defining_Program_Unit_Name
then
Generate_Parent_References (Unit_Node, Scope (Spec_Id));
end if;
end if;
end if;
-- If the unit is a subprogram body, then we similarly need to analyze
-- its spec. However, things are a little simpler in this case, because
-- here, this analysis is done only for error checking and consistency
-- purposes, so there's nothing else to be done.
elsif Nkind (Unit_Node) = N_Subprogram_Body then
if Acts_As_Spec (N) then
-- If the subprogram body is a child unit, we must create a
-- declaration for it, in order to properly load the parent(s).
-- After this, the original unit does not acts as a spec, because
-- there is an explicit one. If this unit appears in a context
-- clause, then an implicit with on the parent will be added when
-- installing the context. If this is the main unit, there is no
-- Unit_Table entry for the declaration, (It has the unit number
-- of the main unit) and code generation is unaffected.
Unum := Get_Cunit_Unit_Number (N);
Par_Spec_Name := Get_Parent_Spec_Name (Unit_Name (Unum));
if Par_Spec_Name /= No_Name then
Unum :=
Load_Unit
(Load_Name => Par_Spec_Name,
Required => True,
Subunit => False,
Error_Node => N);
if Unum /= No_Unit then
-- Build subprogram declaration and attach parent unit to it
-- This subprogram declaration does not come from source,
-- Nevertheless the backend must generate debugging info for
-- it, and this must be indicated explicitly.
declare
Loc : constant Source_Ptr := Sloc (N);
SCS : constant Boolean :=
Get_Comes_From_Source_Default;
begin
Set_Comes_From_Source_Default (False);
Lib_Unit :=
Make_Compilation_Unit (Loc,
Context_Items => New_Copy_List (Context_Items (N)),
Unit =>
Make_Subprogram_Declaration (Sloc (N),
Specification =>
Copy_Separate_Tree
(Specification (Unit_Node))),
Aux_Decls_Node =>
Make_Compilation_Unit_Aux (Loc));
Set_Library_Unit (N, Lib_Unit);
Set_Parent_Spec (Unit (Lib_Unit), Cunit (Unum));
Semantics (Lib_Unit);
Set_Acts_As_Spec (N, False);
Set_Needs_Debug_Info (Defining_Entity (Unit (Lib_Unit)));
Set_Comes_From_Source_Default (SCS);
end;
end if;
end if;
-- Here for subprogram with separate declaration
else
Semantics (Lib_Unit);
Check_Unused_Withs (Get_Cunit_Unit_Number (Lib_Unit));
Version_Update (N, Lib_Unit);
end if;
if Nkind (Defining_Unit_Name (Specification (Unit_Node))) =
N_Defining_Program_Unit_Name
then
Generate_Parent_References (
Specification (Unit_Node),
Scope (Defining_Entity (Unit (Lib_Unit))));
end if;
end if;
-- If it is a child unit, the parent must be elaborated first
-- and we update version, since we are dependent on our parent.
if Is_Child_Spec (Unit_Node) then
-- The analysis of the parent is done with style checks off
declare
Save_Style_Check : constant Boolean := Style_Check;
Save_C_Restrict : constant Save_Cunit_Boolean_Restrictions :=
Cunit_Boolean_Restrictions_Save;
begin
if not GNAT_Mode then
Style_Check := False;
end if;
Semantics (Parent_Spec (Unit_Node));
Version_Update (N, Parent_Spec (Unit_Node));
Style_Check := Save_Style_Check;
Cunit_Boolean_Restrictions_Restore (Save_C_Restrict);
end;
end if;
-- With the analysis done, install the context. Note that we can't
-- install the context from the with clauses as we analyze them,
-- because each with clause must be analyzed in a clean visibility
-- context, so we have to wait and install them all at once.
Install_Context (N);
if Is_Child_Spec (Unit_Node) then
-- Set the entities of all parents in the program_unit_name
Generate_Parent_References (
Unit_Node, Get_Parent_Entity (Unit (Parent_Spec (Unit_Node))));
end if;
-- All components of the context: with-clauses, library unit, ancestors
-- if any, (and their context) are analyzed and installed. Now analyze
-- the unit itself, which is either a package, subprogram spec or body.
Analyze (Unit_Node);
if Warn_On_Redundant_Constructs then
Check_Redundant_Withs (Context_Items (N));
if Nkind (Unit_Node) = N_Package_Body then
Check_Redundant_Withs
(Context_Items => Context_Items (N),
Spec_Context_Items => Context_Items (Lib_Unit));
end if;
end if;
-- The above call might have made Unit_Node an N_Subprogram_Body
-- from something else, so propagate any Acts_As_Spec flag.
if Nkind (Unit_Node) = N_Subprogram_Body
and then Acts_As_Spec (Unit_Node)
then
Set_Acts_As_Spec (N);
end if;
-- Register predefined units in Rtsfind
declare
Unum : constant Unit_Number_Type := Get_Source_Unit (Sloc (N));
begin
if Is_Predefined_File_Name (Unit_File_Name (Unum)) then
Set_RTU_Loaded (Unit_Node);
end if;
end;
-- Treat compilation unit pragmas that appear after the library unit
if Present (Pragmas_After (Aux_Decls_Node (N))) then
declare
Prag_Node : Node_Id := First (Pragmas_After (Aux_Decls_Node (N)));
begin
while Present (Prag_Node) loop
Analyze (Prag_Node);
Next (Prag_Node);
end loop;
end;
end if;
-- Generate distribution stubs if requested and no error
if N = Main_Cunit
and then (Distribution_Stub_Mode = Generate_Receiver_Stub_Body
or else
Distribution_Stub_Mode = Generate_Caller_Stub_Body)
and then not Fatal_Error (Main_Unit)
then
if Is_RCI_Pkg_Spec_Or_Body (N) then
-- Regular RCI package
Add_Stub_Constructs (N);
elsif (Nkind (Unit_Node) = N_Package_Declaration
and then Is_Shared_Passive (Defining_Entity
(Specification (Unit_Node))))
or else (Nkind (Unit_Node) = N_Package_Body
and then
Is_Shared_Passive (Corresponding_Spec (Unit_Node)))
then
-- Shared passive package
Add_Stub_Constructs (N);
elsif Nkind (Unit_Node) = N_Package_Instantiation
and then
Is_Remote_Call_Interface
(Defining_Entity (Specification (Instance_Spec (Unit_Node))))
then
-- Instantiation of a RCI generic package
Add_Stub_Constructs (N);
end if;
end if;
if Nkind (Unit_Node) = N_Package_Declaration
or else Nkind (Unit_Node) in N_Generic_Declaration
or else Nkind (Unit_Node) = N_Package_Renaming_Declaration
or else Nkind (Unit_Node) = N_Subprogram_Declaration
then
Remove_Unit_From_Visibility (Defining_Entity (Unit_Node));
-- If the unit is an instantiation whose body will be elaborated
-- for inlining purposes, use the the proper entity of the instance.
elsif Nkind (Unit_Node) = N_Package_Instantiation
and then not Error_Posted (Unit_Node)
then
Remove_Unit_From_Visibility
(Defining_Entity (Instance_Spec (Unit_Node)));
elsif Nkind (Unit_Node) = N_Package_Body
or else (Nkind (Unit_Node) = N_Subprogram_Body
and then not Acts_As_Spec (Unit_Node))
then
-- Bodies that are not the main unit are compiled if they
-- are generic or contain generic or inlined units. Their
-- analysis brings in the context of the corresponding spec
-- (unit declaration) which must be removed as well, to
-- return the compilation environment to its proper state.
Remove_Context (Lib_Unit);
Set_Is_Immediately_Visible (Defining_Entity (Unit (Lib_Unit)), False);
end if;
-- Last step is to deinstall the context we just installed
-- as well as the unit just compiled.
Remove_Context (N);
-- If this is the main unit and we are generating code, we must
-- check that all generic units in the context have a body if they
-- need it, even if they have not been instantiated. In the absence
-- of .ali files for generic units, we must force the load of the body,
-- just to produce the proper error if the body is absent. We skip this
-- verification if the main unit itself is generic.
if Get_Cunit_Unit_Number (N) = Main_Unit
and then Operating_Mode = Generate_Code
and then Expander_Active
then
-- Check whether the source for the body of the unit must be
-- included in a standalone library.
Check_Body_Needed_For_SAL (Cunit_Entity (Main_Unit));
-- Indicate that the main unit is now analyzed, to catch possible
-- circularities between it and generic bodies. Remove main unit
-- from visibility. This might seem superfluous, but the main unit
-- must not be visible in the generic body expansions that follow.
Set_Analyzed (N, True);
Set_Is_Immediately_Visible (Cunit_Entity (Main_Unit), False);
declare
Item : Node_Id;
Nam : Entity_Id;
Un : Unit_Number_Type;
Save_Style_Check : constant Boolean := Style_Check;
Save_C_Restrict : constant Save_Cunit_Boolean_Restrictions :=
Cunit_Boolean_Restrictions_Save;
begin
Item := First (Context_Items (N));
while Present (Item) loop
-- Ada 2005 (AI-50217): Do not consider limited-withed units
if Nkind (Item) = N_With_Clause
and then not Implicit_With (Item)
and then not Limited_Present (Item)
then
Nam := Entity (Name (Item));
if (Is_Generic_Subprogram (Nam)
and then not Is_Intrinsic_Subprogram (Nam))
or else (Ekind (Nam) = E_Generic_Package
and then Unit_Requires_Body (Nam))
then
Style_Check := False;
if Present (Renamed_Object (Nam)) then
Un :=
Load_Unit
(Load_Name => Get_Body_Name
(Get_Unit_Name
(Unit_Declaration_Node
(Renamed_Object (Nam)))),
Required => False,
Subunit => False,
Error_Node => N,
Renamings => True);
else
Un :=
Load_Unit
(Load_Name => Get_Body_Name
(Get_Unit_Name (Item)),
Required => False,
Subunit => False,
Error_Node => N,
Renamings => True);
end if;
if Un = No_Unit then
Error_Msg_NE
("body of generic unit& not found", Item, Nam);
exit;
elsif not Analyzed (Cunit (Un))
and then Un /= Main_Unit
and then not Fatal_Error (Un)
then
Style_Check := False;
Semantics (Cunit (Un));
end if;
end if;
end if;
Next (Item);
end loop;
Style_Check := Save_Style_Check;
Cunit_Boolean_Restrictions_Restore (Save_C_Restrict);
end;
end if;
-- Deal with creating elaboration Boolean if needed. We create an
-- elaboration boolean only for units that come from source since
-- units manufactured by the compiler never need elab checks.
if Comes_From_Source (N)
and then
(Nkind (Unit (N)) = N_Package_Declaration or else
Nkind (Unit (N)) = N_Generic_Package_Declaration or else
Nkind (Unit (N)) = N_Subprogram_Declaration or else
Nkind (Unit (N)) = N_Generic_Subprogram_Declaration)
then
declare
Loc : constant Source_Ptr := Sloc (N);
Unum : constant Unit_Number_Type := Get_Source_Unit (Loc);
begin
Spec_Id := Defining_Entity (Unit (N));
Generate_Definition (Spec_Id);
-- See if an elaboration entity is required for possible
-- access before elaboration checking. Note that we must
-- allow for this even if -gnatE is not set, since a client
-- may be compiled in -gnatE mode and reference the entity.
-- Case of units which do not require elaboration checks
if
-- Pure units do not need checks
Is_Pure (Spec_Id)
-- Preelaborated units do not need checks
or else Is_Preelaborated (Spec_Id)
-- No checks needed if pagma Elaborate_Body present
or else Has_Pragma_Elaborate_Body (Spec_Id)
-- No checks needed if unit does not require a body
or else not Unit_Requires_Body (Spec_Id)
-- No checks needed for predefined files
or else Is_Predefined_File_Name (Unit_File_Name (Unum))
-- No checks required if no separate spec
or else Acts_As_Spec (N)
then
-- This is a case where we only need the entity for
-- checking to prevent multiple elaboration checks.
Set_Elaboration_Entity_Required (Spec_Id, False);
-- Case of elaboration entity is required for access before
-- elaboration checking (so certainly we must build it!)
else
Set_Elaboration_Entity_Required (Spec_Id, True);
end if;
Build_Elaboration_Entity (N, Spec_Id);
end;
end if;
-- Finally, freeze the compilation unit entity. This for sure is needed
-- because of some warnings that can be output (see Freeze_Subprogram),
-- but may in general be required. If freezing actions result, place
-- them in the compilation unit actions list, and analyze them.
declare
Loc : constant Source_Ptr := Sloc (N);
L : constant List_Id :=
Freeze_Entity (Cunit_Entity (Current_Sem_Unit), Loc);
begin
while Is_Non_Empty_List (L) loop
Insert_Library_Level_Action (Remove_Head (L));
end loop;
end;
Set_Analyzed (N);
if Nkind (Unit_Node) = N_Package_Declaration
and then Get_Cunit_Unit_Number (N) /= Main_Unit
and then Expander_Active
then
declare
Save_Style_Check : constant Boolean := Style_Check;
Save_Warning : constant Warning_Mode_Type := Warning_Mode;
Options : Style_Check_Options;
begin
Save_Style_Check_Options (Options);
Reset_Style_Check_Options;
Opt.Warning_Mode := Suppress;
Check_Body_For_Inlining (N, Defining_Entity (Unit_Node));
Reset_Style_Check_Options;
Set_Style_Check_Options (Options);
Style_Check := Save_Style_Check;
Warning_Mode := Save_Warning;
end;
end if;
end Analyze_Compilation_Unit;
---------------------
-- Analyze_Context --
---------------------
procedure Analyze_Context (N : Node_Id) is
Ukind : constant Node_Kind := Nkind (Unit (N));
Item : Node_Id;
begin
-- First process all configuration pragmas at the start of the context
-- items. Strictly these are not part of the context clause, but that
-- is where the parser puts them. In any case for sure we must analyze
-- these before analyzing the actual context items, since they can have
-- an effect on that analysis (e.g. pragma Ada_2005 may allow a unit to
-- be with'ed as a result of changing categorizations in Ada 2005).
Item := First (Context_Items (N));
while Present (Item)
and then Nkind (Item) = N_Pragma
and then Chars (Item) in Configuration_Pragma_Names
loop
Analyze (Item);
Next (Item);
end loop;
-- Loop through actual context items. This is done in two passes:
-- a) The first pass analyzes non-limited with-clauses and also any
-- configuration pragmas (we need to get the latter analyzed right
-- away, since they can affect processing of subsequent items.
-- b) The second pass analyzes limited_with clauses (Ada 2005: AI-50217)
while Present (Item) loop
-- For with clause, analyze the with clause, and then update
-- the version, since we are dependent on a unit that we with.
if Nkind (Item) = N_With_Clause
and then not Limited_Present (Item)
then
-- Skip analyzing with clause if no unit, nothing to do (this
-- happens for a with that references a non-existant unit)
if Present (Library_Unit (Item)) then
Analyze (Item);
end if;
if not Implicit_With (Item) then
Version_Update (N, Library_Unit (Item));
end if;
-- Skip pragmas. Configuration pragmas at the start were handled in
-- the loop above, and remaining pragmas are not processed until we
-- actually install the context (see Install_Context). We delay the
-- analysis of these pragmas to make sure that we have installed all
-- the implicit with's on parent units.
-- Skip use clauses at this stage, since we don't want to do any
-- installing of potentially use visible entities until we we
-- actually install the complete context (in Install_Context).
-- Otherwise things can get installed in the wrong context.
else
null;
end if;
Next (Item);
end loop;
-- Second pass: examine all limited_with clauses. All other context
-- items are ignored in this pass.
Item := First (Context_Items (N));
while Present (Item) loop
if Nkind (Item) = N_With_Clause
and then Limited_Present (Item)
then
-- No need to check errors on implicitly generated limited-with
-- clauses.
if not Implicit_With (Item) then
-- Check compilation unit containing the limited-with clause
if Ukind /= N_Package_Declaration
and then Ukind /= N_Subprogram_Declaration
and then Ukind /= N_Package_Renaming_Declaration
and then Ukind /= N_Subprogram_Renaming_Declaration
and then Ukind not in N_Generic_Declaration
and then Ukind not in N_Generic_Renaming_Declaration
and then Ukind not in N_Generic_Instantiation
then
Error_Msg_N ("limited with_clause not allowed here", Item);
-- Check wrong use of a limited with clause applied to the
-- compilation unit containing the limited-with clause.
-- limited with P.Q;
-- package P.Q is ...
elsif Unit (Library_Unit (Item)) = Unit (N) then
Error_Msg_N ("wrong use of limited-with clause", Item);
-- Check wrong use of limited-with clause applied to some
-- immediate ancestor.
elsif Is_Child_Spec (Unit (N)) then
declare
Lib_U : constant Entity_Id := Unit (Library_Unit (Item));
P : Node_Id;
begin
P := Parent_Spec (Unit (N));
loop
if Unit (P) = Lib_U then
Error_Msg_N ("limited with_clause of immediate "
& "ancestor not allowed", Item);
exit;
end if;
exit when not Is_Child_Spec (Unit (P));
P := Parent_Spec (Unit (P));
end loop;
end;
end if;
-- Check if the limited-withed unit is already visible through
-- some context clause of the current compilation unit or some
-- ancestor of the current compilation unit.
declare
Lim_Unit_Name : constant Node_Id := Name (Item);
Comp_Unit : Node_Id;
It : Node_Id;
Unit_Name : Node_Id;
begin
Comp_Unit := N;
loop
It := First (Context_Items (Comp_Unit));
while Present (It) loop
if Item /= It
and then Nkind (It) = N_With_Clause
and then not Limited_Present (It)
and then
(Nkind (Unit (Library_Unit (It)))
= N_Package_Declaration
or else
Nkind (Unit (Library_Unit (It)))
= N_Package_Renaming_Declaration)
then
if Nkind (Unit (Library_Unit (It)))
= N_Package_Declaration
then
Unit_Name := Name (It);
else
Unit_Name := Name (Unit (Library_Unit (It)));
end if;
-- Check if the named package (or some ancestor)
-- leaves visible the full-view of the unit given
-- in the limited-with clause
loop
if Designate_Same_Unit (Lim_Unit_Name,
Unit_Name)
then
Error_Msg_Sloc := Sloc (It);
Error_Msg_NE
("unlimited view visible through the"
& " context clause found #",
Item, It);
Error_Msg_N
("simultaneous visibility of the limited"
& " and unlimited views not allowed"
, Item);
exit;
elsif Nkind (Unit_Name) = N_Identifier then
exit;
end if;
Unit_Name := Prefix (Unit_Name);
end loop;
end if;
Next (It);
end loop;
exit when not Is_Child_Spec (Unit (Comp_Unit));
Comp_Unit := Parent_Spec (Unit (Comp_Unit));
end loop;
end;
end if;
-- Skip analyzing with clause if no unit, see above
if Present (Library_Unit (Item)) then
Analyze (Item);
end if;
-- A limited_with does not impose an elaboration order, but
-- there is a semantic dependency for recompilation purposes.
if not Implicit_With (Item) then
Version_Update (N, Library_Unit (Item));
end if;
-- Pragmas and use clauses and with clauses other than limited
-- with's are ignored in this pass through the context items.
else
null;
end if;
Next (Item);
end loop;
end Analyze_Context;
-------------------------------
-- Analyze_Package_Body_Stub --
-------------------------------
procedure Analyze_Package_Body_Stub (N : Node_Id) is
Id : constant Entity_Id := Defining_Identifier (N);
Nam : Entity_Id;
begin
-- The package declaration must be in the current declarative part
Check_Stub_Level (N);
Nam := Current_Entity_In_Scope (Id);
if No (Nam) or else not Is_Package_Or_Generic_Package (Nam) then
Error_Msg_N ("missing specification for package stub", N);
elsif Has_Completion (Nam)
and then Present (Corresponding_Body (Unit_Declaration_Node (Nam)))
then
Error_Msg_N ("duplicate or redundant stub for package", N);
else
-- Indicate that the body of the package exists. If we are doing
-- only semantic analysis, the stub stands for the body. If we are
-- generating code, the existence of the body will be confirmed
-- when we load the proper body.
Set_Has_Completion (Nam);
Set_Scope (Defining_Entity (N), Current_Scope);
Generate_Reference (Nam, Id, 'b');
Analyze_Proper_Body (N, Nam);
end if;
end Analyze_Package_Body_Stub;
-------------------------
-- Analyze_Proper_Body --
-------------------------
procedure Analyze_Proper_Body (N : Node_Id; Nam : Entity_Id) is
Subunit_Name : constant Unit_Name_Type := Get_Unit_Name (N);
Unum : Unit_Number_Type;
procedure Optional_Subunit;
-- This procedure is called when the main unit is a stub, or when we
-- are not generating code. In such a case, we analyze the subunit if
-- present, which is user-friendly and in fact required for ASIS, but
-- we don't complain if the subunit is missing.
----------------------
-- Optional_Subunit --
----------------------
procedure Optional_Subunit is
Comp_Unit : Node_Id;
begin
-- Try to load subunit, but ignore any errors that occur during
-- the loading of the subunit, by using the special feature in
-- Errout to ignore all errors. Note that Fatal_Error will still
-- be set, so we will be able to check for this case below.
if not ASIS_Mode then
Ignore_Errors_Enable := Ignore_Errors_Enable + 1;
end if;
Unum :=
Load_Unit
(Load_Name => Subunit_Name,
Required => False,
Subunit => True,
Error_Node => N);
if not ASIS_Mode then
Ignore_Errors_Enable := Ignore_Errors_Enable - 1;
end if;
-- All done if we successfully loaded the subunit
if Unum /= No_Unit
and then (not Fatal_Error (Unum) or else Try_Semantics)
then
Comp_Unit := Cunit (Unum);
-- If the file was empty or seriously mangled, the unit
-- itself may be missing.
if No (Unit (Comp_Unit)) then
Error_Msg_N
("subunit does not contain expected proper body", N);
elsif Nkind (Unit (Comp_Unit)) /= N_Subunit then
Error_Msg_N
("expected SEPARATE subunit, found child unit",
Cunit_Entity (Unum));
else
Set_Corresponding_Stub (Unit (Comp_Unit), N);
Analyze_Subunit (Comp_Unit);
Set_Library_Unit (N, Comp_Unit);
end if;
elsif Unum = No_Unit
and then Present (Nam)
then
if Is_Protected_Type (Nam) then
Set_Corresponding_Body (Parent (Nam), Defining_Identifier (N));
else
Set_Corresponding_Body (
Unit_Declaration_Node (Nam), Defining_Identifier (N));
end if;
end if;
end Optional_Subunit;
-- Start of processing for Analyze_Proper_Body
begin
-- If the subunit is already loaded, it means that the main unit
-- is a subunit, and that the current unit is one of its parents
-- which was being analyzed to provide the needed context for the
-- analysis of the subunit. In this case we analyze the subunit and
-- continue with the parent, without looking a subsequent subunits.
if Is_Loaded (Subunit_Name) then
-- If the proper body is already linked to the stub node,
-- the stub is in a generic unit and just needs analyzing.
if Present (Library_Unit (N)) then
Set_Corresponding_Stub (Unit (Library_Unit (N)), N);
Analyze_Subunit (Library_Unit (N));
-- Otherwise we must load the subunit and link to it
else
-- Load the subunit, this must work, since we originally
-- loaded the subunit earlier on. So this will not really
-- load it, just give access to it.
Unum :=
Load_Unit
(Load_Name => Subunit_Name,
Required => True,
Subunit => False,
Error_Node => N);
-- And analyze the subunit in the parent context (note that we
-- do not call Semantics, since that would remove the parent
-- context). Because of this, we have to manually reset the
-- compiler state to Analyzing since it got destroyed by Load.
if Unum /= No_Unit then
Compiler_State := Analyzing;
-- Check that the proper body is a subunit and not a child
-- unit. If the unit was previously loaded, the error will
-- have been emitted when copying the generic node, so we
-- just return to avoid cascaded errors.
if Nkind (Unit (Cunit (Unum))) /= N_Subunit then
return;
end if;
Set_Corresponding_Stub (Unit (Cunit (Unum)), N);
Analyze_Subunit (Cunit (Unum));
Set_Library_Unit (N, Cunit (Unum));
end if;
end if;
-- If the main unit is a subunit, then we are just performing semantic
-- analysis on that subunit, and any other subunits of any parent unit
-- should be ignored, except that if we are building trees for ASIS
-- usage we want to annotate the stub properly.
elsif Nkind (Unit (Cunit (Main_Unit))) = N_Subunit
and then Subunit_Name /= Unit_Name (Main_Unit)
then
if ASIS_Mode then
Optional_Subunit;
end if;
-- But before we return, set the flag for unloaded subunits. This
-- will suppress junk warnings of variables in the same declarative
-- part (or a higher level one) that are in danger of looking unused
-- when in fact there might be a declaration in the subunit that we
-- do not intend to load.
Unloaded_Subunits := True;
return;
-- If the subunit is not already loaded, and we are generating code,
-- then this is the case where compilation started from the parent,
-- and we are generating code for an entire subunit tree. In that
-- case we definitely need to load the subunit.
-- In order to continue the analysis with the rest of the parent,
-- and other subunits, we load the unit without requiring its
-- presence, and emit a warning if not found, rather than terminating
-- the compilation abruptly, as for other missing file problems.
elsif Original_Operating_Mode = Generate_Code then
-- If the proper body is already linked to the stub node,
-- the stub is in a generic unit and just needs analyzing.
-- We update the version. Although we are not technically
-- semantically dependent on the subunit, given our approach
-- of macro substitution of subunits, it makes sense to
-- include it in the version identification.
if Present (Library_Unit (N)) then
Set_Corresponding_Stub (Unit (Library_Unit (N)), N);
Analyze_Subunit (Library_Unit (N));
Version_Update (Cunit (Main_Unit), Library_Unit (N));
-- Otherwise we must load the subunit and link to it
else
Unum :=
Load_Unit
(Load_Name => Subunit_Name,
Required => False,
Subunit => True,
Error_Node => N);
if Original_Operating_Mode = Generate_Code
and then Unum = No_Unit
then
Error_Msg_Name_1 := Subunit_Name;
Error_Msg_Name_2 :=
Get_File_Name (Subunit_Name, Subunit => True);
Error_Msg_N
("subunit% in file{ not found?", N);
Subunits_Missing := True;
end if;
-- Load_Unit may reset Compiler_State, since it may have been
-- necessary to parse an additional units, so we make sure
-- that we reset it to the Analyzing state.
Compiler_State := Analyzing;
if Unum /= No_Unit
and then (not Fatal_Error (Unum) or else Try_Semantics)
then
if Debug_Flag_L then
Write_Str ("*** Loaded subunit from stub. Analyze");
Write_Eol;
end if;
declare
Comp_Unit : constant Node_Id := Cunit (Unum);
begin
-- Check for child unit instead of subunit
if Nkind (Unit (Comp_Unit)) /= N_Subunit then
Error_Msg_N
("expected SEPARATE subunit, found child unit",
Cunit_Entity (Unum));
-- OK, we have a subunit, so go ahead and analyze it,
-- and set Scope of entity in stub, for ASIS use.
else
Set_Corresponding_Stub (Unit (Comp_Unit), N);
Analyze_Subunit (Comp_Unit);
Set_Library_Unit (N, Comp_Unit);
-- We update the version. Although we are not technically
-- semantically dependent on the subunit, given our
-- approach of macro substitution of subunits, it makes
-- sense to include it in the version identification.
Version_Update (Cunit (Main_Unit), Comp_Unit);
end if;
end;
end if;
end if;
-- The remaining case is when the subunit is not already loaded and
-- we are not generating code. In this case we are just performing
-- semantic analysis on the parent, and we are not interested in
-- the subunit. For subprograms, analyze the stub as a body. For
-- other entities the stub has already been marked as completed.
else
Optional_Subunit;
end if;
end Analyze_Proper_Body;
----------------------------------
-- Analyze_Protected_Body_Stub --
----------------------------------
procedure Analyze_Protected_Body_Stub (N : Node_Id) is
Nam : Entity_Id := Current_Entity_In_Scope (Defining_Identifier (N));
begin
Check_Stub_Level (N);
-- First occurence of name may have been as an incomplete type
if Present (Nam) and then Ekind (Nam) = E_Incomplete_Type then
Nam := Full_View (Nam);
end if;
if No (Nam)
or else not Is_Protected_Type (Etype (Nam))
then
Error_Msg_N ("missing specification for Protected body", N);
else
Set_Scope (Defining_Entity (N), Current_Scope);
Set_Has_Completion (Etype (Nam));
Generate_Reference (Nam, Defining_Identifier (N), 'b');
Analyze_Proper_Body (N, Etype (Nam));
end if;
end Analyze_Protected_Body_Stub;
----------------------------------
-- Analyze_Subprogram_Body_Stub --
----------------------------------
-- A subprogram body stub can appear with or without a previous
-- specification. If there is one, the analysis of the body will
-- find it and verify conformance. The formals appearing in the
-- specification of the stub play no role, except for requiring an
-- additional conformance check. If there is no previous subprogram
-- declaration, the stub acts as a spec, and provides the defining
-- entity for the subprogram.
procedure Analyze_Subprogram_Body_Stub (N : Node_Id) is
Decl : Node_Id;
begin
Check_Stub_Level (N);
-- Verify that the identifier for the stub is unique within this
-- declarative part.
if Nkind (Parent (N)) = N_Block_Statement
or else Nkind (Parent (N)) = N_Package_Body
or else Nkind (Parent (N)) = N_Subprogram_Body
then
Decl := First (Declarations (Parent (N)));
while Present (Decl)
and then Decl /= N
loop
if Nkind (Decl) = N_Subprogram_Body_Stub
and then (Chars (Defining_Unit_Name (Specification (Decl)))
= Chars (Defining_Unit_Name (Specification (N))))
then
Error_Msg_N ("identifier for stub is not unique", N);
end if;
Next (Decl);
end loop;
end if;
-- Treat stub as a body, which checks conformance if there is a previous
-- declaration, or else introduces entity and its signature.
Analyze_Subprogram_Body (N);
Analyze_Proper_Body (N, Empty);
end Analyze_Subprogram_Body_Stub;
---------------------
-- Analyze_Subunit --
---------------------
-- A subunit is compiled either by itself (for semantic checking)
-- or as part of compiling the parent (for code generation). In
-- either case, by the time we actually process the subunit, the
-- parent has already been installed and analyzed. The node N is
-- a compilation unit, whose context needs to be treated here,
-- because we come directly here from the parent without calling
-- Analyze_Compilation_Unit.
-- The compilation context includes the explicit context of the
-- subunit, and the context of the parent, together with the parent
-- itself. In order to compile the current context, we remove the
-- one inherited from the parent, in order to have a clean visibility
-- table. We restore the parent context before analyzing the proper
-- body itself. On exit, we remove only the explicit context of the
-- subunit.
procedure Analyze_Subunit (N : Node_Id) is
Lib_Unit : constant Node_Id := Library_Unit (N);
Par_Unit : constant Entity_Id := Current_Scope;
Lib_Spec : Node_Id := Library_Unit (Lib_Unit);
Num_Scopes : Int := 0;
Use_Clauses : array (1 .. Scope_Stack.Last) of Node_Id;
Enclosing_Child : Entity_Id := Empty;
Svg : constant Suppress_Array := Scope_Suppress;
procedure Analyze_Subunit_Context;
-- Capture names in use clauses of the subunit. This must be done
-- before re-installing parent declarations, because items in the
-- context must not be hidden by declarations local to the parent.
procedure Re_Install_Parents (L : Node_Id; Scop : Entity_Id);
-- Recursive procedure to restore scope of all ancestors of subunit,
-- from outermost in. If parent is not a subunit, the call to install
-- context installs context of spec and (if parent is a child unit)
-- the context of its parents as well. It is confusing that parents
-- should be treated differently in both cases, but the semantics are
-- just not identical.
procedure Re_Install_Use_Clauses;
-- As part of the removal of the parent scope, the use clauses are
-- removed, to be reinstalled when the context of the subunit has
-- been analyzed. Use clauses may also have been affected by the
-- analysis of the context of the subunit, so they have to be applied
-- again, to insure that the compilation environment of the rest of
-- the parent unit is identical.
procedure Remove_Scope;
-- Remove current scope from scope stack, and preserve the list
-- of use clauses in it, to be reinstalled after context is analyzed.
-----------------------------
-- Analyze_Subunit_Context --
-----------------------------
procedure Analyze_Subunit_Context is
Item : Node_Id;
Nam : Node_Id;
Unit_Name : Entity_Id;
begin
Analyze_Context (N);
-- Make withed units immediately visible. If child unit, make the
-- ultimate parent immediately visible.
Item := First (Context_Items (N));
while Present (Item) loop
if Nkind (Item) = N_With_Clause then
-- Protect frontend against previous errors in context clauses
if Nkind (Name (Item)) /= N_Selected_Component then
Unit_Name := Entity (Name (Item));
while Is_Child_Unit (Unit_Name) loop
Set_Is_Visible_Child_Unit (Unit_Name);
Unit_Name := Scope (Unit_Name);
end loop;
if not Is_Immediately_Visible (Unit_Name) then
Set_Is_Immediately_Visible (Unit_Name);
Set_Context_Installed (Item);
end if;
end if;
elsif Nkind (Item) = N_Use_Package_Clause then
Nam := First (Names (Item));
while Present (Nam) loop
Analyze (Nam);
Next (Nam);
end loop;
elsif Nkind (Item) = N_Use_Type_Clause then
Nam := First (Subtype_Marks (Item));
while Present (Nam) loop
Analyze (Nam);
Next (Nam);
end loop;
end if;
Next (Item);
end loop;
-- Reset visibility of withed units. They will be made visible
-- again when we install the subunit context.
Item := First (Context_Items (N));
while Present (Item) loop
if Nkind (Item) = N_With_Clause
-- Protect frontend against previous errors in context clauses
and then Nkind (Name (Item)) /= N_Selected_Component
then
Unit_Name := Entity (Name (Item));
while Is_Child_Unit (Unit_Name) loop
Set_Is_Visible_Child_Unit (Unit_Name, False);
Unit_Name := Scope (Unit_Name);
end loop;
if Context_Installed (Item) then
Set_Is_Immediately_Visible (Unit_Name, False);
Set_Context_Installed (Item, False);
end if;
end if;
Next (Item);
end loop;
end Analyze_Subunit_Context;
------------------------
-- Re_Install_Parents --
------------------------
procedure Re_Install_Parents (L : Node_Id; Scop : Entity_Id) is
E : Entity_Id;
begin
if Nkind (Unit (L)) = N_Subunit then
Re_Install_Parents (Library_Unit (L), Scope (Scop));
end if;
Install_Context (L);
-- If the subunit occurs within a child unit, we must restore the
-- immediate visibility of any siblings that may occur in context.
if Present (Enclosing_Child) then
Install_Siblings (Enclosing_Child, L);
end if;
New_Scope (Scop);
if Scop /= Par_Unit then
Set_Is_Immediately_Visible (Scop);
end if;
-- Make entities in scope visible again. For child units, restore
-- visibility only if they are actually in context.
E := First_Entity (Current_Scope);
while Present (E) loop
if not Is_Child_Unit (E)
or else Is_Visible_Child_Unit (E)
then
Set_Is_Immediately_Visible (E);
end if;
Next_Entity (E);
end loop;
-- A subunit appears within a body, and for a nested subunits
-- all the parents are bodies. Restore full visibility of their
-- private entities.
if Ekind (Scop) = E_Package then
Set_In_Package_Body (Scop);
Install_Private_Declarations (Scop);
end if;
end Re_Install_Parents;
----------------------------
-- Re_Install_Use_Clauses --
----------------------------
procedure Re_Install_Use_Clauses is
U : Node_Id;
begin
for J in reverse 1 .. Num_Scopes loop
U := Use_Clauses (J);
Scope_Stack.Table (Scope_Stack.Last - J + 1).First_Use_Clause := U;
Install_Use_Clauses (U, Force_Installation => True);
end loop;
end Re_Install_Use_Clauses;
------------------
-- Remove_Scope --
------------------
procedure Remove_Scope is
E : Entity_Id;
begin
Num_Scopes := Num_Scopes + 1;
Use_Clauses (Num_Scopes) :=
Scope_Stack.Table (Scope_Stack.Last).First_Use_Clause;
E := First_Entity (Current_Scope);
while Present (E) loop
Set_Is_Immediately_Visible (E, False);
Next_Entity (E);
end loop;
if Is_Child_Unit (Current_Scope) then
Enclosing_Child := Current_Scope;
end if;
Pop_Scope;
end Remove_Scope;
-- Start of processing for Analyze_Subunit
begin
if not Is_Empty_List (Context_Items (N)) then
-- Save current use clauses
Remove_Scope;
Remove_Context (Lib_Unit);
-- Now remove parents and their context, including enclosing
-- subunits and the outer parent body which is not a subunit.
if Present (Lib_Spec) then
Remove_Context (Lib_Spec);
while Nkind (Unit (Lib_Spec)) = N_Subunit loop
Lib_Spec := Library_Unit (Lib_Spec);
Remove_Scope;
Remove_Context (Lib_Spec);
end loop;
if Nkind (Unit (Lib_Unit)) = N_Subunit then
Remove_Scope;
end if;
if Nkind (Unit (Lib_Spec)) = N_Package_Body then
Remove_Context (Library_Unit (Lib_Spec));
end if;
end if;
Set_Is_Immediately_Visible (Par_Unit, False);
Analyze_Subunit_Context;
Re_Install_Parents (Lib_Unit, Par_Unit);
Set_Is_Immediately_Visible (Par_Unit);
-- If the context includes a child unit of the parent of the
-- subunit, the parent will have been removed from visibility,
-- after compiling that cousin in the context. The visibility
-- of the parent must be restored now. This also applies if the
-- context includes another subunit of the same parent which in
-- turn includes a child unit in its context.
if Ekind (Par_Unit) = E_Package then
if not Is_Immediately_Visible (Par_Unit)
or else (Present (First_Entity (Par_Unit))
and then not Is_Immediately_Visible
(First_Entity (Par_Unit)))
then
Set_Is_Immediately_Visible (Par_Unit);
Install_Visible_Declarations (Par_Unit);
Install_Private_Declarations (Par_Unit);
end if;
end if;
Re_Install_Use_Clauses;
Install_Context (N);
-- Restore state of suppress flags for current body
Scope_Suppress := Svg;
-- If the subunit is within a child unit, then siblings of any
-- parent unit that appear in the context clause of the subunit
-- must also be made immediately visible.
if Present (Enclosing_Child) then
Install_Siblings (Enclosing_Child, N);
end if;
end if;
Analyze (Proper_Body (Unit (N)));
Remove_Context (N);
end Analyze_Subunit;
----------------------------
-- Analyze_Task_Body_Stub --
----------------------------
procedure Analyze_Task_Body_Stub (N : Node_Id) is
Nam : Entity_Id := Current_Entity_In_Scope (Defining_Identifier (N));
Loc : constant Source_Ptr := Sloc (N);
begin
Check_Stub_Level (N);
-- First occurence of name may have been as an incomplete type
if Present (Nam) and then Ekind (Nam) = E_Incomplete_Type then
Nam := Full_View (Nam);
end if;
if No (Nam)
or else not Is_Task_Type (Etype (Nam))
then
Error_Msg_N ("missing specification for task body", N);
else
Set_Scope (Defining_Entity (N), Current_Scope);
Generate_Reference (Nam, Defining_Identifier (N), 'b');
Set_Has_Completion (Etype (Nam));
Analyze_Proper_Body (N, Etype (Nam));
-- Set elaboration flag to indicate that entity is callable.
-- This cannot be done in the expansion of the body itself,
-- because the proper body is not in a declarative part. This
-- is only done if expansion is active, because the context
-- may be generic and the flag not defined yet.
if Expander_Active then
Insert_After (N,
Make_Assignment_Statement (Loc,
Name =>
Make_Identifier (Loc,
New_External_Name (Chars (Etype (Nam)), 'E')),
Expression => New_Reference_To (Standard_True, Loc)));
end if;
end if;
end Analyze_Task_Body_Stub;
-------------------------
-- Analyze_With_Clause --
-------------------------
-- Analyze the declaration of a unit in a with clause. At end,
-- label the with clause with the defining entity for the unit.
procedure Analyze_With_Clause (N : Node_Id) is
-- Retrieve the original kind of the unit node, before analysis.
-- If it is a subprogram instantiation, its analysis below will
-- rewrite as the declaration of the wrapper package. If the same
-- instantiation appears indirectly elsewhere in the context, it
-- will have been analyzed already.
Unit_Kind : constant Node_Kind :=
Nkind (Original_Node (Unit (Library_Unit (N))));
E_Name : Entity_Id;
Par_Name : Entity_Id;
Pref : Node_Id;
U : Node_Id;
Intunit : Boolean;
-- Set True if the unit currently being compiled is an internal unit
Save_Style_Check : constant Boolean := Opt.Style_Check;
Save_C_Restrict : constant Save_Cunit_Boolean_Restrictions :=
Cunit_Boolean_Restrictions_Save;
begin
if Limited_Present (N) then
-- Ada 2005 (AI-50217): Build visibility structures but do not
-- analyze unit
Build_Limited_Views (N);
return;
end if;
-- We reset ordinary style checking during the analysis of a with'ed
-- unit, but we do NOT reset GNAT special analysis mode (the latter
-- definitely *does* apply to with'ed units).
if not GNAT_Mode then
Style_Check := False;
end if;
-- If the library unit is a predefined unit, and we are in high
-- integrity mode, then temporarily reset Configurable_Run_Time_Mode
-- for the analysis of the with'ed unit. This mode does not prevent
-- explicit with'ing of run-time units.
if Configurable_Run_Time_Mode
and then
Is_Predefined_File_Name
(Unit_File_Name (Get_Source_Unit (Unit (Library_Unit (N)))))
then
Configurable_Run_Time_Mode := False;
Semantics (Library_Unit (N));
Configurable_Run_Time_Mode := True;
else
Semantics (Library_Unit (N));
end if;
U := Unit (Library_Unit (N));
Check_Restriction_No_Dependence (Name (N), N);
Intunit := Is_Internal_File_Name (Unit_File_Name (Current_Sem_Unit));
-- Following checks are skipped for dummy packages (those supplied
-- for with's where no matching file could be found). Such packages
-- are identified by the Sloc value being set to No_Location
if Sloc (U) /= No_Location then
-- Check restrictions, except that we skip the check if this
-- is an internal unit unless we are compiling the internal
-- unit as the main unit. We also skip this for dummy packages.
if not Intunit or else Current_Sem_Unit = Main_Unit then
Check_Restricted_Unit (Unit_Name (Get_Source_Unit (U)), N);
end if;
-- Check for inappropriate with of internal implementation unit
-- if we are currently compiling the main unit and the main unit
-- is itself not an internal unit. We do not issue this message
-- for implicit with's generated by the compiler itself.
if Implementation_Unit_Warnings
and then Current_Sem_Unit = Main_Unit
and then not Intunit
and then not Implicit_With (N)
and then not GNAT_Mode
then
declare
U_Kind : constant Kind_Of_Unit :=
Get_Kind_Of_Unit (Get_Source_Unit (U));
begin
if U_Kind = Implementation_Unit then
Error_Msg_N ("& is an internal 'G'N'A'T unit?", Name (N));
Error_Msg_N
("\use of this unit is non-portable " &
"and version-dependent?",
Name (N));
elsif U_Kind = Ada_05_Unit
and then Ada_Version < Ada_05
and then Warn_On_Ada_2005_Compatibility
then
Error_Msg_N ("& is an Ada 2005 unit?", Name (N));
end if;
end;
end if;
end if;
-- Semantic analysis of a generic unit is performed on a copy of
-- the original tree. Retrieve the entity on which semantic info
-- actually appears.
if Unit_Kind in N_Generic_Declaration then
E_Name := Defining_Entity (U);
-- Note: in the following test, Unit_Kind is the original Nkind, but
-- in the case of an instantiation, semantic analysis above will
-- have replaced the unit by its instantiated version. If the instance
-- body has been generated, the instance now denotes the body entity.
-- For visibility purposes we need the entity of its spec.
elsif (Unit_Kind = N_Package_Instantiation
or else Nkind (Original_Node (Unit (Library_Unit (N)))) =
N_Package_Instantiation)
and then Nkind (U) = N_Package_Body
then
E_Name := Corresponding_Spec (U);
elsif Unit_Kind = N_Package_Instantiation
and then Nkind (U) = N_Package_Instantiation
then
-- If the instance has not been rewritten as a package declaration,
-- then it appeared already in a previous with clause. Retrieve
-- the entity from the previous instance.
E_Name := Defining_Entity (Specification (Instance_Spec (U)));
elsif Unit_Kind in N_Subprogram_Instantiation then
-- Instantiation node is replaced with a wrapper package.
-- Retrieve the visible subprogram created by the instance from
-- the corresponding attribute of the wrapper.
E_Name := Related_Instance (Defining_Entity (U));
elsif Unit_Kind = N_Package_Renaming_Declaration
or else Unit_Kind in N_Generic_Renaming_Declaration
then
E_Name := Defining_Entity (U);
elsif Unit_Kind = N_Subprogram_Body
and then Nkind (Name (N)) = N_Selected_Component
and then not Acts_As_Spec (Library_Unit (N))
then
-- For a child unit that has no spec, one has been created and
-- analyzed. The entity required is that of the spec.
E_Name := Corresponding_Spec (U);
else
E_Name := Defining_Entity (U);
end if;
if Nkind (Name (N)) = N_Selected_Component then
-- Child unit in a with clause
Change_Selected_Component_To_Expanded_Name (Name (N));
end if;
-- Restore style checks and restrictions
Style_Check := Save_Style_Check;
Cunit_Boolean_Restrictions_Restore (Save_C_Restrict);
-- Record the reference, but do NOT set the unit as referenced, we want
-- to consider the unit as unreferenced if this is the only reference
-- that occurs.
Set_Entity_With_Style_Check (Name (N), E_Name);
Generate_Reference (E_Name, Name (N), 'w', Set_Ref => False);
if Is_Child_Unit (E_Name) then
Pref := Prefix (Name (N));
Par_Name := Scope (E_Name);
while Nkind (Pref) = N_Selected_Component loop
Change_Selected_Component_To_Expanded_Name (Pref);
Set_Entity_With_Style_Check (Pref, Par_Name);
Generate_Reference (Par_Name, Pref);
Pref := Prefix (Pref);
-- If E_Name is the dummy entity for a nonexistent unit, its scope
-- is set to Standard_Standard, and no attempt should be made to
-- further unwind scopes.
if Par_Name /= Standard_Standard then
Par_Name := Scope (Par_Name);
end if;
end loop;
if Present (Entity (Pref))
and then not Analyzed (Parent (Parent (Entity (Pref))))
then
-- If the entity is set without its unit being compiled, the
-- original parent is a renaming, and Par_Name is the renamed
-- entity. For visibility purposes, we need the original entity,
-- which must be analyzed now because Load_Unit directly retrieves
-- the renamed unit, and the renaming declaration itself has not
-- been analyzed.
Analyze (Parent (Parent (Entity (Pref))));
pragma Assert (Renamed_Object (Entity (Pref)) = Par_Name);
Par_Name := Entity (Pref);
end if;
Set_Entity_With_Style_Check (Pref, Par_Name);
Generate_Reference (Par_Name, Pref);
end if;
-- If the withed unit is System, and a system extension pragma is
-- present, compile the extension now, rather than waiting for a
-- visibility check on a specific entity.
if Chars (E_Name) = Name_System
and then Scope (E_Name) = Standard_Standard
and then Present (System_Extend_Unit)
and then Present_System_Aux (N)
then
-- If the extension is not present, an error will have been emitted
null;
end if;
-- Ada 2005 (AI-262): Remove from visibility the entity corresponding
-- to private_with units; they will be made visible later (just before
-- the private part is analyzed)
if Private_Present (N) then
Set_Is_Immediately_Visible (E_Name, False);
end if;
-- Check for with'ing obsolescent package. Exclude subprograms here
-- since we will catch those on the call rather than the WITH.
if Is_Package_Or_Generic_Package (E_Name) then
Check_Obsolescent (E_Name, N);
end if;
end Analyze_With_Clause;
------------------------------
-- Analyze_With_Type_Clause --
------------------------------
procedure Analyze_With_Type_Clause (N : Node_Id) is
Loc : constant Source_Ptr := Sloc (N);
Nam : constant Node_Id := Name (N);
Pack : Node_Id;
Decl : Node_Id;
P : Entity_Id;
Unum : Unit_Number_Type;
Sel : Node_Id;
procedure Decorate_Tagged_Type (T : Entity_Id);
-- Set basic attributes of type, including its class_wide type
function In_Chain (E : Entity_Id) return Boolean;
-- Check that the imported type is not already in the homonym chain,
-- for example through a with_type clause in a parent unit.
--------------------------
-- Decorate_Tagged_Type --
--------------------------
procedure Decorate_Tagged_Type (T : Entity_Id) is
CW : Entity_Id;
begin
Set_Ekind (T, E_Record_Type);
Set_Is_Tagged_Type (T);
Set_Etype (T, T);
Set_From_With_Type (T);
Set_Scope (T, P);
if not In_Chain (T) then
Set_Homonym (T, Current_Entity (T));
Set_Current_Entity (T);
end if;
-- Build bogus class_wide type, if not previously done
if No (Class_Wide_Type (T)) then
CW := Make_Defining_Identifier (Loc, New_Internal_Name ('S'));
Set_Ekind (CW, E_Class_Wide_Type);
Set_Etype (CW, T);
Set_Scope (CW, P);
Set_Is_Tagged_Type (CW);
Set_Is_First_Subtype (CW, True);
Init_Size_Align (CW);
Set_Has_Unknown_Discriminants
(CW, True);
Set_Class_Wide_Type (CW, CW);
Set_Equivalent_Type (CW, Empty);
Set_From_With_Type (CW);
Set_Class_Wide_Type (T, CW);
end if;
end Decorate_Tagged_Type;
--------------
-- In_Chain --
--------------
function In_Chain (E : Entity_Id) return Boolean is
H : Entity_Id;
begin
H := Current_Entity (E);
while Present (H) loop
if H = E then
return True;
else
H := Homonym (H);
end if;
end loop;
return False;
end In_Chain;
-- Start of processing for Analyze_With_Type_Clause
begin
if Nkind (Nam) = N_Selected_Component then
Pack := New_Copy_Tree (Prefix (Nam));
Sel := Selector_Name (Nam);
else
Error_Msg_N ("illegal name for imported type", Nam);
return;
end if;
Decl :=
Make_Package_Declaration (Loc,
Specification =>
(Make_Package_Specification (Loc,
Defining_Unit_Name => Pack,
Visible_Declarations => New_List,
End_Label => Empty)));
Unum :=
Load_Unit
(Load_Name => Get_Unit_Name (Decl),
Required => True,
Subunit => False,
Error_Node => Nam);
if Unum = No_Unit
or else Nkind (Unit (Cunit (Unum))) /= N_Package_Declaration
then
Error_Msg_N ("imported type must be declared in package", Nam);
return;
elsif Unum = Current_Sem_Unit then
-- If type is defined in unit being analyzed, then the clause
-- is redundant.
return;
else
P := Cunit_Entity (Unum);
end if;
-- Find declaration for imported type, and set its basic attributes
-- if it has not been analyzed (which will be the case if there is
-- circular dependence).
declare
Decl : Node_Id;
Typ : Entity_Id;
begin
if not Analyzed (Cunit (Unum))
and then not From_With_Type (P)
then
Set_Ekind (P, E_Package);
Set_Etype (P, Standard_Void_Type);
Set_From_With_Type (P);
Set_Scope (P, Standard_Standard);
Set_Homonym (P, Current_Entity (P));
Set_Current_Entity (P);
elsif Analyzed (Cunit (Unum))
and then Is_Child_Unit (P)
then
-- If the child unit is already in scope, indicate that it is
-- visible, and remains so after intervening calls to rtsfind.
Set_Is_Visible_Child_Unit (P);
end if;
if Nkind (Parent (P)) = N_Defining_Program_Unit_Name then
-- Make parent packages visible
declare
Parent_Comp : Node_Id;
Parent_Id : Entity_Id;
Child : Entity_Id;
begin
Child := P;
Parent_Comp := Parent_Spec (Unit (Cunit (Unum)));
loop
Parent_Id := Defining_Entity (Unit (Parent_Comp));
Set_Scope (Child, Parent_Id);
-- The type may be imported from a child unit, in which
-- case the current compilation appears in the name. Do
-- not change its visibility here because it will conflict
-- with the subsequent normal processing.
if not Analyzed (Unit_Declaration_Node (Parent_Id))
and then Parent_Id /= Cunit_Entity (Current_Sem_Unit)
then
Set_Ekind (Parent_Id, E_Package);
Set_Etype (Parent_Id, Standard_Void_Type);
-- The same package may appear is several with_type
-- clauses.
if not From_With_Type (Parent_Id) then
Set_Homonym (Parent_Id, Current_Entity (Parent_Id));
Set_Current_Entity (Parent_Id);
Set_From_With_Type (Parent_Id);
end if;
end if;
Set_Is_Immediately_Visible (Parent_Id);
Child := Parent_Id;
Parent_Comp := Parent_Spec (Unit (Parent_Comp));
exit when No (Parent_Comp);
end loop;
Set_Scope (Parent_Id, Standard_Standard);
end;
end if;
-- Even if analyzed, the package may not be currently visible. It
-- must be while the with_type clause is active.
Set_Is_Immediately_Visible (P);
Decl :=
First (Visible_Declarations (Specification (Unit (Cunit (Unum)))));
while Present (Decl) loop
if Nkind (Decl) = N_Full_Type_Declaration
and then Chars (Defining_Identifier (Decl)) = Chars (Sel)
then
Typ := Defining_Identifier (Decl);
if Tagged_Present (N) then
-- The declaration must indicate that this is a tagged
-- type or a type extension.
if (Nkind (Type_Definition (Decl)) = N_Record_Definition
and then Tagged_Present (Type_Definition (Decl)))
or else
(Nkind (Type_Definition (Decl))
= N_Derived_Type_Definition
and then Present
(Record_Extension_Part (Type_Definition (Decl))))
then
null;
else
Error_Msg_N ("imported type is not a tagged type", Nam);
return;
end if;
if not Analyzed (Decl) then
-- Unit is not currently visible. Add basic attributes
-- to type and build its class-wide type.
Init_Size_Align (Typ);
Decorate_Tagged_Type (Typ);
end if;
else
if Nkind (Type_Definition (Decl))
/= N_Access_To_Object_Definition
then
Error_Msg_N
("imported type is not an access type", Nam);
elsif not Analyzed (Decl) then
Set_Ekind (Typ, E_Access_Type);
Set_Etype (Typ, Typ);
Set_Scope (Typ, P);
Init_Size (Typ, System_Address_Size);
Init_Alignment (Typ);
Set_Directly_Designated_Type (Typ, Standard_Integer);
Set_From_With_Type (Typ);
if not In_Chain (Typ) then
Set_Homonym (Typ, Current_Entity (Typ));
Set_Current_Entity (Typ);
end if;
end if;
end if;
Set_Entity (Sel, Typ);
return;
elsif ((Nkind (Decl) = N_Private_Type_Declaration
and then Tagged_Present (Decl))
or else (Nkind (Decl) = N_Private_Extension_Declaration))
and then Chars (Defining_Identifier (Decl)) = Chars (Sel)
then
Typ := Defining_Identifier (Decl);
if not Tagged_Present (N) then
Error_Msg_N ("type must be declared tagged", N);
elsif not Analyzed (Decl) then
Decorate_Tagged_Type (Typ);
end if;
Set_Entity (Sel, Typ);
Set_From_With_Type (Typ);
return;
end if;
Decl := Next (Decl);
end loop;
Error_Msg_NE ("not a visible access or tagged type in&", Nam, P);
end;
end Analyze_With_Type_Clause;
-----------------------------
-- Check_With_Type_Clauses --
-----------------------------
procedure Check_With_Type_Clauses (N : Node_Id) is
Lib_Unit : constant Node_Id := Unit (N);
procedure Check_Parent_Context (U : Node_Id);
-- Examine context items of parent unit to locate with_type clauses
--------------------------
-- Check_Parent_Context --
--------------------------
procedure Check_Parent_Context (U : Node_Id) is
Item : Node_Id;
begin
Item := First (Context_Items (U));
while Present (Item) loop
if Nkind (Item) = N_With_Type_Clause
and then not Error_Posted (Item)
and then
From_With_Type (Scope (Entity (Selector_Name (Name (Item)))))
then
Error_Msg_Sloc := Sloc (Item);
Error_Msg_N ("missing With_Clause for With_Type_Clause#", N);
end if;
Next (Item);
end loop;
end Check_Parent_Context;
-- Start of processing for Check_With_Type_Clauses
begin
if Extensions_Allowed
and then (Nkind (Lib_Unit) = N_Package_Body
or else Nkind (Lib_Unit) = N_Subprogram_Body)
then
Check_Parent_Context (Library_Unit (N));
if Is_Child_Spec (Unit (Library_Unit (N))) then
Check_Parent_Context (Parent_Spec (Unit (Library_Unit (N))));
end if;
end if;
end Check_With_Type_Clauses;
------------------------------
-- Check_Private_Child_Unit --
------------------------------
procedure Check_Private_Child_Unit (N : Node_Id) is
Lib_Unit : constant Node_Id := Unit (N);
Item : Node_Id;
Curr_Unit : Entity_Id;
Sub_Parent : Node_Id;
Priv_Child : Entity_Id;
Par_Lib : Entity_Id;
Par_Spec : Node_Id;
function Is_Private_Library_Unit (Unit : Entity_Id) return Boolean;
-- Returns true if and only if the library unit is declared with
-- an explicit designation of private.
function Is_Private_Library_Unit (Unit : Entity_Id) return Boolean is
Comp_Unit : constant Node_Id := Parent (Unit_Declaration_Node (Unit));
begin
return Private_Present (Comp_Unit);
end Is_Private_Library_Unit;
-- Start of processing for Check_Private_Child_Unit
begin
if Nkind (Lib_Unit) = N_Package_Body
or else Nkind (Lib_Unit) = N_Subprogram_Body
then
Curr_Unit := Defining_Entity (Unit (Library_Unit (N)));
Par_Lib := Curr_Unit;
elsif Nkind (Lib_Unit) = N_Subunit then
-- The parent is itself a body. The parent entity is to be found
-- in the corresponding spec.
Sub_Parent := Library_Unit (N);
Curr_Unit := Defining_Entity (Unit (Library_Unit (Sub_Parent)));
-- If the parent itself is a subunit, Curr_Unit is the entity
-- of the enclosing body, retrieve the spec entity which is
-- the proper ancestor we need for the following tests.
if Ekind (Curr_Unit) = E_Package_Body then
Curr_Unit := Spec_Entity (Curr_Unit);
end if;
Par_Lib := Curr_Unit;
else
Curr_Unit := Defining_Entity (Lib_Unit);
Par_Lib := Curr_Unit;
Par_Spec := Parent_Spec (Lib_Unit);
if No (Par_Spec) then
Par_Lib := Empty;
else
Par_Lib := Defining_Entity (Unit (Par_Spec));
end if;
end if;
-- Loop through context items
Item := First (Context_Items (N));
while Present (Item) loop
-- Ada 2005 (AI-262): Allow private_with of a private child package
-- in public siblings
if Nkind (Item) = N_With_Clause
and then not Implicit_With (Item)
and then Is_Private_Descendant (Entity (Name (Item)))
then
Priv_Child := Entity (Name (Item));
declare
Curr_Parent : Entity_Id := Par_Lib;
Child_Parent : Entity_Id := Scope (Priv_Child);
Prv_Ancestor : Entity_Id := Child_Parent;
Curr_Private : Boolean := Is_Private_Library_Unit (Curr_Unit);
begin
-- If the child unit is a public child then locate
-- the nearest private ancestor; Child_Parent will
-- then be set to the parent of that ancestor.
if not Is_Private_Library_Unit (Priv_Child) then
while Present (Prv_Ancestor)
and then not Is_Private_Library_Unit (Prv_Ancestor)
loop
Prv_Ancestor := Scope (Prv_Ancestor);
end loop;
if Present (Prv_Ancestor) then
Child_Parent := Scope (Prv_Ancestor);
end if;
end if;
while Present (Curr_Parent)
and then Curr_Parent /= Standard_Standard
and then Curr_Parent /= Child_Parent
loop
Curr_Private :=
Curr_Private or else Is_Private_Library_Unit (Curr_Parent);
Curr_Parent := Scope (Curr_Parent);
end loop;
if No (Curr_Parent) then
Curr_Parent := Standard_Standard;
end if;
if Curr_Parent /= Child_Parent then
if Ekind (Priv_Child) = E_Generic_Package
and then Chars (Priv_Child) in Text_IO_Package_Name
and then Chars (Scope (Scope (Priv_Child))) = Name_Ada
then
Error_Msg_NE
("& is a nested package, not a compilation unit",
Name (Item), Priv_Child);
else
Error_Msg_N
("unit in with clause is private child unit!", Item);
Error_Msg_NE
("current unit must also have parent&!",
Item, Child_Parent);
end if;
elsif not Curr_Private
and then not Private_Present (Item)
and then Nkind (Lib_Unit) /= N_Package_Body
and then Nkind (Lib_Unit) /= N_Subprogram_Body
and then Nkind (Lib_Unit) /= N_Subunit
then
Error_Msg_NE
("current unit must also be private descendant of&",
Item, Child_Parent);
end if;
end;
end if;
Next (Item);
end loop;
end Check_Private_Child_Unit;
----------------------
-- Check_Stub_Level --
----------------------
procedure Check_Stub_Level (N : Node_Id) is
Par : constant Node_Id := Parent (N);
Kind : constant Node_Kind := Nkind (Par);
begin
if (Kind = N_Package_Body
or else Kind = N_Subprogram_Body
or else Kind = N_Task_Body
or else Kind = N_Protected_Body)
and then (Nkind (Parent (Par)) = N_Compilation_Unit
or else Nkind (Parent (Par)) = N_Subunit)
then
null;
-- In an instance, a missing stub appears at any level. A warning
-- message will have been emitted already for the missing file.
elsif not In_Instance then
Error_Msg_N ("stub cannot appear in an inner scope", N);
elsif Expander_Active then
Error_Msg_N ("missing proper body", N);
end if;
end Check_Stub_Level;
------------------------
-- Expand_With_Clause --
------------------------
procedure Expand_With_Clause (Item : Node_Id; Nam : Node_Id; N : Node_Id) is
Loc : constant Source_Ptr := Sloc (Nam);
Ent : constant Entity_Id := Entity (Nam);
Withn : Node_Id;
P : Node_Id;
function Build_Unit_Name (Nam : Node_Id) return Node_Id;
-- Comment requireed here ???
---------------------
-- Build_Unit_Name --
---------------------
function Build_Unit_Name (Nam : Node_Id) return Node_Id is
Result : Node_Id;
begin
if Nkind (Nam) = N_Identifier then
return New_Occurrence_Of (Entity (Nam), Loc);
else
Result :=
Make_Expanded_Name (Loc,
Chars => Chars (Entity (Nam)),
Prefix => Build_Unit_Name (Prefix (Nam)),
Selector_Name => New_Occurrence_Of (Entity (Nam), Loc));
Set_Entity (Result, Entity (Nam));
return Result;
end if;
end Build_Unit_Name;
-- Start of processing for Expand_With_Clause
begin
New_Nodes_OK := New_Nodes_OK + 1;
Withn :=
Make_With_Clause (Loc, Name => Build_Unit_Name (Nam));
P := Parent (Unit_Declaration_Node (Ent));
Set_Library_Unit (Withn, P);
Set_Corresponding_Spec (Withn, Ent);
Set_First_Name (Withn, True);
Set_Implicit_With (Withn, True);
-- If the unit is a package declaration, a private_with_clause on a
-- child unit implies that the implicit with on the parent is also
-- private.
if Nkind (Unit (N)) = N_Package_Declaration then
Set_Private_Present (Withn, Private_Present (Item));
end if;
Prepend (Withn, Context_Items (N));
Mark_Rewrite_Insertion (Withn);
Install_Withed_Unit (Withn);
if Nkind (Nam) = N_Expanded_Name then
Expand_With_Clause (Item, Prefix (Nam), N);
end if;
New_Nodes_OK := New_Nodes_OK - 1;
end Expand_With_Clause;
-----------------------
-- Get_Parent_Entity --
-----------------------
function Get_Parent_Entity (Unit : Node_Id) return Entity_Id is
begin
if Nkind (Unit) = N_Package_Body
and then Nkind (Original_Node (Unit)) = N_Package_Instantiation
then
return
Defining_Entity
(Specification (Instance_Spec (Original_Node (Unit))));
elsif Nkind (Unit) = N_Package_Instantiation then
return Defining_Entity (Specification (Instance_Spec (Unit)));
else
return Defining_Entity (Unit);
end if;
end Get_Parent_Entity;
-----------------------------
-- Implicit_With_On_Parent --
-----------------------------
procedure Implicit_With_On_Parent
(Child_Unit : Node_Id;
N : Node_Id)
is
Loc : constant Source_Ptr := Sloc (N);
P : constant Node_Id := Parent_Spec (Child_Unit);
P_Unit : Node_Id := Unit (P);
P_Name : constant Entity_Id := Get_Parent_Entity (P_Unit);
Withn : Node_Id;
function Build_Ancestor_Name (P : Node_Id) return Node_Id;
-- Build prefix of child unit name. Recurse if needed
function Build_Unit_Name return Node_Id;
-- If the unit is a child unit, build qualified name with all
-- ancestors.
-------------------------
-- Build_Ancestor_Name --
-------------------------
function Build_Ancestor_Name (P : Node_Id) return Node_Id is
P_Ref : constant Node_Id :=
New_Reference_To (Defining_Entity (P), Loc);
P_Spec : Node_Id := P;
begin
-- Ancestor may have been rewritten as a package body. Retrieve
-- the original spec to trace earlier ancestors.
if Nkind (P) = N_Package_Body
and then Nkind (Original_Node (P)) = N_Package_Instantiation
then
P_Spec := Original_Node (P);
end if;
if No (Parent_Spec (P_Spec)) then
return P_Ref;
else
return
Make_Selected_Component (Loc,
Prefix => Build_Ancestor_Name (Unit (Parent_Spec (P_Spec))),
Selector_Name => P_Ref);
end if;
end Build_Ancestor_Name;
---------------------
-- Build_Unit_Name --
---------------------
function Build_Unit_Name return Node_Id is
Result : Node_Id;
begin
if No (Parent_Spec (P_Unit)) then
return New_Reference_To (P_Name, Loc);
else
Result :=
Make_Expanded_Name (Loc,
Chars => Chars (P_Name),
Prefix => Build_Ancestor_Name (Unit (Parent_Spec (P_Unit))),
Selector_Name => New_Reference_To (P_Name, Loc));
Set_Entity (Result, P_Name);
return Result;
end if;
end Build_Unit_Name;
-- Start of processing for Implicit_With_On_Parent
begin
-- The unit of the current compilation may be a package body
-- that replaces an instance node. In this case we need the
-- original instance node to construct the proper parent name.
if Nkind (P_Unit) = N_Package_Body
and then Nkind (Original_Node (P_Unit)) = N_Package_Instantiation
then
P_Unit := Original_Node (P_Unit);
end if;
-- We add the implicit with if the child unit is the current unit
-- being compiled. If the current unit is a body, we do not want
-- to add an implicit_with a second time to the corresponding spec.
if Nkind (Child_Unit) = N_Package_Declaration
and then Child_Unit /= Unit (Cunit (Current_Sem_Unit))
then
return;
end if;
New_Nodes_OK := New_Nodes_OK + 1;
Withn := Make_With_Clause (Loc, Name => Build_Unit_Name);
Set_Library_Unit (Withn, P);
Set_Corresponding_Spec (Withn, P_Name);
Set_First_Name (Withn, True);
Set_Implicit_With (Withn, True);
-- Node is placed at the beginning of the context items, so that
-- subsequent use clauses on the parent can be validated.
Prepend (Withn, Context_Items (N));
Mark_Rewrite_Insertion (Withn);
Install_Withed_Unit (Withn);
if Is_Child_Spec (P_Unit) then
Implicit_With_On_Parent (P_Unit, N);
end if;
New_Nodes_OK := New_Nodes_OK - 1;
end Implicit_With_On_Parent;
--------------
-- In_Chain --
--------------
function In_Chain (E : Entity_Id) return Boolean is
H : Entity_Id;
begin
H := Current_Entity (E);
while Present (H) loop
if H = E then
return True;
else
H := Homonym (H);
end if;
end loop;
return False;
end In_Chain;
---------------------
-- Install_Context --
---------------------
procedure Install_Context (N : Node_Id) is
Lib_Unit : constant Node_Id := Unit (N);
begin
Install_Context_Clauses (N);
if Is_Child_Spec (Lib_Unit) then
Install_Parents (Lib_Unit, Private_Present (Parent (Lib_Unit)));
end if;
Install_Limited_Context_Clauses (N);
Check_With_Type_Clauses (N);
end Install_Context;
-----------------------------
-- Install_Context_Clauses --
-----------------------------
procedure Install_Context_Clauses (N : Node_Id) is
Lib_Unit : constant Node_Id := Unit (N);
Item : Node_Id;
Uname_Node : Entity_Id;
Check_Private : Boolean := False;
Decl_Node : Node_Id;
Lib_Parent : Entity_Id;
begin
-- First skip configuration pragmas at the start of the context. They
-- are not technically part of the context clause, but that's where the
-- parser puts them. Note they were analyzed in Analyze_Context.
Item := First (Context_Items (N));
while Present (Item)
and then Nkind (Item) = N_Pragma
and then Chars (Item) in Configuration_Pragma_Names
loop
Next (Item);
end loop;
-- Loop through the actual context clause items. We process everything
-- except Limited_With clauses in this routine. Limited_With clauses
-- are separately installed (see Install_Limited_Context_Clauses).
while Present (Item) loop
-- Case of explicit WITH clause
if Nkind (Item) = N_With_Clause
and then not Implicit_With (Item)
then
if Limited_Present (Item) then
-- Limited withed units will be installed later
goto Continue;
-- If Name (Item) is not an entity name, something is wrong, and
-- this will be detected in due course, for now ignore the item
elsif not Is_Entity_Name (Name (Item)) then
goto Continue;
elsif No (Entity (Name (Item))) then
Set_Entity (Name (Item), Any_Id);
goto Continue;
end if;
Uname_Node := Entity (Name (Item));
if Is_Private_Descendant (Uname_Node) then
Check_Private := True;
end if;
Install_Withed_Unit (Item);
Decl_Node := Unit_Declaration_Node (Uname_Node);
-- If the unit is a subprogram instance, it appears nested
-- within a package that carries the parent information.
if Is_Generic_Instance (Uname_Node)
and then Ekind (Uname_Node) /= E_Package
then
Decl_Node := Parent (Parent (Decl_Node));
end if;
if Is_Child_Spec (Decl_Node) then
if Nkind (Name (Item)) = N_Expanded_Name then
Expand_With_Clause (Item, Prefix (Name (Item)), N);
else
-- if not an expanded name, the child unit must be a
-- renaming, nothing to do.
null;
end if;
elsif Nkind (Decl_Node) = N_Subprogram_Body
and then not Acts_As_Spec (Parent (Decl_Node))
and then Is_Child_Spec (Unit (Library_Unit (Parent (Decl_Node))))
then
Implicit_With_On_Parent
(Unit (Library_Unit (Parent (Decl_Node))), N);
end if;
-- Check license conditions unless this is a dummy unit
if Sloc (Library_Unit (Item)) /= No_Location then
License_Check : declare
Withu : constant Unit_Number_Type :=
Get_Source_Unit (Library_Unit (Item));
Withl : constant License_Type :=
License (Source_Index (Withu));
Unitl : constant License_Type :=
License (Source_Index (Current_Sem_Unit));
procedure License_Error;
-- Signal error of bad license
-------------------
-- License_Error --
-------------------
procedure License_Error is
begin
Error_Msg_N
("?license of with'ed unit & may be inconsistent",
Name (Item));
end License_Error;
-- Start of processing for License_Check
begin
-- Exclude license check if withed unit is an internal unit.
-- This situation arises e.g. with the GPL version of GNAT.
if Is_Internal_File_Name (Unit_File_Name (Withu)) then
null;
-- Otherwise check various cases
else
case Unitl is
when Unknown =>
null;
when Restricted =>
if Withl = GPL then
License_Error;
end if;
when GPL =>
if Withl = Restricted then
License_Error;
end if;
when Modified_GPL =>
if Withl = Restricted or else Withl = GPL then
License_Error;
end if;
when Unrestricted =>
null;
end case;
end if;
end License_Check;
end if;
-- Case of USE PACKAGE clause
elsif Nkind (Item) = N_Use_Package_Clause then
Analyze_Use_Package (Item);
-- Case of USE TYPE clause
elsif Nkind (Item) = N_Use_Type_Clause then
Analyze_Use_Type (Item);
-- Case of WITH TYPE clause
-- A With_Type_Clause is processed when installing the context,
-- because it is a visibility mechanism and does not create a
-- semantic dependence on other units, as a With_Clause does.
elsif Nkind (Item) = N_With_Type_Clause then
Analyze_With_Type_Clause (Item);
-- case of PRAGMA
elsif Nkind (Item) = N_Pragma then
Analyze (Item);
end if;
<<Continue>>
Next (Item);
end loop;
if Is_Child_Spec (Lib_Unit) then
-- The unit also has implicit withs on its own parents
if No (Context_Items (N)) then
Set_Context_Items (N, New_List);
end if;
Implicit_With_On_Parent (Lib_Unit, N);
end if;
-- If the unit is a body, the context of the specification must also
-- be installed.
if Nkind (Lib_Unit) = N_Package_Body
or else (Nkind (Lib_Unit) = N_Subprogram_Body
and then not Acts_As_Spec (N))
then
Install_Context (Library_Unit (N));
if Is_Child_Spec (Unit (Library_Unit (N))) then
-- If the unit is the body of a public child unit, the private
-- declarations of the parent must be made visible. If the child
-- unit is private, the private declarations have been installed
-- already in the call to Install_Parents for the spec. Installing
-- private declarations must be done for all ancestors of public
-- child units. In addition, sibling units mentioned in the
-- context clause of the body are directly visible.
declare
Lib_Spec : Node_Id;
P : Node_Id;
P_Name : Entity_Id;
begin
Lib_Spec := Unit (Library_Unit (N));
while Is_Child_Spec (Lib_Spec) loop
P := Unit (Parent_Spec (Lib_Spec));
P_Name := Defining_Entity (P);
if not (Private_Present (Parent (Lib_Spec)))
and then not In_Private_Part (P_Name)
then
Install_Private_Declarations (P_Name);
Install_Private_With_Clauses (P_Name);
Set_Use (Private_Declarations (Specification (P)));
end if;
Lib_Spec := P;
end loop;
end;
end if;
-- For a package body, children in context are immediately visible
Install_Siblings (Defining_Entity (Unit (Library_Unit (N))), N);
end if;
if Nkind (Lib_Unit) = N_Generic_Package_Declaration
or else Nkind (Lib_Unit) = N_Generic_Subprogram_Declaration
or else Nkind (Lib_Unit) = N_Package_Declaration
or else Nkind (Lib_Unit) = N_Subprogram_Declaration
then
if Is_Child_Spec (Lib_Unit) then
Lib_Parent := Defining_Entity (Unit (Parent_Spec (Lib_Unit)));
Set_Is_Private_Descendant
(Defining_Entity (Lib_Unit),
Is_Private_Descendant (Lib_Parent)
or else Private_Present (Parent (Lib_Unit)));
else
Set_Is_Private_Descendant
(Defining_Entity (Lib_Unit),
Private_Present (Parent (Lib_Unit)));
end if;
end if;
if Check_Private then
Check_Private_Child_Unit (N);
end if;
end Install_Context_Clauses;
-------------------------------------
-- Install_Limited_Context_Clauses --
-------------------------------------
procedure Install_Limited_Context_Clauses (N : Node_Id) is
Item : Node_Id;
procedure Check_Renamings (P : Node_Id; W : Node_Id);
-- Check that the unlimited view of a given compilation_unit is not
-- already visible through "use + renamings".
procedure Check_Private_Limited_Withed_Unit (Item : Node_Id);
-- Check that if a limited_with clause of a given compilation_unit
-- mentions a descendant of a private child of some library unit,
-- then the given compilation_unit shall be the declaration of a
-- private descendant of that library unit.
procedure Expand_Limited_With_Clause
(Comp_Unit : Node_Id; Nam : Node_Id; N : Node_Id);
-- If a child unit appears in a limited_with clause, there are implicit
-- limited_with clauses on all parents that are not already visible
-- through a regular with clause. This procedure creates the implicit
-- limited with_clauses for the parents and loads the corresponding
-- units. The shadow entities are created when the inserted clause is
-- analyzed. Implements Ada 2005 (AI-50217).
---------------------
-- Check_Renamings --
---------------------
procedure Check_Renamings (P : Node_Id; W : Node_Id) is
Item : Node_Id;
Spec : Node_Id;
WEnt : Entity_Id;
Nam : Node_Id;
E : Entity_Id;
E2 : Entity_Id;
begin
pragma Assert (Nkind (W) = N_With_Clause);
-- Protect the frontend against previous critical errors
case Nkind (Unit (Library_Unit (W))) is
when N_Subprogram_Declaration |
N_Package_Declaration |
N_Generic_Subprogram_Declaration |
N_Generic_Package_Declaration =>
null;
when others =>
return;
end case;
-- Check "use + renamings"
WEnt := Defining_Unit_Name (Specification (Unit (Library_Unit (W))));
Spec := Specification (Unit (P));
Item := First (Visible_Declarations (Spec));
while Present (Item) loop
if Nkind (Item) = N_Use_Package_Clause then
-- Traverse the list of packages
Nam := First (Names (Item));
while Present (Nam) loop
E := Entity (Nam);
pragma Assert (Present (Parent (E)));
if Nkind (Parent (E)) = N_Package_Renaming_Declaration
and then Renamed_Entity (E) = WEnt
then
Error_Msg_N ("unlimited view visible through " &
"use clause and renamings", W);
return;
elsif Nkind (Parent (E)) = N_Package_Specification then
-- The use clause may refer to a local package.
-- Check all the enclosing scopes.
E2 := E;
while E2 /= Standard_Standard
and then E2 /= WEnt loop
E2 := Scope (E2);
end loop;
if E2 = WEnt then
Error_Msg_N
("unlimited view visible through use clause ", W);
return;
end if;
end if;
Next (Nam);
end loop;
end if;
Next (Item);
end loop;
-- Recursive call to check all the ancestors
if Is_Child_Spec (Unit (P)) then
Check_Renamings (P => Parent_Spec (Unit (P)), W => W);
end if;
end Check_Renamings;
---------------------------------------
-- Check_Private_Limited_Withed_Unit --
---------------------------------------
procedure Check_Private_Limited_Withed_Unit (Item : Node_Id) is
Curr_Parent : Node_Id;
Child_Parent : Node_Id;
begin
-- Compilation unit of the parent of the withed library unit
Child_Parent := Parent_Spec (Unit (Library_Unit (Item)));
-- If the child unit is a public child, then locate its nearest
-- private ancestor, if any; Child_Parent will then be set to
-- the parent of that ancestor.
if not Private_Present (Library_Unit (Item)) then
while Present (Child_Parent)
and then not Private_Present (Child_Parent)
loop
Child_Parent := Parent_Spec (Unit (Child_Parent));
end loop;
if No (Child_Parent) then
return;
end if;
Child_Parent := Parent_Spec (Unit (Child_Parent));
end if;
-- Traverse all the ancestors of the current compilation
-- unit to check if it is a descendant of named library unit.
Curr_Parent := Parent (Item);
while Present (Parent_Spec (Unit (Curr_Parent)))
and then Curr_Parent /= Child_Parent
loop
Curr_Parent := Parent_Spec (Unit (Curr_Parent));
end loop;
if Curr_Parent /= Child_Parent then
Error_Msg_N
("unit in with clause is private child unit!", Item);
Error_Msg_NE
("current unit must also have parent&!",
Item, Defining_Unit_Name (Specification (Unit (Child_Parent))));
elsif not Private_Present (Parent (Item))
and then not Private_Present (Item)
and then Nkind (Unit (Parent (Item))) /= N_Package_Body
and then Nkind (Unit (Parent (Item))) /= N_Subprogram_Body
and then Nkind (Unit (Parent (Item))) /= N_Subunit
then
Error_Msg_NE
("current unit must also be private descendant of&",
Item, Defining_Unit_Name (Specification (Unit (Child_Parent))));
end if;
end Check_Private_Limited_Withed_Unit;
--------------------------------
-- Expand_Limited_With_Clause --
--------------------------------
procedure Expand_Limited_With_Clause
(Comp_Unit : Node_Id;
Nam : Node_Id;
N : Node_Id)
is
Loc : constant Source_Ptr := Sloc (Nam);
Unum : Unit_Number_Type;
Withn : Node_Id;
function Previous_Withed_Unit (W : Node_Id) return Boolean;
-- Returns true if the context already includes a with_clause for
-- this unit. If the with_clause is non-limited, the unit is fully
-- visible and an implicit limited_with should not be created. If
-- there is already a limited_with clause for W, a second one is
-- simply redundant.
--------------------------
-- Previous_Withed_Unit --
--------------------------
function Previous_Withed_Unit (W : Node_Id) return Boolean is
Item : Node_Id;
begin
-- A limited with_clause cannot appear in the same context_clause
-- as a nonlimited with_clause which mentions the same library.
Item := First (Context_Items (Comp_Unit));
while Present (Item) loop
if Nkind (Item) = N_With_Clause
and then Library_Unit (Item) = Library_Unit (W)
then
return True;
end if;
Next (Item);
end loop;
return False;
end Previous_Withed_Unit;
-- Start of processing for Expand_Limited_With_Clause
begin
New_Nodes_OK := New_Nodes_OK + 1;
if Nkind (Nam) = N_Identifier then
Withn :=
Make_With_Clause (Loc,
Name => Nam);
else pragma Assert (Nkind (Nam) = N_Selected_Component);
Withn :=
Make_With_Clause (Loc,
Name => Make_Selected_Component (Loc,
Prefix => New_Copy_Tree (Prefix (Nam)),
Selector_Name => Selector_Name (Nam)));
Set_Parent (Withn, Parent (N));
end if;
Set_Limited_Present (Withn);
Set_First_Name (Withn);
Set_Implicit_With (Withn);
Unum :=
Load_Unit
(Load_Name => Get_Spec_Name (Get_Unit_Name (Nam)),
Required => True,
Subunit => False,
Error_Node => Nam);
-- Do not generate a limited_with_clause on the current unit.
-- This path is taken when a unit has a limited_with clause on
-- one of its child units.
if Unum = Current_Sem_Unit then
return;
end if;
Set_Library_Unit (Withn, Cunit (Unum));
Set_Corresponding_Spec
(Withn, Specification (Unit (Cunit (Unum))));
if not Previous_Withed_Unit (Withn) then
Prepend (Withn, Context_Items (Parent (N)));
Mark_Rewrite_Insertion (Withn);
-- Add implicit limited_with_clauses for parents of child units
-- mentioned in limited_with clauses.
if Nkind (Nam) = N_Selected_Component then
Expand_Limited_With_Clause (Comp_Unit, Prefix (Nam), N);
end if;
Analyze (Withn);
if not Limited_View_Installed (Withn) then
Install_Limited_Withed_Unit (Withn);
end if;
end if;
New_Nodes_OK := New_Nodes_OK - 1;
end Expand_Limited_With_Clause;
-- Start of processing for Install_Limited_Context_Clauses
begin
Item := First (Context_Items (N));
while Present (Item) loop
if Nkind (Item) = N_With_Clause
and then Limited_Present (Item)
then
if Nkind (Name (Item)) = N_Selected_Component then
Expand_Limited_With_Clause
(Comp_Unit => N, Nam => Prefix (Name (Item)), N => Item);
end if;
Check_Private_Limited_Withed_Unit (Item);
if not Implicit_With (Item)
and then Is_Child_Spec (Unit (N))
then
Check_Renamings (Parent_Spec (Unit (N)), Item);
end if;
-- A unit may have a limited with on itself if it has a
-- limited with_clause on one of its child units. In that
-- case it is already being compiled and it makes no sense
-- to install its limited view.
if Library_Unit (Item) /= Cunit (Current_Sem_Unit)
and then not Limited_View_Installed (Item)
then
Install_Limited_Withed_Unit (Item);
end if;
-- All items other than Limited_With clauses are ignored (they were
-- installed separately early on by Install_Context_Clause).
else
null;
end if;
Next (Item);
end loop;
end Install_Limited_Context_Clauses;
---------------------
-- Install_Parents --
---------------------
procedure Install_Parents (Lib_Unit : Node_Id; Is_Private : Boolean) is
P : Node_Id;
E_Name : Entity_Id;
P_Name : Entity_Id;
P_Spec : Node_Id;
begin
P := Unit (Parent_Spec (Lib_Unit));
P_Name := Get_Parent_Entity (P);
if Etype (P_Name) = Any_Type then
return;
end if;
if Ekind (P_Name) = E_Generic_Package
and then Nkind (Lib_Unit) /= N_Generic_Subprogram_Declaration
and then Nkind (Lib_Unit) /= N_Generic_Package_Declaration
and then Nkind (Lib_Unit) not in N_Generic_Renaming_Declaration
then
Error_Msg_N
("child of a generic package must be a generic unit", Lib_Unit);
elsif not Is_Package_Or_Generic_Package (P_Name) then
Error_Msg_N
("parent unit must be package or generic package", Lib_Unit);
raise Unrecoverable_Error;
elsif Present (Renamed_Object (P_Name)) then
Error_Msg_N ("parent unit cannot be a renaming", Lib_Unit);
raise Unrecoverable_Error;
-- Verify that a child of an instance is itself an instance, or
-- the renaming of one. Given that an instance that is a unit is
-- replaced with a package declaration, check against the original
-- node. The parent may be currently being instantiated, in which
-- case it appears as a declaration, but the generic_parent is
-- already established indicating that we deal with an instance.
elsif Nkind (Original_Node (P)) = N_Package_Instantiation then
if Nkind (Lib_Unit) in N_Renaming_Declaration
or else Nkind (Original_Node (Lib_Unit)) in N_Generic_Instantiation
or else
(Nkind (Lib_Unit) = N_Package_Declaration
and then Present (Generic_Parent (Specification (Lib_Unit))))
then
null;
else
Error_Msg_N
("child of an instance must be an instance or renaming",
Lib_Unit);
end if;
end if;
-- This is the recursive call that ensures all parents are loaded
if Is_Child_Spec (P) then
Install_Parents (P,
Is_Private or else Private_Present (Parent (Lib_Unit)));
end if;
-- Now we can install the context for this parent
Install_Context_Clauses (Parent_Spec (Lib_Unit));
Install_Limited_Context_Clauses (Parent_Spec (Lib_Unit));
Install_Siblings (P_Name, Parent (Lib_Unit));
-- The child unit is in the declarative region of the parent. The
-- parent must therefore appear in the scope stack and be visible,
-- as when compiling the corresponding body. If the child unit is
-- private or it is a package body, private declarations must be
-- accessible as well. Use declarations in the parent must also
-- be installed. Finally, other child units of the same parent that
-- are in the context are immediately visible.
-- Find entity for compilation unit, and set its private descendant
-- status as needed.
E_Name := Defining_Entity (Lib_Unit);
Set_Is_Child_Unit (E_Name);
Set_Is_Private_Descendant (E_Name,
Is_Private_Descendant (P_Name)
or else Private_Present (Parent (Lib_Unit)));
P_Spec := Specification (Unit_Declaration_Node (P_Name));
New_Scope (P_Name);
-- Save current visibility of unit
Scope_Stack.Table (Scope_Stack.Last).Previous_Visibility :=
Is_Immediately_Visible (P_Name);
Set_Is_Immediately_Visible (P_Name);
Install_Visible_Declarations (P_Name);
Set_Use (Visible_Declarations (P_Spec));
-- If the parent is a generic unit, its formal part may contain
-- formal packages and use clauses for them.
if Ekind (P_Name) = E_Generic_Package then
Set_Use (Generic_Formal_Declarations (Parent (P_Spec)));
end if;
if Is_Private
or else Private_Present (Parent (Lib_Unit))
then
Install_Private_Declarations (P_Name);
Install_Private_With_Clauses (P_Name);
Set_Use (Private_Declarations (P_Spec));
end if;
end Install_Parents;
----------------------------------
-- Install_Private_With_Clauses --
----------------------------------
procedure Install_Private_With_Clauses (P : Entity_Id) is
Decl : constant Node_Id := Unit_Declaration_Node (P);
Item : Node_Id;
begin
if Debug_Flag_I then
Write_Str ("install private with clauses of ");
Write_Name (Chars (P));
Write_Eol;
end if;
if Nkind (Parent (Decl)) = N_Compilation_Unit then
Item := First (Context_Items (Parent (Decl)));
while Present (Item) loop
if Nkind (Item) = N_With_Clause
and then Private_Present (Item)
then
if Limited_Present (Item) then
if not Limited_View_Installed (Item) then
Install_Limited_Withed_Unit (Item);
end if;
else
Install_Withed_Unit (Item, Private_With_OK => True);
end if;
end if;
Next (Item);
end loop;
end if;
end Install_Private_With_Clauses;
----------------------
-- Install_Siblings --
----------------------
procedure Install_Siblings (U_Name : Entity_Id; N : Node_Id) is
Item : Node_Id;
Id : Entity_Id;
Prev : Entity_Id;
begin
-- Iterate over explicit with clauses, and check whether the
-- scope of each entity is an ancestor of the current unit.
Item := First (Context_Items (N));
while Present (Item) loop
-- Do not install private_with_clauses if the unit is a package
-- declaration, unless it is itself a private child unit.
if Nkind (Item) = N_With_Clause
and then not Implicit_With (Item)
and then not Limited_Present (Item)
and then
(not Private_Present (Item)
or else Nkind (Unit (N)) /= N_Package_Declaration
or else Private_Present (N))
then
Id := Entity (Name (Item));
if Is_Child_Unit (Id)
and then Is_Ancestor_Package (Scope (Id), U_Name)
then
Set_Is_Immediately_Visible (Id);
-- Check for the presence of another unit in the context,
-- that may be inadvertently hidden by the child.
Prev := Current_Entity (Id);
if Present (Prev)
and then Is_Immediately_Visible (Prev)
and then not Is_Child_Unit (Prev)
then
declare
Clause : Node_Id;
begin
Clause := First (Context_Items (N));
while Present (Clause) loop
if Nkind (Clause) = N_With_Clause
and then Entity (Name (Clause)) = Prev
then
Error_Msg_NE
("child unit& hides compilation unit " &
"with the same name?",
Name (Item), Id);
exit;
end if;
Next (Clause);
end loop;
end;
end if;
-- the With_Clause may be on a grand-child, which makes
-- the child immediately visible.
elsif Is_Child_Unit (Scope (Id))
and then Is_Ancestor_Package (Scope (Scope (Id)), U_Name)
then
Set_Is_Immediately_Visible (Scope (Id));
end if;
end if;
Next (Item);
end loop;
end Install_Siblings;
-------------------------------
-- Install_Limited_With_Unit --
-------------------------------
procedure Install_Limited_Withed_Unit (N : Node_Id) is
P_Unit : constant Entity_Id := Unit (Library_Unit (N));
P : Entity_Id;
Is_Child_Package : Boolean := False;
Lim_Header : Entity_Id;
Lim_Typ : Entity_Id;
function Is_Visible_Through_Renamings (P : Entity_Id) return Boolean;
-- Check if some package installed though normal with-clauses has a
-- renaming declaration of package P. AARM 10.1.2(21/2).
----------------------------------
-- Is_Visible_Through_Renamings --
----------------------------------
function Is_Visible_Through_Renamings (P : Entity_Id) return Boolean is
Kind : constant Node_Kind :=
Nkind (Unit (Cunit (Current_Sem_Unit)));
Aux_Unit : Node_Id;
Item : Node_Id;
Decl : Entity_Id;
begin
-- Example of the error detected by this subprogram:
-- package P is
-- type T is ...
-- end P;
-- with P;
-- package Q is
-- package Ren_P renames P;
-- end Q;
-- with Q;
-- package R is ...
-- limited with P; -- ERROR
-- package R.C is ...
Aux_Unit := Cunit (Current_Sem_Unit);
loop
Item := First (Context_Items (Aux_Unit));
while Present (Item) loop
if Nkind (Item) = N_With_Clause
and then not Limited_Present (Item)
and then Nkind (Unit (Library_Unit (Item)))
= N_Package_Declaration
then
Decl :=
First (Visible_Declarations
(Specification (Unit (Library_Unit (Item)))));
while Present (Decl) loop
if Nkind (Decl) = N_Package_Renaming_Declaration
and then Entity (Name (Decl)) = P
then
-- Generate the error message only if the current unit
-- is a package declaration; in case of subprogram
-- bodies and package bodies we just return true to
-- indicate that the limited view must not be
-- installed.
if Kind = N_Package_Declaration then
Error_Msg_Sloc := Sloc (Item);
Error_Msg_NE
("unlimited view of & visible through the context"
& " clause found #", N, P);
Error_Msg_Sloc := Sloc (Decl);
Error_Msg_NE
("unlimited view of & visible through the"
& " renaming found #", N, P);
Error_Msg_N
("simultaneous visibility of the limited and"
& " unlimited views not allowed", N);
end if;
return True;
end if;
Next (Decl);
end loop;
end if;
Next (Item);
end loop;
if Present (Library_Unit (Aux_Unit)) then
if Aux_Unit = Library_Unit (Aux_Unit) then
-- Aux_Unit is a body that acts as a spec. Clause has
-- already been flagged as illegal.
return False;
else
Aux_Unit := Library_Unit (Aux_Unit);
end if;
else
Aux_Unit := Parent_Spec (Unit (Aux_Unit));
end if;
exit when No (Aux_Unit);
end loop;
return False;
end Is_Visible_Through_Renamings;
-- Start of processing for Install_Limited_Withed_Unit
begin
pragma Assert (not Limited_View_Installed (N));
-- In case of limited with_clause on subprograms, generics, instances,
-- or renamings, the corresponding error was previously posted and we
-- have nothing to do here.
if Nkind (P_Unit) /= N_Package_Declaration then
return;
end if;
P := Defining_Unit_Name (Specification (P_Unit));
-- Handle child packages
if Nkind (P) = N_Defining_Program_Unit_Name then
Is_Child_Package := True;
P := Defining_Identifier (P);
end if;
-- Do not install the limited-view if the full-view is already visible
-- through renaming declarations.
if Is_Visible_Through_Renamings (P) then
return;
end if;
-- A common use of the limited-with is to have a limited-with
-- in the package spec, and a normal with in its package body.
-- For example:
-- limited with X; -- [1]
-- package A is ...
-- with X; -- [2]
-- package body A is ...
-- The compilation of A's body installs the context clauses found at [2]
-- and then the context clauses of its specification (found at [1]). As
-- a consequence, at [1] the specification of X has been analyzed and it
-- is immediately visible. According to the semantics of limited-with
-- context clauses we don't install the limited view because the full
-- view of X supersedes its limited view.
if Analyzed (P_Unit)
and then (Is_Immediately_Visible (P)
or else (Is_Child_Package
and then Is_Visible_Child_Unit (P)))
then
-- Ada 2005 (AI-262): Install the private declarations of P
if Private_Present (N)
and then not In_Private_Part (P)
then
declare
Id : Entity_Id;
begin
Id := First_Private_Entity (P);
while Present (Id) loop
if not Is_Internal (Id)
and then not Is_Child_Unit (Id)
then
if not In_Chain (Id) then
Set_Homonym (Id, Current_Entity (Id));
Set_Current_Entity (Id);
end if;
Set_Is_Immediately_Visible (Id);
end if;
Next_Entity (Id);
end loop;
Set_In_Private_Part (P);
end;
end if;
return;
end if;
if Debug_Flag_I then
Write_Str ("install limited view of ");
Write_Name (Chars (P));
Write_Eol;
end if;
-- If the unit has not been analyzed and the limited view has not been
-- already installed then we install it.
if not Analyzed (P_Unit) then
if not In_Chain (P) then
-- Minimum decoration
Set_Ekind (P, E_Package);
Set_Etype (P, Standard_Void_Type);
Set_Scope (P, Standard_Standard);
if Is_Child_Package then
Set_Is_Child_Unit (P);
Set_Is_Visible_Child_Unit (P);
Set_Scope (P, Defining_Entity (Unit (Parent_Spec (P_Unit))));
end if;
-- Place entity on visibility structure
Set_Homonym (P, Current_Entity (P));
Set_Current_Entity (P);
if Debug_Flag_I then
Write_Str (" (homonym) chain ");
Write_Name (Chars (P));
Write_Eol;
end if;
-- Install the incomplete view. The first element of the limited
-- view is a header (an E_Package entity) used to reference the
-- first shadow entity in the private part of the package.
Lim_Header := Limited_View (P);
Lim_Typ := First_Entity (Lim_Header);
while Present (Lim_Typ)
and then Lim_Typ /= First_Private_Entity (Lim_Header)
loop
Set_Homonym (Lim_Typ, Current_Entity (Lim_Typ));
Set_Current_Entity (Lim_Typ);
if Debug_Flag_I then
Write_Str (" (homonym) chain ");
Write_Name (Chars (Lim_Typ));
Write_Eol;
end if;
Next_Entity (Lim_Typ);
end loop;
end if;
-- If the unit appears in a previous regular with_clause, the regular
-- entities of the public part of the withed package must be replaced
-- by the shadow ones.
-- This code must be kept synchronized with the code that replaces the
-- the shadow entities by the real entities (see body of Remove_Limited
-- With_Clause); otherwise the contents of the homonym chains are not
-- consistent.
else
-- Hide all the type entities of the public part of the package to
-- avoid its usage. This is needed to cover all the subtype decla-
-- rations because we do not remove them from the homonym chain.
declare
E : Entity_Id;
begin
E := First_Entity (P);
while Present (E) and then E /= First_Private_Entity (P) loop
if Is_Type (E) then
Set_Was_Hidden (E, Is_Hidden (E));
Set_Is_Hidden (E);
end if;
Next_Entity (E);
end loop;
end;
-- Replace the real entities by the shadow entities of the limited
-- view. The first element of the limited view is a header that is
-- used to reference the first shadow entity in the private part
-- of the package.
Lim_Header := Limited_View (P);
Lim_Typ := First_Entity (Lim_Header);
while Present (Lim_Typ)
and then Lim_Typ /= First_Private_Entity (Lim_Header)
loop
pragma Assert (not In_Chain (Lim_Typ));
-- Do not unchain child units
if not Is_Child_Unit (Lim_Typ) then
declare
Prev : Entity_Id;
begin
Set_Homonym (Lim_Typ, Homonym (Non_Limited_View (Lim_Typ)));
Prev := Current_Entity (Lim_Typ);
if Prev = Non_Limited_View (Lim_Typ) then
Set_Current_Entity (Lim_Typ);
else
while Present (Prev)
and then Homonym (Prev) /= Non_Limited_View (Lim_Typ)
loop
Prev := Homonym (Prev);
end loop;
Set_Homonym (Prev, Lim_Typ);
end if;
end;
if Debug_Flag_I then
Write_Str (" (homonym) chain ");
Write_Name (Chars (Lim_Typ));
Write_Eol;
end if;
end if;
Next_Entity (Lim_Typ);
end loop;
end if;
-- The package must be visible while the limited-with clause is active
-- because references to the type P.T must resolve in the usual way.
-- In addition, we remember that the limited-view has been installed to
-- uninstall it at the point of context removal.
Set_Is_Immediately_Visible (P);
Set_Limited_View_Installed (N);
-- If the package in the limited_with clause is a child unit, the
-- clause is unanalyzed and appears as a selected component. Recast
-- it as an expanded name so that the entity can be properly set. Use
-- entity of parent, if available, for higher ancestors in the name.
if Nkind (Name (N)) = N_Selected_Component then
declare
Nam : Node_Id;
Ent : Entity_Id;
begin
Nam := Name (N);
Ent := P;
while Nkind (Nam) = N_Selected_Component
and then Present (Ent)
loop
Change_Selected_Component_To_Expanded_Name (Nam);
Nam := Prefix (Nam);
Ent := Scope (Ent);
end loop;
end;
end if;
Set_Entity (Name (N), P);
Set_From_With_Type (P);
end Install_Limited_Withed_Unit;
-------------------------
-- Install_Withed_Unit --
-------------------------
procedure Install_Withed_Unit
(With_Clause : Node_Id;
Private_With_OK : Boolean := False)
is
Uname : constant Entity_Id := Entity (Name (With_Clause));
P : constant Entity_Id := Scope (Uname);
begin
-- Ada 2005 (AI-262): Do not install the private withed unit if we are
-- compiling a package declaration and the Private_With_OK flag was not
-- set by the caller. These declarations will be installed later (before
-- analyzing the private part of the package).
if Private_Present (With_Clause)
and then Nkind (Unit (Parent (With_Clause))) = N_Package_Declaration
and then not (Private_With_OK)
then
return;
end if;
if Debug_Flag_I then
if Private_Present (With_Clause) then
Write_Str ("install private withed unit ");
else
Write_Str ("install withed unit ");
end if;
Write_Name (Chars (Uname));
Write_Eol;
end if;
-- We do not apply the restrictions to an internal unit unless
-- we are compiling the internal unit as a main unit. This check
-- is also skipped for dummy units (for missing packages).
if Sloc (Uname) /= No_Location
and then (not Is_Internal_File_Name (Unit_File_Name (Current_Sem_Unit))
or else Current_Sem_Unit = Main_Unit)
then
Check_Restricted_Unit
(Unit_Name (Get_Source_Unit (Uname)), With_Clause);
end if;
if P /= Standard_Standard then
-- If the unit is not analyzed after analysis of the with clause and
-- it is an instantiation then it awaits a body and is the main unit.
-- Its appearance in the context of some other unit indicates a
-- circular dependency (DEC suite perversity).
if not Analyzed (Uname)
and then Nkind (Parent (Uname)) = N_Package_Instantiation
then
Error_Msg_N
("instantiation depends on itself", Name (With_Clause));
elsif not Is_Visible_Child_Unit (Uname) then
Set_Is_Visible_Child_Unit (Uname);
-- If the child unit appears in the context of its parent, it is
-- immediately visible.
if In_Open_Scopes (Scope (Uname)) then
Set_Is_Immediately_Visible (Uname);
end if;
if Is_Generic_Instance (Uname)
and then Ekind (Uname) in Subprogram_Kind
then
-- Set flag as well on the visible entity that denotes the
-- instance, which renames the current one.
Set_Is_Visible_Child_Unit
(Related_Instance
(Defining_Entity (Unit (Library_Unit (With_Clause)))));
end if;
-- The parent unit may have been installed already, and may have
-- appeared in a use clause.
if In_Use (Scope (Uname)) then
Set_Is_Potentially_Use_Visible (Uname);
end if;
Set_Context_Installed (With_Clause);
end if;
elsif not Is_Immediately_Visible (Uname) then
if not Private_Present (With_Clause)
or else Private_With_OK
then
Set_Is_Immediately_Visible (Uname);
end if;
Set_Context_Installed (With_Clause);
end if;
-- A with-clause overrides a with-type clause: there are no restric-
-- tions on the use of package entities.
if Ekind (Uname) = E_Package then
Set_From_With_Type (Uname, False);
end if;
-- Ada 2005 (AI-377): it is illegal for a with_clause to name a child
-- unit if there is a visible homograph for it declared in the same
-- declarative region. This pathological case can only arise when an
-- instance I1 of a generic unit G1 has an explicit child unit I1.G2,
-- G1 has a generic child also named G2, and the context includes with_
-- clauses for both I1.G2 and for G1.G2, making an implicit declaration
-- of I1.G2 visible as well. If the child unit is named Standard, do
-- not apply the check to the Standard package itself.
if Is_Child_Unit (Uname)
and then Is_Visible_Child_Unit (Uname)
and then Ada_Version >= Ada_05
then
declare
Decl1 : constant Node_Id := Unit_Declaration_Node (P);
Decl2 : Node_Id;
P2 : Entity_Id;
U2 : Entity_Id;
begin
U2 := Homonym (Uname);
while Present (U2)
and U2 /= Standard_Standard
loop
P2 := Scope (U2);
Decl2 := Unit_Declaration_Node (P2);
if Is_Child_Unit (U2)
and then Is_Visible_Child_Unit (U2)
then
if Is_Generic_Instance (P)
and then Nkind (Decl1) = N_Package_Declaration
and then Generic_Parent (Specification (Decl1)) = P2
then
Error_Msg_N ("illegal with_clause", With_Clause);
Error_Msg_N
("\child unit has visible homograph" &
" ('R'M 8.3(26), 10.1.1(19))",
With_Clause);
exit;
elsif Is_Generic_Instance (P2)
and then Nkind (Decl2) = N_Package_Declaration
and then Generic_Parent (Specification (Decl2)) = P
then
-- With_clause for child unit of instance appears before
-- in the context. We want to place the error message on
-- it, not on the generic child unit itself.
declare
Prev_Clause : Node_Id;
begin
Prev_Clause := First (List_Containing (With_Clause));
while Entity (Name (Prev_Clause)) /= U2 loop
Next (Prev_Clause);
end loop;
pragma Assert (Present (Prev_Clause));
Error_Msg_N ("illegal with_clause", Prev_Clause);
Error_Msg_N
("\child unit has visible homograph" &
" ('R'M 8.3(26), 10.1.1(19))",
Prev_Clause);
exit;
end;
end if;
end if;
U2 := Homonym (U2);
end loop;
end;
end if;
end Install_Withed_Unit;
-------------------
-- Is_Child_Spec --
-------------------
function Is_Child_Spec (Lib_Unit : Node_Id) return Boolean is
K : constant Node_Kind := Nkind (Lib_Unit);
begin
return (K in N_Generic_Declaration or else
K in N_Generic_Instantiation or else
K in N_Generic_Renaming_Declaration or else
K = N_Package_Declaration or else
K = N_Package_Renaming_Declaration or else
K = N_Subprogram_Declaration or else
K = N_Subprogram_Renaming_Declaration)
and then Present (Parent_Spec (Lib_Unit));
end Is_Child_Spec;
-----------------------
-- Load_Needed_Body --
-----------------------
-- N is a generic unit named in a with clause, or else it is
-- a unit that contains a generic unit or an inlined function.
-- In order to perform an instantiation, the body of the unit
-- must be present. If the unit itself is generic, we assume
-- that an instantiation follows, and load and analyze the body
-- unconditionally. This forces analysis of the spec as well.
-- If the unit is not generic, but contains a generic unit, it
-- is loaded on demand, at the point of instantiation (see ch12).
procedure Load_Needed_Body (N : Node_Id; OK : out Boolean) is
Body_Name : Unit_Name_Type;
Unum : Unit_Number_Type;
Save_Style_Check : constant Boolean := Opt.Style_Check;
-- The loading and analysis is done with style checks off
begin
if not GNAT_Mode then
Style_Check := False;
end if;
Body_Name := Get_Body_Name (Get_Unit_Name (Unit (N)));
Unum :=
Load_Unit
(Load_Name => Body_Name,
Required => False,
Subunit => False,
Error_Node => N,
Renamings => True);
if Unum = No_Unit then
OK := False;
else
Compiler_State := Analyzing; -- reset after load
if not Fatal_Error (Unum) or else Try_Semantics then
if Debug_Flag_L then
Write_Str ("*** Loaded generic body");
Write_Eol;
end if;
Semantics (Cunit (Unum));
end if;
OK := True;
end if;
Style_Check := Save_Style_Check;
end Load_Needed_Body;
-------------------------
-- Build_Limited_Views --
-------------------------
procedure Build_Limited_Views (N : Node_Id) is
Unum : constant Unit_Number_Type := Get_Source_Unit (Library_Unit (N));
P : constant Entity_Id := Cunit_Entity (Unum);
Spec : Node_Id; -- To denote a package specification
Lim_Typ : Entity_Id; -- To denote shadow entities
Comp_Typ : Entity_Id; -- To denote real entities
Lim_Header : Entity_Id; -- Package entity
Last_Lim_E : Entity_Id := Empty; -- Last limited entity built
Last_Pub_Lim_E : Entity_Id; -- To set the first private entity
procedure Decorate_Incomplete_Type
(E : Entity_Id;
Scop : Entity_Id);
-- Add attributes of an incomplete type to a shadow entity. The same
-- attributes are placed on the real entity, so that gigi receives
-- a consistent view.
procedure Decorate_Package_Specification (P : Entity_Id);
-- Add attributes of a package entity to the entity in a package
-- declaration
procedure Decorate_Tagged_Type
(Loc : Source_Ptr;
T : Entity_Id;
Scop : Entity_Id);
-- Set basic attributes of tagged type T, including its class_wide type.
-- The parameters Loc, Scope are used to decorate the class_wide type.
procedure Build_Chain
(Scope : Entity_Id;
First_Decl : Node_Id);
-- Construct list of shadow entities and attach it to entity of
-- package that is mentioned in a limited_with clause.
function New_Internal_Shadow_Entity
(Kind : Entity_Kind;
Sloc_Value : Source_Ptr;
Id_Char : Character) return Entity_Id;
-- Build a new internal entity and append it to the list of shadow
-- entities available through the limited-header
------------------------------
-- Decorate_Incomplete_Type --
------------------------------
procedure Decorate_Incomplete_Type
(E : Entity_Id;
Scop : Entity_Id)
is
begin
Set_Ekind (E, E_Incomplete_Type);
Set_Scope (E, Scop);
Set_Etype (E, E);
Set_Is_First_Subtype (E, True);
Set_Stored_Constraint (E, No_Elist);
Set_Full_View (E, Empty);
Init_Size_Align (E);
end Decorate_Incomplete_Type;
--------------------------
-- Decorate_Tagged_Type --
--------------------------
procedure Decorate_Tagged_Type
(Loc : Source_Ptr;
T : Entity_Id;
Scop : Entity_Id)
is
CW : Entity_Id;
begin
Decorate_Incomplete_Type (T, Scop);
Set_Is_Tagged_Type (T);
-- Build corresponding class_wide type, if not previously done
if No (Class_Wide_Type (T)) then
CW := Make_Defining_Identifier (Loc, New_Internal_Name ('S'));
Set_Ekind (CW, E_Class_Wide_Type);
Set_Etype (CW, T);
Set_Scope (CW, Scop);
Set_Is_Tagged_Type (CW);
Set_Is_First_Subtype (CW, True);
Init_Size_Align (CW);
Set_Has_Unknown_Discriminants (CW, True);
Set_Class_Wide_Type (CW, CW);
Set_Equivalent_Type (CW, Empty);
Set_From_With_Type (CW, From_With_Type (T));
Set_Class_Wide_Type (T, CW);
end if;
end Decorate_Tagged_Type;
------------------------------------
-- Decorate_Package_Specification --
------------------------------------
procedure Decorate_Package_Specification (P : Entity_Id) is
begin
-- Place only the most basic attributes
Set_Ekind (P, E_Package);
Set_Etype (P, Standard_Void_Type);
end Decorate_Package_Specification;
-------------------------
-- New_Internal_Entity --
-------------------------
function New_Internal_Shadow_Entity
(Kind : Entity_Kind;
Sloc_Value : Source_Ptr;
Id_Char : Character) return Entity_Id
is
E : constant Entity_Id :=
Make_Defining_Identifier (Sloc_Value,
Chars => New_Internal_Name (Id_Char));
begin
Set_Ekind (E, Kind);
Set_Is_Internal (E, True);
if Kind in Type_Kind then
Init_Size_Align (E);
end if;
Append_Entity (E, Lim_Header);
Last_Lim_E := E;
return E;
end New_Internal_Shadow_Entity;
-----------------
-- Build_Chain --
-----------------
procedure Build_Chain
(Scope : Entity_Id;
First_Decl : Node_Id)
is
Analyzed_Unit : constant Boolean := Analyzed (Cunit (Unum));
Is_Tagged : Boolean;
Decl : Node_Id;
begin
Decl := First_Decl;
while Present (Decl) loop
-- For each library_package_declaration in the environment, there
-- is an implicit declaration of a *limited view* of that library
-- package. The limited view of a package contains:
--
-- * For each nested package_declaration, a declaration of the
-- limited view of that package, with the same defining-
-- program-unit name.
--
-- * For each type_declaration in the visible part, an incomplete
-- type-declaration with the same defining_identifier, whose
-- completion is the type_declaration. If the type_declaration
-- is tagged, then the incomplete_type_declaration is tagged
-- incomplete.
if Nkind (Decl) = N_Full_Type_Declaration then
Is_Tagged :=
Nkind (Type_Definition (Decl)) = N_Record_Definition
and then Tagged_Present (Type_Definition (Decl));
Comp_Typ := Defining_Identifier (Decl);
if not Analyzed_Unit then
if Is_Tagged then
Decorate_Tagged_Type (Sloc (Decl), Comp_Typ, Scope);
else
Decorate_Incomplete_Type (Comp_Typ, Scope);
end if;
end if;
-- Create shadow entity for type
Lim_Typ := New_Internal_Shadow_Entity
(Kind => Ekind (Comp_Typ),
Sloc_Value => Sloc (Comp_Typ),
Id_Char => 'Z');
Set_Chars (Lim_Typ, Chars (Comp_Typ));
Set_Parent (Lim_Typ, Parent (Comp_Typ));
Set_From_With_Type (Lim_Typ);
if Is_Tagged then
Decorate_Tagged_Type (Sloc (Decl), Lim_Typ, Scope);
else
Decorate_Incomplete_Type (Lim_Typ, Scope);
end if;
Set_Non_Limited_View (Lim_Typ, Comp_Typ);
elsif Nkind (Decl) = N_Private_Type_Declaration then
Comp_Typ := Defining_Identifier (Decl);
if not Analyzed_Unit then
if Tagged_Present (Decl) then
Decorate_Tagged_Type (Sloc (Decl), Comp_Typ, Scope);
else
Decorate_Incomplete_Type (Comp_Typ, Scope);
end if;
end if;
Lim_Typ := New_Internal_Shadow_Entity
(Kind => Ekind (Comp_Typ),
Sloc_Value => Sloc (Comp_Typ),
Id_Char => 'Z');
Set_Chars (Lim_Typ, Chars (Comp_Typ));
Set_Parent (Lim_Typ, Parent (Comp_Typ));
Set_From_With_Type (Lim_Typ);
if Tagged_Present (Decl) then
Decorate_Tagged_Type (Sloc (Decl), Lim_Typ, Scope);
else
Decorate_Incomplete_Type (Lim_Typ, Scope);
end if;
Set_Non_Limited_View (Lim_Typ, Comp_Typ);
elsif Nkind (Decl) = N_Private_Extension_Declaration then
Comp_Typ := Defining_Identifier (Decl);
if not Analyzed_Unit then
Decorate_Tagged_Type (Sloc (Decl), Comp_Typ, Scope);
end if;
-- Create shadow entity for type
Lim_Typ := New_Internal_Shadow_Entity
(Kind => Ekind (Comp_Typ),
Sloc_Value => Sloc (Comp_Typ),
Id_Char => 'Z');
Set_Chars (Lim_Typ, Chars (Comp_Typ));
Set_Parent (Lim_Typ, Parent (Comp_Typ));
Set_From_With_Type (Lim_Typ);
Decorate_Tagged_Type (Sloc (Decl), Lim_Typ, Scope);
Set_Non_Limited_View (Lim_Typ, Comp_Typ);
elsif Nkind (Decl) = N_Package_Declaration then
-- Local package
declare
Spec : constant Node_Id := Specification (Decl);
begin
Comp_Typ := Defining_Unit_Name (Spec);
if not Analyzed (Cunit (Unum)) then
Decorate_Package_Specification (Comp_Typ);
Set_Scope (Comp_Typ, Scope);
end if;
Lim_Typ := New_Internal_Shadow_Entity
(Kind => Ekind (Comp_Typ),
Sloc_Value => Sloc (Comp_Typ),
Id_Char => 'Z');
Decorate_Package_Specification (Lim_Typ);
Set_Scope (Lim_Typ, Scope);
Set_Chars (Lim_Typ, Chars (Comp_Typ));
Set_Parent (Lim_Typ, Parent (Comp_Typ));
Set_From_With_Type (Lim_Typ);
-- Note: The non_limited_view attribute is not used
-- for local packages.
Build_Chain
(Scope => Lim_Typ,
First_Decl => First (Visible_Declarations (Spec)));
end;
end if;
Next (Decl);
end loop;
end Build_Chain;
-- Start of processing for Build_Limited_Views
begin
pragma Assert (Limited_Present (N));
-- A library_item mentioned in a limited_with_clause shall be
-- a package_declaration, not a subprogram_declaration,
-- generic_declaration, generic_instantiation, or
-- package_renaming_declaration
case Nkind (Unit (Library_Unit (N))) is
when N_Package_Declaration =>
null;
when N_Subprogram_Declaration =>
Error_Msg_N ("subprograms not allowed in "
& "limited with_clauses", N);
return;
when N_Generic_Package_Declaration |
N_Generic_Subprogram_Declaration =>
Error_Msg_N ("generics not allowed in "
& "limited with_clauses", N);
return;
when N_Generic_Instantiation =>
Error_Msg_N ("generic instantiations not allowed in "
& "limited with_clauses", N);
return;
when N_Generic_Renaming_Declaration =>
Error_Msg_N ("generic renamings not allowed in "
& "limited with_clauses", N);
return;
when N_Subprogram_Renaming_Declaration =>
Error_Msg_N ("renamed subprograms not allowed in "
& "limited with_clauses", N);
return;
when N_Package_Renaming_Declaration =>
Error_Msg_N ("renamed packages not allowed in "
& "limited with_clauses", N);
return;
when others =>
raise Program_Error;
end case;
-- Check if the chain is already built
Spec := Specification (Unit (Library_Unit (N)));
if Limited_View_Installed (Spec) then
return;
end if;
Set_Ekind (P, E_Package);
-- Build the header of the limited_view
Lim_Header := Make_Defining_Identifier (Sloc (N),
Chars => New_Internal_Name (Id_Char => 'Z'));
Set_Ekind (Lim_Header, E_Package);
Set_Is_Internal (Lim_Header);
Set_Limited_View (P, Lim_Header);
-- Create the auxiliary chain. All the shadow entities are appended
-- to the list of entities of the limited-view header
Build_Chain
(Scope => P,
First_Decl => First (Visible_Declarations (Spec)));
-- Save the last built shadow entity. It is needed later to set the
-- reference to the first shadow entity in the private part
Last_Pub_Lim_E := Last_Lim_E;
-- Ada 2005 (AI-262): Add the limited view of the private declarations
-- Required to give support to limited-private-with clauses
Build_Chain (Scope => P,
First_Decl => First (Private_Declarations (Spec)));
if Last_Pub_Lim_E /= Empty then
Set_First_Private_Entity (Lim_Header,
Next_Entity (Last_Pub_Lim_E));
else
Set_First_Private_Entity (Lim_Header,
First_Entity (P));
end if;
Set_Limited_View_Installed (Spec);
end Build_Limited_Views;
-------------------------------
-- Check_Body_Needed_For_SAL --
-------------------------------
procedure Check_Body_Needed_For_SAL (Unit_Name : Entity_Id) is
function Entity_Needs_Body (E : Entity_Id) return Boolean;
-- Determine whether use of entity E might require the presence
-- of its body. For a package this requires a recursive traversal
-- of all nested declarations.
---------------------------
-- Entity_Needed_For_SAL --
---------------------------
function Entity_Needs_Body (E : Entity_Id) return Boolean is
Ent : Entity_Id;
begin
if Is_Subprogram (E)
and then Has_Pragma_Inline (E)
then
return True;
elsif Ekind (E) = E_Generic_Function
or else Ekind (E) = E_Generic_Procedure
then
return True;
elsif Ekind (E) = E_Generic_Package
and then
Nkind (Unit_Declaration_Node (E)) = N_Generic_Package_Declaration
and then Present (Corresponding_Body (Unit_Declaration_Node (E)))
then
return True;
elsif Ekind (E) = E_Package
and then
Nkind (Unit_Declaration_Node (E)) = N_Package_Declaration
and then Present (Corresponding_Body (Unit_Declaration_Node (E)))
then
Ent := First_Entity (E);
while Present (Ent) loop
if Entity_Needs_Body (Ent) then
return True;
end if;
Next_Entity (Ent);
end loop;
return False;
else
return False;
end if;
end Entity_Needs_Body;
-- Start of processing for Check_Body_Needed_For_SAL
begin
if Ekind (Unit_Name) = E_Generic_Package
and then
Nkind (Unit_Declaration_Node (Unit_Name)) =
N_Generic_Package_Declaration
and then
Present (Corresponding_Body (Unit_Declaration_Node (Unit_Name)))
then
Set_Body_Needed_For_SAL (Unit_Name);
elsif Ekind (Unit_Name) = E_Generic_Procedure
or else Ekind (Unit_Name) = E_Generic_Function
then
Set_Body_Needed_For_SAL (Unit_Name);
elsif Is_Subprogram (Unit_Name)
and then Nkind (Unit_Declaration_Node (Unit_Name)) =
N_Subprogram_Declaration
and then Has_Pragma_Inline (Unit_Name)
then
Set_Body_Needed_For_SAL (Unit_Name);
elsif Ekind (Unit_Name) = E_Subprogram_Body then
Check_Body_Needed_For_SAL
(Corresponding_Spec (Unit_Declaration_Node (Unit_Name)));
elsif Ekind (Unit_Name) = E_Package
and then Entity_Needs_Body (Unit_Name)
then
Set_Body_Needed_For_SAL (Unit_Name);
elsif Ekind (Unit_Name) = E_Package_Body
and then Nkind (Unit_Declaration_Node (Unit_Name)) = N_Package_Body
then
Check_Body_Needed_For_SAL
(Corresponding_Spec (Unit_Declaration_Node (Unit_Name)));
end if;
end Check_Body_Needed_For_SAL;
--------------------
-- Remove_Context --
--------------------
procedure Remove_Context (N : Node_Id) is
Lib_Unit : constant Node_Id := Unit (N);
begin
-- If this is a child unit, first remove the parent units
if Is_Child_Spec (Lib_Unit) then
Remove_Parents (Lib_Unit);
end if;
Remove_Context_Clauses (N);
end Remove_Context;
----------------------------
-- Remove_Context_Clauses --
----------------------------
procedure Remove_Context_Clauses (N : Node_Id) is
Item : Node_Id;
Unit_Name : Entity_Id;
begin
-- Ada 2005 (AI-50217): We remove the context clauses in two phases:
-- limited-views first and regular-views later (to maintain the
-- stack model).
-- First Phase: Remove limited_with context clauses
Item := First (Context_Items (N));
while Present (Item) loop
-- We are interested only in with clauses which got installed
-- on entry.
if Nkind (Item) = N_With_Clause
and then Limited_Present (Item)
and then Limited_View_Installed (Item)
then
Remove_Limited_With_Clause (Item);
end if;
Next (Item);
end loop;
-- Second Phase: Loop through context items and undo regular
-- with_clauses and use_clauses.
Item := First (Context_Items (N));
while Present (Item) loop
-- We are interested only in with clauses which got installed
-- on entry, as indicated by their Context_Installed flag set
if Nkind (Item) = N_With_Clause
and then Limited_Present (Item)
and then Limited_View_Installed (Item)
then
null;
elsif Nkind (Item) = N_With_Clause
and then Context_Installed (Item)
then
-- Remove items from one with'ed unit
Unit_Name := Entity (Name (Item));
Remove_Unit_From_Visibility (Unit_Name);
Set_Context_Installed (Item, False);
elsif Nkind (Item) = N_Use_Package_Clause then
End_Use_Package (Item);
elsif Nkind (Item) = N_Use_Type_Clause then
End_Use_Type (Item);
elsif Nkind (Item) = N_With_Type_Clause then
Remove_With_Type_Clause (Name (Item));
end if;
Next (Item);
end loop;
end Remove_Context_Clauses;
--------------------------------
-- Remove_Limited_With_Clause --
--------------------------------
procedure Remove_Limited_With_Clause (N : Node_Id) is
P_Unit : constant Entity_Id := Unit (Library_Unit (N));
P : Entity_Id;
Lim_Header : Entity_Id;
Lim_Typ : Entity_Id;
Prev : Entity_Id;
begin
pragma Assert (Limited_View_Installed (N));
-- In case of limited with_clause on subprograms, generics, instances,
-- or renamings, the corresponding error was previously posted and we
-- have nothing to do here.
if Nkind (P_Unit) /= N_Package_Declaration then
return;
end if;
P := Defining_Unit_Name (Specification (P_Unit));
-- Handle child packages
if Nkind (P) = N_Defining_Program_Unit_Name then
P := Defining_Identifier (P);
end if;
if Debug_Flag_I then
Write_Str ("remove limited view of ");
Write_Name (Chars (P));
Write_Str (" from visibility");
Write_Eol;
end if;
-- Prepare the removal of the shadow entities from visibility. The
-- first element of the limited view is a header (an E_Package
-- entity) that is used to reference the first shadow entity in the
-- private part of the package
Lim_Header := Limited_View (P);
Lim_Typ := First_Entity (Lim_Header);
-- Remove package and shadow entities from visibility if it has not
-- been analyzed
if not Analyzed (P_Unit) then
Unchain (P);
Set_Is_Immediately_Visible (P, False);
while Present (Lim_Typ) loop
Unchain (Lim_Typ);
Next_Entity (Lim_Typ);
end loop;
-- Otherwise this package has already appeared in the closure and its
-- shadow entities must be replaced by its real entities. This code
-- must be kept synchronized with the complementary code in Install
-- Limited_Withed_Unit.
else
-- Real entities that are type or subtype declarations were hidden
-- from visibility at the point of installation of the limited-view.
-- Now we recover the previous value of the hidden attribute.
declare
E : Entity_Id;
begin
E := First_Entity (P);
while Present (E) and then E /= First_Private_Entity (P) loop
if Is_Type (E) then
Set_Is_Hidden (E, Was_Hidden (E));
end if;
Next_Entity (E);
end loop;
end;
while Present (Lim_Typ)
and then Lim_Typ /= First_Private_Entity (Lim_Header)
loop
pragma Assert (not In_Chain (Non_Limited_View (Lim_Typ)));
-- Child units have not been unchained
if not Is_Child_Unit (Non_Limited_View (Lim_Typ)) then
Prev := Current_Entity (Lim_Typ);
if Prev = Lim_Typ then
Set_Current_Entity (Non_Limited_View (Lim_Typ));
else
while Present (Prev)
and then Homonym (Prev) /= Lim_Typ
loop
Prev := Homonym (Prev);
end loop;
pragma Assert (Present (Prev));
Set_Homonym (Prev, Non_Limited_View (Lim_Typ));
end if;
-- We must also set the next homonym entity of the real entity
-- to handle the case in which the next homonym was a shadow
-- entity.
Set_Homonym (Non_Limited_View (Lim_Typ), Homonym (Lim_Typ));
end if;
Next_Entity (Lim_Typ);
end loop;
end if;
-- Indicate that the limited view of the package is not installed
Set_From_With_Type (P, False);
Set_Limited_View_Installed (N, False);
end Remove_Limited_With_Clause;
--------------------
-- Remove_Parents --
--------------------
procedure Remove_Parents (Lib_Unit : Node_Id) is
P : Node_Id;
P_Name : Entity_Id;
P_Spec : Node_Id := Empty;
E : Entity_Id;
Vis : constant Boolean :=
Scope_Stack.Table (Scope_Stack.Last).Previous_Visibility;
begin
if Is_Child_Spec (Lib_Unit) then
P_Spec := Parent_Spec (Lib_Unit);
elsif Nkind (Lib_Unit) = N_Package_Body
and then Nkind (Original_Node (Lib_Unit)) = N_Package_Instantiation
then
P_Spec := Parent_Spec (Original_Node (Lib_Unit));
end if;
if Present (P_Spec) then
P := Unit (P_Spec);
P_Name := Get_Parent_Entity (P);
Remove_Context_Clauses (P_Spec);
End_Package_Scope (P_Name);
Set_Is_Immediately_Visible (P_Name, Vis);
-- Remove from visibility the siblings as well, which are directly
-- visible while the parent is in scope.
E := First_Entity (P_Name);
while Present (E) loop
if Is_Child_Unit (E) then
Set_Is_Immediately_Visible (E, False);
end if;
Next_Entity (E);
end loop;
Set_In_Package_Body (P_Name, False);
-- This is the recursive call to remove the context of any
-- higher level parent. This recursion ensures that all parents
-- are removed in the reverse order of their installation.
Remove_Parents (P);
end if;
end Remove_Parents;
-----------------------------
-- Remove_With_Type_Clause --
-----------------------------
procedure Remove_With_Type_Clause (Name : Node_Id) is
Typ : Entity_Id;
P : Entity_Id;
procedure Unchain (E : Entity_Id);
-- Remove entity from visibility list
-------------
-- Unchain --
-------------
procedure Unchain (E : Entity_Id) is
Prev : Entity_Id;
begin
Prev := Current_Entity (E);
-- Package entity may appear is several with_type_clauses, and
-- may have been removed already.
if No (Prev) then
return;
elsif Prev = E then
Set_Name_Entity_Id (Chars (E), Homonym (E));
else
while Present (Prev)
and then Homonym (Prev) /= E
loop
Prev := Homonym (Prev);
end loop;
if Present (Prev) then
Set_Homonym (Prev, Homonym (E));
end if;
end if;
end Unchain;
-- Start of processing for Remove_With_Type_Clause
begin
if Nkind (Name) = N_Selected_Component then
Typ := Entity (Selector_Name (Name));
-- If no Typ, then error in declaration, ignore
if No (Typ) then
return;
end if;
else
return;
end if;
P := Scope (Typ);
-- If the exporting package has been analyzed, it has appeared in the
-- context already and should be left alone. Otherwise, remove from
-- visibility.
if not Analyzed (Unit_Declaration_Node (P)) then
Unchain (P);
Unchain (Typ);
Set_Is_Frozen (Typ, False);
end if;
if Ekind (Typ) = E_Record_Type then
Set_From_With_Type (Class_Wide_Type (Typ), False);
Set_From_With_Type (Typ, False);
end if;
Set_From_With_Type (P, False);
-- If P is a child unit, remove parents as well
P := Scope (P);
while Present (P)
and then P /= Standard_Standard
loop
Set_From_With_Type (P, False);
if not Analyzed (Unit_Declaration_Node (P)) then
Unchain (P);
end if;
P := Scope (P);
end loop;
-- The back-end needs to know that an access type is imported, so it
-- does not need elaboration and can appear in a mutually recursive
-- record definition, so the imported flag on an access type is
-- preserved.
end Remove_With_Type_Clause;
---------------------------------
-- Remove_Unit_From_Visibility --
---------------------------------
procedure Remove_Unit_From_Visibility (Unit_Name : Entity_Id) is
P : constant Entity_Id := Scope (Unit_Name);
begin
if Debug_Flag_I then
Write_Str ("remove unit ");
Write_Name (Chars (Unit_Name));
Write_Str (" from visibility");
Write_Eol;
end if;
if P /= Standard_Standard then
Set_Is_Visible_Child_Unit (Unit_Name, False);
end if;
Set_Is_Potentially_Use_Visible (Unit_Name, False);
Set_Is_Immediately_Visible (Unit_Name, False);
end Remove_Unit_From_Visibility;
-------------
-- Unchain --
-------------
procedure Unchain (E : Entity_Id) is
Prev : Entity_Id;
begin
Prev := Current_Entity (E);
if No (Prev) then
return;
elsif Prev = E then
Set_Name_Entity_Id (Chars (E), Homonym (E));
else
while Present (Prev)
and then Homonym (Prev) /= E
loop
Prev := Homonym (Prev);
end loop;
if Present (Prev) then
Set_Homonym (Prev, Homonym (E));
end if;
end if;
if Debug_Flag_I then
Write_Str (" (homonym) unchain ");
Write_Name (Chars (E));
Write_Eol;
end if;
end Unchain;
end Sem_Ch10;
|
-- ----------------------------------------------------------------- --
-- --
-- This is free software; you can redistribute it and/or --
-- modify it under the terms of the GNU General Public --
-- License as published by the Free Software Foundation; either --
-- version 2 of the License, or (at your option) any later version. --
-- --
-- This software 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 library; if not, write to the --
-- Free Software Foundation, Inc., 59 Temple Place - Suite 330, --
-- Boston, MA 02111-1307, USA. --
-- --
-- ----------------------------------------------------------------- --
-- ----------------------------------------------------------------- --
-- This is a translation, to the Ada programming language, of the --
-- original C test files written by Sam Lantinga - www.libsdl.org --
-- translation made by Antonio F. Vargas - www.adapower.net/~avargas --
-- ----------------------------------------------------------------- --
with Interfaces.C.Strings;
with Ada.Text_IO; use Ada.Text_IO;
with SDL.Error;
with SDL.Active;
with SDL.Keysym;
with SDL.Mouse;
with SDL.Timer;
package body ThreadWin_Sprogs is
package It renames Interfaces;
package CS renames Interfaces.C.Strings;
use type C.int;
use type V.Surface_ptr;
use type V.Palette_ptr;
package Er renames SDL.Error;
use type Ev.Event_Mask;
package A renames SDL.Active;
use type A.Active_State;
package Ks renames SDL.Keysym;
use type Ks.Key;
package M renames SDL.Mouse;
use type M.Mouse_Button_State;
package Tm renames SDL.Timer;
use Uint8_Ptrs;
use Uint8_PtrOps;
-- Is the cursor visible
visible : Boolean := True;
type Mask_Array is
array (Integer range <>) of aliased Uint8;
pragma Convention (C, Mask_Array);
type Mask_Array_Access is access Mask_Array;
-- ======================================
procedure LoadIconSurface (
file : in string;
maskp : in out Icon_Mask_Array_Access;
icon : out V.Surface_ptr)
is
use type Interfaces.Unsigned_8;
mlen : C.int;
i : Integer;
pixels : Uint8_PtrOps.Pointer;
use V.Color_PtrOps;
begin
-- Load the icon surface
icon := V.LoadBMP (CS.New_String (file));
if icon = null then
Put_Line ("Couldn't load " & file & Er.Get_Error);
return;
end if;
-- Check width and height
if icon.w mod 8 /= 0 then
Put_Line ("Icon width must be a multiple of 8!");
V.FreeSurface (icon);
icon := null;
return;
end if;
if icon.format.palette = null then
Put_Line ("Icon must have a palette!");
V.FreeSurface (icon);
icon := null;
return;
end if;
-- Set the colorkey
V.SetColorKey (icon, V.SRCCOLORKEY,
Uint32(To_Pointer (icon.pixels).all));
-- Create the mask
pixels := Uint8_PtrOps.Pointer (To_Pointer (icon.pixels));
Put_Line ("Transparent pixel: (" &
Uint8'Image (
V.Color_ptr (
V.Color_PtrOps.Pointer (
icon.format.palette.colors) + C.ptrdiff_t (pixels.all)
).all.r
)
& "," &
Uint8'Image (
V.Color_ptr (
V.Color_PtrOps.Pointer (
icon.format.palette.colors) + C.ptrdiff_t (pixels.all)
).all.g
)
& "," &
Uint8'Image (
V.Color_ptr (
V.Color_PtrOps.Pointer (
icon.format.palette.colors) + C.ptrdiff_t (pixels.all)
).all.b
)
& ")");
mlen := icon.w * icon.h;
maskp := new V.Icon_Mask_Array (0 .. Integer(mlen/8 - 1));
maskp.all := (others => 0);
i := 0;
while i < Integer (mlen) loop
if Uint8_PtrOps.Pointer
(pixels + C.ptrdiff_t (i)
).all /= pixels.all
then
maskp (i / 8) := Uint8 (
It.Unsigned_8 (maskp (i / 8)) or 16#01#);
end if;
i := i + 1;
if i mod 8 /= 0 then
maskp (i / 8) := Shift_Left (maskp (i / 8), 1);
end if;
end loop;
end LoadIconSurface;
-- ======================================
reallyquit : Boolean := False;
-- ======================================
function FilterEvents (event : Ev.Event_ptr) return C.int is
begin
case event.the_type is
when Ev.ISACTIVEEVENT =>
-- See what happened
Put("App ");
if event.active.gain /= 0 then
Put ("gained ");
else
Put ("lost ");
end if;
if (event.active.state and A.APPACTIVE) /= 0 then
Put ("active ");
end if;
if (event.active.state and A.APPMOUSEFOCUS) /= 0 then
Put ("mouse ");
end if;
Put_Line ("input");
-- See if we are iconified or restored
if (event.active.state and A.APPACTIVE) /= 0 then
Put ("App has been ");
if event.active.gain /= 0 then
Put_Line ("restored");
else
Put_Line ("iconified");
end if;
end if;
return 0;
-- This is important! Queue it if we want to quit.
when Ev.QUIT =>
if not reallyquit then
reallyquit := True;
Put_Line ("Quit requested");
return 0;
end if;
Put_Line ("Quit demanded");
return 1;
-- Mouse and keyboard events go to threads
when Ev.MOUSEMOTION
| Ev.MOUSEBUTTONDOWN
| Ev.MOUSEBUTTONUP
| Ev.KEYDOWN
| Ev.KEYUP =>
return 1;
-- Drop all other events
when others =>
return 0;
end case;
end FilterEvents;
-- ======================================
function HandleMouse (unused : System.Address) return C.int
is
events : Ev.Events_Array (0 .. 9);
found : C.int;
mask : Ev.Event_Mask;
begin
-- Handle mouse events here
mask := (Ev.MOUSEMOTIONMASK or Ev.MOUSEBUTTONDOWNMASK or Ev.MOUSEBUTTONUPMASK);
while not done loop
Ev.PeepEventsVP (found, events, 10, Ev.GETEVENT, mask);
for i in Natural range 0 .. Natural (found) - 1 loop
case events (i).the_type is
-- We want to toggle visibility on buttonpress
when Ev.MOUSEBUTTONDOWN | Ev.MOUSEBUTTONUP =>
if events (i).button.state = SDL_PRESSED then
visible := not visible;
M.ShowCursor (Boolean'Pos(visible));
end if;
Put ("Mouse button '" & Uint8'Image (events (i).button.button));
if events (i).button.state = M.Mouse_Button_State (SDL_PRESSED) then
Put_Line ("' pressed");
else
Put_Line ("' released");
end if;
when Ev.MOUSEMOTION =>
Put_Line ("Mouse relative motion: {" &
Sint16'Image (events (i).motion.xrel) &
"," & Sint16'Image (events (i).motion.yrel) & "}");
when others => null;
end case;
end loop;
-- Give up some CPU to allow events to arrive
Tm.SDL_Delay (20);
end loop;
return 0;
end HandleMouse;
-- ======================================
function HandleKeyboard (unused : System.Address) return C.int
is
events : Ev.Events_Array (0 .. 9);
found : C.int;
mask : Ev.Event_Mask;
begin
-- Handle mouse events here
mask := (Ev.KEYDOWNMASK or Ev.KEYUPMASK);
while not done loop
Ev.PeepEventsVP (found, events, 10, Ev.GETEVENT, mask);
for i in Natural range 0 .. Natural (found) - 1 loop
case events (i).the_type is
-- We want to toggle visibility on buttonpress
when Ev.KEYDOWN | Ev.KEYUP =>
-- Allow hitting <ESC> to quit the app
if events (i).key.keysym.sym = Ks.K_ESCAPE then
done := True;
end if;
Put ("Key '" &
C.wchar_t'Image (C.wchar_t'Val (events (i).key.keysym.unicode)) &
"' has been ");
if events (i).key.state = Uint8 (SDL_PRESSED) then
Put_Line (" pressed");
else
Put_Line (" released");
end if;
when others => null;
end case;
end loop;
-- Give up some CPU to allow events to arrive
Tm.SDL_Delay (20);
end loop;
return 0;
end HandleKeyboard;
-- ======================================
end ThreadWin_Sprogs;
|
<?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>fxp_sqrt</name>
<ret_bitwidth>20</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>1</id>
<name>in_val_V_read</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_val.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs class_id="7" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>258</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_2">
<Value>
<Obj>
<type>0</type>
<id>2</id>
<name>in_val_V_read_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>in_val.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>262</item>
<item>263</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_3">
<Value>
<Obj>
<type>0</type>
<id>3</id>
<name>tmp</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="11" tracking_level="0" version="0">
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</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>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>21</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>265</item>
<item>266</item>
<item>268</item>
<item>270</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_4">
<Value>
<Obj>
<type>0</type>
<id>4</id>
<name>tmp_cast</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>22</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>271</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_5">
<Value>
<Obj>
<type>0</type>
<id>5</id>
<name>tmp_s</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>22</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>272</item>
<item>274</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_6">
<Value>
<Obj>
<type>0</type>
<id>6</id>
<name>tmp_5</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>21</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>276</item>
<item>277</item>
<item>279</item>
<item>281</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_7">
<Value>
<Obj>
<type>0</type>
<id>7</id>
<name>tmp_3</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>22</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>283</item>
<item>284</item>
<item>286</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_8">
<Value>
<Obj>
<type>0</type>
<id>8</id>
<name>p_0353_1</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>22</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>287</item>
<item>289</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_9">
<Value>
<Obj>
<type>0</type>
<id>9</id>
<name>tmp_6</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>291</item>
<item>292</item>
<item>293</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>10</id>
<name>tmp_3_1</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>295</item>
<item>296</item>
<item>297</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>11</id>
<name>p_s</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>298</item>
<item>300</item>
<item>302</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>12</id>
<name>p_0353_1_1</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>303</item>
<item>305</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>13</id>
<name>q_V_1_1</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>306</item>
<item>308</item>
<item>310</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>14</id>
<name>tmp_7</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>312</item>
<item>313</item>
<item>315</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>15</id>
<name>tmp_8</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>316</item>
<item>318</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>16</id>
<name>tmp_10</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</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>319</item>
<item>320</item>
<item>321</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>17</id>
<name>tmp_2</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>323</item>
<item>324</item>
<item>326</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>18</id>
<name>tmp_4</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>327</item>
<item>329</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>19</id>
<name>s_V_1_2</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>330</item>
<item>331</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>20</id>
<name>tmp1</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>332</item>
<item>334</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name>s_V_2_2</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>335</item>
<item>336</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>22</id>
<name>p_0305_1_in_in_2</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>337</item>
<item>338</item>
<item>339</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>23</id>
<name>p_0353_1_2</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>340</item>
<item>341</item>
<item>342</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>24</id>
<name>q_V_1_2</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>165</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>343</item>
<item>345</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>25</id>
<name>tmp_12</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>346</item>
<item>347</item>
<item>348</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>26</id>
<name>tmp_14</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>349</item>
<item>350</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>27</id>
<name>r_V_2_3</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>352</item>
<item>353</item>
<item>355</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>28</id>
<name>tmp_10_3</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>356</item>
<item>358</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>29</id>
<name>s_V_1_3</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>359</item>
<item>360</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>30</id>
<name>r_V_4_3</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>361</item>
<item>362</item>
<item>363</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>31</id>
<name>tmp_13_3</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>364</item>
<item>366</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>32</id>
<name>s_V_2_3</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>367</item>
<item>368</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>33</id>
<name>p_0353_1_3</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>369</item>
<item>370</item>
<item>371</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>34</id>
<name>tmp_9</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>372</item>
<item>373</item>
<item>374</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>35</id>
<name>q_star_V_3</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>164</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>164</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>376</item>
<item>377</item>
<item>378</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>36</id>
<name>q_V_1_3</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>165</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>379</item>
<item>381</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name>tmp_16</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>382</item>
<item>383</item>
<item>384</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name>tmp_18</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>385</item>
<item>386</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>39</id>
<name>r_V_2_4</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>388</item>
<item>389</item>
<item>391</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_40">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>tmp_10_4</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>392</item>
<item>394</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name>s_V_1_4</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>395</item>
<item>396</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_42">
<Value>
<Obj>
<type>0</type>
<id>42</id>
<name>r_V_4_4</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>397</item>
<item>398</item>
<item>399</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_43">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name>tmp_13_4</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>400</item>
<item>402</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_44">
<Value>
<Obj>
<type>0</type>
<id>44</id>
<name>s_V_2_4</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>403</item>
<item>404</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_45">
<Value>
<Obj>
<type>0</type>
<id>45</id>
<name>p_0353_1_4</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>405</item>
<item>406</item>
<item>407</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_46">
<Value>
<Obj>
<type>0</type>
<id>46</id>
<name>tmp_11</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>408</item>
<item>409</item>
<item>410</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_47">
<Value>
<Obj>
<type>0</type>
<id>47</id>
<name>q_star_V_4</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>164</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>164</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>412</item>
<item>413</item>
<item>414</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_48">
<Value>
<Obj>
<type>0</type>
<id>48</id>
<name>q_V_1_4</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>165</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>415</item>
<item>417</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_49">
<Value>
<Obj>
<type>0</type>
<id>49</id>
<name>tmp_20</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>418</item>
<item>419</item>
<item>420</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_50">
<Value>
<Obj>
<type>0</type>
<id>50</id>
<name>tmp_22</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>421</item>
<item>422</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_51">
<Value>
<Obj>
<type>0</type>
<id>51</id>
<name>r_V_2_5</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>424</item>
<item>425</item>
<item>427</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_52">
<Value>
<Obj>
<type>0</type>
<id>52</id>
<name>tmp_10_5</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>428</item>
<item>430</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_53">
<Value>
<Obj>
<type>0</type>
<id>53</id>
<name>s_V_1_5</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>431</item>
<item>432</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_54">
<Value>
<Obj>
<type>0</type>
<id>54</id>
<name>r_V_4_5</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>433</item>
<item>434</item>
<item>435</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_55">
<Value>
<Obj>
<type>0</type>
<id>55</id>
<name>tmp_13_5</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>436</item>
<item>438</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_56">
<Value>
<Obj>
<type>0</type>
<id>56</id>
<name>s_V_2_5</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>439</item>
<item>440</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_57">
<Value>
<Obj>
<type>0</type>
<id>57</id>
<name>p_0353_1_5</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>441</item>
<item>442</item>
<item>443</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_58">
<Value>
<Obj>
<type>0</type>
<id>58</id>
<name>tmp_13</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>444</item>
<item>445</item>
<item>446</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_59">
<Value>
<Obj>
<type>0</type>
<id>59</id>
<name>q_star_V_5</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>164</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>164</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>448</item>
<item>449</item>
<item>450</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_60">
<Value>
<Obj>
<type>0</type>
<id>60</id>
<name>q_V_1_5</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>165</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>451</item>
<item>453</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_61">
<Value>
<Obj>
<type>0</type>
<id>61</id>
<name>tmp_24</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>454</item>
<item>455</item>
<item>456</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_62">
<Value>
<Obj>
<type>0</type>
<id>62</id>
<name>tmp_26</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>457</item>
<item>458</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_63">
<Value>
<Obj>
<type>0</type>
<id>63</id>
<name>r_V_2_6</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>460</item>
<item>461</item>
<item>463</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_64">
<Value>
<Obj>
<type>0</type>
<id>64</id>
<name>tmp_10_6</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>464</item>
<item>466</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_65">
<Value>
<Obj>
<type>0</type>
<id>65</id>
<name>s_V_1_6</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>467</item>
<item>468</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_66">
<Value>
<Obj>
<type>0</type>
<id>66</id>
<name>r_V_4_6</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>469</item>
<item>470</item>
<item>471</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_67">
<Value>
<Obj>
<type>0</type>
<id>67</id>
<name>tmp_13_6</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>472</item>
<item>474</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_68">
<Value>
<Obj>
<type>0</type>
<id>68</id>
<name>s_V_2_6</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>475</item>
<item>476</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_69">
<Value>
<Obj>
<type>0</type>
<id>69</id>
<name>p_0353_1_6</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>477</item>
<item>478</item>
<item>479</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_70">
<Value>
<Obj>
<type>0</type>
<id>70</id>
<name>tmp_15</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>480</item>
<item>481</item>
<item>482</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_71">
<Value>
<Obj>
<type>0</type>
<id>71</id>
<name>q_star_V_6</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>164</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>164</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>484</item>
<item>485</item>
<item>486</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_72">
<Value>
<Obj>
<type>0</type>
<id>72</id>
<name>q_V_1_6</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>165</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>487</item>
<item>489</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_73">
<Value>
<Obj>
<type>0</type>
<id>73</id>
<name>tmp_28</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>490</item>
<item>491</item>
<item>492</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_74">
<Value>
<Obj>
<type>0</type>
<id>74</id>
<name>tmp_30</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>493</item>
<item>494</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_75">
<Value>
<Obj>
<type>0</type>
<id>75</id>
<name>r_V_2_7</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>496</item>
<item>497</item>
<item>499</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_76">
<Value>
<Obj>
<type>0</type>
<id>76</id>
<name>tmp_10_7</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>500</item>
<item>502</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_77">
<Value>
<Obj>
<type>0</type>
<id>77</id>
<name>s_V_1_7</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>503</item>
<item>504</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_78">
<Value>
<Obj>
<type>0</type>
<id>78</id>
<name>r_V_4_7</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>505</item>
<item>506</item>
<item>507</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_79">
<Value>
<Obj>
<type>0</type>
<id>79</id>
<name>tmp_13_7</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>508</item>
<item>510</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_80">
<Value>
<Obj>
<type>0</type>
<id>80</id>
<name>s_V_2_7</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>511</item>
<item>512</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_81">
<Value>
<Obj>
<type>0</type>
<id>81</id>
<name>p_0353_1_7</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>513</item>
<item>514</item>
<item>515</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_82">
<Value>
<Obj>
<type>0</type>
<id>82</id>
<name>tmp_17</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>516</item>
<item>517</item>
<item>518</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_83">
<Value>
<Obj>
<type>0</type>
<id>83</id>
<name>q_star_V_7</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>164</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>164</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>520</item>
<item>521</item>
<item>522</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_84">
<Value>
<Obj>
<type>0</type>
<id>84</id>
<name>q_V_1_7</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>165</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>523</item>
<item>525</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_85">
<Value>
<Obj>
<type>0</type>
<id>85</id>
<name>tmp_32</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>526</item>
<item>527</item>
<item>528</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_86">
<Value>
<Obj>
<type>0</type>
<id>86</id>
<name>tmp_34</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>529</item>
<item>530</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_87">
<Value>
<Obj>
<type>0</type>
<id>87</id>
<name>r_V_2_8</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>532</item>
<item>533</item>
<item>535</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_88">
<Value>
<Obj>
<type>0</type>
<id>88</id>
<name>tmp_10_8</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>536</item>
<item>538</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_89">
<Value>
<Obj>
<type>0</type>
<id>89</id>
<name>s_V_1_8</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>539</item>
<item>540</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_90">
<Value>
<Obj>
<type>0</type>
<id>90</id>
<name>r_V_4_8</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>541</item>
<item>542</item>
<item>543</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_91">
<Value>
<Obj>
<type>0</type>
<id>91</id>
<name>tmp_13_8</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>544</item>
<item>546</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_92">
<Value>
<Obj>
<type>0</type>
<id>92</id>
<name>s_V_2_8</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>547</item>
<item>548</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_93">
<Value>
<Obj>
<type>0</type>
<id>93</id>
<name>p_0353_1_8</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>549</item>
<item>550</item>
<item>551</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_94">
<Value>
<Obj>
<type>0</type>
<id>94</id>
<name>tmp_19</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>552</item>
<item>553</item>
<item>554</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_95">
<Value>
<Obj>
<type>0</type>
<id>95</id>
<name>q_star_V_8</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>164</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>164</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>556</item>
<item>557</item>
<item>558</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_96">
<Value>
<Obj>
<type>0</type>
<id>96</id>
<name>q_V_1_8</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>165</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>559</item>
<item>561</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_97">
<Value>
<Obj>
<type>0</type>
<id>97</id>
<name>tmp_36</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>562</item>
<item>563</item>
<item>564</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_98">
<Value>
<Obj>
<type>0</type>
<id>98</id>
<name>tmp_38</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>565</item>
<item>566</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_99">
<Value>
<Obj>
<type>0</type>
<id>99</id>
<name>r_V_2_9</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>568</item>
<item>569</item>
<item>571</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_100">
<Value>
<Obj>
<type>0</type>
<id>100</id>
<name>tmp_10_9</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>572</item>
<item>574</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_101">
<Value>
<Obj>
<type>0</type>
<id>101</id>
<name>s_V_1_9</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>575</item>
<item>576</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_102">
<Value>
<Obj>
<type>0</type>
<id>102</id>
<name>r_V_4_9</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>577</item>
<item>578</item>
<item>579</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_103">
<Value>
<Obj>
<type>0</type>
<id>103</id>
<name>tmp_13_9</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>580</item>
<item>582</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_104">
<Value>
<Obj>
<type>0</type>
<id>104</id>
<name>s_V_2_9</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>583</item>
<item>584</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_105">
<Value>
<Obj>
<type>0</type>
<id>105</id>
<name>p_0353_1_9</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>585</item>
<item>586</item>
<item>587</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_106">
<Value>
<Obj>
<type>0</type>
<id>106</id>
<name>tmp_21</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>588</item>
<item>589</item>
<item>590</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_107">
<Value>
<Obj>
<type>0</type>
<id>107</id>
<name>q_star_V_9</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>164</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>164</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>592</item>
<item>593</item>
<item>594</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_108">
<Value>
<Obj>
<type>0</type>
<id>108</id>
<name>q_V_1_9</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>165</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>595</item>
<item>597</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_109">
<Value>
<Obj>
<type>0</type>
<id>109</id>
<name>tmp_40</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>598</item>
<item>599</item>
<item>600</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_110">
<Value>
<Obj>
<type>0</type>
<id>110</id>
<name>tmp_42</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>601</item>
<item>602</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_111">
<Value>
<Obj>
<type>0</type>
<id>111</id>
<name>r_V_2_s</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>604</item>
<item>605</item>
<item>607</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_112">
<Value>
<Obj>
<type>0</type>
<id>112</id>
<name>tmp_10_s</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>608</item>
<item>610</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_113">
<Value>
<Obj>
<type>0</type>
<id>113</id>
<name>s_V_1_s</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>611</item>
<item>612</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_114">
<Value>
<Obj>
<type>0</type>
<id>114</id>
<name>r_V_4_s</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>613</item>
<item>614</item>
<item>615</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_115">
<Value>
<Obj>
<type>0</type>
<id>115</id>
<name>tmp_13_s</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>616</item>
<item>618</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_116">
<Value>
<Obj>
<type>0</type>
<id>116</id>
<name>s_V_2_s</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>619</item>
<item>620</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_117">
<Value>
<Obj>
<type>0</type>
<id>117</id>
<name>p_0353_1_s</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>621</item>
<item>622</item>
<item>623</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_118">
<Value>
<Obj>
<type>0</type>
<id>118</id>
<name>tmp_23</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>624</item>
<item>625</item>
<item>626</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_119">
<Value>
<Obj>
<type>0</type>
<id>119</id>
<name>q_star_V_s</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>164</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>164</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>628</item>
<item>629</item>
<item>630</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_120">
<Value>
<Obj>
<type>0</type>
<id>120</id>
<name>q_V_1_s</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>165</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>631</item>
<item>633</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_121">
<Value>
<Obj>
<type>0</type>
<id>121</id>
<name>tmp_44</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>634</item>
<item>635</item>
<item>636</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_122">
<Value>
<Obj>
<type>0</type>
<id>122</id>
<name>tmp_45</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>637</item>
<item>638</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_123">
<Value>
<Obj>
<type>0</type>
<id>123</id>
<name>r_V_2_1</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>640</item>
<item>641</item>
<item>643</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_124">
<Value>
<Obj>
<type>0</type>
<id>124</id>
<name>tmp_10_1</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>644</item>
<item>646</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_125">
<Value>
<Obj>
<type>0</type>
<id>125</id>
<name>s_V_1_1</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>647</item>
<item>648</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_126">
<Value>
<Obj>
<type>0</type>
<id>126</id>
<name>r_V_4_1</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>649</item>
<item>650</item>
<item>651</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_127">
<Value>
<Obj>
<type>0</type>
<id>127</id>
<name>tmp_13_1</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>652</item>
<item>654</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_128">
<Value>
<Obj>
<type>0</type>
<id>128</id>
<name>s_V_2_1</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>655</item>
<item>656</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_129">
<Value>
<Obj>
<type>0</type>
<id>129</id>
<name>p_0353_1_10</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>657</item>
<item>658</item>
<item>659</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_130">
<Value>
<Obj>
<type>0</type>
<id>130</id>
<name>tmp_25</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>660</item>
<item>661</item>
<item>662</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_131">
<Value>
<Obj>
<type>0</type>
<id>131</id>
<name>q_star_V_1</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>164</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>164</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>12</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>664</item>
<item>665</item>
<item>666</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_132">
<Value>
<Obj>
<type>0</type>
<id>132</id>
<name>q_V_1_10</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>165</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>12</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>667</item>
<item>669</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_133">
<Value>
<Obj>
<type>0</type>
<id>133</id>
<name>tmp_46</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>670</item>
<item>671</item>
<item>672</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_134">
<Value>
<Obj>
<type>0</type>
<id>134</id>
<name>tmp_47</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>673</item>
<item>674</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_135">
<Value>
<Obj>
<type>0</type>
<id>135</id>
<name>r_V_2_2</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>676</item>
<item>677</item>
<item>679</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_136">
<Value>
<Obj>
<type>0</type>
<id>136</id>
<name>tmp_10_2</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>680</item>
<item>682</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_137">
<Value>
<Obj>
<type>0</type>
<id>137</id>
<name>s_V_1_10</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>683</item>
<item>684</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_138">
<Value>
<Obj>
<type>0</type>
<id>138</id>
<name>r_V_4_2</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>685</item>
<item>686</item>
<item>687</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_139">
<Value>
<Obj>
<type>0</type>
<id>139</id>
<name>tmp_13_2</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>688</item>
<item>690</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_140">
<Value>
<Obj>
<type>0</type>
<id>140</id>
<name>s_V_2_10</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>691</item>
<item>692</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_141">
<Value>
<Obj>
<type>0</type>
<id>141</id>
<name>p_0353_1_11</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>693</item>
<item>694</item>
<item>695</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_142">
<Value>
<Obj>
<type>0</type>
<id>142</id>
<name>tmp_27</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>12</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>696</item>
<item>697</item>
<item>698</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_143">
<Value>
<Obj>
<type>0</type>
<id>143</id>
<name>q_star_V_2</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>164</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>164</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>700</item>
<item>701</item>
<item>702</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_144">
<Value>
<Obj>
<type>0</type>
<id>144</id>
<name>q_V_1_11</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>165</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>703</item>
<item>705</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_145">
<Value>
<Obj>
<type>0</type>
<id>145</id>
<name>tmp_51</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>706</item>
<item>707</item>
<item>708</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_146">
<Value>
<Obj>
<type>0</type>
<id>146</id>
<name>tmp_52</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>709</item>
<item>710</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_147">
<Value>
<Obj>
<type>0</type>
<id>147</id>
<name>r_V_1_s</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>712</item>
<item>713</item>
<item>715</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_148">
<Value>
<Obj>
<type>0</type>
<id>148</id>
<name>tmp_10_10</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>716</item>
<item>718</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_149">
<Value>
<Obj>
<type>0</type>
<id>149</id>
<name>s_V_1_11</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>719</item>
<item>720</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_150">
<Value>
<Obj>
<type>0</type>
<id>150</id>
<name>r_V_3_s</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>721</item>
<item>722</item>
<item>723</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_151">
<Value>
<Obj>
<type>0</type>
<id>151</id>
<name>tmp_13_10</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>724</item>
<item>726</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_152">
<Value>
<Obj>
<type>0</type>
<id>152</id>
<name>s_V_2_11</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>727</item>
<item>728</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_153">
<Value>
<Obj>
<type>0</type>
<id>153</id>
<name>p_0353_1_12</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>729</item>
<item>730</item>
<item>731</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_154">
<Value>
<Obj>
<type>0</type>
<id>154</id>
<name>tmp_29</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>732</item>
<item>733</item>
<item>734</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_155">
<Value>
<Obj>
<type>0</type>
<id>155</id>
<name>q_star_V_10</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>164</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>164</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>14</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>736</item>
<item>737</item>
<item>738</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_156">
<Value>
<Obj>
<type>0</type>
<id>156</id>
<name>q_V_1_12</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>165</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>14</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>739</item>
<item>741</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_157">
<Value>
<Obj>
<type>0</type>
<id>157</id>
<name>tmp_53</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>742</item>
<item>743</item>
<item>744</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_158">
<Value>
<Obj>
<type>0</type>
<id>158</id>
<name>tmp_54</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>745</item>
<item>746</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_159">
<Value>
<Obj>
<type>0</type>
<id>159</id>
<name>r_V_1_1</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>748</item>
<item>749</item>
<item>751</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_160">
<Value>
<Obj>
<type>0</type>
<id>160</id>
<name>tmp_10_11</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>752</item>
<item>754</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_161">
<Value>
<Obj>
<type>0</type>
<id>161</id>
<name>s_V_1_12</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>755</item>
<item>756</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_162">
<Value>
<Obj>
<type>0</type>
<id>162</id>
<name>r_V_3_1</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>757</item>
<item>758</item>
<item>759</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_163">
<Value>
<Obj>
<type>0</type>
<id>163</id>
<name>tmp_13_11</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>760</item>
<item>762</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_164">
<Value>
<Obj>
<type>0</type>
<id>164</id>
<name>s_V_2_12</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>763</item>
<item>764</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_165">
<Value>
<Obj>
<type>0</type>
<id>165</id>
<name>p_0353_1_13</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>765</item>
<item>766</item>
<item>767</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_166">
<Value>
<Obj>
<type>0</type>
<id>166</id>
<name>tmp_31</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>14</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>768</item>
<item>769</item>
<item>770</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_167">
<Value>
<Obj>
<type>0</type>
<id>167</id>
<name>q_star_V_11</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>164</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>164</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>15</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>772</item>
<item>773</item>
<item>774</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_168">
<Value>
<Obj>
<type>0</type>
<id>168</id>
<name>q_V_1_13</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>165</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>15</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>775</item>
<item>777</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_169">
<Value>
<Obj>
<type>0</type>
<id>169</id>
<name>tmp_55</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>778</item>
<item>779</item>
<item>780</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_170">
<Value>
<Obj>
<type>0</type>
<id>170</id>
<name>tmp_56</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>781</item>
<item>782</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_171">
<Value>
<Obj>
<type>0</type>
<id>171</id>
<name>r_V_1_2</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>784</item>
<item>785</item>
<item>787</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_172">
<Value>
<Obj>
<type>0</type>
<id>172</id>
<name>tmp_10_12</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>788</item>
<item>790</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_173">
<Value>
<Obj>
<type>0</type>
<id>173</id>
<name>s_V_1_13</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>791</item>
<item>792</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_174">
<Value>
<Obj>
<type>0</type>
<id>174</id>
<name>r_V_3_2</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>793</item>
<item>794</item>
<item>795</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_175">
<Value>
<Obj>
<type>0</type>
<id>175</id>
<name>tmp_13_12</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>796</item>
<item>798</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_176">
<Value>
<Obj>
<type>0</type>
<id>176</id>
<name>s_V_2_13</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>799</item>
<item>800</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_177">
<Value>
<Obj>
<type>0</type>
<id>177</id>
<name>p_0353_1_14</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>801</item>
<item>802</item>
<item>803</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_178">
<Value>
<Obj>
<type>0</type>
<id>178</id>
<name>tmp_33</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>15</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>804</item>
<item>805</item>
<item>806</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_179">
<Value>
<Obj>
<type>0</type>
<id>179</id>
<name>q_star_V_12</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>164</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>164</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>808</item>
<item>809</item>
<item>810</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_180">
<Value>
<Obj>
<type>0</type>
<id>180</id>
<name>q_V_1_14</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>165</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>811</item>
<item>813</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_181">
<Value>
<Obj>
<type>0</type>
<id>181</id>
<name>tmp_57</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>814</item>
<item>815</item>
<item>816</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_182">
<Value>
<Obj>
<type>0</type>
<id>182</id>
<name>tmp_58</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>817</item>
<item>818</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_183">
<Value>
<Obj>
<type>0</type>
<id>183</id>
<name>r_V_1_3</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>820</item>
<item>821</item>
<item>823</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_184">
<Value>
<Obj>
<type>0</type>
<id>184</id>
<name>tmp_10_13</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>824</item>
<item>826</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_185">
<Value>
<Obj>
<type>0</type>
<id>185</id>
<name>s_V_1_14</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>827</item>
<item>828</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_186">
<Value>
<Obj>
<type>0</type>
<id>186</id>
<name>r_V_3_3</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>829</item>
<item>830</item>
<item>831</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_187">
<Value>
<Obj>
<type>0</type>
<id>187</id>
<name>tmp_13_13</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>832</item>
<item>834</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_188">
<Value>
<Obj>
<type>0</type>
<id>188</id>
<name>s_V_2_14</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>835</item>
<item>836</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_189">
<Value>
<Obj>
<type>0</type>
<id>189</id>
<name>p_0353_1_15</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>837</item>
<item>838</item>
<item>839</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_190">
<Value>
<Obj>
<type>0</type>
<id>190</id>
<name>tmp_35</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>840</item>
<item>841</item>
<item>842</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_191">
<Value>
<Obj>
<type>0</type>
<id>191</id>
<name>q_star_V_13</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>164</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>164</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>844</item>
<item>845</item>
<item>846</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_192">
<Value>
<Obj>
<type>0</type>
<id>192</id>
<name>q_V_1_15</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>165</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>847</item>
<item>849</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_193">
<Value>
<Obj>
<type>0</type>
<id>193</id>
<name>tmp_59</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>850</item>
<item>851</item>
<item>852</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_194">
<Value>
<Obj>
<type>0</type>
<id>194</id>
<name>tmp_60</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>853</item>
<item>854</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_195">
<Value>
<Obj>
<type>0</type>
<id>195</id>
<name>r_V_1_4</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>856</item>
<item>857</item>
<item>859</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_196">
<Value>
<Obj>
<type>0</type>
<id>196</id>
<name>tmp_10_14</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>860</item>
<item>862</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_197">
<Value>
<Obj>
<type>0</type>
<id>197</id>
<name>s_V_1_15</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>863</item>
<item>864</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_198">
<Value>
<Obj>
<type>0</type>
<id>198</id>
<name>r_V_3_4</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>865</item>
<item>866</item>
<item>867</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_199">
<Value>
<Obj>
<type>0</type>
<id>199</id>
<name>tmp_13_14</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>868</item>
<item>870</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_200">
<Value>
<Obj>
<type>0</type>
<id>200</id>
<name>s_V_2_15</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>871</item>
<item>872</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_201">
<Value>
<Obj>
<type>0</type>
<id>201</id>
<name>p_0353_1_16</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>873</item>
<item>874</item>
<item>875</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_202">
<Value>
<Obj>
<type>0</type>
<id>202</id>
<name>tmp_37</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>876</item>
<item>877</item>
<item>878</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_203">
<Value>
<Obj>
<type>0</type>
<id>203</id>
<name>q_star_V_14</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>164</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>164</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>880</item>
<item>881</item>
<item>882</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_204">
<Value>
<Obj>
<type>0</type>
<id>204</id>
<name>q_V_1_16</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>165</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>883</item>
<item>885</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_205">
<Value>
<Obj>
<type>0</type>
<id>205</id>
<name>tmp_61</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>886</item>
<item>887</item>
<item>888</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_206">
<Value>
<Obj>
<type>0</type>
<id>206</id>
<name>tmp_62</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>889</item>
<item>890</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_207">
<Value>
<Obj>
<type>0</type>
<id>207</id>
<name>r_V_1_5</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>892</item>
<item>893</item>
<item>895</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_208">
<Value>
<Obj>
<type>0</type>
<id>208</id>
<name>tmp_10_15</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>896</item>
<item>898</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_209">
<Value>
<Obj>
<type>0</type>
<id>209</id>
<name>s_V_1_16</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>899</item>
<item>900</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_210">
<Value>
<Obj>
<type>0</type>
<id>210</id>
<name>r_V_3_5</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>901</item>
<item>902</item>
<item>903</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_211">
<Value>
<Obj>
<type>0</type>
<id>211</id>
<name>tmp_13_15</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>904</item>
<item>906</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_212">
<Value>
<Obj>
<type>0</type>
<id>212</id>
<name>s_V_2_16</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>907</item>
<item>908</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_213">
<Value>
<Obj>
<type>0</type>
<id>213</id>
<name>p_0353_1_17</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>909</item>
<item>910</item>
<item>911</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_214">
<Value>
<Obj>
<type>0</type>
<id>214</id>
<name>tmp_39</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>912</item>
<item>913</item>
<item>914</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_215">
<Value>
<Obj>
<type>0</type>
<id>215</id>
<name>q_star_V_15</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>164</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>164</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>19</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>916</item>
<item>917</item>
<item>918</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_216">
<Value>
<Obj>
<type>0</type>
<id>216</id>
<name>q_V_1_17</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>165</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>19</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>919</item>
<item>921</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_217">
<Value>
<Obj>
<type>0</type>
<id>217</id>
<name>tmp_63</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>922</item>
<item>923</item>
<item>924</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_218">
<Value>
<Obj>
<type>0</type>
<id>218</id>
<name>tmp_64</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>925</item>
<item>926</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_219">
<Value>
<Obj>
<type>0</type>
<id>219</id>
<name>r_V_1_6</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>928</item>
<item>929</item>
<item>931</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_220">
<Value>
<Obj>
<type>0</type>
<id>220</id>
<name>tmp_10_16</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>932</item>
<item>934</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_221">
<Value>
<Obj>
<type>0</type>
<id>221</id>
<name>s_V_1_17</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>935</item>
<item>936</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_222">
<Value>
<Obj>
<type>0</type>
<id>222</id>
<name>r_V_3_6</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>937</item>
<item>938</item>
<item>939</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_223">
<Value>
<Obj>
<type>0</type>
<id>223</id>
<name>tmp_13_16</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>940</item>
<item>942</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_224">
<Value>
<Obj>
<type>0</type>
<id>224</id>
<name>s_V_2_17</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>943</item>
<item>944</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_225">
<Value>
<Obj>
<type>0</type>
<id>225</id>
<name>p_0353_1_18</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>945</item>
<item>946</item>
<item>947</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_226">
<Value>
<Obj>
<type>0</type>
<id>226</id>
<name>tmp_41</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>19</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>948</item>
<item>949</item>
<item>950</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_227">
<Value>
<Obj>
<type>0</type>
<id>227</id>
<name>q_star_V_16</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>164</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>164</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>20</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>952</item>
<item>953</item>
<item>954</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_228">
<Value>
<Obj>
<type>0</type>
<id>228</id>
<name>q_V_1_18</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>165</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>20</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>955</item>
<item>957</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_229">
<Value>
<Obj>
<type>0</type>
<id>229</id>
<name>tmp_65</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>958</item>
<item>959</item>
<item>960</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_230">
<Value>
<Obj>
<type>0</type>
<id>230</id>
<name>tmp_66</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>961</item>
<item>962</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_231">
<Value>
<Obj>
<type>0</type>
<id>231</id>
<name>r_V_1_7</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>964</item>
<item>965</item>
<item>966</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_232">
<Value>
<Obj>
<type>0</type>
<id>232</id>
<name>tmp_10_17</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>967</item>
<item>969</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_233">
<Value>
<Obj>
<type>0</type>
<id>233</id>
<name>s_V_1_18</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>970</item>
<item>971</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_234">
<Value>
<Obj>
<type>0</type>
<id>234</id>
<name>r_V_3_7</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>972</item>
<item>973</item>
<item>974</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_235">
<Value>
<Obj>
<type>0</type>
<id>235</id>
<name>tmp_13_17</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>975</item>
<item>977</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_236">
<Value>
<Obj>
<type>0</type>
<id>236</id>
<name>s_V_2_18</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>978</item>
<item>979</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_237">
<Value>
<Obj>
<type>0</type>
<id>237</id>
<name>p_0353_1_19</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>980</item>
<item>981</item>
<item>982</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_238">
<Value>
<Obj>
<type>0</type>
<id>238</id>
<name>tmp_43</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>20</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>983</item>
<item>984</item>
<item>985</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_239">
<Value>
<Obj>
<type>0</type>
<id>239</id>
<name>q_star_V_17</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>164</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>164</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>21</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>987</item>
<item>988</item>
<item>989</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_240">
<Value>
<Obj>
<type>0</type>
<id>240</id>
<name>q_V_1_19</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>165</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>21</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>990</item>
<item>992</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_241">
<Value>
<Obj>
<type>0</type>
<id>241</id>
<name>tmp_67</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</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>993</item>
<item>994</item>
<item>995</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_242">
<Value>
<Obj>
<type>0</type>
<id>242</id>
<name>tmp_68</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>996</item>
<item>997</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_243">
<Value>
<Obj>
<type>0</type>
<id>243</id>
<name>r_V_1_8</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>999</item>
<item>1000</item>
<item>1002</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_244">
<Value>
<Obj>
<type>0</type>
<id>244</id>
<name>r_V_2_10</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>1003</item>
<item>1004</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_245">
<Value>
<Obj>
<type>0</type>
<id>245</id>
<name>s_V_1_19</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>1005</item>
<item>1006</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_246">
<Value>
<Obj>
<type>0</type>
<id>246</id>
<name>r_V_3_8</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1007</item>
<item>1008</item>
<item>1009</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_247">
<Value>
<Obj>
<type>0</type>
<id>247</id>
<name>r_V_4_10</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>1010</item>
<item>1012</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_248">
<Value>
<Obj>
<type>0</type>
<id>248</id>
<name>s_V_2_19</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>1013</item>
<item>1014</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_249">
<Value>
<Obj>
<type>0</type>
<id>249</id>
<name>p_0353_1_20</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1015</item>
<item>1016</item>
<item>1017</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_250">
<Value>
<Obj>
<type>0</type>
<id>250</id>
<name>tmp_69</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>165</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>20</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>1018</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_251">
<Value>
<Obj>
<type>0</type>
<id>251</id>
<name>tmp_70</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>20</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>1019</item>
<item>1020</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_252">
<Value>
<Obj>
<type>0</type>
<id>252</id>
<name>tmp_48</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>20</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1021</item>
<item>1022</item>
<item>1023</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_253">
<Value>
<Obj>
<type>0</type>
<id>253</id>
<name>q_star_V_18</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>164</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>164</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>21</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1024</item>
<item>1025</item>
<item>1026</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_254">
<Value>
<Obj>
<type>0</type>
<id>254</id>
<name>q_V_1_20</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>165</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>21</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>1027</item>
<item>1028</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_255">
<Value>
<Obj>
<type>0</type>
<id>255</id>
<name>tmp_1</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>173</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>173</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>1029</item>
<item>1031</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_256">
<Value>
<Obj>
<type>0</type>
<id>256</id>
<name>q_V</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>174</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>174</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>q.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>21</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>1032</item>
<item>1033</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_257">
<Value>
<Obj>
<type>0</type>
<id>257</id>
<name>tmp_49</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>177</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>177</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>20</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>1035</item>
<item>1036</item>
<item>1037</item>
<item>1039</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_258">
<Value>
<Obj>
<type>0</type>
<id>258</id>
<name>tmp_50</name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>173</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>173</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>20</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>1040</item>
<item>1041</item>
<item>1042</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_259">
<Value>
<Obj>
<type>0</type>
<id>259</id>
<name></name>
<fileName>SobelMatrixMultiplier/fxp_sqrt.h</fileName>
<fileDirectory>C:\Users\db217620\Repositories\FPGAColorIdentifier</fileDirectory>
<lineNumber>177</lineNumber>
<contextFuncName>fxp_sqrt&lt;32, 24, 32, 24&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\db217620\Repositories\FPGAColorIdentifier</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>SobelMatrixMultiplier/fxp_sqrt.h</first>
<second>fxp_sqrt&lt;32, 24, 32, 24&gt;</second>
</first>
<second>177</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>1043</item>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>93</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_260">
<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>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>11</content>
</item>
<item class_id_reference="16" object_id="_261">
<Value>
<Obj>
<type>2</type>
<id>269</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>31</content>
</item>
<item class_id_reference="16" object_id="_262">
<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>22</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_263">
<Value>
<Obj>
<type>2</type>
<id>278</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="_264">
<Value>
<Obj>
<type>2</type>
<id>280</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>21</content>
</item>
<item class_id_reference="16" object_id="_265">
<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>1</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_266">
<Value>
<Obj>
<type>2</type>
<id>288</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>22</bitwidth>
</Value>
<const_type>0</const_type>
<content>2097152</content>
</item>
<item class_id_reference="16" object_id="_267">
<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>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>4</content>
</item>
<item class_id_reference="16" object_id="_268">
<Value>
<Obj>
<type>2</type>
<id>301</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="_269">
<Value>
<Obj>
<type>2</type>
<id>304</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>3145728</content>
</item>
<item class_id_reference="16" object_id="_270">
<Value>
<Obj>
<type>2</type>
<id>307</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>
<item class_id_reference="16" object_id="_271">
<Value>
<Obj>
<type>2</type>
<id>309</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="_272">
<Value>
<Obj>
<type>2</type>
<id>314</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>22</content>
</item>
<item class_id_reference="16" object_id="_273">
<Value>
<Obj>
<type>2</type>
<id>317</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_274">
<Value>
<Obj>
<type>2</type>
<id>325</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>22</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_275">
<Value>
<Obj>
<type>2</type>
<id>328</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>6815744</content>
</item>
<item class_id_reference="16" object_id="_276">
<Value>
<Obj>
<type>2</type>
<id>333</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>5767168</content>
</item>
<item class_id_reference="16" object_id="_277">
<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>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_278">
<Value>
<Obj>
<type>2</type>
<id>354</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>20</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_279">
<Value>
<Obj>
<type>2</type>
<id>357</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>262144</content>
</item>
<item class_id_reference="16" object_id="_280">
<Value>
<Obj>
<type>2</type>
<id>365</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>786432</content>
</item>
<item class_id_reference="16" object_id="_281">
<Value>
<Obj>
<type>2</type>
<id>380</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="_282">
<Value>
<Obj>
<type>2</type>
<id>390</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>19</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_283">
<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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>131072</content>
</item>
<item class_id_reference="16" object_id="_284">
<Value>
<Obj>
<type>2</type>
<id>401</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>393216</content>
</item>
<item class_id_reference="16" object_id="_285">
<Value>
<Obj>
<type>2</type>
<id>416</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_286">
<Value>
<Obj>
<type>2</type>
<id>426</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>18</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_287">
<Value>
<Obj>
<type>2</type>
<id>429</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>65536</content>
</item>
<item class_id_reference="16" object_id="_288">
<Value>
<Obj>
<type>2</type>
<id>437</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>196608</content>
</item>
<item class_id_reference="16" object_id="_289">
<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>6</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_290">
<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>17</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_291">
<Value>
<Obj>
<type>2</type>
<id>465</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>32768</content>
</item>
<item class_id_reference="16" object_id="_292">
<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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>98304</content>
</item>
<item class_id_reference="16" object_id="_293">
<Value>
<Obj>
<type>2</type>
<id>488</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="_294">
<Value>
<Obj>
<type>2</type>
<id>498</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_295">
<Value>
<Obj>
<type>2</type>
<id>501</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>16384</content>
</item>
<item class_id_reference="16" object_id="_296">
<Value>
<Obj>
<type>2</type>
<id>509</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>49152</content>
</item>
<item class_id_reference="16" object_id="_297">
<Value>
<Obj>
<type>2</type>
<id>524</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="_298">
<Value>
<Obj>
<type>2</type>
<id>534</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>15</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_299">
<Value>
<Obj>
<type>2</type>
<id>537</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>8192</content>
</item>
<item class_id_reference="16" object_id="_300">
<Value>
<Obj>
<type>2</type>
<id>545</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>24576</content>
</item>
<item class_id_reference="16" object_id="_301">
<Value>
<Obj>
<type>2</type>
<id>560</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_302">
<Value>
<Obj>
<type>2</type>
<id>570</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>14</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_303">
<Value>
<Obj>
<type>2</type>
<id>573</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>4096</content>
</item>
<item class_id_reference="16" object_id="_304">
<Value>
<Obj>
<type>2</type>
<id>581</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>12288</content>
</item>
<item class_id_reference="16" object_id="_305">
<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>10</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_306">
<Value>
<Obj>
<type>2</type>
<id>606</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="_307">
<Value>
<Obj>
<type>2</type>
<id>609</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>2048</content>
</item>
<item class_id_reference="16" object_id="_308">
<Value>
<Obj>
<type>2</type>
<id>617</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>6144</content>
</item>
<item class_id_reference="16" object_id="_309">
<Value>
<Obj>
<type>2</type>
<id>632</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_310">
<Value>
<Obj>
<type>2</type>
<id>642</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>12</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_311">
<Value>
<Obj>
<type>2</type>
<id>645</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>1024</content>
</item>
<item class_id_reference="16" object_id="_312">
<Value>
<Obj>
<type>2</type>
<id>653</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>3072</content>
</item>
<item class_id_reference="16" object_id="_313">
<Value>
<Obj>
<type>2</type>
<id>668</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>12</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_314">
<Value>
<Obj>
<type>2</type>
<id>678</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_315">
<Value>
<Obj>
<type>2</type>
<id>681</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>512</content>
</item>
<item class_id_reference="16" object_id="_316">
<Value>
<Obj>
<type>2</type>
<id>689</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>1536</content>
</item>
<item class_id_reference="16" object_id="_317">
<Value>
<Obj>
<type>2</type>
<id>704</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>1</content>
</item>
<item class_id_reference="16" object_id="_318">
<Value>
<Obj>
<type>2</type>
<id>714</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="_319">
<Value>
<Obj>
<type>2</type>
<id>717</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>256</content>
</item>
<item class_id_reference="16" object_id="_320">
<Value>
<Obj>
<type>2</type>
<id>725</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>768</content>
</item>
<item class_id_reference="16" object_id="_321">
<Value>
<Obj>
<type>2</type>
<id>740</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>14</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_322">
<Value>
<Obj>
<type>2</type>
<id>750</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_323">
<Value>
<Obj>
<type>2</type>
<id>753</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>128</content>
</item>
<item class_id_reference="16" object_id="_324">
<Value>
<Obj>
<type>2</type>
<id>761</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>384</content>
</item>
<item class_id_reference="16" object_id="_325">
<Value>
<Obj>
<type>2</type>
<id>776</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>15</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_326">
<Value>
<Obj>
<type>2</type>
<id>786</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="_327">
<Value>
<Obj>
<type>2</type>
<id>789</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>64</content>
</item>
<item class_id_reference="16" object_id="_328">
<Value>
<Obj>
<type>2</type>
<id>797</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>192</content>
</item>
<item class_id_reference="16" object_id="_329">
<Value>
<Obj>
<type>2</type>
<id>812</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>1</content>
</item>
<item class_id_reference="16" object_id="_330">
<Value>
<Obj>
<type>2</type>
<id>822</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="_331">
<Value>
<Obj>
<type>2</type>
<id>825</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>32</content>
</item>
<item class_id_reference="16" object_id="_332">
<Value>
<Obj>
<type>2</type>
<id>833</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>96</content>
</item>
<item class_id_reference="16" object_id="_333">
<Value>
<Obj>
<type>2</type>
<id>848</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>17</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_334">
<Value>
<Obj>
<type>2</type>
<id>858</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>6</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_335">
<Value>
<Obj>
<type>2</type>
<id>861</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>16</content>
</item>
<item class_id_reference="16" object_id="_336">
<Value>
<Obj>
<type>2</type>
<id>869</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>48</content>
</item>
<item class_id_reference="16" object_id="_337">
<Value>
<Obj>
<type>2</type>
<id>884</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>18</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_338">
<Value>
<Obj>
<type>2</type>
<id>894</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="_339">
<Value>
<Obj>
<type>2</type>
<id>897</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>8</content>
</item>
<item class_id_reference="16" object_id="_340">
<Value>
<Obj>
<type>2</type>
<id>905</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>24</content>
</item>
<item class_id_reference="16" object_id="_341">
<Value>
<Obj>
<type>2</type>
<id>920</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>19</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_342">
<Value>
<Obj>
<type>2</type>
<id>930</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="_343">
<Value>
<Obj>
<type>2</type>
<id>933</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>4</content>
</item>
<item class_id_reference="16" object_id="_344">
<Value>
<Obj>
<type>2</type>
<id>941</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>12</content>
</item>
<item class_id_reference="16" object_id="_345">
<Value>
<Obj>
<type>2</type>
<id>956</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>20</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_346">
<Value>
<Obj>
<type>2</type>
<id>968</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>2</content>
</item>
<item class_id_reference="16" object_id="_347">
<Value>
<Obj>
<type>2</type>
<id>976</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>6</content>
</item>
<item class_id_reference="16" object_id="_348">
<Value>
<Obj>
<type>2</type>
<id>991</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>21</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_349">
<Value>
<Obj>
<type>2</type>
<id>1001</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_350">
<Value>
<Obj>
<type>2</type>
<id>1011</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>3</content>
</item>
<item class_id_reference="16" object_id="_351">
<Value>
<Obj>
<type>2</type>
<id>1030</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_352">
<Value>
<Obj>
<type>2</type>
<id>1038</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>
</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="_353">
<Obj>
<type>3</type>
<id>260</id>
<name>fxp_sqrt</name>
<fileName></fileName>
<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>258</count>
<item_version>0</item_version>
<item>2</item>
<item>3</item>
<item>4</item>
<item>5</item>
<item>6</item>
<item>7</item>
<item>8</item>
<item>9</item>
<item>10</item>
<item>11</item>
<item>12</item>
<item>13</item>
<item>14</item>
<item>15</item>
<item>16</item>
<item>17</item>
<item>18</item>
<item>19</item>
<item>20</item>
<item>21</item>
<item>22</item>
<item>23</item>
<item>24</item>
<item>25</item>
<item>26</item>
<item>27</item>
<item>28</item>
<item>29</item>
<item>30</item>
<item>31</item>
<item>32</item>
<item>33</item>
<item>34</item>
<item>35</item>
<item>36</item>
<item>37</item>
<item>38</item>
<item>39</item>
<item>40</item>
<item>41</item>
<item>42</item>
<item>43</item>
<item>44</item>
<item>45</item>
<item>46</item>
<item>47</item>
<item>48</item>
<item>49</item>
<item>50</item>
<item>51</item>
<item>52</item>
<item>53</item>
<item>54</item>
<item>55</item>
<item>56</item>
<item>57</item>
<item>58</item>
<item>59</item>
<item>60</item>
<item>61</item>
<item>62</item>
<item>63</item>
<item>64</item>
<item>65</item>
<item>66</item>
<item>67</item>
<item>68</item>
<item>69</item>
<item>70</item>
<item>71</item>
<item>72</item>
<item>73</item>
<item>74</item>
<item>75</item>
<item>76</item>
<item>77</item>
<item>78</item>
<item>79</item>
<item>80</item>
<item>81</item>
<item>82</item>
<item>83</item>
<item>84</item>
<item>85</item>
<item>86</item>
<item>87</item>
<item>88</item>
<item>89</item>
<item>90</item>
<item>91</item>
<item>92</item>
<item>93</item>
<item>94</item>
<item>95</item>
<item>96</item>
<item>97</item>
<item>98</item>
<item>99</item>
<item>100</item>
<item>101</item>
<item>102</item>
<item>103</item>
<item>104</item>
<item>105</item>
<item>106</item>
<item>107</item>
<item>108</item>
<item>109</item>
<item>110</item>
<item>111</item>
<item>112</item>
<item>113</item>
<item>114</item>
<item>115</item>
<item>116</item>
<item>117</item>
<item>118</item>
<item>119</item>
<item>120</item>
<item>121</item>
<item>122</item>
<item>123</item>
<item>124</item>
<item>125</item>
<item>126</item>
<item>127</item>
<item>128</item>
<item>129</item>
<item>130</item>
<item>131</item>
<item>132</item>
<item>133</item>
<item>134</item>
<item>135</item>
<item>136</item>
<item>137</item>
<item>138</item>
<item>139</item>
<item>140</item>
<item>141</item>
<item>142</item>
<item>143</item>
<item>144</item>
<item>145</item>
<item>146</item>
<item>147</item>
<item>148</item>
<item>149</item>
<item>150</item>
<item>151</item>
<item>152</item>
<item>153</item>
<item>154</item>
<item>155</item>
<item>156</item>
<item>157</item>
<item>158</item>
<item>159</item>
<item>160</item>
<item>161</item>
<item>162</item>
<item>163</item>
<item>164</item>
<item>165</item>
<item>166</item>
<item>167</item>
<item>168</item>
<item>169</item>
<item>170</item>
<item>171</item>
<item>172</item>
<item>173</item>
<item>174</item>
<item>175</item>
<item>176</item>
<item>177</item>
<item>178</item>
<item>179</item>
<item>180</item>
<item>181</item>
<item>182</item>
<item>183</item>
<item>184</item>
<item>185</item>
<item>186</item>
<item>187</item>
<item>188</item>
<item>189</item>
<item>190</item>
<item>191</item>
<item>192</item>
<item>193</item>
<item>194</item>
<item>195</item>
<item>196</item>
<item>197</item>
<item>198</item>
<item>199</item>
<item>200</item>
<item>201</item>
<item>202</item>
<item>203</item>
<item>204</item>
<item>205</item>
<item>206</item>
<item>207</item>
<item>208</item>
<item>209</item>
<item>210</item>
<item>211</item>
<item>212</item>
<item>213</item>
<item>214</item>
<item>215</item>
<item>216</item>
<item>217</item>
<item>218</item>
<item>219</item>
<item>220</item>
<item>221</item>
<item>222</item>
<item>223</item>
<item>224</item>
<item>225</item>
<item>226</item>
<item>227</item>
<item>228</item>
<item>229</item>
<item>230</item>
<item>231</item>
<item>232</item>
<item>233</item>
<item>234</item>
<item>235</item>
<item>236</item>
<item>237</item>
<item>238</item>
<item>239</item>
<item>240</item>
<item>241</item>
<item>242</item>
<item>243</item>
<item>244</item>
<item>245</item>
<item>246</item>
<item>247</item>
<item>248</item>
<item>249</item>
<item>250</item>
<item>251</item>
<item>252</item>
<item>253</item>
<item>254</item>
<item>255</item>
<item>256</item>
<item>257</item>
<item>258</item>
<item>259</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>558</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_354">
<id>263</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>2</sink_obj>
</item>
<item class_id_reference="20" object_id="_355">
<id>266</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>3</sink_obj>
</item>
<item class_id_reference="20" object_id="_356">
<id>268</id>
<edge_type>1</edge_type>
<source_obj>267</source_obj>
<sink_obj>3</sink_obj>
</item>
<item class_id_reference="20" object_id="_357">
<id>270</id>
<edge_type>1</edge_type>
<source_obj>269</source_obj>
<sink_obj>3</sink_obj>
</item>
<item class_id_reference="20" object_id="_358">
<id>271</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>4</sink_obj>
</item>
<item class_id_reference="20" object_id="_359">
<id>272</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>5</sink_obj>
</item>
<item class_id_reference="20" object_id="_360">
<id>274</id>
<edge_type>1</edge_type>
<source_obj>273</source_obj>
<sink_obj>5</sink_obj>
</item>
<item class_id_reference="20" object_id="_361">
<id>277</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>6</sink_obj>
</item>
<item class_id_reference="20" object_id="_362">
<id>279</id>
<edge_type>1</edge_type>
<source_obj>278</source_obj>
<sink_obj>6</sink_obj>
</item>
<item class_id_reference="20" object_id="_363">
<id>281</id>
<edge_type>1</edge_type>
<source_obj>280</source_obj>
<sink_obj>6</sink_obj>
</item>
<item class_id_reference="20" object_id="_364">
<id>284</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>7</sink_obj>
</item>
<item class_id_reference="20" object_id="_365">
<id>286</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>7</sink_obj>
</item>
<item class_id_reference="20" object_id="_366">
<id>287</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>8</sink_obj>
</item>
<item class_id_reference="20" object_id="_367">
<id>289</id>
<edge_type>1</edge_type>
<source_obj>288</source_obj>
<sink_obj>8</sink_obj>
</item>
<item class_id_reference="20" object_id="_368">
<id>292</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>9</sink_obj>
</item>
<item class_id_reference="20" object_id="_369">
<id>293</id>
<edge_type>1</edge_type>
<source_obj>280</source_obj>
<sink_obj>9</sink_obj>
</item>
<item class_id_reference="20" object_id="_370">
<id>296</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>10</sink_obj>
</item>
<item class_id_reference="20" object_id="_371">
<id>297</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>10</sink_obj>
</item>
<item class_id_reference="20" object_id="_372">
<id>298</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_373">
<id>300</id>
<edge_type>1</edge_type>
<source_obj>299</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_374">
<id>302</id>
<edge_type>1</edge_type>
<source_obj>301</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_375">
<id>303</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_376">
<id>305</id>
<edge_type>1</edge_type>
<source_obj>304</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_377">
<id>306</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_378">
<id>308</id>
<edge_type>1</edge_type>
<source_obj>307</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_379">
<id>310</id>
<edge_type>1</edge_type>
<source_obj>309</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_380">
<id>313</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>14</sink_obj>
</item>
<item class_id_reference="20" object_id="_381">
<id>315</id>
<edge_type>1</edge_type>
<source_obj>314</source_obj>
<sink_obj>14</sink_obj>
</item>
<item class_id_reference="20" object_id="_382">
<id>316</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_383">
<id>318</id>
<edge_type>1</edge_type>
<source_obj>317</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_384">
<id>320</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>16</sink_obj>
</item>
<item class_id_reference="20" object_id="_385">
<id>321</id>
<edge_type>1</edge_type>
<source_obj>280</source_obj>
<sink_obj>16</sink_obj>
</item>
<item class_id_reference="20" object_id="_386">
<id>324</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>17</sink_obj>
</item>
<item class_id_reference="20" object_id="_387">
<id>326</id>
<edge_type>1</edge_type>
<source_obj>325</source_obj>
<sink_obj>17</sink_obj>
</item>
<item class_id_reference="20" object_id="_388">
<id>327</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>18</sink_obj>
</item>
<item class_id_reference="20" object_id="_389">
<id>329</id>
<edge_type>1</edge_type>
<source_obj>328</source_obj>
<sink_obj>18</sink_obj>
</item>
<item class_id_reference="20" object_id="_390">
<id>330</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>19</sink_obj>
</item>
<item class_id_reference="20" object_id="_391">
<id>331</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>19</sink_obj>
</item>
<item class_id_reference="20" object_id="_392">
<id>332</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_393">
<id>334</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_394">
<id>335</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_395">
<id>336</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_396">
<id>337</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>22</sink_obj>
</item>
<item class_id_reference="20" object_id="_397">
<id>338</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>22</sink_obj>
</item>
<item class_id_reference="20" object_id="_398">
<id>339</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>22</sink_obj>
</item>
<item class_id_reference="20" object_id="_399">
<id>340</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>23</sink_obj>
</item>
<item class_id_reference="20" object_id="_400">
<id>341</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>23</sink_obj>
</item>
<item class_id_reference="20" object_id="_401">
<id>342</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>23</sink_obj>
</item>
<item class_id_reference="20" object_id="_402">
<id>343</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>24</sink_obj>
</item>
<item class_id_reference="20" object_id="_403">
<id>345</id>
<edge_type>1</edge_type>
<source_obj>344</source_obj>
<sink_obj>24</sink_obj>
</item>
<item class_id_reference="20" object_id="_404">
<id>347</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>25</sink_obj>
</item>
<item class_id_reference="20" object_id="_405">
<id>348</id>
<edge_type>1</edge_type>
<source_obj>314</source_obj>
<sink_obj>25</sink_obj>
</item>
<item class_id_reference="20" object_id="_406">
<id>349</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>26</sink_obj>
</item>
<item class_id_reference="20" object_id="_407">
<id>350</id>
<edge_type>1</edge_type>
<source_obj>317</source_obj>
<sink_obj>26</sink_obj>
</item>
<item class_id_reference="20" object_id="_408">
<id>353</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>27</sink_obj>
</item>
<item class_id_reference="20" object_id="_409">
<id>355</id>
<edge_type>1</edge_type>
<source_obj>354</source_obj>
<sink_obj>27</sink_obj>
</item>
<item class_id_reference="20" object_id="_410">
<id>356</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>28</sink_obj>
</item>
<item class_id_reference="20" object_id="_411">
<id>358</id>
<edge_type>1</edge_type>
<source_obj>357</source_obj>
<sink_obj>28</sink_obj>
</item>
<item class_id_reference="20" object_id="_412">
<id>359</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>29</sink_obj>
</item>
<item class_id_reference="20" object_id="_413">
<id>360</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>29</sink_obj>
</item>
<item class_id_reference="20" object_id="_414">
<id>362</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_415">
<id>363</id>
<edge_type>1</edge_type>
<source_obj>354</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_416">
<id>364</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>31</sink_obj>
</item>
<item class_id_reference="20" object_id="_417">
<id>366</id>
<edge_type>1</edge_type>
<source_obj>365</source_obj>
<sink_obj>31</sink_obj>
</item>
<item class_id_reference="20" object_id="_418">
<id>367</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>32</sink_obj>
</item>
<item class_id_reference="20" object_id="_419">
<id>368</id>
<edge_type>1</edge_type>
<source_obj>31</source_obj>
<sink_obj>32</sink_obj>
</item>
<item class_id_reference="20" object_id="_420">
<id>369</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_421">
<id>370</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_422">
<id>371</id>
<edge_type>1</edge_type>
<source_obj>29</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_423">
<id>372</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_424">
<id>373</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_425">
<id>374</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_426">
<id>377</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>35</sink_obj>
</item>
<item class_id_reference="20" object_id="_427">
<id>378</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>35</sink_obj>
</item>
<item class_id_reference="20" object_id="_428">
<id>379</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>36</sink_obj>
</item>
<item class_id_reference="20" object_id="_429">
<id>381</id>
<edge_type>1</edge_type>
<source_obj>380</source_obj>
<sink_obj>36</sink_obj>
</item>
<item class_id_reference="20" object_id="_430">
<id>383</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_431">
<id>384</id>
<edge_type>1</edge_type>
<source_obj>314</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_432">
<id>385</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>38</sink_obj>
</item>
<item class_id_reference="20" object_id="_433">
<id>386</id>
<edge_type>1</edge_type>
<source_obj>317</source_obj>
<sink_obj>38</sink_obj>
</item>
<item class_id_reference="20" object_id="_434">
<id>389</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>39</sink_obj>
</item>
<item class_id_reference="20" object_id="_435">
<id>391</id>
<edge_type>1</edge_type>
<source_obj>390</source_obj>
<sink_obj>39</sink_obj>
</item>
<item class_id_reference="20" object_id="_436">
<id>392</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_437">
<id>394</id>
<edge_type>1</edge_type>
<source_obj>393</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_438">
<id>395</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_439">
<id>396</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_440">
<id>398</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_441">
<id>399</id>
<edge_type>1</edge_type>
<source_obj>354</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_442">
<id>400</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_443">
<id>402</id>
<edge_type>1</edge_type>
<source_obj>401</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_444">
<id>403</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_445">
<id>404</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_446">
<id>405</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_447">
<id>406</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_448">
<id>407</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_449">
<id>408</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_450">
<id>409</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_451">
<id>410</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_452">
<id>413</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>47</sink_obj>
</item>
<item class_id_reference="20" object_id="_453">
<id>414</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>47</sink_obj>
</item>
<item class_id_reference="20" object_id="_454">
<id>415</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>48</sink_obj>
</item>
<item class_id_reference="20" object_id="_455">
<id>417</id>
<edge_type>1</edge_type>
<source_obj>416</source_obj>
<sink_obj>48</sink_obj>
</item>
<item class_id_reference="20" object_id="_456">
<id>419</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>49</sink_obj>
</item>
<item class_id_reference="20" object_id="_457">
<id>420</id>
<edge_type>1</edge_type>
<source_obj>314</source_obj>
<sink_obj>49</sink_obj>
</item>
<item class_id_reference="20" object_id="_458">
<id>421</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>50</sink_obj>
</item>
<item class_id_reference="20" object_id="_459">
<id>422</id>
<edge_type>1</edge_type>
<source_obj>317</source_obj>
<sink_obj>50</sink_obj>
</item>
<item class_id_reference="20" object_id="_460">
<id>425</id>
<edge_type>1</edge_type>
<source_obj>48</source_obj>
<sink_obj>51</sink_obj>
</item>
<item class_id_reference="20" object_id="_461">
<id>427</id>
<edge_type>1</edge_type>
<source_obj>426</source_obj>
<sink_obj>51</sink_obj>
</item>
<item class_id_reference="20" object_id="_462">
<id>428</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>52</sink_obj>
</item>
<item class_id_reference="20" object_id="_463">
<id>430</id>
<edge_type>1</edge_type>
<source_obj>429</source_obj>
<sink_obj>52</sink_obj>
</item>
<item class_id_reference="20" object_id="_464">
<id>431</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_465">
<id>432</id>
<edge_type>1</edge_type>
<source_obj>52</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_466">
<id>434</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>54</sink_obj>
</item>
<item class_id_reference="20" object_id="_467">
<id>435</id>
<edge_type>1</edge_type>
<source_obj>390</source_obj>
<sink_obj>54</sink_obj>
</item>
<item class_id_reference="20" object_id="_468">
<id>436</id>
<edge_type>1</edge_type>
<source_obj>54</source_obj>
<sink_obj>55</sink_obj>
</item>
<item class_id_reference="20" object_id="_469">
<id>438</id>
<edge_type>1</edge_type>
<source_obj>437</source_obj>
<sink_obj>55</sink_obj>
</item>
<item class_id_reference="20" object_id="_470">
<id>439</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>56</sink_obj>
</item>
<item class_id_reference="20" object_id="_471">
<id>440</id>
<edge_type>1</edge_type>
<source_obj>55</source_obj>
<sink_obj>56</sink_obj>
</item>
<item class_id_reference="20" object_id="_472">
<id>441</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>57</sink_obj>
</item>
<item class_id_reference="20" object_id="_473">
<id>442</id>
<edge_type>1</edge_type>
<source_obj>56</source_obj>
<sink_obj>57</sink_obj>
</item>
<item class_id_reference="20" object_id="_474">
<id>443</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>57</sink_obj>
</item>
<item class_id_reference="20" object_id="_475">
<id>444</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>58</sink_obj>
</item>
<item class_id_reference="20" object_id="_476">
<id>445</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>58</sink_obj>
</item>
<item class_id_reference="20" object_id="_477">
<id>446</id>
<edge_type>1</edge_type>
<source_obj>48</source_obj>
<sink_obj>58</sink_obj>
</item>
<item class_id_reference="20" object_id="_478">
<id>449</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>59</sink_obj>
</item>
<item class_id_reference="20" object_id="_479">
<id>450</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>59</sink_obj>
</item>
<item class_id_reference="20" object_id="_480">
<id>451</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>60</sink_obj>
</item>
<item class_id_reference="20" object_id="_481">
<id>453</id>
<edge_type>1</edge_type>
<source_obj>452</source_obj>
<sink_obj>60</sink_obj>
</item>
<item class_id_reference="20" object_id="_482">
<id>455</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>61</sink_obj>
</item>
<item class_id_reference="20" object_id="_483">
<id>456</id>
<edge_type>1</edge_type>
<source_obj>314</source_obj>
<sink_obj>61</sink_obj>
</item>
<item class_id_reference="20" object_id="_484">
<id>457</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>62</sink_obj>
</item>
<item class_id_reference="20" object_id="_485">
<id>458</id>
<edge_type>1</edge_type>
<source_obj>317</source_obj>
<sink_obj>62</sink_obj>
</item>
<item class_id_reference="20" object_id="_486">
<id>461</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>63</sink_obj>
</item>
<item class_id_reference="20" object_id="_487">
<id>463</id>
<edge_type>1</edge_type>
<source_obj>462</source_obj>
<sink_obj>63</sink_obj>
</item>
<item class_id_reference="20" object_id="_488">
<id>464</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>64</sink_obj>
</item>
<item class_id_reference="20" object_id="_489">
<id>466</id>
<edge_type>1</edge_type>
<source_obj>465</source_obj>
<sink_obj>64</sink_obj>
</item>
<item class_id_reference="20" object_id="_490">
<id>467</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_491">
<id>468</id>
<edge_type>1</edge_type>
<source_obj>64</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_492">
<id>470</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>66</sink_obj>
</item>
<item class_id_reference="20" object_id="_493">
<id>471</id>
<edge_type>1</edge_type>
<source_obj>426</source_obj>
<sink_obj>66</sink_obj>
</item>
<item class_id_reference="20" object_id="_494">
<id>472</id>
<edge_type>1</edge_type>
<source_obj>66</source_obj>
<sink_obj>67</sink_obj>
</item>
<item class_id_reference="20" object_id="_495">
<id>474</id>
<edge_type>1</edge_type>
<source_obj>473</source_obj>
<sink_obj>67</sink_obj>
</item>
<item class_id_reference="20" object_id="_496">
<id>475</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>68</sink_obj>
</item>
<item class_id_reference="20" object_id="_497">
<id>476</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>68</sink_obj>
</item>
<item class_id_reference="20" object_id="_498">
<id>477</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>69</sink_obj>
</item>
<item class_id_reference="20" object_id="_499">
<id>478</id>
<edge_type>1</edge_type>
<source_obj>68</source_obj>
<sink_obj>69</sink_obj>
</item>
<item class_id_reference="20" object_id="_500">
<id>479</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>69</sink_obj>
</item>
<item class_id_reference="20" object_id="_501">
<id>480</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>70</sink_obj>
</item>
<item class_id_reference="20" object_id="_502">
<id>481</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>70</sink_obj>
</item>
<item class_id_reference="20" object_id="_503">
<id>482</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>70</sink_obj>
</item>
<item class_id_reference="20" object_id="_504">
<id>485</id>
<edge_type>1</edge_type>
<source_obj>70</source_obj>
<sink_obj>71</sink_obj>
</item>
<item class_id_reference="20" object_id="_505">
<id>486</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>71</sink_obj>
</item>
<item class_id_reference="20" object_id="_506">
<id>487</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>72</sink_obj>
</item>
<item class_id_reference="20" object_id="_507">
<id>489</id>
<edge_type>1</edge_type>
<source_obj>488</source_obj>
<sink_obj>72</sink_obj>
</item>
<item class_id_reference="20" object_id="_508">
<id>491</id>
<edge_type>1</edge_type>
<source_obj>69</source_obj>
<sink_obj>73</sink_obj>
</item>
<item class_id_reference="20" object_id="_509">
<id>492</id>
<edge_type>1</edge_type>
<source_obj>314</source_obj>
<sink_obj>73</sink_obj>
</item>
<item class_id_reference="20" object_id="_510">
<id>493</id>
<edge_type>1</edge_type>
<source_obj>69</source_obj>
<sink_obj>74</sink_obj>
</item>
<item class_id_reference="20" object_id="_511">
<id>494</id>
<edge_type>1</edge_type>
<source_obj>317</source_obj>
<sink_obj>74</sink_obj>
</item>
<item class_id_reference="20" object_id="_512">
<id>497</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>75</sink_obj>
</item>
<item class_id_reference="20" object_id="_513">
<id>499</id>
<edge_type>1</edge_type>
<source_obj>498</source_obj>
<sink_obj>75</sink_obj>
</item>
<item class_id_reference="20" object_id="_514">
<id>500</id>
<edge_type>1</edge_type>
<source_obj>75</source_obj>
<sink_obj>76</sink_obj>
</item>
<item class_id_reference="20" object_id="_515">
<id>502</id>
<edge_type>1</edge_type>
<source_obj>501</source_obj>
<sink_obj>76</sink_obj>
</item>
<item class_id_reference="20" object_id="_516">
<id>503</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>77</sink_obj>
</item>
<item class_id_reference="20" object_id="_517">
<id>504</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>77</sink_obj>
</item>
<item class_id_reference="20" object_id="_518">
<id>506</id>
<edge_type>1</edge_type>
<source_obj>70</source_obj>
<sink_obj>78</sink_obj>
</item>
<item class_id_reference="20" object_id="_519">
<id>507</id>
<edge_type>1</edge_type>
<source_obj>462</source_obj>
<sink_obj>78</sink_obj>
</item>
<item class_id_reference="20" object_id="_520">
<id>508</id>
<edge_type>1</edge_type>
<source_obj>78</source_obj>
<sink_obj>79</sink_obj>
</item>
<item class_id_reference="20" object_id="_521">
<id>510</id>
<edge_type>1</edge_type>
<source_obj>509</source_obj>
<sink_obj>79</sink_obj>
</item>
<item class_id_reference="20" object_id="_522">
<id>511</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>80</sink_obj>
</item>
<item class_id_reference="20" object_id="_523">
<id>512</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>80</sink_obj>
</item>
<item class_id_reference="20" object_id="_524">
<id>513</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>81</sink_obj>
</item>
<item class_id_reference="20" object_id="_525">
<id>514</id>
<edge_type>1</edge_type>
<source_obj>80</source_obj>
<sink_obj>81</sink_obj>
</item>
<item class_id_reference="20" object_id="_526">
<id>515</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>81</sink_obj>
</item>
<item class_id_reference="20" object_id="_527">
<id>516</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>82</sink_obj>
</item>
<item class_id_reference="20" object_id="_528">
<id>517</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>82</sink_obj>
</item>
<item class_id_reference="20" object_id="_529">
<id>518</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>82</sink_obj>
</item>
<item class_id_reference="20" object_id="_530">
<id>521</id>
<edge_type>1</edge_type>
<source_obj>82</source_obj>
<sink_obj>83</sink_obj>
</item>
<item class_id_reference="20" object_id="_531">
<id>522</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>83</sink_obj>
</item>
<item class_id_reference="20" object_id="_532">
<id>523</id>
<edge_type>1</edge_type>
<source_obj>83</source_obj>
<sink_obj>84</sink_obj>
</item>
<item class_id_reference="20" object_id="_533">
<id>525</id>
<edge_type>1</edge_type>
<source_obj>524</source_obj>
<sink_obj>84</sink_obj>
</item>
<item class_id_reference="20" object_id="_534">
<id>527</id>
<edge_type>1</edge_type>
<source_obj>81</source_obj>
<sink_obj>85</sink_obj>
</item>
<item class_id_reference="20" object_id="_535">
<id>528</id>
<edge_type>1</edge_type>
<source_obj>314</source_obj>
<sink_obj>85</sink_obj>
</item>
<item class_id_reference="20" object_id="_536">
<id>529</id>
<edge_type>1</edge_type>
<source_obj>81</source_obj>
<sink_obj>86</sink_obj>
</item>
<item class_id_reference="20" object_id="_537">
<id>530</id>
<edge_type>1</edge_type>
<source_obj>317</source_obj>
<sink_obj>86</sink_obj>
</item>
<item class_id_reference="20" object_id="_538">
<id>533</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>87</sink_obj>
</item>
<item class_id_reference="20" object_id="_539">
<id>535</id>
<edge_type>1</edge_type>
<source_obj>534</source_obj>
<sink_obj>87</sink_obj>
</item>
<item class_id_reference="20" object_id="_540">
<id>536</id>
<edge_type>1</edge_type>
<source_obj>87</source_obj>
<sink_obj>88</sink_obj>
</item>
<item class_id_reference="20" object_id="_541">
<id>538</id>
<edge_type>1</edge_type>
<source_obj>537</source_obj>
<sink_obj>88</sink_obj>
</item>
<item class_id_reference="20" object_id="_542">
<id>539</id>
<edge_type>1</edge_type>
<source_obj>86</source_obj>
<sink_obj>89</sink_obj>
</item>
<item class_id_reference="20" object_id="_543">
<id>540</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>89</sink_obj>
</item>
<item class_id_reference="20" object_id="_544">
<id>542</id>
<edge_type>1</edge_type>
<source_obj>82</source_obj>
<sink_obj>90</sink_obj>
</item>
<item class_id_reference="20" object_id="_545">
<id>543</id>
<edge_type>1</edge_type>
<source_obj>498</source_obj>
<sink_obj>90</sink_obj>
</item>
<item class_id_reference="20" object_id="_546">
<id>544</id>
<edge_type>1</edge_type>
<source_obj>90</source_obj>
<sink_obj>91</sink_obj>
</item>
<item class_id_reference="20" object_id="_547">
<id>546</id>
<edge_type>1</edge_type>
<source_obj>545</source_obj>
<sink_obj>91</sink_obj>
</item>
<item class_id_reference="20" object_id="_548">
<id>547</id>
<edge_type>1</edge_type>
<source_obj>86</source_obj>
<sink_obj>92</sink_obj>
</item>
<item class_id_reference="20" object_id="_549">
<id>548</id>
<edge_type>1</edge_type>
<source_obj>91</source_obj>
<sink_obj>92</sink_obj>
</item>
<item class_id_reference="20" object_id="_550">
<id>549</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>93</sink_obj>
</item>
<item class_id_reference="20" object_id="_551">
<id>550</id>
<edge_type>1</edge_type>
<source_obj>92</source_obj>
<sink_obj>93</sink_obj>
</item>
<item class_id_reference="20" object_id="_552">
<id>551</id>
<edge_type>1</edge_type>
<source_obj>89</source_obj>
<sink_obj>93</sink_obj>
</item>
<item class_id_reference="20" object_id="_553">
<id>552</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>94</sink_obj>
</item>
<item class_id_reference="20" object_id="_554">
<id>553</id>
<edge_type>1</edge_type>
<source_obj>83</source_obj>
<sink_obj>94</sink_obj>
</item>
<item class_id_reference="20" object_id="_555">
<id>554</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>94</sink_obj>
</item>
<item class_id_reference="20" object_id="_556">
<id>557</id>
<edge_type>1</edge_type>
<source_obj>94</source_obj>
<sink_obj>95</sink_obj>
</item>
<item class_id_reference="20" object_id="_557">
<id>558</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>95</sink_obj>
</item>
<item class_id_reference="20" object_id="_558">
<id>559</id>
<edge_type>1</edge_type>
<source_obj>95</source_obj>
<sink_obj>96</sink_obj>
</item>
<item class_id_reference="20" object_id="_559">
<id>561</id>
<edge_type>1</edge_type>
<source_obj>560</source_obj>
<sink_obj>96</sink_obj>
</item>
<item class_id_reference="20" object_id="_560">
<id>563</id>
<edge_type>1</edge_type>
<source_obj>93</source_obj>
<sink_obj>97</sink_obj>
</item>
<item class_id_reference="20" object_id="_561">
<id>564</id>
<edge_type>1</edge_type>
<source_obj>314</source_obj>
<sink_obj>97</sink_obj>
</item>
<item class_id_reference="20" object_id="_562">
<id>565</id>
<edge_type>1</edge_type>
<source_obj>93</source_obj>
<sink_obj>98</sink_obj>
</item>
<item class_id_reference="20" object_id="_563">
<id>566</id>
<edge_type>1</edge_type>
<source_obj>317</source_obj>
<sink_obj>98</sink_obj>
</item>
<item class_id_reference="20" object_id="_564">
<id>569</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>99</sink_obj>
</item>
<item class_id_reference="20" object_id="_565">
<id>571</id>
<edge_type>1</edge_type>
<source_obj>570</source_obj>
<sink_obj>99</sink_obj>
</item>
<item class_id_reference="20" object_id="_566">
<id>572</id>
<edge_type>1</edge_type>
<source_obj>99</source_obj>
<sink_obj>100</sink_obj>
</item>
<item class_id_reference="20" object_id="_567">
<id>574</id>
<edge_type>1</edge_type>
<source_obj>573</source_obj>
<sink_obj>100</sink_obj>
</item>
<item class_id_reference="20" object_id="_568">
<id>575</id>
<edge_type>1</edge_type>
<source_obj>98</source_obj>
<sink_obj>101</sink_obj>
</item>
<item class_id_reference="20" object_id="_569">
<id>576</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>101</sink_obj>
</item>
<item class_id_reference="20" object_id="_570">
<id>578</id>
<edge_type>1</edge_type>
<source_obj>94</source_obj>
<sink_obj>102</sink_obj>
</item>
<item class_id_reference="20" object_id="_571">
<id>579</id>
<edge_type>1</edge_type>
<source_obj>534</source_obj>
<sink_obj>102</sink_obj>
</item>
<item class_id_reference="20" object_id="_572">
<id>580</id>
<edge_type>1</edge_type>
<source_obj>102</source_obj>
<sink_obj>103</sink_obj>
</item>
<item class_id_reference="20" object_id="_573">
<id>582</id>
<edge_type>1</edge_type>
<source_obj>581</source_obj>
<sink_obj>103</sink_obj>
</item>
<item class_id_reference="20" object_id="_574">
<id>583</id>
<edge_type>1</edge_type>
<source_obj>98</source_obj>
<sink_obj>104</sink_obj>
</item>
<item class_id_reference="20" object_id="_575">
<id>584</id>
<edge_type>1</edge_type>
<source_obj>103</source_obj>
<sink_obj>104</sink_obj>
</item>
<item class_id_reference="20" object_id="_576">
<id>585</id>
<edge_type>1</edge_type>
<source_obj>97</source_obj>
<sink_obj>105</sink_obj>
</item>
<item class_id_reference="20" object_id="_577">
<id>586</id>
<edge_type>1</edge_type>
<source_obj>104</source_obj>
<sink_obj>105</sink_obj>
</item>
<item class_id_reference="20" object_id="_578">
<id>587</id>
<edge_type>1</edge_type>
<source_obj>101</source_obj>
<sink_obj>105</sink_obj>
</item>
<item class_id_reference="20" object_id="_579">
<id>588</id>
<edge_type>1</edge_type>
<source_obj>97</source_obj>
<sink_obj>106</sink_obj>
</item>
<item class_id_reference="20" object_id="_580">
<id>589</id>
<edge_type>1</edge_type>
<source_obj>95</source_obj>
<sink_obj>106</sink_obj>
</item>
<item class_id_reference="20" object_id="_581">
<id>590</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>106</sink_obj>
</item>
<item class_id_reference="20" object_id="_582">
<id>593</id>
<edge_type>1</edge_type>
<source_obj>106</source_obj>
<sink_obj>107</sink_obj>
</item>
<item class_id_reference="20" object_id="_583">
<id>594</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>107</sink_obj>
</item>
<item class_id_reference="20" object_id="_584">
<id>595</id>
<edge_type>1</edge_type>
<source_obj>107</source_obj>
<sink_obj>108</sink_obj>
</item>
<item class_id_reference="20" object_id="_585">
<id>597</id>
<edge_type>1</edge_type>
<source_obj>596</source_obj>
<sink_obj>108</sink_obj>
</item>
<item class_id_reference="20" object_id="_586">
<id>599</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>109</sink_obj>
</item>
<item class_id_reference="20" object_id="_587">
<id>600</id>
<edge_type>1</edge_type>
<source_obj>314</source_obj>
<sink_obj>109</sink_obj>
</item>
<item class_id_reference="20" object_id="_588">
<id>601</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_589">
<id>602</id>
<edge_type>1</edge_type>
<source_obj>317</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_590">
<id>605</id>
<edge_type>1</edge_type>
<source_obj>108</source_obj>
<sink_obj>111</sink_obj>
</item>
<item class_id_reference="20" object_id="_591">
<id>607</id>
<edge_type>1</edge_type>
<source_obj>606</source_obj>
<sink_obj>111</sink_obj>
</item>
<item class_id_reference="20" object_id="_592">
<id>608</id>
<edge_type>1</edge_type>
<source_obj>111</source_obj>
<sink_obj>112</sink_obj>
</item>
<item class_id_reference="20" object_id="_593">
<id>610</id>
<edge_type>1</edge_type>
<source_obj>609</source_obj>
<sink_obj>112</sink_obj>
</item>
<item class_id_reference="20" object_id="_594">
<id>611</id>
<edge_type>1</edge_type>
<source_obj>110</source_obj>
<sink_obj>113</sink_obj>
</item>
<item class_id_reference="20" object_id="_595">
<id>612</id>
<edge_type>1</edge_type>
<source_obj>112</source_obj>
<sink_obj>113</sink_obj>
</item>
<item class_id_reference="20" object_id="_596">
<id>614</id>
<edge_type>1</edge_type>
<source_obj>106</source_obj>
<sink_obj>114</sink_obj>
</item>
<item class_id_reference="20" object_id="_597">
<id>615</id>
<edge_type>1</edge_type>
<source_obj>570</source_obj>
<sink_obj>114</sink_obj>
</item>
<item class_id_reference="20" object_id="_598">
<id>616</id>
<edge_type>1</edge_type>
<source_obj>114</source_obj>
<sink_obj>115</sink_obj>
</item>
<item class_id_reference="20" object_id="_599">
<id>618</id>
<edge_type>1</edge_type>
<source_obj>617</source_obj>
<sink_obj>115</sink_obj>
</item>
<item class_id_reference="20" object_id="_600">
<id>619</id>
<edge_type>1</edge_type>
<source_obj>110</source_obj>
<sink_obj>116</sink_obj>
</item>
<item class_id_reference="20" object_id="_601">
<id>620</id>
<edge_type>1</edge_type>
<source_obj>115</source_obj>
<sink_obj>116</sink_obj>
</item>
<item class_id_reference="20" object_id="_602">
<id>621</id>
<edge_type>1</edge_type>
<source_obj>109</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_603">
<id>622</id>
<edge_type>1</edge_type>
<source_obj>116</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_604">
<id>623</id>
<edge_type>1</edge_type>
<source_obj>113</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_605">
<id>624</id>
<edge_type>1</edge_type>
<source_obj>109</source_obj>
<sink_obj>118</sink_obj>
</item>
<item class_id_reference="20" object_id="_606">
<id>625</id>
<edge_type>1</edge_type>
<source_obj>107</source_obj>
<sink_obj>118</sink_obj>
</item>
<item class_id_reference="20" object_id="_607">
<id>626</id>
<edge_type>1</edge_type>
<source_obj>108</source_obj>
<sink_obj>118</sink_obj>
</item>
<item class_id_reference="20" object_id="_608">
<id>629</id>
<edge_type>1</edge_type>
<source_obj>118</source_obj>
<sink_obj>119</sink_obj>
</item>
<item class_id_reference="20" object_id="_609">
<id>630</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>119</sink_obj>
</item>
<item class_id_reference="20" object_id="_610">
<id>631</id>
<edge_type>1</edge_type>
<source_obj>119</source_obj>
<sink_obj>120</sink_obj>
</item>
<item class_id_reference="20" object_id="_611">
<id>633</id>
<edge_type>1</edge_type>
<source_obj>632</source_obj>
<sink_obj>120</sink_obj>
</item>
<item class_id_reference="20" object_id="_612">
<id>635</id>
<edge_type>1</edge_type>
<source_obj>117</source_obj>
<sink_obj>121</sink_obj>
</item>
<item class_id_reference="20" object_id="_613">
<id>636</id>
<edge_type>1</edge_type>
<source_obj>314</source_obj>
<sink_obj>121</sink_obj>
</item>
<item class_id_reference="20" object_id="_614">
<id>637</id>
<edge_type>1</edge_type>
<source_obj>117</source_obj>
<sink_obj>122</sink_obj>
</item>
<item class_id_reference="20" object_id="_615">
<id>638</id>
<edge_type>1</edge_type>
<source_obj>317</source_obj>
<sink_obj>122</sink_obj>
</item>
<item class_id_reference="20" object_id="_616">
<id>641</id>
<edge_type>1</edge_type>
<source_obj>120</source_obj>
<sink_obj>123</sink_obj>
</item>
<item class_id_reference="20" object_id="_617">
<id>643</id>
<edge_type>1</edge_type>
<source_obj>642</source_obj>
<sink_obj>123</sink_obj>
</item>
<item class_id_reference="20" object_id="_618">
<id>644</id>
<edge_type>1</edge_type>
<source_obj>123</source_obj>
<sink_obj>124</sink_obj>
</item>
<item class_id_reference="20" object_id="_619">
<id>646</id>
<edge_type>1</edge_type>
<source_obj>645</source_obj>
<sink_obj>124</sink_obj>
</item>
<item class_id_reference="20" object_id="_620">
<id>647</id>
<edge_type>1</edge_type>
<source_obj>122</source_obj>
<sink_obj>125</sink_obj>
</item>
<item class_id_reference="20" object_id="_621">
<id>648</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>125</sink_obj>
</item>
<item class_id_reference="20" object_id="_622">
<id>650</id>
<edge_type>1</edge_type>
<source_obj>118</source_obj>
<sink_obj>126</sink_obj>
</item>
<item class_id_reference="20" object_id="_623">
<id>651</id>
<edge_type>1</edge_type>
<source_obj>606</source_obj>
<sink_obj>126</sink_obj>
</item>
<item class_id_reference="20" object_id="_624">
<id>652</id>
<edge_type>1</edge_type>
<source_obj>126</source_obj>
<sink_obj>127</sink_obj>
</item>
<item class_id_reference="20" object_id="_625">
<id>654</id>
<edge_type>1</edge_type>
<source_obj>653</source_obj>
<sink_obj>127</sink_obj>
</item>
<item class_id_reference="20" object_id="_626">
<id>655</id>
<edge_type>1</edge_type>
<source_obj>122</source_obj>
<sink_obj>128</sink_obj>
</item>
<item class_id_reference="20" object_id="_627">
<id>656</id>
<edge_type>1</edge_type>
<source_obj>127</source_obj>
<sink_obj>128</sink_obj>
</item>
<item class_id_reference="20" object_id="_628">
<id>657</id>
<edge_type>1</edge_type>
<source_obj>121</source_obj>
<sink_obj>129</sink_obj>
</item>
<item class_id_reference="20" object_id="_629">
<id>658</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>129</sink_obj>
</item>
<item class_id_reference="20" object_id="_630">
<id>659</id>
<edge_type>1</edge_type>
<source_obj>125</source_obj>
<sink_obj>129</sink_obj>
</item>
<item class_id_reference="20" object_id="_631">
<id>660</id>
<edge_type>1</edge_type>
<source_obj>121</source_obj>
<sink_obj>130</sink_obj>
</item>
<item class_id_reference="20" object_id="_632">
<id>661</id>
<edge_type>1</edge_type>
<source_obj>119</source_obj>
<sink_obj>130</sink_obj>
</item>
<item class_id_reference="20" object_id="_633">
<id>662</id>
<edge_type>1</edge_type>
<source_obj>120</source_obj>
<sink_obj>130</sink_obj>
</item>
<item class_id_reference="20" object_id="_634">
<id>665</id>
<edge_type>1</edge_type>
<source_obj>130</source_obj>
<sink_obj>131</sink_obj>
</item>
<item class_id_reference="20" object_id="_635">
<id>666</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>131</sink_obj>
</item>
<item class_id_reference="20" object_id="_636">
<id>667</id>
<edge_type>1</edge_type>
<source_obj>131</source_obj>
<sink_obj>132</sink_obj>
</item>
<item class_id_reference="20" object_id="_637">
<id>669</id>
<edge_type>1</edge_type>
<source_obj>668</source_obj>
<sink_obj>132</sink_obj>
</item>
<item class_id_reference="20" object_id="_638">
<id>671</id>
<edge_type>1</edge_type>
<source_obj>129</source_obj>
<sink_obj>133</sink_obj>
</item>
<item class_id_reference="20" object_id="_639">
<id>672</id>
<edge_type>1</edge_type>
<source_obj>314</source_obj>
<sink_obj>133</sink_obj>
</item>
<item class_id_reference="20" object_id="_640">
<id>673</id>
<edge_type>1</edge_type>
<source_obj>129</source_obj>
<sink_obj>134</sink_obj>
</item>
<item class_id_reference="20" object_id="_641">
<id>674</id>
<edge_type>1</edge_type>
<source_obj>317</source_obj>
<sink_obj>134</sink_obj>
</item>
<item class_id_reference="20" object_id="_642">
<id>677</id>
<edge_type>1</edge_type>
<source_obj>132</source_obj>
<sink_obj>135</sink_obj>
</item>
<item class_id_reference="20" object_id="_643">
<id>679</id>
<edge_type>1</edge_type>
<source_obj>678</source_obj>
<sink_obj>135</sink_obj>
</item>
<item class_id_reference="20" object_id="_644">
<id>680</id>
<edge_type>1</edge_type>
<source_obj>135</source_obj>
<sink_obj>136</sink_obj>
</item>
<item class_id_reference="20" object_id="_645">
<id>682</id>
<edge_type>1</edge_type>
<source_obj>681</source_obj>
<sink_obj>136</sink_obj>
</item>
<item class_id_reference="20" object_id="_646">
<id>683</id>
<edge_type>1</edge_type>
<source_obj>134</source_obj>
<sink_obj>137</sink_obj>
</item>
<item class_id_reference="20" object_id="_647">
<id>684</id>
<edge_type>1</edge_type>
<source_obj>136</source_obj>
<sink_obj>137</sink_obj>
</item>
<item class_id_reference="20" object_id="_648">
<id>686</id>
<edge_type>1</edge_type>
<source_obj>130</source_obj>
<sink_obj>138</sink_obj>
</item>
<item class_id_reference="20" object_id="_649">
<id>687</id>
<edge_type>1</edge_type>
<source_obj>642</source_obj>
<sink_obj>138</sink_obj>
</item>
<item class_id_reference="20" object_id="_650">
<id>688</id>
<edge_type>1</edge_type>
<source_obj>138</source_obj>
<sink_obj>139</sink_obj>
</item>
<item class_id_reference="20" object_id="_651">
<id>690</id>
<edge_type>1</edge_type>
<source_obj>689</source_obj>
<sink_obj>139</sink_obj>
</item>
<item class_id_reference="20" object_id="_652">
<id>691</id>
<edge_type>1</edge_type>
<source_obj>134</source_obj>
<sink_obj>140</sink_obj>
</item>
<item class_id_reference="20" object_id="_653">
<id>692</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>140</sink_obj>
</item>
<item class_id_reference="20" object_id="_654">
<id>693</id>
<edge_type>1</edge_type>
<source_obj>133</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_655">
<id>694</id>
<edge_type>1</edge_type>
<source_obj>140</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_656">
<id>695</id>
<edge_type>1</edge_type>
<source_obj>137</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_657">
<id>696</id>
<edge_type>1</edge_type>
<source_obj>133</source_obj>
<sink_obj>142</sink_obj>
</item>
<item class_id_reference="20" object_id="_658">
<id>697</id>
<edge_type>1</edge_type>
<source_obj>131</source_obj>
<sink_obj>142</sink_obj>
</item>
<item class_id_reference="20" object_id="_659">
<id>698</id>
<edge_type>1</edge_type>
<source_obj>132</source_obj>
<sink_obj>142</sink_obj>
</item>
<item class_id_reference="20" object_id="_660">
<id>701</id>
<edge_type>1</edge_type>
<source_obj>142</source_obj>
<sink_obj>143</sink_obj>
</item>
<item class_id_reference="20" object_id="_661">
<id>702</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>143</sink_obj>
</item>
<item class_id_reference="20" object_id="_662">
<id>703</id>
<edge_type>1</edge_type>
<source_obj>143</source_obj>
<sink_obj>144</sink_obj>
</item>
<item class_id_reference="20" object_id="_663">
<id>705</id>
<edge_type>1</edge_type>
<source_obj>704</source_obj>
<sink_obj>144</sink_obj>
</item>
<item class_id_reference="20" object_id="_664">
<id>707</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>145</sink_obj>
</item>
<item class_id_reference="20" object_id="_665">
<id>708</id>
<edge_type>1</edge_type>
<source_obj>314</source_obj>
<sink_obj>145</sink_obj>
</item>
<item class_id_reference="20" object_id="_666">
<id>709</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>146</sink_obj>
</item>
<item class_id_reference="20" object_id="_667">
<id>710</id>
<edge_type>1</edge_type>
<source_obj>317</source_obj>
<sink_obj>146</sink_obj>
</item>
<item class_id_reference="20" object_id="_668">
<id>713</id>
<edge_type>1</edge_type>
<source_obj>144</source_obj>
<sink_obj>147</sink_obj>
</item>
<item class_id_reference="20" object_id="_669">
<id>715</id>
<edge_type>1</edge_type>
<source_obj>714</source_obj>
<sink_obj>147</sink_obj>
</item>
<item class_id_reference="20" object_id="_670">
<id>716</id>
<edge_type>1</edge_type>
<source_obj>147</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_671">
<id>718</id>
<edge_type>1</edge_type>
<source_obj>717</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_672">
<id>719</id>
<edge_type>1</edge_type>
<source_obj>146</source_obj>
<sink_obj>149</sink_obj>
</item>
<item class_id_reference="20" object_id="_673">
<id>720</id>
<edge_type>1</edge_type>
<source_obj>148</source_obj>
<sink_obj>149</sink_obj>
</item>
<item class_id_reference="20" object_id="_674">
<id>722</id>
<edge_type>1</edge_type>
<source_obj>142</source_obj>
<sink_obj>150</sink_obj>
</item>
<item class_id_reference="20" object_id="_675">
<id>723</id>
<edge_type>1</edge_type>
<source_obj>678</source_obj>
<sink_obj>150</sink_obj>
</item>
<item class_id_reference="20" object_id="_676">
<id>724</id>
<edge_type>1</edge_type>
<source_obj>150</source_obj>
<sink_obj>151</sink_obj>
</item>
<item class_id_reference="20" object_id="_677">
<id>726</id>
<edge_type>1</edge_type>
<source_obj>725</source_obj>
<sink_obj>151</sink_obj>
</item>
<item class_id_reference="20" object_id="_678">
<id>727</id>
<edge_type>1</edge_type>
<source_obj>146</source_obj>
<sink_obj>152</sink_obj>
</item>
<item class_id_reference="20" object_id="_679">
<id>728</id>
<edge_type>1</edge_type>
<source_obj>151</source_obj>
<sink_obj>152</sink_obj>
</item>
<item class_id_reference="20" object_id="_680">
<id>729</id>
<edge_type>1</edge_type>
<source_obj>145</source_obj>
<sink_obj>153</sink_obj>
</item>
<item class_id_reference="20" object_id="_681">
<id>730</id>
<edge_type>1</edge_type>
<source_obj>152</source_obj>
<sink_obj>153</sink_obj>
</item>
<item class_id_reference="20" object_id="_682">
<id>731</id>
<edge_type>1</edge_type>
<source_obj>149</source_obj>
<sink_obj>153</sink_obj>
</item>
<item class_id_reference="20" object_id="_683">
<id>732</id>
<edge_type>1</edge_type>
<source_obj>145</source_obj>
<sink_obj>154</sink_obj>
</item>
<item class_id_reference="20" object_id="_684">
<id>733</id>
<edge_type>1</edge_type>
<source_obj>143</source_obj>
<sink_obj>154</sink_obj>
</item>
<item class_id_reference="20" object_id="_685">
<id>734</id>
<edge_type>1</edge_type>
<source_obj>144</source_obj>
<sink_obj>154</sink_obj>
</item>
<item class_id_reference="20" object_id="_686">
<id>737</id>
<edge_type>1</edge_type>
<source_obj>154</source_obj>
<sink_obj>155</sink_obj>
</item>
<item class_id_reference="20" object_id="_687">
<id>738</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>155</sink_obj>
</item>
<item class_id_reference="20" object_id="_688">
<id>739</id>
<edge_type>1</edge_type>
<source_obj>155</source_obj>
<sink_obj>156</sink_obj>
</item>
<item class_id_reference="20" object_id="_689">
<id>741</id>
<edge_type>1</edge_type>
<source_obj>740</source_obj>
<sink_obj>156</sink_obj>
</item>
<item class_id_reference="20" object_id="_690">
<id>743</id>
<edge_type>1</edge_type>
<source_obj>153</source_obj>
<sink_obj>157</sink_obj>
</item>
<item class_id_reference="20" object_id="_691">
<id>744</id>
<edge_type>1</edge_type>
<source_obj>314</source_obj>
<sink_obj>157</sink_obj>
</item>
<item class_id_reference="20" object_id="_692">
<id>745</id>
<edge_type>1</edge_type>
<source_obj>153</source_obj>
<sink_obj>158</sink_obj>
</item>
<item class_id_reference="20" object_id="_693">
<id>746</id>
<edge_type>1</edge_type>
<source_obj>317</source_obj>
<sink_obj>158</sink_obj>
</item>
<item class_id_reference="20" object_id="_694">
<id>749</id>
<edge_type>1</edge_type>
<source_obj>156</source_obj>
<sink_obj>159</sink_obj>
</item>
<item class_id_reference="20" object_id="_695">
<id>751</id>
<edge_type>1</edge_type>
<source_obj>750</source_obj>
<sink_obj>159</sink_obj>
</item>
<item class_id_reference="20" object_id="_696">
<id>752</id>
<edge_type>1</edge_type>
<source_obj>159</source_obj>
<sink_obj>160</sink_obj>
</item>
<item class_id_reference="20" object_id="_697">
<id>754</id>
<edge_type>1</edge_type>
<source_obj>753</source_obj>
<sink_obj>160</sink_obj>
</item>
<item class_id_reference="20" object_id="_698">
<id>755</id>
<edge_type>1</edge_type>
<source_obj>158</source_obj>
<sink_obj>161</sink_obj>
</item>
<item class_id_reference="20" object_id="_699">
<id>756</id>
<edge_type>1</edge_type>
<source_obj>160</source_obj>
<sink_obj>161</sink_obj>
</item>
<item class_id_reference="20" object_id="_700">
<id>758</id>
<edge_type>1</edge_type>
<source_obj>154</source_obj>
<sink_obj>162</sink_obj>
</item>
<item class_id_reference="20" object_id="_701">
<id>759</id>
<edge_type>1</edge_type>
<source_obj>714</source_obj>
<sink_obj>162</sink_obj>
</item>
<item class_id_reference="20" object_id="_702">
<id>760</id>
<edge_type>1</edge_type>
<source_obj>162</source_obj>
<sink_obj>163</sink_obj>
</item>
<item class_id_reference="20" object_id="_703">
<id>762</id>
<edge_type>1</edge_type>
<source_obj>761</source_obj>
<sink_obj>163</sink_obj>
</item>
<item class_id_reference="20" object_id="_704">
<id>763</id>
<edge_type>1</edge_type>
<source_obj>158</source_obj>
<sink_obj>164</sink_obj>
</item>
<item class_id_reference="20" object_id="_705">
<id>764</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>164</sink_obj>
</item>
<item class_id_reference="20" object_id="_706">
<id>765</id>
<edge_type>1</edge_type>
<source_obj>157</source_obj>
<sink_obj>165</sink_obj>
</item>
<item class_id_reference="20" object_id="_707">
<id>766</id>
<edge_type>1</edge_type>
<source_obj>164</source_obj>
<sink_obj>165</sink_obj>
</item>
<item class_id_reference="20" object_id="_708">
<id>767</id>
<edge_type>1</edge_type>
<source_obj>161</source_obj>
<sink_obj>165</sink_obj>
</item>
<item class_id_reference="20" object_id="_709">
<id>768</id>
<edge_type>1</edge_type>
<source_obj>157</source_obj>
<sink_obj>166</sink_obj>
</item>
<item class_id_reference="20" object_id="_710">
<id>769</id>
<edge_type>1</edge_type>
<source_obj>155</source_obj>
<sink_obj>166</sink_obj>
</item>
<item class_id_reference="20" object_id="_711">
<id>770</id>
<edge_type>1</edge_type>
<source_obj>156</source_obj>
<sink_obj>166</sink_obj>
</item>
<item class_id_reference="20" object_id="_712">
<id>773</id>
<edge_type>1</edge_type>
<source_obj>166</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_713">
<id>774</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_714">
<id>775</id>
<edge_type>1</edge_type>
<source_obj>167</source_obj>
<sink_obj>168</sink_obj>
</item>
<item class_id_reference="20" object_id="_715">
<id>777</id>
<edge_type>1</edge_type>
<source_obj>776</source_obj>
<sink_obj>168</sink_obj>
</item>
<item class_id_reference="20" object_id="_716">
<id>779</id>
<edge_type>1</edge_type>
<source_obj>165</source_obj>
<sink_obj>169</sink_obj>
</item>
<item class_id_reference="20" object_id="_717">
<id>780</id>
<edge_type>1</edge_type>
<source_obj>314</source_obj>
<sink_obj>169</sink_obj>
</item>
<item class_id_reference="20" object_id="_718">
<id>781</id>
<edge_type>1</edge_type>
<source_obj>165</source_obj>
<sink_obj>170</sink_obj>
</item>
<item class_id_reference="20" object_id="_719">
<id>782</id>
<edge_type>1</edge_type>
<source_obj>317</source_obj>
<sink_obj>170</sink_obj>
</item>
<item class_id_reference="20" object_id="_720">
<id>785</id>
<edge_type>1</edge_type>
<source_obj>168</source_obj>
<sink_obj>171</sink_obj>
</item>
<item class_id_reference="20" object_id="_721">
<id>787</id>
<edge_type>1</edge_type>
<source_obj>786</source_obj>
<sink_obj>171</sink_obj>
</item>
<item class_id_reference="20" object_id="_722">
<id>788</id>
<edge_type>1</edge_type>
<source_obj>171</source_obj>
<sink_obj>172</sink_obj>
</item>
<item class_id_reference="20" object_id="_723">
<id>790</id>
<edge_type>1</edge_type>
<source_obj>789</source_obj>
<sink_obj>172</sink_obj>
</item>
<item class_id_reference="20" object_id="_724">
<id>791</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>173</sink_obj>
</item>
<item class_id_reference="20" object_id="_725">
<id>792</id>
<edge_type>1</edge_type>
<source_obj>172</source_obj>
<sink_obj>173</sink_obj>
</item>
<item class_id_reference="20" object_id="_726">
<id>794</id>
<edge_type>1</edge_type>
<source_obj>166</source_obj>
<sink_obj>174</sink_obj>
</item>
<item class_id_reference="20" object_id="_727">
<id>795</id>
<edge_type>1</edge_type>
<source_obj>750</source_obj>
<sink_obj>174</sink_obj>
</item>
<item class_id_reference="20" object_id="_728">
<id>796</id>
<edge_type>1</edge_type>
<source_obj>174</source_obj>
<sink_obj>175</sink_obj>
</item>
<item class_id_reference="20" object_id="_729">
<id>798</id>
<edge_type>1</edge_type>
<source_obj>797</source_obj>
<sink_obj>175</sink_obj>
</item>
<item class_id_reference="20" object_id="_730">
<id>799</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>176</sink_obj>
</item>
<item class_id_reference="20" object_id="_731">
<id>800</id>
<edge_type>1</edge_type>
<source_obj>175</source_obj>
<sink_obj>176</sink_obj>
</item>
<item class_id_reference="20" object_id="_732">
<id>801</id>
<edge_type>1</edge_type>
<source_obj>169</source_obj>
<sink_obj>177</sink_obj>
</item>
<item class_id_reference="20" object_id="_733">
<id>802</id>
<edge_type>1</edge_type>
<source_obj>176</source_obj>
<sink_obj>177</sink_obj>
</item>
<item class_id_reference="20" object_id="_734">
<id>803</id>
<edge_type>1</edge_type>
<source_obj>173</source_obj>
<sink_obj>177</sink_obj>
</item>
<item class_id_reference="20" object_id="_735">
<id>804</id>
<edge_type>1</edge_type>
<source_obj>169</source_obj>
<sink_obj>178</sink_obj>
</item>
<item class_id_reference="20" object_id="_736">
<id>805</id>
<edge_type>1</edge_type>
<source_obj>167</source_obj>
<sink_obj>178</sink_obj>
</item>
<item class_id_reference="20" object_id="_737">
<id>806</id>
<edge_type>1</edge_type>
<source_obj>168</source_obj>
<sink_obj>178</sink_obj>
</item>
<item class_id_reference="20" object_id="_738">
<id>809</id>
<edge_type>1</edge_type>
<source_obj>178</source_obj>
<sink_obj>179</sink_obj>
</item>
<item class_id_reference="20" object_id="_739">
<id>810</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>179</sink_obj>
</item>
<item class_id_reference="20" object_id="_740">
<id>811</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>180</sink_obj>
</item>
<item class_id_reference="20" object_id="_741">
<id>813</id>
<edge_type>1</edge_type>
<source_obj>812</source_obj>
<sink_obj>180</sink_obj>
</item>
<item class_id_reference="20" object_id="_742">
<id>815</id>
<edge_type>1</edge_type>
<source_obj>177</source_obj>
<sink_obj>181</sink_obj>
</item>
<item class_id_reference="20" object_id="_743">
<id>816</id>
<edge_type>1</edge_type>
<source_obj>314</source_obj>
<sink_obj>181</sink_obj>
</item>
<item class_id_reference="20" object_id="_744">
<id>817</id>
<edge_type>1</edge_type>
<source_obj>177</source_obj>
<sink_obj>182</sink_obj>
</item>
<item class_id_reference="20" object_id="_745">
<id>818</id>
<edge_type>1</edge_type>
<source_obj>317</source_obj>
<sink_obj>182</sink_obj>
</item>
<item class_id_reference="20" object_id="_746">
<id>821</id>
<edge_type>1</edge_type>
<source_obj>180</source_obj>
<sink_obj>183</sink_obj>
</item>
<item class_id_reference="20" object_id="_747">
<id>823</id>
<edge_type>1</edge_type>
<source_obj>822</source_obj>
<sink_obj>183</sink_obj>
</item>
<item class_id_reference="20" object_id="_748">
<id>824</id>
<edge_type>1</edge_type>
<source_obj>183</source_obj>
<sink_obj>184</sink_obj>
</item>
<item class_id_reference="20" object_id="_749">
<id>826</id>
<edge_type>1</edge_type>
<source_obj>825</source_obj>
<sink_obj>184</sink_obj>
</item>
<item class_id_reference="20" object_id="_750">
<id>827</id>
<edge_type>1</edge_type>
<source_obj>182</source_obj>
<sink_obj>185</sink_obj>
</item>
<item class_id_reference="20" object_id="_751">
<id>828</id>
<edge_type>1</edge_type>
<source_obj>184</source_obj>
<sink_obj>185</sink_obj>
</item>
<item class_id_reference="20" object_id="_752">
<id>830</id>
<edge_type>1</edge_type>
<source_obj>178</source_obj>
<sink_obj>186</sink_obj>
</item>
<item class_id_reference="20" object_id="_753">
<id>831</id>
<edge_type>1</edge_type>
<source_obj>786</source_obj>
<sink_obj>186</sink_obj>
</item>
<item class_id_reference="20" object_id="_754">
<id>832</id>
<edge_type>1</edge_type>
<source_obj>186</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_755">
<id>834</id>
<edge_type>1</edge_type>
<source_obj>833</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_756">
<id>835</id>
<edge_type>1</edge_type>
<source_obj>182</source_obj>
<sink_obj>188</sink_obj>
</item>
<item class_id_reference="20" object_id="_757">
<id>836</id>
<edge_type>1</edge_type>
<source_obj>187</source_obj>
<sink_obj>188</sink_obj>
</item>
<item class_id_reference="20" object_id="_758">
<id>837</id>
<edge_type>1</edge_type>
<source_obj>181</source_obj>
<sink_obj>189</sink_obj>
</item>
<item class_id_reference="20" object_id="_759">
<id>838</id>
<edge_type>1</edge_type>
<source_obj>188</source_obj>
<sink_obj>189</sink_obj>
</item>
<item class_id_reference="20" object_id="_760">
<id>839</id>
<edge_type>1</edge_type>
<source_obj>185</source_obj>
<sink_obj>189</sink_obj>
</item>
<item class_id_reference="20" object_id="_761">
<id>840</id>
<edge_type>1</edge_type>
<source_obj>181</source_obj>
<sink_obj>190</sink_obj>
</item>
<item class_id_reference="20" object_id="_762">
<id>841</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>190</sink_obj>
</item>
<item class_id_reference="20" object_id="_763">
<id>842</id>
<edge_type>1</edge_type>
<source_obj>180</source_obj>
<sink_obj>190</sink_obj>
</item>
<item class_id_reference="20" object_id="_764">
<id>845</id>
<edge_type>1</edge_type>
<source_obj>190</source_obj>
<sink_obj>191</sink_obj>
</item>
<item class_id_reference="20" object_id="_765">
<id>846</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>191</sink_obj>
</item>
<item class_id_reference="20" object_id="_766">
<id>847</id>
<edge_type>1</edge_type>
<source_obj>191</source_obj>
<sink_obj>192</sink_obj>
</item>
<item class_id_reference="20" object_id="_767">
<id>849</id>
<edge_type>1</edge_type>
<source_obj>848</source_obj>
<sink_obj>192</sink_obj>
</item>
<item class_id_reference="20" object_id="_768">
<id>851</id>
<edge_type>1</edge_type>
<source_obj>189</source_obj>
<sink_obj>193</sink_obj>
</item>
<item class_id_reference="20" object_id="_769">
<id>852</id>
<edge_type>1</edge_type>
<source_obj>314</source_obj>
<sink_obj>193</sink_obj>
</item>
<item class_id_reference="20" object_id="_770">
<id>853</id>
<edge_type>1</edge_type>
<source_obj>189</source_obj>
<sink_obj>194</sink_obj>
</item>
<item class_id_reference="20" object_id="_771">
<id>854</id>
<edge_type>1</edge_type>
<source_obj>317</source_obj>
<sink_obj>194</sink_obj>
</item>
<item class_id_reference="20" object_id="_772">
<id>857</id>
<edge_type>1</edge_type>
<source_obj>192</source_obj>
<sink_obj>195</sink_obj>
</item>
<item class_id_reference="20" object_id="_773">
<id>859</id>
<edge_type>1</edge_type>
<source_obj>858</source_obj>
<sink_obj>195</sink_obj>
</item>
<item class_id_reference="20" object_id="_774">
<id>860</id>
<edge_type>1</edge_type>
<source_obj>195</source_obj>
<sink_obj>196</sink_obj>
</item>
<item class_id_reference="20" object_id="_775">
<id>862</id>
<edge_type>1</edge_type>
<source_obj>861</source_obj>
<sink_obj>196</sink_obj>
</item>
<item class_id_reference="20" object_id="_776">
<id>863</id>
<edge_type>1</edge_type>
<source_obj>194</source_obj>
<sink_obj>197</sink_obj>
</item>
<item class_id_reference="20" object_id="_777">
<id>864</id>
<edge_type>1</edge_type>
<source_obj>196</source_obj>
<sink_obj>197</sink_obj>
</item>
<item class_id_reference="20" object_id="_778">
<id>866</id>
<edge_type>1</edge_type>
<source_obj>190</source_obj>
<sink_obj>198</sink_obj>
</item>
<item class_id_reference="20" object_id="_779">
<id>867</id>
<edge_type>1</edge_type>
<source_obj>822</source_obj>
<sink_obj>198</sink_obj>
</item>
<item class_id_reference="20" object_id="_780">
<id>868</id>
<edge_type>1</edge_type>
<source_obj>198</source_obj>
<sink_obj>199</sink_obj>
</item>
<item class_id_reference="20" object_id="_781">
<id>870</id>
<edge_type>1</edge_type>
<source_obj>869</source_obj>
<sink_obj>199</sink_obj>
</item>
<item class_id_reference="20" object_id="_782">
<id>871</id>
<edge_type>1</edge_type>
<source_obj>194</source_obj>
<sink_obj>200</sink_obj>
</item>
<item class_id_reference="20" object_id="_783">
<id>872</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>200</sink_obj>
</item>
<item class_id_reference="20" object_id="_784">
<id>873</id>
<edge_type>1</edge_type>
<source_obj>193</source_obj>
<sink_obj>201</sink_obj>
</item>
<item class_id_reference="20" object_id="_785">
<id>874</id>
<edge_type>1</edge_type>
<source_obj>200</source_obj>
<sink_obj>201</sink_obj>
</item>
<item class_id_reference="20" object_id="_786">
<id>875</id>
<edge_type>1</edge_type>
<source_obj>197</source_obj>
<sink_obj>201</sink_obj>
</item>
<item class_id_reference="20" object_id="_787">
<id>876</id>
<edge_type>1</edge_type>
<source_obj>193</source_obj>
<sink_obj>202</sink_obj>
</item>
<item class_id_reference="20" object_id="_788">
<id>877</id>
<edge_type>1</edge_type>
<source_obj>191</source_obj>
<sink_obj>202</sink_obj>
</item>
<item class_id_reference="20" object_id="_789">
<id>878</id>
<edge_type>1</edge_type>
<source_obj>192</source_obj>
<sink_obj>202</sink_obj>
</item>
<item class_id_reference="20" object_id="_790">
<id>881</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>203</sink_obj>
</item>
<item class_id_reference="20" object_id="_791">
<id>882</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>203</sink_obj>
</item>
<item class_id_reference="20" object_id="_792">
<id>883</id>
<edge_type>1</edge_type>
<source_obj>203</source_obj>
<sink_obj>204</sink_obj>
</item>
<item class_id_reference="20" object_id="_793">
<id>885</id>
<edge_type>1</edge_type>
<source_obj>884</source_obj>
<sink_obj>204</sink_obj>
</item>
<item class_id_reference="20" object_id="_794">
<id>887</id>
<edge_type>1</edge_type>
<source_obj>201</source_obj>
<sink_obj>205</sink_obj>
</item>
<item class_id_reference="20" object_id="_795">
<id>888</id>
<edge_type>1</edge_type>
<source_obj>314</source_obj>
<sink_obj>205</sink_obj>
</item>
<item class_id_reference="20" object_id="_796">
<id>889</id>
<edge_type>1</edge_type>
<source_obj>201</source_obj>
<sink_obj>206</sink_obj>
</item>
<item class_id_reference="20" object_id="_797">
<id>890</id>
<edge_type>1</edge_type>
<source_obj>317</source_obj>
<sink_obj>206</sink_obj>
</item>
<item class_id_reference="20" object_id="_798">
<id>893</id>
<edge_type>1</edge_type>
<source_obj>204</source_obj>
<sink_obj>207</sink_obj>
</item>
<item class_id_reference="20" object_id="_799">
<id>895</id>
<edge_type>1</edge_type>
<source_obj>894</source_obj>
<sink_obj>207</sink_obj>
</item>
<item class_id_reference="20" object_id="_800">
<id>896</id>
<edge_type>1</edge_type>
<source_obj>207</source_obj>
<sink_obj>208</sink_obj>
</item>
<item class_id_reference="20" object_id="_801">
<id>898</id>
<edge_type>1</edge_type>
<source_obj>897</source_obj>
<sink_obj>208</sink_obj>
</item>
<item class_id_reference="20" object_id="_802">
<id>899</id>
<edge_type>1</edge_type>
<source_obj>206</source_obj>
<sink_obj>209</sink_obj>
</item>
<item class_id_reference="20" object_id="_803">
<id>900</id>
<edge_type>1</edge_type>
<source_obj>208</source_obj>
<sink_obj>209</sink_obj>
</item>
<item class_id_reference="20" object_id="_804">
<id>902</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>210</sink_obj>
</item>
<item class_id_reference="20" object_id="_805">
<id>903</id>
<edge_type>1</edge_type>
<source_obj>858</source_obj>
<sink_obj>210</sink_obj>
</item>
<item class_id_reference="20" object_id="_806">
<id>904</id>
<edge_type>1</edge_type>
<source_obj>210</source_obj>
<sink_obj>211</sink_obj>
</item>
<item class_id_reference="20" object_id="_807">
<id>906</id>
<edge_type>1</edge_type>
<source_obj>905</source_obj>
<sink_obj>211</sink_obj>
</item>
<item class_id_reference="20" object_id="_808">
<id>907</id>
<edge_type>1</edge_type>
<source_obj>206</source_obj>
<sink_obj>212</sink_obj>
</item>
<item class_id_reference="20" object_id="_809">
<id>908</id>
<edge_type>1</edge_type>
<source_obj>211</source_obj>
<sink_obj>212</sink_obj>
</item>
<item class_id_reference="20" object_id="_810">
<id>909</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>213</sink_obj>
</item>
<item class_id_reference="20" object_id="_811">
<id>910</id>
<edge_type>1</edge_type>
<source_obj>212</source_obj>
<sink_obj>213</sink_obj>
</item>
<item class_id_reference="20" object_id="_812">
<id>911</id>
<edge_type>1</edge_type>
<source_obj>209</source_obj>
<sink_obj>213</sink_obj>
</item>
<item class_id_reference="20" object_id="_813">
<id>912</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>214</sink_obj>
</item>
<item class_id_reference="20" object_id="_814">
<id>913</id>
<edge_type>1</edge_type>
<source_obj>203</source_obj>
<sink_obj>214</sink_obj>
</item>
<item class_id_reference="20" object_id="_815">
<id>914</id>
<edge_type>1</edge_type>
<source_obj>204</source_obj>
<sink_obj>214</sink_obj>
</item>
<item class_id_reference="20" object_id="_816">
<id>917</id>
<edge_type>1</edge_type>
<source_obj>214</source_obj>
<sink_obj>215</sink_obj>
</item>
<item class_id_reference="20" object_id="_817">
<id>918</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>215</sink_obj>
</item>
<item class_id_reference="20" object_id="_818">
<id>919</id>
<edge_type>1</edge_type>
<source_obj>215</source_obj>
<sink_obj>216</sink_obj>
</item>
<item class_id_reference="20" object_id="_819">
<id>921</id>
<edge_type>1</edge_type>
<source_obj>920</source_obj>
<sink_obj>216</sink_obj>
</item>
<item class_id_reference="20" object_id="_820">
<id>923</id>
<edge_type>1</edge_type>
<source_obj>213</source_obj>
<sink_obj>217</sink_obj>
</item>
<item class_id_reference="20" object_id="_821">
<id>924</id>
<edge_type>1</edge_type>
<source_obj>314</source_obj>
<sink_obj>217</sink_obj>
</item>
<item class_id_reference="20" object_id="_822">
<id>925</id>
<edge_type>1</edge_type>
<source_obj>213</source_obj>
<sink_obj>218</sink_obj>
</item>
<item class_id_reference="20" object_id="_823">
<id>926</id>
<edge_type>1</edge_type>
<source_obj>317</source_obj>
<sink_obj>218</sink_obj>
</item>
<item class_id_reference="20" object_id="_824">
<id>929</id>
<edge_type>1</edge_type>
<source_obj>216</source_obj>
<sink_obj>219</sink_obj>
</item>
<item class_id_reference="20" object_id="_825">
<id>931</id>
<edge_type>1</edge_type>
<source_obj>930</source_obj>
<sink_obj>219</sink_obj>
</item>
<item class_id_reference="20" object_id="_826">
<id>932</id>
<edge_type>1</edge_type>
<source_obj>219</source_obj>
<sink_obj>220</sink_obj>
</item>
<item class_id_reference="20" object_id="_827">
<id>934</id>
<edge_type>1</edge_type>
<source_obj>933</source_obj>
<sink_obj>220</sink_obj>
</item>
<item class_id_reference="20" object_id="_828">
<id>935</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>221</sink_obj>
</item>
<item class_id_reference="20" object_id="_829">
<id>936</id>
<edge_type>1</edge_type>
<source_obj>220</source_obj>
<sink_obj>221</sink_obj>
</item>
<item class_id_reference="20" object_id="_830">
<id>938</id>
<edge_type>1</edge_type>
<source_obj>214</source_obj>
<sink_obj>222</sink_obj>
</item>
<item class_id_reference="20" object_id="_831">
<id>939</id>
<edge_type>1</edge_type>
<source_obj>894</source_obj>
<sink_obj>222</sink_obj>
</item>
<item class_id_reference="20" object_id="_832">
<id>940</id>
<edge_type>1</edge_type>
<source_obj>222</source_obj>
<sink_obj>223</sink_obj>
</item>
<item class_id_reference="20" object_id="_833">
<id>942</id>
<edge_type>1</edge_type>
<source_obj>941</source_obj>
<sink_obj>223</sink_obj>
</item>
<item class_id_reference="20" object_id="_834">
<id>943</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>224</sink_obj>
</item>
<item class_id_reference="20" object_id="_835">
<id>944</id>
<edge_type>1</edge_type>
<source_obj>223</source_obj>
<sink_obj>224</sink_obj>
</item>
<item class_id_reference="20" object_id="_836">
<id>945</id>
<edge_type>1</edge_type>
<source_obj>217</source_obj>
<sink_obj>225</sink_obj>
</item>
<item class_id_reference="20" object_id="_837">
<id>946</id>
<edge_type>1</edge_type>
<source_obj>224</source_obj>
<sink_obj>225</sink_obj>
</item>
<item class_id_reference="20" object_id="_838">
<id>947</id>
<edge_type>1</edge_type>
<source_obj>221</source_obj>
<sink_obj>225</sink_obj>
</item>
<item class_id_reference="20" object_id="_839">
<id>948</id>
<edge_type>1</edge_type>
<source_obj>217</source_obj>
<sink_obj>226</sink_obj>
</item>
<item class_id_reference="20" object_id="_840">
<id>949</id>
<edge_type>1</edge_type>
<source_obj>215</source_obj>
<sink_obj>226</sink_obj>
</item>
<item class_id_reference="20" object_id="_841">
<id>950</id>
<edge_type>1</edge_type>
<source_obj>216</source_obj>
<sink_obj>226</sink_obj>
</item>
<item class_id_reference="20" object_id="_842">
<id>953</id>
<edge_type>1</edge_type>
<source_obj>226</source_obj>
<sink_obj>227</sink_obj>
</item>
<item class_id_reference="20" object_id="_843">
<id>954</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>227</sink_obj>
</item>
<item class_id_reference="20" object_id="_844">
<id>955</id>
<edge_type>1</edge_type>
<source_obj>227</source_obj>
<sink_obj>228</sink_obj>
</item>
<item class_id_reference="20" object_id="_845">
<id>957</id>
<edge_type>1</edge_type>
<source_obj>956</source_obj>
<sink_obj>228</sink_obj>
</item>
<item class_id_reference="20" object_id="_846">
<id>959</id>
<edge_type>1</edge_type>
<source_obj>225</source_obj>
<sink_obj>229</sink_obj>
</item>
<item class_id_reference="20" object_id="_847">
<id>960</id>
<edge_type>1</edge_type>
<source_obj>314</source_obj>
<sink_obj>229</sink_obj>
</item>
<item class_id_reference="20" object_id="_848">
<id>961</id>
<edge_type>1</edge_type>
<source_obj>225</source_obj>
<sink_obj>230</sink_obj>
</item>
<item class_id_reference="20" object_id="_849">
<id>962</id>
<edge_type>1</edge_type>
<source_obj>317</source_obj>
<sink_obj>230</sink_obj>
</item>
<item class_id_reference="20" object_id="_850">
<id>965</id>
<edge_type>1</edge_type>
<source_obj>228</source_obj>
<sink_obj>231</sink_obj>
</item>
<item class_id_reference="20" object_id="_851">
<id>966</id>
<edge_type>1</edge_type>
<source_obj>301</source_obj>
<sink_obj>231</sink_obj>
</item>
<item class_id_reference="20" object_id="_852">
<id>967</id>
<edge_type>1</edge_type>
<source_obj>231</source_obj>
<sink_obj>232</sink_obj>
</item>
<item class_id_reference="20" object_id="_853">
<id>969</id>
<edge_type>1</edge_type>
<source_obj>968</source_obj>
<sink_obj>232</sink_obj>
</item>
<item class_id_reference="20" object_id="_854">
<id>970</id>
<edge_type>1</edge_type>
<source_obj>230</source_obj>
<sink_obj>233</sink_obj>
</item>
<item class_id_reference="20" object_id="_855">
<id>971</id>
<edge_type>1</edge_type>
<source_obj>232</source_obj>
<sink_obj>233</sink_obj>
</item>
<item class_id_reference="20" object_id="_856">
<id>973</id>
<edge_type>1</edge_type>
<source_obj>226</source_obj>
<sink_obj>234</sink_obj>
</item>
<item class_id_reference="20" object_id="_857">
<id>974</id>
<edge_type>1</edge_type>
<source_obj>930</source_obj>
<sink_obj>234</sink_obj>
</item>
<item class_id_reference="20" object_id="_858">
<id>975</id>
<edge_type>1</edge_type>
<source_obj>234</source_obj>
<sink_obj>235</sink_obj>
</item>
<item class_id_reference="20" object_id="_859">
<id>977</id>
<edge_type>1</edge_type>
<source_obj>976</source_obj>
<sink_obj>235</sink_obj>
</item>
<item class_id_reference="20" object_id="_860">
<id>978</id>
<edge_type>1</edge_type>
<source_obj>230</source_obj>
<sink_obj>236</sink_obj>
</item>
<item class_id_reference="20" object_id="_861">
<id>979</id>
<edge_type>1</edge_type>
<source_obj>235</source_obj>
<sink_obj>236</sink_obj>
</item>
<item class_id_reference="20" object_id="_862">
<id>980</id>
<edge_type>1</edge_type>
<source_obj>229</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_863">
<id>981</id>
<edge_type>1</edge_type>
<source_obj>236</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_864">
<id>982</id>
<edge_type>1</edge_type>
<source_obj>233</source_obj>
<sink_obj>237</sink_obj>
</item>
<item class_id_reference="20" object_id="_865">
<id>983</id>
<edge_type>1</edge_type>
<source_obj>229</source_obj>
<sink_obj>238</sink_obj>
</item>
<item class_id_reference="20" object_id="_866">
<id>984</id>
<edge_type>1</edge_type>
<source_obj>227</source_obj>
<sink_obj>238</sink_obj>
</item>
<item class_id_reference="20" object_id="_867">
<id>985</id>
<edge_type>1</edge_type>
<source_obj>228</source_obj>
<sink_obj>238</sink_obj>
</item>
<item class_id_reference="20" object_id="_868">
<id>988</id>
<edge_type>1</edge_type>
<source_obj>238</source_obj>
<sink_obj>239</sink_obj>
</item>
<item class_id_reference="20" object_id="_869">
<id>989</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>239</sink_obj>
</item>
<item class_id_reference="20" object_id="_870">
<id>990</id>
<edge_type>1</edge_type>
<source_obj>239</source_obj>
<sink_obj>240</sink_obj>
</item>
<item class_id_reference="20" object_id="_871">
<id>992</id>
<edge_type>1</edge_type>
<source_obj>991</source_obj>
<sink_obj>240</sink_obj>
</item>
<item class_id_reference="20" object_id="_872">
<id>994</id>
<edge_type>1</edge_type>
<source_obj>237</source_obj>
<sink_obj>241</sink_obj>
</item>
<item class_id_reference="20" object_id="_873">
<id>995</id>
<edge_type>1</edge_type>
<source_obj>314</source_obj>
<sink_obj>241</sink_obj>
</item>
<item class_id_reference="20" object_id="_874">
<id>996</id>
<edge_type>1</edge_type>
<source_obj>237</source_obj>
<sink_obj>242</sink_obj>
</item>
<item class_id_reference="20" object_id="_875">
<id>997</id>
<edge_type>1</edge_type>
<source_obj>317</source_obj>
<sink_obj>242</sink_obj>
</item>
<item class_id_reference="20" object_id="_876">
<id>1000</id>
<edge_type>1</edge_type>
<source_obj>240</source_obj>
<sink_obj>243</sink_obj>
</item>
<item class_id_reference="20" object_id="_877">
<id>1002</id>
<edge_type>1</edge_type>
<source_obj>1001</source_obj>
<sink_obj>243</sink_obj>
</item>
<item class_id_reference="20" object_id="_878">
<id>1003</id>
<edge_type>1</edge_type>
<source_obj>243</source_obj>
<sink_obj>244</sink_obj>
</item>
<item class_id_reference="20" object_id="_879">
<id>1004</id>
<edge_type>1</edge_type>
<source_obj>317</source_obj>
<sink_obj>244</sink_obj>
</item>
<item class_id_reference="20" object_id="_880">
<id>1005</id>
<edge_type>1</edge_type>
<source_obj>242</source_obj>
<sink_obj>245</sink_obj>
</item>
<item class_id_reference="20" object_id="_881">
<id>1006</id>
<edge_type>1</edge_type>
<source_obj>244</source_obj>
<sink_obj>245</sink_obj>
</item>
<item class_id_reference="20" object_id="_882">
<id>1008</id>
<edge_type>1</edge_type>
<source_obj>238</source_obj>
<sink_obj>246</sink_obj>
</item>
<item class_id_reference="20" object_id="_883">
<id>1009</id>
<edge_type>1</edge_type>
<source_obj>301</source_obj>
<sink_obj>246</sink_obj>
</item>
<item class_id_reference="20" object_id="_884">
<id>1010</id>
<edge_type>1</edge_type>
<source_obj>246</source_obj>
<sink_obj>247</sink_obj>
</item>
<item class_id_reference="20" object_id="_885">
<id>1012</id>
<edge_type>1</edge_type>
<source_obj>1011</source_obj>
<sink_obj>247</sink_obj>
</item>
<item class_id_reference="20" object_id="_886">
<id>1013</id>
<edge_type>1</edge_type>
<source_obj>242</source_obj>
<sink_obj>248</sink_obj>
</item>
<item class_id_reference="20" object_id="_887">
<id>1014</id>
<edge_type>1</edge_type>
<source_obj>247</source_obj>
<sink_obj>248</sink_obj>
</item>
<item class_id_reference="20" object_id="_888">
<id>1015</id>
<edge_type>1</edge_type>
<source_obj>241</source_obj>
<sink_obj>249</sink_obj>
</item>
<item class_id_reference="20" object_id="_889">
<id>1016</id>
<edge_type>1</edge_type>
<source_obj>248</source_obj>
<sink_obj>249</sink_obj>
</item>
<item class_id_reference="20" object_id="_890">
<id>1017</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>249</sink_obj>
</item>
<item class_id_reference="20" object_id="_891">
<id>1018</id>
<edge_type>1</edge_type>
<source_obj>240</source_obj>
<sink_obj>250</sink_obj>
</item>
<item class_id_reference="20" object_id="_892">
<id>1019</id>
<edge_type>1</edge_type>
<source_obj>238</source_obj>
<sink_obj>251</sink_obj>
</item>
<item class_id_reference="20" object_id="_893">
<id>1020</id>
<edge_type>1</edge_type>
<source_obj>956</source_obj>
<sink_obj>251</sink_obj>
</item>
<item class_id_reference="20" object_id="_894">
<id>1021</id>
<edge_type>1</edge_type>
<source_obj>241</source_obj>
<sink_obj>252</sink_obj>
</item>
<item class_id_reference="20" object_id="_895">
<id>1022</id>
<edge_type>1</edge_type>
<source_obj>251</source_obj>
<sink_obj>252</sink_obj>
</item>
<item class_id_reference="20" object_id="_896">
<id>1023</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>252</sink_obj>
</item>
<item class_id_reference="20" object_id="_897">
<id>1025</id>
<edge_type>1</edge_type>
<source_obj>252</source_obj>
<sink_obj>253</sink_obj>
</item>
<item class_id_reference="20" object_id="_898">
<id>1026</id>
<edge_type>1</edge_type>
<source_obj>285</source_obj>
<sink_obj>253</sink_obj>
</item>
<item class_id_reference="20" object_id="_899">
<id>1027</id>
<edge_type>1</edge_type>
<source_obj>253</source_obj>
<sink_obj>254</sink_obj>
</item>
<item class_id_reference="20" object_id="_900">
<id>1028</id>
<edge_type>1</edge_type>
<source_obj>991</source_obj>
<sink_obj>254</sink_obj>
</item>
<item class_id_reference="20" object_id="_901">
<id>1029</id>
<edge_type>1</edge_type>
<source_obj>249</source_obj>
<sink_obj>255</sink_obj>
</item>
<item class_id_reference="20" object_id="_902">
<id>1031</id>
<edge_type>1</edge_type>
<source_obj>1030</source_obj>
<sink_obj>255</sink_obj>
</item>
<item class_id_reference="20" object_id="_903">
<id>1032</id>
<edge_type>1</edge_type>
<source_obj>254</source_obj>
<sink_obj>256</sink_obj>
</item>
<item class_id_reference="20" object_id="_904">
<id>1033</id>
<edge_type>1</edge_type>
<source_obj>991</source_obj>
<sink_obj>256</sink_obj>
</item>
<item class_id_reference="20" object_id="_905">
<id>1036</id>
<edge_type>1</edge_type>
<source_obj>256</source_obj>
<sink_obj>257</sink_obj>
</item>
<item class_id_reference="20" object_id="_906">
<id>1037</id>
<edge_type>1</edge_type>
<source_obj>278</source_obj>
<sink_obj>257</sink_obj>
</item>
<item class_id_reference="20" object_id="_907">
<id>1039</id>
<edge_type>1</edge_type>
<source_obj>1038</source_obj>
<sink_obj>257</sink_obj>
</item>
<item class_id_reference="20" object_id="_908">
<id>1040</id>
<edge_type>1</edge_type>
<source_obj>255</source_obj>
<sink_obj>258</sink_obj>
</item>
<item class_id_reference="20" object_id="_909">
<id>1041</id>
<edge_type>1</edge_type>
<source_obj>257</source_obj>
<sink_obj>258</sink_obj>
</item>
<item class_id_reference="20" object_id="_910">
<id>1042</id>
<edge_type>1</edge_type>
<source_obj>252</source_obj>
<sink_obj>258</sink_obj>
</item>
<item class_id_reference="20" object_id="_911">
<id>1043</id>
<edge_type>1</edge_type>
<source_obj>258</source_obj>
<sink_obj>259</sink_obj>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_912">
<mId>1</mId>
<mTag>fxp_sqrt</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>260</item>
</basic_blocks>
<mII>1</mII>
<mDepth>12</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>11</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="_913">
<states class_id="25" tracking_level="0" version="0">
<count>12</count>
<item_version>0</item_version>
<item class_id="26" tracking_level="1" version="0" object_id="_914">
<id>1</id>
<operations class_id="27" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="28" tracking_level="1" version="0" object_id="_915">
<id>2</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_916">
<id>3</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_917">
<id>4</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_918">
<id>5</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_919">
<id>6</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_920">
<id>7</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_921">
<id>8</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_922">
<id>9</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_923">
<id>16</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_924">
<id>2</id>
<operations>
<count>11</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_925">
<id>10</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_926">
<id>12</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_927">
<id>14</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_928">
<id>15</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_929">
<id>17</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_930">
<id>18</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_931">
<id>19</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_932">
<id>20</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_933">
<id>21</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_934">
<id>23</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_935">
<id>25</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_936">
<id>3</id>
<operations>
<count>26</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_937">
<id>11</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_938">
<id>13</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_939">
<id>22</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_940">
<id>24</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_941">
<id>26</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_942">
<id>27</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_943">
<id>28</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_944">
<id>29</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_945">
<id>30</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_946">
<id>31</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_947">
<id>32</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_948">
<id>33</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_949">
<id>34</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_950">
<id>35</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_951">
<id>36</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_952">
<id>37</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_953">
<id>38</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_954">
<id>39</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_955">
<id>40</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_956">
<id>41</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_957">
<id>42</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_958">
<id>43</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_959">
<id>44</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_960">
<id>45</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_961">
<id>46</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_962">
<id>49</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_963">
<id>4</id>
<operations>
<count>24</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_964">
<id>47</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_965">
<id>48</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_966">
<id>50</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_967">
<id>51</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_968">
<id>52</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_969">
<id>53</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_970">
<id>54</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_971">
<id>55</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_972">
<id>56</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_973">
<id>57</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_974">
<id>58</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_975">
<id>59</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_976">
<id>60</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_977">
<id>61</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_978">
<id>62</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_979">
<id>63</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_980">
<id>64</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_981">
<id>65</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_982">
<id>66</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_983">
<id>67</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_984">
<id>68</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_985">
<id>69</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_986">
<id>70</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_987">
<id>73</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_988">
<id>5</id>
<operations>
<count>24</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_989">
<id>71</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_990">
<id>72</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_991">
<id>74</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_992">
<id>75</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_993">
<id>76</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_994">
<id>77</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_995">
<id>78</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_996">
<id>79</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_997">
<id>80</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_998">
<id>81</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_999">
<id>82</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1000">
<id>83</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1001">
<id>84</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1002">
<id>85</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1003">
<id>86</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1004">
<id>87</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1005">
<id>88</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1006">
<id>89</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1007">
<id>90</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1008">
<id>91</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1009">
<id>92</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1010">
<id>93</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1011">
<id>94</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1012">
<id>97</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1013">
<id>6</id>
<operations>
<count>24</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1014">
<id>95</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1015">
<id>96</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1016">
<id>98</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1017">
<id>99</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1018">
<id>100</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1019">
<id>101</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1020">
<id>102</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1021">
<id>103</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1022">
<id>104</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1023">
<id>105</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1024">
<id>106</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1025">
<id>107</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1026">
<id>108</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1027">
<id>109</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1028">
<id>110</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1029">
<id>111</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1030">
<id>112</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1031">
<id>113</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1032">
<id>114</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1033">
<id>115</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1034">
<id>116</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1035">
<id>117</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1036">
<id>118</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1037">
<id>121</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1038">
<id>7</id>
<operations>
<count>24</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1039">
<id>119</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1040">
<id>120</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1041">
<id>122</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1042">
<id>123</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1043">
<id>124</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1044">
<id>125</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1045">
<id>126</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1046">
<id>127</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1047">
<id>128</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1048">
<id>129</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1049">
<id>130</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1050">
<id>131</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1051">
<id>132</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1052">
<id>133</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1053">
<id>134</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1054">
<id>135</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1055">
<id>136</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1056">
<id>137</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1057">
<id>138</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1058">
<id>139</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1059">
<id>140</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1060">
<id>141</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1061">
<id>142</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1062">
<id>145</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1063">
<id>8</id>
<operations>
<count>24</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1064">
<id>143</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1065">
<id>144</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1066">
<id>146</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1067">
<id>147</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1068">
<id>148</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1069">
<id>149</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1070">
<id>150</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1071">
<id>151</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1072">
<id>152</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1073">
<id>153</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1074">
<id>154</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1075">
<id>155</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1076">
<id>156</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1077">
<id>157</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1078">
<id>158</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1079">
<id>159</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1080">
<id>160</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1081">
<id>161</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1082">
<id>162</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1083">
<id>163</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1084">
<id>164</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1085">
<id>165</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1086">
<id>166</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1087">
<id>169</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1088">
<id>9</id>
<operations>
<count>24</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1089">
<id>167</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1090">
<id>168</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1091">
<id>170</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1092">
<id>171</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1093">
<id>172</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1094">
<id>173</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1095">
<id>174</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1096">
<id>175</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1097">
<id>176</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1098">
<id>177</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1099">
<id>178</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1100">
<id>179</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1101">
<id>180</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1102">
<id>181</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1103">
<id>182</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1104">
<id>183</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1105">
<id>184</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1106">
<id>185</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1107">
<id>186</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1108">
<id>187</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1109">
<id>188</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1110">
<id>189</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1111">
<id>190</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1112">
<id>193</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1113">
<id>10</id>
<operations>
<count>24</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1114">
<id>191</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1115">
<id>192</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1116">
<id>194</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1117">
<id>195</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1118">
<id>196</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1119">
<id>197</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1120">
<id>198</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1121">
<id>199</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1122">
<id>200</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1123">
<id>201</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1124">
<id>202</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1125">
<id>203</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1126">
<id>204</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1127">
<id>205</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1128">
<id>206</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1129">
<id>207</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1130">
<id>208</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1131">
<id>209</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1132">
<id>210</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1133">
<id>211</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1134">
<id>212</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1135">
<id>213</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1136">
<id>214</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1137">
<id>217</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1138">
<id>11</id>
<operations>
<count>24</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1139">
<id>215</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1140">
<id>216</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1141">
<id>218</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1142">
<id>219</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1143">
<id>220</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1144">
<id>221</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1145">
<id>222</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1146">
<id>223</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1147">
<id>224</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1148">
<id>225</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1149">
<id>226</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1150">
<id>227</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1151">
<id>228</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1152">
<id>229</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1153">
<id>230</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1154">
<id>231</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1155">
<id>232</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1156">
<id>233</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1157">
<id>234</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1158">
<id>235</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1159">
<id>236</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1160">
<id>237</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1161">
<id>238</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1162">
<id>241</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_1163">
<id>12</id>
<operations>
<count>20</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_1164">
<id>239</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1165">
<id>240</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1166">
<id>242</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1167">
<id>243</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1168">
<id>244</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1169">
<id>245</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1170">
<id>246</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1171">
<id>247</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1172">
<id>248</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1173">
<id>249</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1174">
<id>250</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1175">
<id>251</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1176">
<id>252</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1177">
<id>253</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1178">
<id>254</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1179">
<id>255</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1180">
<id>256</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1181">
<id>257</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1182">
<id>258</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_1183">
<id>259</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="29" tracking_level="0" version="0">
<count>11</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="1" version="0" object_id="_1184">
<inState>1</inState>
<outState>2</outState>
<condition class_id="31" tracking_level="0" version="0">
<id>216</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="_1185">
<inState>2</inState>
<outState>3</outState>
<condition>
<id>217</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="_1186">
<inState>3</inState>
<outState>4</outState>
<condition>
<id>218</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="_1187">
<inState>4</inState>
<outState>5</outState>
<condition>
<id>219</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="_1188">
<inState>5</inState>
<outState>6</outState>
<condition>
<id>220</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="_1189">
<inState>6</inState>
<outState>7</outState>
<condition>
<id>221</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="_1190">
<inState>7</inState>
<outState>8</outState>
<condition>
<id>222</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="_1191">
<inState>8</inState>
<outState>9</outState>
<condition>
<id>223</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="_1192">
<inState>9</inState>
<outState>10</outState>
<condition>
<id>224</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="_1193">
<inState>10</inState>
<outState>11</outState>
<condition>
<id>225</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="_1194">
<inState>11</inState>
<outState>12</outState>
<condition>
<id>226</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
</transitions>
</fsm>
<res class_id="-1"></res>
<node_label_latency class_id="35" tracking_level="0" version="0">
<count>258</count>
<item_version>0</item_version>
<item class_id="36" tracking_level="0" version="0">
<first>2</first>
<second class_id="37" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>3</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>4</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>5</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>6</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>7</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>8</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>9</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>10</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>11</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>12</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>13</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>14</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>15</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>16</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>17</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>20</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>21</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>22</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>23</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>24</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>25</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>26</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>27</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>28</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>29</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>30</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>31</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>32</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>33</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>34</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>35</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>36</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>37</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>39</first>
<second>
<first>2</first>
<second>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>46</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>49</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>50</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>51</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>52</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>53</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>54</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>55</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>56</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>57</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>58</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>59</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>60</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>61</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>62</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>63</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>64</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>65</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>66</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>67</first>
<second>
<first>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>70</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>71</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>72</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>73</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>74</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>75</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>76</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>77</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>78</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>79</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>80</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>81</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>82</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>83</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>84</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>85</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>86</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>87</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>88</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>89</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>90</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>91</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>92</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>93</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>94</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>95</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>96</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>97</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>98</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>99</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>100</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>101</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>102</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>103</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>104</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>105</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>106</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>107</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>108</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>109</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>110</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>111</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>112</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>113</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>114</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>115</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>116</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>117</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>118</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>119</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>120</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>121</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>122</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>123</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>124</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>125</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>126</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>127</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>128</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>129</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>130</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>131</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>132</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>133</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>134</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>135</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>136</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>137</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>138</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>139</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>140</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>141</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>142</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>143</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>144</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>145</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>146</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>147</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>148</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>149</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>150</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>151</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>152</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>153</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>154</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>155</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>156</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>157</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>158</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>159</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>160</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>161</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>162</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>163</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>164</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>165</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>166</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>167</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>168</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>169</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>170</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>171</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>172</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>173</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>174</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>175</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>176</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>177</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>178</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>179</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>180</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>181</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>182</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>183</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>184</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>185</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>186</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>187</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>188</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>189</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>190</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>191</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>192</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>193</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>194</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>195</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>196</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>197</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>198</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>199</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>200</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>201</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>202</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>203</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>204</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>205</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>206</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>207</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>208</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>209</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>210</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>211</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>212</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>213</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>214</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>215</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>216</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>217</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>218</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>219</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>220</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>221</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>222</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>223</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>224</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>225</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>226</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>227</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>228</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>229</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>230</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>231</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>232</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>233</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>234</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>235</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>236</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>237</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>238</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>239</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>240</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>241</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>242</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>243</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>244</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>245</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>246</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>247</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>248</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>249</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>250</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>251</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>252</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>253</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>254</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>255</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>256</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>257</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>258</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>259</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="38" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="39" tracking_level="0" version="0">
<first>260</first>
<second class_id="40" tracking_level="0" version="0">
<first>0</first>
<second>11</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="_1195">
<region_name>fxp_sqrt</region_name>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>260</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>12</pipe_depth>
</item>
</regions>
<dp_fu_nodes class_id="43" tracking_level="0" version="0">
<count>257</count>
<item_version>0</item_version>
<item class_id="44" tracking_level="0" version="0">
<first>280</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>2</item>
</second>
</item>
<item>
<first>286</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>3</item>
</second>
</item>
<item>
<first>296</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>4</item>
</second>
</item>
<item>
<first>300</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>5</item>
</second>
</item>
<item>
<first>306</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>6</item>
</second>
</item>
<item>
<first>316</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>7</item>
</second>
</item>
<item>
<first>324</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>330</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>338</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>346</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>353</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>359</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>367</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>373</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>380</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>386</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>392</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>398</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>404</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>412</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>420</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>427</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>434</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>22</item>
</second>
</item>
<item>
<first>441</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>447</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>452</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
<item>
<first>460</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>466</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
<item>
<first>472</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>480</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</second>
</item>
<item>
<first>486</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>492</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>499</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>506</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>514</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>520</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>528</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>534</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>542</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>548</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>554</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>562</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>568</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>574</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>582</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>590</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>598</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>605</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>611</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>616</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>624</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>630</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>636</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>54</item>
</second>
</item>
<item>
<first>643</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>649</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>655</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>662</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>669</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>677</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>683</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>691</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>62</item>
</second>
</item>
<item>
<first>697</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>705</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>711</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>717</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>725</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>731</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>737</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>745</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>70</item>
</second>
</item>
<item>
<first>753</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>761</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>768</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>774</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>779</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>787</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>793</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>799</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>806</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
<item>
<first>812</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>818</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>825</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>832</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>840</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>846</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>854</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>86</item>
</second>
</item>
<item>
<first>860</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>868</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>88</item>
</second>
</item>
<item>
<first>874</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
<item>
<first>880</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>888</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
<item>
<first>894</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>92</item>
</second>
</item>
<item>
<first>900</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>93</item>
</second>
</item>
<item>
<first>908</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>916</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>924</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>931</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>96</item>
</second>
</item>
<item>
<first>937</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>942</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>950</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>956</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>101</item>
</second>
</item>
<item>
<first>962</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>969</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>975</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>981</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>988</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>995</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>107</item>
</second>
</item>
<item>
<first>1003</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>108</item>
</second>
</item>
<item>
<first>1009</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>1017</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</second>
</item>
<item>
<first>1023</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>111</item>
</second>
</item>
<item>
<first>1031</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>1037</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>113</item>
</second>
</item>
<item>
<first>1043</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</second>
</item>
<item>
<first>1051</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
<item>
<first>1057</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>116</item>
</second>
</item>
<item>
<first>1063</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>117</item>
</second>
</item>
<item>
<first>1071</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>118</item>
</second>
</item>
<item>
<first>1079</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</second>
</item>
<item>
<first>1087</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>119</item>
</second>
</item>
<item>
<first>1094</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>120</item>
</second>
</item>
<item>
<first>1100</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>122</item>
</second>
</item>
<item>
<first>1105</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>123</item>
</second>
</item>
<item>
<first>1113</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>124</item>
</second>
</item>
<item>
<first>1119</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>125</item>
</second>
</item>
<item>
<first>1125</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>126</item>
</second>
</item>
<item>
<first>1132</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>127</item>
</second>
</item>
<item>
<first>1138</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>128</item>
</second>
</item>
<item>
<first>1144</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>129</item>
</second>
</item>
<item>
<first>1151</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>130</item>
</second>
</item>
<item>
<first>1158</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>131</item>
</second>
</item>
<item>
<first>1166</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>132</item>
</second>
</item>
<item>
<first>1172</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>133</item>
</second>
</item>
<item>
<first>1180</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>134</item>
</second>
</item>
<item>
<first>1186</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>135</item>
</second>
</item>
<item>
<first>1194</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>136</item>
</second>
</item>
<item>
<first>1200</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>137</item>
</second>
</item>
<item>
<first>1206</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>138</item>
</second>
</item>
<item>
<first>1214</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>139</item>
</second>
</item>
<item>
<first>1220</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>140</item>
</second>
</item>
<item>
<first>1226</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>141</item>
</second>
</item>
<item>
<first>1234</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>142</item>
</second>
</item>
<item>
<first>1242</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>145</item>
</second>
</item>
<item>
<first>1250</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>143</item>
</second>
</item>
<item>
<first>1257</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>144</item>
</second>
</item>
<item>
<first>1263</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>146</item>
</second>
</item>
<item>
<first>1268</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>147</item>
</second>
</item>
<item>
<first>1276</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>148</item>
</second>
</item>
<item>
<first>1282</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>149</item>
</second>
</item>
<item>
<first>1288</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>150</item>
</second>
</item>
<item>
<first>1295</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>151</item>
</second>
</item>
<item>
<first>1301</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>152</item>
</second>
</item>
<item>
<first>1307</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>153</item>
</second>
</item>
<item>
<first>1314</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>154</item>
</second>
</item>
<item>
<first>1321</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>155</item>
</second>
</item>
<item>
<first>1329</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>156</item>
</second>
</item>
<item>
<first>1335</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>157</item>
</second>
</item>
<item>
<first>1343</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>158</item>
</second>
</item>
<item>
<first>1349</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>159</item>
</second>
</item>
<item>
<first>1357</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>160</item>
</second>
</item>
<item>
<first>1363</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>161</item>
</second>
</item>
<item>
<first>1369</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>162</item>
</second>
</item>
<item>
<first>1377</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>163</item>
</second>
</item>
<item>
<first>1383</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>164</item>
</second>
</item>
<item>
<first>1389</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>165</item>
</second>
</item>
<item>
<first>1397</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>166</item>
</second>
</item>
<item>
<first>1405</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>169</item>
</second>
</item>
<item>
<first>1413</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>167</item>
</second>
</item>
<item>
<first>1420</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>168</item>
</second>
</item>
<item>
<first>1426</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>170</item>
</second>
</item>
<item>
<first>1431</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>171</item>
</second>
</item>
<item>
<first>1439</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>172</item>
</second>
</item>
<item>
<first>1445</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>173</item>
</second>
</item>
<item>
<first>1451</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>174</item>
</second>
</item>
<item>
<first>1458</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>175</item>
</second>
</item>
<item>
<first>1464</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>176</item>
</second>
</item>
<item>
<first>1470</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>177</item>
</second>
</item>
<item>
<first>1477</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>178</item>
</second>
</item>
<item>
<first>1484</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>179</item>
</second>
</item>
<item>
<first>1492</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>180</item>
</second>
</item>
<item>
<first>1498</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>181</item>
</second>
</item>
<item>
<first>1506</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>182</item>
</second>
</item>
<item>
<first>1512</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>183</item>
</second>
</item>
<item>
<first>1520</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>184</item>
</second>
</item>
<item>
<first>1526</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>185</item>
</second>
</item>
<item>
<first>1532</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>186</item>
</second>
</item>
<item>
<first>1540</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>187</item>
</second>
</item>
<item>
<first>1546</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>188</item>
</second>
</item>
<item>
<first>1552</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>189</item>
</second>
</item>
<item>
<first>1560</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>190</item>
</second>
</item>
<item>
<first>1568</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>193</item>
</second>
</item>
<item>
<first>1576</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>191</item>
</second>
</item>
<item>
<first>1583</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>192</item>
</second>
</item>
<item>
<first>1589</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>194</item>
</second>
</item>
<item>
<first>1594</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>195</item>
</second>
</item>
<item>
<first>1602</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>196</item>
</second>
</item>
<item>
<first>1608</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>197</item>
</second>
</item>
<item>
<first>1614</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>198</item>
</second>
</item>
<item>
<first>1621</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>199</item>
</second>
</item>
<item>
<first>1627</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>200</item>
</second>
</item>
<item>
<first>1633</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>201</item>
</second>
</item>
<item>
<first>1640</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>202</item>
</second>
</item>
<item>
<first>1647</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>203</item>
</second>
</item>
<item>
<first>1655</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>204</item>
</second>
</item>
<item>
<first>1661</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>205</item>
</second>
</item>
<item>
<first>1669</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>206</item>
</second>
</item>
<item>
<first>1675</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>207</item>
</second>
</item>
<item>
<first>1683</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>208</item>
</second>
</item>
<item>
<first>1689</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>209</item>
</second>
</item>
<item>
<first>1695</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>210</item>
</second>
</item>
<item>
<first>1703</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>211</item>
</second>
</item>
<item>
<first>1709</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>212</item>
</second>
</item>
<item>
<first>1715</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>213</item>
</second>
</item>
<item>
<first>1723</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>214</item>
</second>
</item>
<item>
<first>1731</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>217</item>
</second>
</item>
<item>
<first>1739</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>215</item>
</second>
</item>
<item>
<first>1746</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>216</item>
</second>
</item>
<item>
<first>1752</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>218</item>
</second>
</item>
<item>
<first>1757</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>219</item>
</second>
</item>
<item>
<first>1765</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>220</item>
</second>
</item>
<item>
<first>1771</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>221</item>
</second>
</item>
<item>
<first>1777</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>222</item>
</second>
</item>
<item>
<first>1784</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>223</item>
</second>
</item>
<item>
<first>1790</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>224</item>
</second>
</item>
<item>
<first>1796</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>225</item>
</second>
</item>
<item>
<first>1803</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>226</item>
</second>
</item>
<item>
<first>1810</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>227</item>
</second>
</item>
<item>
<first>1818</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>228</item>
</second>
</item>
<item>
<first>1824</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>229</item>
</second>
</item>
<item>
<first>1832</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>230</item>
</second>
</item>
<item>
<first>1838</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>231</item>
</second>
</item>
<item>
<first>1846</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>232</item>
</second>
</item>
<item>
<first>1852</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>233</item>
</second>
</item>
<item>
<first>1858</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>234</item>
</second>
</item>
<item>
<first>1866</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>235</item>
</second>
</item>
<item>
<first>1872</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>236</item>
</second>
</item>
<item>
<first>1878</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>237</item>
</second>
</item>
<item>
<first>1886</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>238</item>
</second>
</item>
<item>
<first>1894</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>241</item>
</second>
</item>
<item>
<first>1902</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>239</item>
</second>
</item>
<item>
<first>1909</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>240</item>
</second>
</item>
<item>
<first>1915</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>242</item>
</second>
</item>
<item>
<first>1920</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>243</item>
</second>
</item>
<item>
<first>1928</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>244</item>
</second>
</item>
<item>
<first>1934</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>245</item>
</second>
</item>
<item>
<first>1940</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>246</item>
</second>
</item>
<item>
<first>1947</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>247</item>
</second>
</item>
<item>
<first>1953</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>248</item>
</second>
</item>
<item>
<first>1959</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>249</item>
</second>
</item>
<item>
<first>1966</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>250</item>
</second>
</item>
<item>
<first>1970</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>251</item>
</second>
</item>
<item>
<first>1975</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>252</item>
</second>
</item>
<item>
<first>1982</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>253</item>
</second>
</item>
<item>
<first>1990</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>254</item>
</second>
</item>
<item>
<first>1996</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>255</item>
</second>
</item>
<item>
<first>2002</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>256</item>
</second>
</item>
<item>
<first>2008</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>257</item>
</second>
</item>
<item>
<first>2018</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>258</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="46" tracking_level="0" version="0">
<count>256</count>
<item_version>0</item_version>
<item class_id="47" tracking_level="0" version="0">
<first>p_0305_1_in_in_2_fu_434</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>22</item>
</second>
</item>
<item>
<first>p_0353_1_10_fu_1144</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>129</item>
</second>
</item>
<item>
<first>p_0353_1_11_fu_1226</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>141</item>
</second>
</item>
<item>
<first>p_0353_1_12_fu_1307</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>153</item>
</second>
</item>
<item>
<first>p_0353_1_13_fu_1389</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>165</item>
</second>
</item>
<item>
<first>p_0353_1_14_fu_1470</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>177</item>
</second>
</item>
<item>
<first>p_0353_1_15_fu_1552</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>189</item>
</second>
</item>
<item>
<first>p_0353_1_16_fu_1633</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>201</item>
</second>
</item>
<item>
<first>p_0353_1_17_fu_1715</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>213</item>
</second>
</item>
<item>
<first>p_0353_1_18_fu_1796</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>225</item>
</second>
</item>
<item>
<first>p_0353_1_19_fu_1878</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>237</item>
</second>
</item>
<item>
<first>p_0353_1_1_fu_353</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>p_0353_1_20_fu_1959</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>249</item>
</second>
</item>
<item>
<first>p_0353_1_2_fu_404</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>p_0353_1_3_fu_492</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>p_0353_1_4_fu_574</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>p_0353_1_5_fu_655</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>p_0353_1_6_fu_737</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>p_0353_1_7_fu_818</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>p_0353_1_8_fu_900</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>93</item>
</second>
</item>
<item>
<first>p_0353_1_9_fu_981</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>p_0353_1_fu_324</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>p_0353_1_s_fu_1063</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>117</item>
</second>
</item>
<item>
<first>p_s_fu_420</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>q_V_1_10_fu_1166</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>132</item>
</second>
</item>
<item>
<first>q_V_1_11_fu_1257</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>144</item>
</second>
</item>
<item>
<first>q_V_1_12_fu_1329</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>156</item>
</second>
</item>
<item>
<first>q_V_1_13_fu_1420</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>168</item>
</second>
</item>
<item>
<first>q_V_1_14_fu_1492</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>180</item>
</second>
</item>
<item>
<first>q_V_1_15_fu_1583</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>192</item>
</second>
</item>
<item>
<first>q_V_1_16_fu_1655</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>204</item>
</second>
</item>
<item>
<first>q_V_1_17_fu_1746</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>216</item>
</second>
</item>
<item>
<first>q_V_1_18_fu_1818</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>228</item>
</second>
</item>
<item>
<first>q_V_1_19_fu_1909</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>240</item>
</second>
</item>
<item>
<first>q_V_1_1_fu_427</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>q_V_1_20_fu_1990</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>254</item>
</second>
</item>
<item>
<first>q_V_1_2_fu_441</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>q_V_1_3_fu_514</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>q_V_1_4_fu_605</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>q_V_1_5_fu_677</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>q_V_1_6_fu_768</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>q_V_1_7_fu_840</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>q_V_1_8_fu_931</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>96</item>
</second>
</item>
<item>
<first>q_V_1_9_fu_1003</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>108</item>
</second>
</item>
<item>
<first>q_V_1_s_fu_1094</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>120</item>
</second>
</item>
<item>
<first>q_V_fu_2002</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>256</item>
</second>
</item>
<item>
<first>q_star_V_10_fu_1321</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>155</item>
</second>
</item>
<item>
<first>q_star_V_11_fu_1413</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>167</item>
</second>
</item>
<item>
<first>q_star_V_12_fu_1484</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>179</item>
</second>
</item>
<item>
<first>q_star_V_13_fu_1576</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>191</item>
</second>
</item>
<item>
<first>q_star_V_14_fu_1647</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>203</item>
</second>
</item>
<item>
<first>q_star_V_15_fu_1739</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>215</item>
</second>
</item>
<item>
<first>q_star_V_16_fu_1810</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>227</item>
</second>
</item>
<item>
<first>q_star_V_17_fu_1902</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>239</item>
</second>
</item>
<item>
<first>q_star_V_18_fu_1982</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>253</item>
</second>
</item>
<item>
<first>q_star_V_1_fu_1158</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>131</item>
</second>
</item>
<item>
<first>q_star_V_2_fu_1250</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>143</item>
</second>
</item>
<item>
<first>q_star_V_3_fu_506</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>q_star_V_4_fu_598</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>q_star_V_5_fu_669</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>q_star_V_6_fu_761</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>q_star_V_7_fu_832</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>q_star_V_8_fu_924</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>q_star_V_9_fu_995</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>107</item>
</second>
</item>
<item>
<first>q_star_V_s_fu_1087</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>119</item>
</second>
</item>
<item>
<first>r_V_1_1_fu_1349</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>159</item>
</second>
</item>
<item>
<first>r_V_1_2_fu_1431</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>171</item>
</second>
</item>
<item>
<first>r_V_1_3_fu_1512</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>183</item>
</second>
</item>
<item>
<first>r_V_1_4_fu_1594</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>195</item>
</second>
</item>
<item>
<first>r_V_1_5_fu_1675</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>207</item>
</second>
</item>
<item>
<first>r_V_1_6_fu_1757</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>219</item>
</second>
</item>
<item>
<first>r_V_1_7_fu_1838</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>231</item>
</second>
</item>
<item>
<first>r_V_1_8_fu_1920</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>243</item>
</second>
</item>
<item>
<first>r_V_1_s_fu_1268</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>147</item>
</second>
</item>
<item>
<first>r_V_2_10_fu_1928</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>244</item>
</second>
</item>
<item>
<first>r_V_2_1_fu_1105</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>123</item>
</second>
</item>
<item>
<first>r_V_2_2_fu_1186</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>135</item>
</second>
</item>
<item>
<first>r_V_2_3_fu_452</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
<item>
<first>r_V_2_4_fu_534</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>r_V_2_5_fu_616</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>r_V_2_6_fu_697</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>r_V_2_7_fu_779</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>r_V_2_8_fu_860</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>r_V_2_9_fu_942</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>r_V_2_s_fu_1023</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>111</item>
</second>
</item>
<item>
<first>r_V_3_1_fu_1369</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>162</item>
</second>
</item>
<item>
<first>r_V_3_2_fu_1451</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>174</item>
</second>
</item>
<item>
<first>r_V_3_3_fu_1532</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>186</item>
</second>
</item>
<item>
<first>r_V_3_4_fu_1614</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>198</item>
</second>
</item>
<item>
<first>r_V_3_5_fu_1695</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>210</item>
</second>
</item>
<item>
<first>r_V_3_6_fu_1777</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>222</item>
</second>
</item>
<item>
<first>r_V_3_7_fu_1858</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>234</item>
</second>
</item>
<item>
<first>r_V_3_8_fu_1940</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>246</item>
</second>
</item>
<item>
<first>r_V_3_s_fu_1288</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>150</item>
</second>
</item>
<item>
<first>r_V_4_10_fu_1947</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>247</item>
</second>
</item>
<item>
<first>r_V_4_1_fu_1125</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>126</item>
</second>
</item>
<item>
<first>r_V_4_2_fu_1206</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>138</item>
</second>
</item>
<item>
<first>r_V_4_3_fu_472</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>r_V_4_4_fu_554</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>r_V_4_5_fu_636</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>54</item>
</second>
</item>
<item>
<first>r_V_4_6_fu_717</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>r_V_4_7_fu_799</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>r_V_4_8_fu_880</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>r_V_4_9_fu_962</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>r_V_4_s_fu_1043</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</second>
</item>
<item>
<first>s_V_1_10_fu_1200</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>137</item>
</second>
</item>
<item>
<first>s_V_1_11_fu_1282</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>149</item>
</second>
</item>
<item>
<first>s_V_1_12_fu_1363</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>161</item>
</second>
</item>
<item>
<first>s_V_1_13_fu_1445</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>173</item>
</second>
</item>
<item>
<first>s_V_1_14_fu_1526</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>185</item>
</second>
</item>
<item>
<first>s_V_1_15_fu_1608</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>197</item>
</second>
</item>
<item>
<first>s_V_1_16_fu_1689</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>209</item>
</second>
</item>
<item>
<first>s_V_1_17_fu_1771</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>221</item>
</second>
</item>
<item>
<first>s_V_1_18_fu_1852</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>233</item>
</second>
</item>
<item>
<first>s_V_1_19_fu_1934</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>245</item>
</second>
</item>
<item>
<first>s_V_1_1_fu_1119</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>125</item>
</second>
</item>
<item>
<first>s_V_1_2_fu_386</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>s_V_1_3_fu_466</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
<item>
<first>s_V_1_4_fu_548</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>s_V_1_5_fu_630</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>s_V_1_6_fu_711</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>s_V_1_7_fu_793</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>s_V_1_8_fu_874</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
<item>
<first>s_V_1_9_fu_956</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>101</item>
</second>
</item>
<item>
<first>s_V_1_s_fu_1037</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>113</item>
</second>
</item>
<item>
<first>s_V_2_10_fu_1220</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>140</item>
</second>
</item>
<item>
<first>s_V_2_11_fu_1301</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>152</item>
</second>
</item>
<item>
<first>s_V_2_12_fu_1383</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>164</item>
</second>
</item>
<item>
<first>s_V_2_13_fu_1464</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>176</item>
</second>
</item>
<item>
<first>s_V_2_14_fu_1546</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>188</item>
</second>
</item>
<item>
<first>s_V_2_15_fu_1627</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>200</item>
</second>
</item>
<item>
<first>s_V_2_16_fu_1709</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>212</item>
</second>
</item>
<item>
<first>s_V_2_17_fu_1790</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>224</item>
</second>
</item>
<item>
<first>s_V_2_18_fu_1872</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>236</item>
</second>
</item>
<item>
<first>s_V_2_19_fu_1953</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>248</item>
</second>
</item>
<item>
<first>s_V_2_1_fu_1138</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>128</item>
</second>
</item>
<item>
<first>s_V_2_2_fu_398</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>s_V_2_3_fu_486</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>s_V_2_4_fu_568</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>s_V_2_5_fu_649</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>s_V_2_6_fu_731</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>s_V_2_7_fu_812</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>s_V_2_8_fu_894</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>92</item>
</second>
</item>
<item>
<first>s_V_2_9_fu_975</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>s_V_2_s_fu_1057</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>116</item>
</second>
</item>
<item>
<first>tmp1_fu_392</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>tmp_10_10_fu_1276</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>148</item>
</second>
</item>
<item>
<first>tmp_10_11_fu_1357</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>160</item>
</second>
</item>
<item>
<first>tmp_10_12_fu_1439</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>172</item>
</second>
</item>
<item>
<first>tmp_10_13_fu_1520</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>184</item>
</second>
</item>
<item>
<first>tmp_10_14_fu_1602</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>196</item>
</second>
</item>
<item>
<first>tmp_10_15_fu_1683</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>208</item>
</second>
</item>
<item>
<first>tmp_10_16_fu_1765</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>220</item>
</second>
</item>
<item>
<first>tmp_10_17_fu_1846</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>232</item>
</second>
</item>
<item>
<first>tmp_10_1_fu_1113</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>124</item>
</second>
</item>
<item>
<first>tmp_10_2_fu_1194</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>136</item>
</second>
</item>
<item>
<first>tmp_10_3_fu_460</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>tmp_10_4_fu_542</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>tmp_10_5_fu_624</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>tmp_10_6_fu_705</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>tmp_10_7_fu_787</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>tmp_10_8_fu_868</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>88</item>
</second>
</item>
<item>
<first>tmp_10_9_fu_950</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>tmp_10_fu_338</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>tmp_10_s_fu_1031</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>tmp_11_fu_582</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>tmp_12_fu_412</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>tmp_13_10_fu_1295</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>151</item>
</second>
</item>
<item>
<first>tmp_13_11_fu_1377</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>163</item>
</second>
</item>
<item>
<first>tmp_13_12_fu_1458</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>175</item>
</second>
</item>
<item>
<first>tmp_13_13_fu_1540</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>187</item>
</second>
</item>
<item>
<first>tmp_13_14_fu_1621</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>199</item>
</second>
</item>
<item>
<first>tmp_13_15_fu_1703</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>211</item>
</second>
</item>
<item>
<first>tmp_13_16_fu_1784</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>223</item>
</second>
</item>
<item>
<first>tmp_13_17_fu_1866</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>235</item>
</second>
</item>
<item>
<first>tmp_13_1_fu_1132</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>127</item>
</second>
</item>
<item>
<first>tmp_13_2_fu_1214</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>139</item>
</second>
</item>
<item>
<first>tmp_13_3_fu_480</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</second>
</item>
<item>
<first>tmp_13_4_fu_562</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>tmp_13_5_fu_643</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>tmp_13_6_fu_725</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>tmp_13_7_fu_806</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
<item>
<first>tmp_13_8_fu_888</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
<item>
<first>tmp_13_9_fu_969</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>tmp_13_fu_662</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>tmp_13_s_fu_1051</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
<item>
<first>tmp_14_fu_447</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>tmp_15_fu_745</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>70</item>
</second>
</item>
<item>
<first>tmp_16_fu_520</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>tmp_17_fu_825</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>tmp_18_fu_528</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>tmp_19_fu_908</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>tmp_1_fu_1996</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>255</item>
</second>
</item>
<item>
<first>tmp_20_fu_590</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>tmp_21_fu_988</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>tmp_22_fu_611</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>tmp_23_fu_1071</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>118</item>
</second>
</item>
<item>
<first>tmp_24_fu_683</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>tmp_25_fu_1151</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>130</item>
</second>
</item>
<item>
<first>tmp_26_fu_691</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>62</item>
</second>
</item>
<item>
<first>tmp_27_fu_1234</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>142</item>
</second>
</item>
<item>
<first>tmp_28_fu_753</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>tmp_29_fu_1314</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>154</item>
</second>
</item>
<item>
<first>tmp_2_fu_373</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>tmp_30_fu_774</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>tmp_31_fu_1397</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>166</item>
</second>
</item>
<item>
<first>tmp_32_fu_846</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>tmp_33_fu_1477</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>178</item>
</second>
</item>
<item>
<first>tmp_34_fu_854</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>86</item>
</second>
</item>
<item>
<first>tmp_35_fu_1560</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>190</item>
</second>
</item>
<item>
<first>tmp_36_fu_916</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>tmp_37_fu_1640</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>202</item>
</second>
</item>
<item>
<first>tmp_38_fu_937</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>tmp_39_fu_1723</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>214</item>
</second>
</item>
<item>
<first>tmp_3_1_fu_346</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>tmp_3_fu_316</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>7</item>
</second>
</item>
<item>
<first>tmp_40_fu_1009</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>tmp_41_fu_1803</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>226</item>
</second>
</item>
<item>
<first>tmp_42_fu_1017</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</second>
</item>
<item>
<first>tmp_43_fu_1886</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>238</item>
</second>
</item>
<item>
<first>tmp_44_fu_1079</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</second>
</item>
<item>
<first>tmp_45_fu_1100</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>122</item>
</second>
</item>
<item>
<first>tmp_46_fu_1172</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>133</item>
</second>
</item>
<item>
<first>tmp_47_fu_1180</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>134</item>
</second>
</item>
<item>
<first>tmp_48_fu_1975</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>252</item>
</second>
</item>
<item>
<first>tmp_49_fu_2008</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>257</item>
</second>
</item>
<item>
<first>tmp_4_fu_380</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>tmp_50_fu_2018</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>258</item>
</second>
</item>
<item>
<first>tmp_51_fu_1242</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>145</item>
</second>
</item>
<item>
<first>tmp_52_fu_1263</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>146</item>
</second>
</item>
<item>
<first>tmp_53_fu_1335</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>157</item>
</second>
</item>
<item>
<first>tmp_54_fu_1343</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>158</item>
</second>
</item>
<item>
<first>tmp_55_fu_1405</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>169</item>
</second>
</item>
<item>
<first>tmp_56_fu_1426</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>170</item>
</second>
</item>
<item>
<first>tmp_57_fu_1498</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>181</item>
</second>
</item>
<item>
<first>tmp_58_fu_1506</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>182</item>
</second>
</item>
<item>
<first>tmp_59_fu_1568</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>193</item>
</second>
</item>
<item>
<first>tmp_5_fu_306</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>6</item>
</second>
</item>
<item>
<first>tmp_60_fu_1589</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>194</item>
</second>
</item>
<item>
<first>tmp_61_fu_1661</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>205</item>
</second>
</item>
<item>
<first>tmp_62_fu_1669</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>206</item>
</second>
</item>
<item>
<first>tmp_63_fu_1731</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>217</item>
</second>
</item>
<item>
<first>tmp_64_fu_1752</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>218</item>
</second>
</item>
<item>
<first>tmp_65_fu_1824</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>229</item>
</second>
</item>
<item>
<first>tmp_66_fu_1832</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>230</item>
</second>
</item>
<item>
<first>tmp_67_fu_1894</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>241</item>
</second>
</item>
<item>
<first>tmp_68_fu_1915</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>242</item>
</second>
</item>
<item>
<first>tmp_69_fu_1966</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>250</item>
</second>
</item>
<item>
<first>tmp_6_fu_330</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>tmp_70_fu_1970</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>251</item>
</second>
</item>
<item>
<first>tmp_7_fu_359</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>tmp_8_fu_367</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>tmp_9_fu_499</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>tmp_cast_fu_296</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>4</item>
</second>
</item>
<item>
<first>tmp_fu_286</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>3</item>
</second>
</item>
<item>
<first>tmp_s_fu_300</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>5</item>
</second>
</item>
</dp_fu_nodes_expression>
<dp_fu_nodes_module>
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_module>
<dp_fu_nodes_io>
<count>1</count>
<item_version>0</item_version>
<item>
<first>in_val_V_read_1_read_fu_280</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>2</item>
</second>
</item>
</dp_fu_nodes_io>
<return_ports>
<count>0</count>
<item_version>0</item_version>
</return_ports>
<dp_mem_port_nodes class_id="48" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>33</count>
<item_version>0</item_version>
<item>
<first>2026</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>2031</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>2037</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>2042</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>2047</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>2052</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>2058</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>2063</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>2069</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>2075</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>2080</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>70</item>
</second>
</item>
<item>
<first>2086</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>2092</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>93</item>
</second>
</item>
<item>
<first>2097</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>2103</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>2109</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>117</item>
</second>
</item>
<item>
<first>2114</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>118</item>
</second>
</item>
<item>
<first>2120</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</second>
</item>
<item>
<first>2126</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>141</item>
</second>
</item>
<item>
<first>2131</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>142</item>
</second>
</item>
<item>
<first>2137</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>145</item>
</second>
</item>
<item>
<first>2143</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>165</item>
</second>
</item>
<item>
<first>2148</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>166</item>
</second>
</item>
<item>
<first>2154</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>169</item>
</second>
</item>
<item>
<first>2160</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>189</item>
</second>
</item>
<item>
<first>2165</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>190</item>
</second>
</item>
<item>
<first>2171</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>193</item>
</second>
</item>
<item>
<first>2177</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>213</item>
</second>
</item>
<item>
<first>2182</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>214</item>
</second>
</item>
<item>
<first>2188</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>217</item>
</second>
</item>
<item>
<first>2194</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>237</item>
</second>
</item>
<item>
<first>2199</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>238</item>
</second>
</item>
<item>
<first>2206</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>241</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>33</count>
<item_version>0</item_version>
<item>
<first>p_0353_1_11_reg_2126</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>141</item>
</second>
</item>
<item>
<first>p_0353_1_13_reg_2143</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>165</item>
</second>
</item>
<item>
<first>p_0353_1_15_reg_2160</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>189</item>
</second>
</item>
<item>
<first>p_0353_1_17_reg_2177</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>213</item>
</second>
</item>
<item>
<first>p_0353_1_19_reg_2194</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>237</item>
</second>
</item>
<item>
<first>p_0353_1_2_reg_2047</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>p_0353_1_4_reg_2058</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>p_0353_1_6_reg_2075</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>p_0353_1_8_reg_2092</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>93</item>
</second>
</item>
<item>
<first>p_0353_1_reg_2026</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>p_0353_1_s_reg_2109</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>117</item>
</second>
</item>
<item>
<first>tmp_10_reg_2037</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>tmp_11_reg_2063</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>tmp_12_reg_2052</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>tmp_15_reg_2080</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>70</item>
</second>
</item>
<item>
<first>tmp_19_reg_2097</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>tmp_20_reg_2069</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>tmp_23_reg_2114</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>118</item>
</second>
</item>
<item>
<first>tmp_27_reg_2131</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>142</item>
</second>
</item>
<item>
<first>tmp_28_reg_2086</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>tmp_31_reg_2148</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>166</item>
</second>
</item>
<item>
<first>tmp_35_reg_2165</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>190</item>
</second>
</item>
<item>
<first>tmp_36_reg_2103</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>tmp_39_reg_2182</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>214</item>
</second>
</item>
<item>
<first>tmp_43_reg_2199</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>238</item>
</second>
</item>
<item>
<first>tmp_44_reg_2120</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</second>
</item>
<item>
<first>tmp_51_reg_2137</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>145</item>
</second>
</item>
<item>
<first>tmp_55_reg_2154</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>169</item>
</second>
</item>
<item>
<first>tmp_59_reg_2171</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>193</item>
</second>
</item>
<item>
<first>tmp_63_reg_2188</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>217</item>
</second>
</item>
<item>
<first>tmp_67_reg_2206</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>241</item>
</second>
</item>
<item>
<first>tmp_6_reg_2031</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>tmp_7_reg_2042</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</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="49" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="50" tracking_level="0" version="0">
<first>in_val_V_read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>2</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core class_id="51" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
|
-- Copyright 2016-2019 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
package body Pck is
procedure Do_Nothing (A : System.Address) is
begin
null;
end Do_Nothing;
end Pck;
|
--------------------------------------------------------------------------------------------------------------------
-- 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 SDL.C_Pointers;
package body SDL.Inputs.Mice.Cursors is
use type SDL.C_Pointers.Cursor_Pointer;
procedure Create_System_Cursor (Self : in out Cursor; Cursor_Name : System_Cursors) is
function SDL_Create_System_Cursor (Cursor_Name : in System_Cursors) return SDL.C_Pointers.Cursor_Pointer with
Import => True,
Convention => C,
External_Name => "SDL_CreateSystemCursor";
begin
Self.Internal := SDL_Create_System_Cursor (Cursor_Name);
Self.Owns := True;
end Create_System_Cursor;
procedure Get_Cursor (Self : in out Cursor) is
function SDL_Get_Cursor return SDL.C_Pointers.Cursor_Pointer with
Import => True,
Convention => C,
External_Name => "SDL_GetCursor";
begin
Self.Internal := SDL_Get_Cursor;
Self.Owns := False;
end Get_Cursor;
procedure Set_Cursor (Self : in Cursor) is
procedure SDL_Set_Cursor (C : in SDL.C_Pointers.Cursor_Pointer) with
Import => True,
Convention => C,
External_Name => "SDL_SetCursor";
begin
SDL_Set_Cursor (Self.Internal);
end Set_Cursor;
overriding
procedure Finalize (Self : in out Cursor) is
procedure SDL_Free_Cursor (C : in SDL.C_Pointers.Cursor_Pointer) with
Import => True,
Convention => C,
External_Name => "SDL_FreeCursor";
begin
if Self.Internal /= null and then Self.Owns then
SDL_Free_Cursor (Self.Internal);
end if;
end Finalize;
end SDL.Inputs.Mice.Cursors;
|
-- This file is generated by SWIG. Please do not modify by hand.
--
with Interfaces;
with swig;
with Interfaces.C;
with Interfaces.C.Pointers;
package xcb.xcb_query_colors_reply_t is
-- Item
--
type Item is record
response_type : aliased Interfaces.Unsigned_8;
pad0 : aliased Interfaces.Unsigned_8;
sequence : aliased Interfaces.Unsigned_16;
length : aliased Interfaces.Unsigned_32;
colors_len : aliased Interfaces.Unsigned_16;
pad1 : aliased swig.int8_t_Array (0 .. 21);
end record;
-- Item_Array
--
type Item_Array is
array
(Interfaces.C.size_t range <>) of aliased xcb.xcb_query_colors_reply_t
.Item;
-- Pointer
--
package C_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_query_colors_reply_t.Item,
Element_Array => xcb.xcb_query_colors_reply_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_query_colors_reply_t
.Pointer;
-- Pointer_Pointer
--
package C_Pointer_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_query_colors_reply_t.Pointer,
Element_Array => xcb.xcb_query_colors_reply_t.Pointer_Array,
Default_Terminator => null);
subtype Pointer_Pointer is C_Pointer_Pointers.Pointer;
end xcb.xcb_query_colors_reply_t;
|
{"type":"mixer","drafts":[{"gen_name":"","ud_name":"","id":16516768194,"pattern":[[{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":12,"is_set":false,"is_up":false},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":false,"is_up":false},{"poles":5,"is_set":false,"is_up":false},{"poles":5,"is_set":false,"is_up":false},{"poles":3,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false}],[{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":6,"is_set":false,"is_up":false},{"poles":5,"is_set":false,"is_up":false},{"poles":5,"is_set":false,"is_up":false},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":9,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false}],[{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":12,"is_set":false,"is_up":false},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":false,"is_up":false},{"poles":5,"is_set":false,"is_up":false},{"poles":3,"is_set":false,"is_up":false}],[{"poles":0,"is_set":false,"is_up":false},{"poles":5,"is_set":false,"is_up":false},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":9,"is_set":false,"is_up":false}],[{"poles":0,"is_set":false,"is_up":false},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":false,"is_up":false}],[{"poles":0,"is_set":false,"is_up":false},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true}],[{"poles":0,"is_set":false,"is_up":false},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true}],[{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true}],[{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true}],[{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true}],[{"poles":0,"is_set":false,"is_up":false},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true}],[{"poles":0,"is_set":false,"is_up":false},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true}],[{"poles":0,"is_set":false,"is_up":false},{"poles":6,"is_set":false,"is_up":false},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":false,"is_up":false}],[{"poles":0,"is_set":false,"is_up":false},{"poles":12,"is_set":false,"is_up":false},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":3,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false}],[{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":6,"is_set":false,"is_up":false},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":false,"is_up":false},{"poles":9,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false}],[{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":12,"is_set":false,"is_up":false},{"poles":5,"is_set":false,"is_up":false},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":1,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false}]],"rowShuttleMapping":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"colShuttleMapping":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"rowShuttlePattern":[0],"colShuttlePattern":[0],"rowSystemMapping":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"colSystemMapping":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"rowSystemPattern":[0],"colSystemPattern":[0],"wefts":16,"warps":18},{"gen_name":"","ud_name":"","id":15320725586,"pattern":[[{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":12,"is_set":true,"is_up":false},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":false},{"poles":5,"is_set":true,"is_up":false},{"poles":5,"is_set":true,"is_up":false},{"poles":3,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false}],[{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":6,"is_set":true,"is_up":false},{"poles":5,"is_set":true,"is_up":false},{"poles":5,"is_set":true,"is_up":false},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":9,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false}],[{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":12,"is_set":true,"is_up":false},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":false},{"poles":5,"is_set":true,"is_up":false},{"poles":3,"is_set":true,"is_up":false}],[{"poles":0,"is_set":true,"is_up":false},{"poles":5,"is_set":true,"is_up":false},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":9,"is_set":true,"is_up":false}],[{"poles":0,"is_set":true,"is_up":false},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":false}],[{"poles":0,"is_set":true,"is_up":false},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true}],[{"poles":0,"is_set":true,"is_up":false},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true}],[{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true}],[{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true}],[{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true}],[{"poles":0,"is_set":true,"is_up":false},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true}],[{"poles":0,"is_set":true,"is_up":false},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true}],[{"poles":0,"is_set":true,"is_up":false},{"poles":6,"is_set":true,"is_up":false},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":false}],[{"poles":0,"is_set":true,"is_up":false},{"poles":12,"is_set":true,"is_up":false},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":3,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false}],[{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":6,"is_set":true,"is_up":false},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":false},{"poles":9,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false}],[{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":12,"is_set":true,"is_up":false},{"poles":5,"is_set":true,"is_up":false},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":5,"is_set":true,"is_up":true},{"poles":1,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false}]],"rowShuttleMapping":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"colShuttleMapping":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"rowShuttlePattern":[0],"colShuttlePattern":[0],"rowSystemMapping":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"colSystemMapping":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"rowSystemPattern":[0],"colSystemPattern":[0],"wefts":16,"warps":18},{"gen_name":"","ud_name":"Circle","id":2133720230,"pattern":[[{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false}],[{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":false,"is_up":false}],[{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":false,"is_up":false}],[{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true}],[{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true}],[{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true}],[{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true}],[{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true}],[{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":false,"is_up":false}],[{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false}]],"rowShuttleMapping":[1,1,1,1,1,1,1,1,1,1],"colShuttleMapping":[0,0,0,0,0,0,0,0,0,0],"rowShuttlePattern":[0],"colShuttlePattern":[0],"rowSystemMapping":[0,0,0,0,0,0,0,0,0,0],"colSystemMapping":[0,0,0,0,0,0,0,0,0,0],"rowSystemPattern":[0],"colSystemPattern":[0],"wefts":10,"warps":10},{"gen_name":"","ud_name":"","id":13553179110,"pattern":[[{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false}],[{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false}],[{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false}],[{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":false,"is_up":false}],[{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":false,"is_up":false}],[{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true}],[{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true}],[{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true}],[{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true}],[{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true}],[{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true}],[{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true}],[{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":false,"is_up":false}],[{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":false,"is_up":false}],[{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false}],[{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false},{"poles":0,"is_set":false,"is_up":false}]],"rowShuttleMapping":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"colShuttleMapping":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"rowShuttlePattern":[0],"colShuttlePattern":[0],"rowSystemMapping":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"colSystemMapping":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"rowSystemPattern":[0],"colSystemPattern":[0],"wefts":16,"warps":16},{"gen_name":" copy","ud_name":"Color Map","id":7618331104,"pattern":[[{"poles":0,"is_set":true,"is_up":false}]],"rowShuttleMapping":[3],"colShuttleMapping":[0],"rowShuttlePattern":[1,2,0,2],"colShuttlePattern":[2,2,0,0],"rowSystemMapping":[0],"colSystemMapping":[0],"rowSystemPattern":[0,0,0,0],"colSystemPattern":[0,0,0,0],"wefts":1,"warps":1},{"gen_name":"","ud_name":"Color Repeats","id":23748102130,"pattern":[[{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false}],[{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false}],[{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false}],[{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false}]],"rowShuttleMapping":[1,2,0,2],"colShuttleMapping":[2,2,0,0],"rowShuttlePattern":[0],"colShuttlePattern":[0],"rowSystemMapping":[0,0,0,0],"colSystemMapping":[0,0,0,0],"rowSystemPattern":[0],"colSystemPattern":[0],"wefts":4,"warps":4}],"looms":[{"draft_id":16516768194,"type":"jacquard","epi":10,"units":"in","threading":[2,0,4,5,6,8,8,8,8,9,9,8,8,7,6,4,3,1],"min_frames":8,"num_frames":10,"frame_mapping":[9,8,7,6,5,4,3,2,1,0],"treadling":[0,1,2,3,4,5,5,6,6,6,5,5,3,7,8,9],"min_treadles":10,"num_treadles":10,"tieup":[[false,false,false,false,true,true,true,false,false,false],[false,false,false,false,false,true,true,false,false,false],[false,false,false,false,false,false,true,false,false,false],[false,false,false,true,true,true,true,false,false,false],[false,false,false,true,true,true,true,true,false,false],[false,false,true,true,true,true,true,true,false,false],[false,false,true,true,true,true,true,true,true,false],[false,true,true,true,true,true,true,true,true,false],[false,true,true,true,true,true,true,true,true,true],[true,true,true,true,true,true,true,true,true,true]],"width":1.8},{"draft_id":15320725586,"type":"jacquard","epi":10,"units":"in","threading":[2,0,4,5,6,8,8,8,8,9,9,8,8,7,6,4,3,1],"min_frames":8,"num_frames":10,"frame_mapping":[9,8,7,6,5,4,3,2,1,0],"treadling":[0,1,2,3,4,5,5,6,6,6,5,5,3,7,8,9],"min_treadles":10,"num_treadles":10,"tieup":[[false,false,false,false,true,true,true,false,false,false],[false,false,false,false,false,true,true,false,false,false],[false,false,false,false,false,false,true,false,false,false],[false,false,false,true,true,true,true,false,false,false],[false,false,false,true,true,true,true,true,false,false],[false,false,true,true,true,true,true,true,false,false],[false,false,true,true,true,true,true,true,true,false],[false,true,true,true,true,true,true,true,true,false],[false,true,true,true,true,true,true,true,true,true],[true,true,true,true,true,true,true,true,true,true]],"width":1.8},{"draft_id":2133720230,"type":"jacquard","epi":10,"units":"in","threading":[2,0,4,4,5,5,4,4,3,1],"min_frames":8,"num_frames":8,"frame_mapping":[7,6,5,4,3,2,1,0],"treadling":[0,1,2,3,4,4,4,3,2,5],"min_treadles":10,"num_treadles":10,"tieup":[[false,false,true,true,true,false,false,false,false,false],[false,false,false,true,true,false,false,false,false,false],[false,false,false,false,true,false,false,false,false,false],[false,true,true,true,true,false,false,false,false,false],[false,true,true,true,true,true,false,false,false,false],[true,true,true,true,true,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]],"width":1},{"draft_id":13553179110,"type":"jacquard","epi":10,"units":"in","threading":[2,0,3,4,5,6,6,7,7,7,6,6,5,4,3,1],"min_frames":8,"num_frames":8,"frame_mapping":[7,6,5,4,3,2,1,0],"treadling":[0,1,2,3,4,5,5,6,6,6,5,5,4,3,2,7],"min_treadles":10,"num_treadles":10,"tieup":[[false,false,false,false,true,true,true,false,false,false],[false,false,false,false,false,true,true,false,false,false],[false,false,false,false,false,false,true,false,false,false],[false,false,false,true,true,true,true,false,false,false],[false,false,true,true,true,true,true,false,false,false],[false,true,true,true,true,true,true,false,false,false],[false,true,true,true,true,true,true,true,false,false],[true,true,true,true,true,true,true,true,false,false]],"width":1.6},{"draft_id":7618331104,"type":"jacquard","epi":10,"units":"in","threading":[-1],"min_frames":8,"num_frames":8,"frame_mapping":[7,6,5,4,3,2,1,0],"treadling":[-1],"min_treadles":10,"num_treadles":10,"tieup":[[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]],"width":0.1},{"draft_id":23748102130,"type":"jacquard","epi":10,"units":"in","threading":[-1,-1,-1,-1],"min_frames":8,"num_frames":8,"frame_mapping":[7,6,5,4,3,2,1,0],"treadling":[-1,-1,-1,-1],"min_treadles":10,"num_treadles":10,"tieup":[[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]],"width":0.4}],"patterns":[{"favorite":true,"id":0,"name":"Tabby","pattern":[[{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":true}],[{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":false}]],"height":2,"width":2},{"favorite":false,"id":1,"name":"Balanced Twill","pattern":[[{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true}],[{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":false}],[{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false}],[{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":true}]],"height":4,"width":4},{"favorite":false,"id":2,"name":"Weft-Faced Twill","pattern":[[{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":true}],[{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":false}],[{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false}]],"height":3,"width":3},{"favorite":false,"id":3,"name":"Warp-Faced Twill","pattern":[[{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":false}],[{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":true}],[{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true}]],"height":3,"width":3},{"favorite":true,"id":4,"name":"Double Weave","pattern":[[{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":false}],[{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false}],[{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":true}],[{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":false},{"poles":0,"is_set":true,"is_up":true},{"poles":0,"is_set":true,"is_up":false}]],"height":4,"width":4},{"favorite":true,"id":5,"name":"Heddles Down","pattern":[[{"poles":0,"is_set":true,"is_up":false}]],"height":1,"width":1},{"favorite":true,"id":6,"name":"Heddles Up","pattern":[[{"poles":0,"is_set":true,"is_up":true}]],"height":1,"width":1}],"nodes":[{"node_id":13099207184,"type":"op","bounds":{"topleft":{"x":325,"y":410},"width":200,"height":140},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":6225011159,"type":"draft","bounds":{"topleft":{"x":325,"y":550},"width":50,"height":50},"draft_id":6225011159,"draft_name":"","draft_visible":true},{"node_id":407226247,"type":"cxn","bounds":{"topleft":{"x":325,"y":550},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":24249116100,"type":"op","bounds":{"topleft":{"x":325,"y":90},"width":200,"height":180},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":209136130186,"type":"draft","bounds":{"topleft":{"x":325,"y":270},"width":20,"height":10},"draft_id":209136130186,"draft_name":"Rib","draft_visible":true},{"node_id":1487186126,"type":"cxn","bounds":{"topleft":{"x":325,"y":270},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":169132242171,"type":"op","bounds":{"topleft":{"x":625,"y":90},"width":200,"height":180},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":2915955202,"type":"draft","bounds":{"topleft":{"x":625,"y":270},"width":20,"height":20},"draft_id":2915955202,"draft_name":"Twill","draft_visible":true},{"node_id":1671123785,"type":"cxn","bounds":{"topleft":{"x":625,"y":270},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":14620618121,"type":"op","bounds":{"topleft":{"x":915,"y":95},"width":200,"height":140},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":2541108192,"type":"draft","bounds":{"topleft":{"x":915,"y":235},"width":25,"height":25},"draft_id":2541108192,"draft_name":"Satin","draft_visible":true},{"node_id":5220460209,"type":"cxn","bounds":{"topleft":{"x":915,"y":235},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":65210143227,"type":"op","bounds":{"topleft":{"x":1185,"y":95},"width":200,"height":100},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":16611981190,"type":"draft","bounds":{"topleft":{"x":1185,"y":195},"width":10,"height":10},"draft_id":16611981190,"draft_name":"Tabby","draft_visible":true},{"node_id":87108144,"type":"cxn","bounds":{"topleft":{"x":1185,"y":195},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":200221222,"type":"op","bounds":{"topleft":{"x":1445,"y":95},"width":200,"height":140},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":21213424254,"type":"draft","bounds":{"topleft":{"x":1445,"y":235},"width":20,"height":20},"draft_id":21213424254,"draft_name":"Basket","draft_visible":true},{"node_id":909521278,"type":"cxn","bounds":{"topleft":{"x":1445,"y":235},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":16443127230,"type":"op","bounds":{"topleft":{"x":1720,"y":85},"width":200,"height":180},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":1214223590,"type":"draft","bounds":{"topleft":{"x":1720,"y":265},"width":30,"height":30},"draft_id":1214223590,"draft_name":"Random","draft_visible":true},{"node_id":90252196230,"type":"cxn","bounds":{"topleft":{"x":1720,"y":265},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":254765134,"type":"cxn","bounds":{"topleft":{"x":325,"y":280},"width":2,"height":132},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":22024123674,"type":"op","bounds":{"topleft":{"x":930,"y":395},"width":200,"height":140},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":424820750,"type":"draft","bounds":{"topleft":{"x":930,"y":535},"width":50,"height":50},"draft_id":424820750,"draft_name":"","draft_visible":true},{"node_id":1483411465,"type":"cxn","bounds":{"topleft":{"x":930,"y":535},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":2431948169,"type":"cxn","bounds":{"topleft":{"x":915,"y":260},"width":17,"height":137},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":234252121174,"type":"op","bounds":{"topleft":{"x":2000,"y":410},"width":200,"height":140},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":4780120154,"type":"draft","bounds":{"topleft":{"x":2000,"y":550},"width":50,"height":50},"draft_id":4780120154,"draft_name":"","draft_visible":true},{"node_id":1401044569,"type":"cxn","bounds":{"topleft":{"x":2000,"y":550},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":202181200220,"type":"cxn","bounds":{"topleft":{"x":1720,"y":295},"width":282,"height":117},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":2303837246,"type":"op","bounds":{"topleft":{"x":320,"y":675},"width":200,"height":100},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":113870,"type":"op","bounds":{"topleft":{"x":595,"y":680},"width":200,"height":100},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":6247189219,"type":"cxn","bounds":{"topleft":{"x":320,"y":600},"width":7,"height":77},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":58184132117,"type":"draft","bounds":{"topleft":{"x":320,"y":775},"width":50,"height":50},"draft_id":58184132117,"draft_name":"","draft_visible":true},{"node_id":23119148247,"type":"cxn","bounds":{"topleft":{"x":320,"y":775},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":15420817436,"type":"cxn","bounds":{"topleft":{"x":325,"y":600},"width":272,"height":82},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":104137210188,"type":"draft","bounds":{"topleft":{"x":595,"y":780},"width":50,"height":50},"draft_id":104137210188,"draft_name":"","draft_visible":true},{"node_id":181248119233,"type":"cxn","bounds":{"topleft":{"x":595,"y":780},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":96218130234,"type":"op","bounds":{"topleft":{"x":1160,"y":695},"width":200,"height":60},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":1652240169,"type":"draft","bounds":{"topleft":{"x":1160,"y":755},"width":50,"height":50},"draft_id":1652240169,"draft_name":"Satin - V Flip","draft_visible":true},{"node_id":1482242547,"type":"cxn","bounds":{"topleft":{"x":1160,"y":755},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":87109172182,"type":"op","bounds":{"topleft":{"x":1710,"y":690},"width":200,"height":140},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":10711340252,"type":"op","bounds":{"topleft":{"x":1415,"y":690},"width":200,"height":140},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":223147107218,"type":"draft","bounds":{"topleft":{"x":1415,"y":830},"width":40,"height":40},"draft_id":223147107218,"draft_name":"","draft_visible":true},{"node_id":1189232198,"type":"cxn","bounds":{"topleft":{"x":1415,"y":830},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":249185142230,"type":"draft","bounds":{"topleft":{"x":1710,"y":830},"width":80,"height":80},"draft_id":249185142230,"draft_name":"","draft_visible":true},{"node_id":182161238182,"type":"cxn","bounds":{"topleft":{"x":1710,"y":830},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":12399121127,"type":"op","bounds":{"topleft":{"x":1990,"y":690},"width":200,"height":140},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":2322372184,"type":"draft","bounds":{"topleft":{"x":1990,"y":830},"width":40,"height":40},"draft_id":2322372184,"draft_name":"Resized Random","draft_visible":true},{"node_id":12725121,"type":"cxn","bounds":{"topleft":{"x":1990,"y":830},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":951118063,"type":"op","bounds":{"topleft":{"x":2285,"y":695},"width":200,"height":60},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":7022111846,"type":"cxn","bounds":{"topleft":{"x":2000,"y":600},"width":287,"height":97},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":2241038349,"type":"draft","bounds":{"topleft":{"x":2285,"y":755},"width":50,"height":50},"draft_id":2241038349,"draft_name":"","draft_visible":true},{"node_id":8095158150,"type":"cxn","bounds":{"topleft":{"x":2285,"y":755},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":1362514149,"type":"op","bounds":{"topleft":{"x":2525,"y":695},"width":200,"height":60},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":1252495131,"type":"cxn","bounds":{"topleft":{"x":2000,"y":600},"width":527,"height":97},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":25570162201,"type":"draft","bounds":{"topleft":{"x":2525,"y":755},"width":50,"height":50},"draft_id":25570162201,"draft_name":"","draft_visible":true},{"node_id":496611748,"type":"cxn","bounds":{"topleft":{"x":2525,"y":755},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":787157102,"type":"op","bounds":{"topleft":{"x":2790,"y":695},"width":200,"height":60},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":201179138123,"type":"cxn","bounds":{"topleft":{"x":2000,"y":600},"width":792,"height":97},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":1941717421,"type":"draft","bounds":{"topleft":{"x":2790,"y":755},"width":50,"height":50},"draft_id":1941717421,"draft_name":"","draft_visible":true},{"node_id":22425417452,"type":"cxn","bounds":{"topleft":{"x":2790,"y":755},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":16516768194,"type":"draft","bounds":{"topleft":{"x":3160,"y":485},"width":90,"height":80},"draft_id":16516768194,"draft_name":"","draft_visible":true},{"node_id":98102160208,"type":"op","bounds":{"topleft":{"x":3355,"y":700},"width":200,"height":100},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":15320725586,"type":"draft","bounds":{"topleft":{"x":3375,"y":480},"width":90,"height":80},"draft_id":15320725586,"draft_name":"","draft_visible":true},{"node_id":210110232218,"type":"cxn","bounds":{"topleft":{"x":3355,"y":560},"width":22,"height":142},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":74224236223,"type":"draft","bounds":{"topleft":{"x":3355,"y":760},"width":90,"height":80},"draft_id":74224236223,"draft_name":"","draft_visible":true},{"node_id":19970139249,"type":"cxn","bounds":{"topleft":{"x":3355,"y":760},"width":2,"height":42},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":1893215418,"type":"op","bounds":{"topleft":{"x":375,"y":1050},"width":200,"height":60},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":821355273,"type":"draft","bounds":{"topleft":{"x":375,"y":1110},"width":50,"height":100},"draft_id":821355273,"draft_name":"","draft_visible":true},{"node_id":116178123254,"type":"cxn","bounds":{"topleft":{"x":375,"y":1110},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":20610614295,"type":"cxn","bounds":{"topleft":{"x":320,"y":825},"width":57,"height":227},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":202271719,"type":"op","bounds":{"topleft":{"x":730,"y":1060},"width":200,"height":60},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":14996155194,"type":"draft","bounds":{"topleft":{"x":730,"y":1120},"width":100,"height":100},"draft_id":14996155194,"draft_name":"","draft_visible":true},{"node_id":2423513196,"type":"cxn","bounds":{"topleft":{"x":730,"y":1120},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":245183567,"type":"cxn","bounds":{"topleft":{"x":595,"y":830},"width":137,"height":232},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":23264496,"type":"op","bounds":{"topleft":{"x":1115,"y":1060},"width":200,"height":60},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":42216170101,"type":"draft","bounds":{"topleft":{"x":1115,"y":1120},"width":100,"height":50},"draft_id":42216170101,"draft_name":"","draft_visible":true},{"node_id":53250109151,"type":"cxn","bounds":{"topleft":{"x":1115,"y":1120},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":801091054,"type":"cxn","bounds":{"topleft":{"x":1115,"y":805},"width":47,"height":257},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":7925232201,"type":"op","bounds":{"topleft":{"x":1525,"y":1065},"width":200,"height":60},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":231104232189,"type":"draft","bounds":{"topleft":{"x":1525,"y":1125},"width":80,"height":120},"draft_id":231104232189,"draft_name":"","draft_visible":true},{"node_id":22424217640,"type":"cxn","bounds":{"topleft":{"x":1525,"y":1125},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":23610170110,"type":"cxn","bounds":{"topleft":{"x":1525,"y":910},"width":187,"height":157},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":1841713593,"type":"cxn","bounds":{"topleft":{"x":1525,"y":870},"width":467,"height":197},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":916694145,"type":"op","bounds":{"topleft":{"x":395,"y":1315},"width":200,"height":180},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":3456198156,"type":"draft","bounds":{"topleft":{"x":395,"y":1495},"width":20,"height":20},"draft_id":3456198156,"draft_name":"Twill","draft_visible":false},{"node_id":234161124252,"type":"cxn","bounds":{"topleft":{"x":395,"y":1495},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":202154134107,"type":"op","bounds":{"topleft":{"x":730,"y":1345},"width":200,"height":140},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":2232522787,"type":"draft","bounds":{"topleft":{"x":730,"y":1485},"width":35,"height":35},"draft_id":2232522787,"draft_name":"Basket","draft_visible":false},{"node_id":10022713329,"type":"cxn","bounds":{"topleft":{"x":730,"y":1485},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":51189191185,"type":"op","bounds":{"topleft":{"x":395,"y":1545},"width":200,"height":140},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":7220261104,"type":"draft","bounds":{"topleft":{"x":395,"y":1685},"width":75,"height":75},"draft_id":7220261104,"draft_name":"","draft_visible":true},{"node_id":157228236249,"type":"cxn","bounds":{"topleft":{"x":395,"y":1685},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":19648101230,"type":"cxn","bounds":{"topleft":{"x":395,"y":1515},"width":2,"height":32},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":204195213250,"type":"op","bounds":{"topleft":{"x":730,"y":1540},"width":200,"height":140},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":5918834198,"type":"draft","bounds":{"topleft":{"x":730,"y":1680},"width":50,"height":50},"draft_id":5918834198,"draft_name":"","draft_visible":true},{"node_id":18748190111,"type":"cxn","bounds":{"topleft":{"x":730,"y":1680},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":3615520484,"type":"cxn","bounds":{"topleft":{"x":730,"y":1520},"width":2,"height":22},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":2072237485,"type":"op","bounds":{"topleft":{"x":375,"y":2470},"width":200,"height":100},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":36212143195,"type":"op","bounds":{"topleft":{"x":390,"y":2150},"width":200,"height":140},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":742898183,"type":"draft","bounds":{"topleft":{"x":390,"y":2290},"width":195,"height":75},"draft_id":742898183,"draft_name":"","draft_visible":true},{"node_id":52486253,"type":"cxn","bounds":{"topleft":{"x":390,"y":2290},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":1972791109,"type":"cxn","bounds":{"topleft":{"x":375,"y":2365},"width":17,"height":107},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":153173157180,"type":"draft","bounds":{"topleft":{"x":375,"y":2570},"width":240,"height":240},"draft_id":153173157180,"draft_name":"Germanified Basket Weave","draft_visible":true},{"node_id":8411121052,"type":"cxn","bounds":{"topleft":{"x":375,"y":2570},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":1692387107,"type":"op","bounds":{"topleft":{"x":775,"y":2480},"width":200,"height":100},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":66150285,"type":"cxn","bounds":{"topleft":{"x":390,"y":2365},"width":387,"height":117},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":154205150119,"type":"draft","bounds":{"topleft":{"x":775,"y":2580},"width":260,"height":260},"draft_id":154205150119,"draft_name":"Crackle-ified Basket Weave","draft_visible":true},{"node_id":764323234,"type":"cxn","bounds":{"topleft":{"x":775,"y":2580},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":18179110189,"type":"op","bounds":{"topleft":{"x":385,"y":3080},"width":200,"height":60},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":2191642095,"type":"cxn","bounds":{"topleft":{"x":385,"y":2840},"width":392,"height":242},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":1481015181,"type":"draft","bounds":{"topleft":{"x":385,"y":3140},"width":260,"height":260},"draft_id":1481015181,"draft_name":"","draft_visible":true},{"node_id":577910203,"type":"cxn","bounds":{"topleft":{"x":385,"y":3140},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":2231425961,"type":"draft","bounds":{"topleft":{"x":655,"y":3140},"width":260,"height":260},"draft_id":2231425961,"draft_name":"","draft_visible":true},{"node_id":212208112223,"type":"cxn","bounds":{"topleft":{"x":385,"y":3140},"width":272,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":96204254144,"type":"draft","bounds":{"topleft":{"x":925,"y":3140},"width":260,"height":260},"draft_id":96204254144,"draft_name":"","draft_visible":true},{"node_id":42169156187,"type":"cxn","bounds":{"topleft":{"x":385,"y":3140},"width":542,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":176176176223,"type":"op","bounds":{"topleft":{"x":1375,"y":3100},"width":200,"height":60},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":7783138100,"type":"cxn","bounds":{"topleft":{"x":385,"y":3100},"width":992,"height":302},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":95129135,"type":"cxn","bounds":{"topleft":{"x":655,"y":3100},"width":722,"height":302},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":20413615919,"type":"cxn","bounds":{"topleft":{"x":925,"y":3100},"width":452,"height":302},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":181239144213,"type":"draft","bounds":{"topleft":{"x":1375,"y":3160},"width":260,"height":260},"draft_id":181239144213,"draft_name":"","draft_visible":true},{"node_id":2231616090,"type":"cxn","bounds":{"topleft":{"x":1375,"y":3160},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":5714424697,"type":"op","bounds":{"topleft":{"x":285,"y":1840},"width":200,"height":140},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":208545493,"type":"op","bounds":{"topleft":{"x":725,"y":1835},"width":200,"height":140},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":98702835,"type":"op","bounds":{"topleft":{"x":1105,"y":1830},"width":200,"height":140},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":194104150167,"type":"op","bounds":{"topleft":{"x":1480,"y":1825},"width":200,"height":140},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":22417111106,"type":"cxn","bounds":{"topleft":{"x":285,"y":1760},"width":112,"height":82},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":23913252,"type":"draft","bounds":{"topleft":{"x":285,"y":1980},"width":75,"height":75},"draft_id":23913252,"draft_name":"","draft_visible":true},{"node_id":1421087162,"type":"cxn","bounds":{"topleft":{"x":285,"y":1980},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":218550125,"type":"cxn","bounds":{"topleft":{"x":285,"y":1730},"width":447,"height":112},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":221110518,"type":"cxn","bounds":{"topleft":{"x":395,"y":1760},"width":332,"height":77},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":204366114,"type":"draft","bounds":{"topleft":{"x":725,"y":1975},"width":75,"height":75},"draft_id":204366114,"draft_name":"","draft_visible":true},{"node_id":7820651159,"type":"cxn","bounds":{"topleft":{"x":725,"y":1975},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":25144103182,"type":"cxn","bounds":{"topleft":{"x":725,"y":1730},"width":7,"height":107},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":61181556,"type":"cxn","bounds":{"topleft":{"x":395,"y":1760},"width":712,"height":72},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":24218981201,"type":"draft","bounds":{"topleft":{"x":1105,"y":1970},"width":75,"height":75},"draft_id":24218981201,"draft_name":"","draft_visible":true},{"node_id":1632022914,"type":"cxn","bounds":{"topleft":{"x":1105,"y":1970},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":1102957200,"type":"cxn","bounds":{"topleft":{"x":730,"y":1730},"width":377,"height":102},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":125136136110,"type":"cxn","bounds":{"topleft":{"x":395,"y":1760},"width":1087,"height":67},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":1254299228,"type":"draft","bounds":{"topleft":{"x":1480,"y":1965},"width":75,"height":75},"draft_id":1254299228,"draft_name":"","draft_visible":true},{"node_id":197620188,"type":"cxn","bounds":{"topleft":{"x":1480,"y":1965},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":7413118317,"type":"cxn","bounds":{"topleft":{"x":730,"y":1730},"width":752,"height":97},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":2227111848,"type":"op","bounds":{"topleft":{"x":3090,"y":700},"width":200,"height":100},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":9323725193,"type":"cxn","bounds":{"topleft":{"x":3090,"y":565},"width":72,"height":137},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":23286101120,"type":"draft","bounds":{"topleft":{"x":3090,"y":800},"width":90,"height":80},"draft_id":23286101120,"draft_name":"","draft_visible":true},{"node_id":65240134196,"type":"cxn","bounds":{"topleft":{"x":3090,"y":800},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":684209114,"type":"op","bounds":{"topleft":{"x":620,"y":380},"width":200,"height":220},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":475510680,"type":"cxn","bounds":{"topleft":{"x":325,"y":380},"width":297,"height":222},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":2071828171,"type":"draft","bounds":{"topleft":{"x":620,"y":600},"width":35,"height":30},"draft_id":2071828171,"draft_name":"","draft_visible":true},{"node_id":3925263128,"type":"cxn","bounds":{"topleft":{"x":620,"y":600},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":5410672179,"type":"op","bounds":{"topleft":{"x":900,"y":700},"width":200,"height":60},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":16836158221,"type":"cxn","bounds":{"topleft":{"x":900,"y":585},"width":32,"height":117},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":8516722826,"type":"draft","bounds":{"topleft":{"x":900,"y":760},"width":50,"height":50},"draft_id":8516722826,"draft_name":"Satin - H Flip","draft_visible":true},{"node_id":51216273,"type":"cxn","bounds":{"topleft":{"x":900,"y":760},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":1113447,"type":"cxn","bounds":{"topleft":{"x":375,"y":810},"width":527,"height":242},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":136235133129,"type":"cxn","bounds":{"topleft":{"x":730,"y":810},"width":172,"height":252},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":13217862239,"type":"cxn","bounds":{"topleft":{"x":900,"y":810},"width":217,"height":252},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":5313824187,"type":"op","bounds":{"topleft":{"x":1190,"y":395},"width":200,"height":220},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":25102205112,"type":"cxn","bounds":{"topleft":{"x":1185,"y":205},"width":7,"height":192},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":56245131157,"type":"draft","bounds":{"topleft":{"x":1190,"y":615},"width":20,"height":20},"draft_id":56245131157,"draft_name":"","draft_visible":true},{"node_id":13521822141,"type":"cxn","bounds":{"topleft":{"x":1190,"y":615},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":1328209183,"type":"cxn","bounds":{"topleft":{"x":1190,"y":635},"width":227,"height":57},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":15915266154,"type":"op","bounds":{"topleft":{"x":1585,"y":400},"width":200,"height":140},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":12812824018,"type":"cxn","bounds":{"topleft":{"x":1445,"y":255},"width":142,"height":147},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":1657893,"type":"draft","bounds":{"topleft":{"x":1585,"y":540},"width":80,"height":80},"draft_id":1657893,"draft_name":"","draft_visible":true},{"node_id":140194150112,"type":"cxn","bounds":{"topleft":{"x":1585,"y":540},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":23160246141,"type":"cxn","bounds":{"topleft":{"x":1585,"y":620},"width":127,"height":72},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":19513225233,"type":"op","bounds":{"topleft":{"x":1870,"y":1055},"width":200,"height":100},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":152214181160,"type":"cxn","bounds":{"topleft":{"x":1710,"y":910},"width":162,"height":147},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":57143244186,"type":"draft","bounds":{"topleft":{"x":1870,"y":1155},"width":80,"height":130},"draft_id":57143244186,"draft_name":"","draft_visible":true},{"node_id":1346934156,"type":"cxn","bounds":{"topleft":{"x":1870,"y":1155},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":2133720230,"type":"draft","bounds":{"topleft":{"x":2130,"y":935},"width":50,"height":50},"draft_id":2133720230,"draft_name":"Circle","draft_visible":true},{"node_id":54668123,"type":"cxn","bounds":{"topleft":{"x":1870,"y":985},"width":262,"height":72},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":67134211211,"type":"cxn","bounds":{"topleft":{"x":285,"y":2055},"width":107,"height":97},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":17911317,"type":"op","bounds":{"topleft":{"x":390,"y":3520},"width":200,"height":180},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":4819651218,"type":"cxn","bounds":{"topleft":{"x":385,"y":3400},"width":7,"height":122},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":162176151237,"type":"draft","bounds":{"topleft":{"x":390,"y":3700},"width":520,"height":260},"draft_id":162176151237,"draft_name":"","draft_visible":true},{"node_id":1009810238,"type":"cxn","bounds":{"topleft":{"x":390,"y":3700},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":704423117,"type":"op","bounds":{"topleft":{"x":955,"y":3515},"width":200,"height":180},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":222225218183,"type":"cxn","bounds":{"topleft":{"x":655,"y":3400},"width":302,"height":117},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":2362305339,"type":"draft","bounds":{"topleft":{"x":955,"y":3695},"width":520,"height":260},"draft_id":2362305339,"draft_name":"","draft_visible":true},{"node_id":2131048796,"type":"cxn","bounds":{"topleft":{"x":955,"y":3695},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":198869795,"type":"op","bounds":{"topleft":{"x":385,"y":4025},"width":200,"height":140},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":11611934146,"type":"cxn","bounds":{"topleft":{"x":385,"y":3960},"width":7,"height":67},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":52140102208,"type":"draft","bounds":{"topleft":{"x":385,"y":4165},"width":520,"height":520},"draft_id":52140102208,"draft_name":"","draft_visible":true},{"node_id":17652207232,"type":"cxn","bounds":{"topleft":{"x":385,"y":4165},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":125243139122,"type":"op","bounds":{"topleft":{"x":960,"y":4020},"width":200,"height":140},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":96153193238,"type":"cxn","bounds":{"topleft":{"x":955,"y":3955},"width":7,"height":67},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":14822314111,"type":"draft","bounds":{"topleft":{"x":960,"y":4160},"width":520,"height":520},"draft_id":14822314111,"draft_name":"","draft_visible":true},{"node_id":22620316064,"type":"cxn","bounds":{"topleft":{"x":960,"y":4160},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":2321078280,"type":"op","bounds":{"topleft":{"x":685,"y":4780},"width":200,"height":140},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":12298156,"type":"cxn","bounds":{"topleft":{"x":385,"y":4685},"width":302,"height":97},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":773141134,"type":"draft","bounds":{"topleft":{"x":685,"y":4920},"width":520,"height":520},"draft_id":217240171192,"draft_name":"","draft_visible":true},{"node_id":252107105187,"type":"cxn","bounds":{"topleft":{"x":685,"y":4920},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":193818951,"type":"cxn","bounds":{"topleft":{"x":685,"y":4680},"width":277,"height":102},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":2228514266,"type":"op","bounds":{"topleft":{"x":1555,"y":4095},"width":200,"height":60},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":956142220,"type":"cxn","bounds":{"topleft":{"x":960,"y":4095},"width":597,"height":587},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":7820573120,"type":"draft","bounds":{"topleft":{"x":1555,"y":4155},"width":520,"height":260},"draft_id":7820573120,"draft_name":"","draft_visible":true},{"node_id":22310043126,"type":"cxn","bounds":{"topleft":{"x":1555,"y":4155},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":1842204769,"type":"op","bounds":{"topleft":{"x":2375,"y":1075},"width":200,"height":60},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":50189233170,"type":"draft","bounds":{"topleft":{"x":2375,"y":1135},"width":90,"height":80},"draft_id":50189233170,"draft_name":"","draft_visible":true},{"node_id":1634323329,"type":"cxn","bounds":{"topleft":{"x":2375,"y":1135},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":226104103213,"type":"cxn","bounds":{"topleft":{"x":2375,"y":880},"width":717,"height":197},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":160182123146,"type":"cxn","bounds":{"topleft":{"x":2285,"y":805},"width":92,"height":272},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":11246142238,"type":"op","bounds":{"topleft":{"x":2640,"y":835},"width":200,"height":100},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":1433196,"type":"draft","bounds":{"topleft":{"x":2640,"y":935},"width":10,"height":10},"draft_id":1433196,"draft_name":"","draft_visible":true},{"node_id":195245217165,"type":"cxn","bounds":{"topleft":{"x":2640,"y":935},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":81478792,"type":"cxn","bounds":{"topleft":{"x":2375,"y":945},"width":267,"height":132},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":19624016867,"type":"cxn","bounds":{"topleft":{"x":1990,"y":600},"width":12,"height":92},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":50242106106,"type":"cxn","bounds":{"topleft":{"x":930,"y":585},"width":232,"height":112},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":141189178229,"type":"op","bounds":{"topleft":{"x":570,"y":5885},"width":200,"height":60},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":217240171192,"type":"draft","bounds":{"topleft":{"x":570,"y":5945},"width":80,"height":80},"draft_id":217240171192,"draft_name":"Big Basket","draft_visible":true},{"node_id":1801351859,"type":"cxn","bounds":{"topleft":{"x":570,"y":5885},"width":2,"height":62},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":20425417385,"type":"op","bounds":{"topleft":{"x":575,"y":5560},"width":200,"height":140},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":403350135,"type":"draft","bounds":{"topleft":{"x":575,"y":5700},"width":80,"height":80},"draft_id":403350135,"draft_name":"Big Basket","draft_visible":true},{"node_id":1561063252,"type":"cxn","bounds":{"topleft":{"x":575,"y":5700},"width":2,"height":2},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":51301053,"type":"op","bounds":{"topleft":{"x":940,"y":5870},"width":200,"height":60},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":13553179110,"type":"draft","bounds":{"topleft":{"x":1220,"y":5585},"width":80,"height":80},"draft_id":13553179110,"draft_name":"","draft_visible":true},{"node_id":5531221240,"type":"op","bounds":{"topleft":{"x":940,"y":5555},"width":200,"height":180},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":13816207252,"type":"draft","bounds":{"topleft":{"x":940,"y":5735},"width":20,"height":20},"draft_id":21911523187,"draft_name":"Circle","draft_visible":true},{"node_id":7629164183,"type":"cxn","bounds":{"topleft":{"x":940,"y":5555},"width":2,"height":182},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":23497218197,"type":"cxn","bounds":{"topleft":{"x":940,"y":5555},"width":282,"height":112},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":41025687,"type":"cxn","bounds":{"topleft":{"x":940,"y":5755},"width":2,"height":117},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":21911523187,"type":"draft","bounds":{"topleft":{"x":940,"y":5930},"width":80,"height":80},"draft_id":21911523187,"draft_name":"","draft_visible":true},{"node_id":175245716,"type":"cxn","bounds":{"topleft":{"x":940,"y":5870},"width":2,"height":62},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":7618331104,"type":"draft","bounds":{"topleft":{"x":1160,"y":5770},"width":20,"height":20},"draft_id":7618331104,"draft_name":"Color Map","draft_visible":true},{"node_id":1972232140,"type":"cxn","bounds":{"topleft":{"x":940,"y":5790},"width":222,"height":82},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":184190128183,"type":"op","bounds":{"topleft":{"x":795,"y":6115},"width":200,"height":60},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":63199186202,"type":"cxn","bounds":{"topleft":{"x":570,"y":6025},"width":227,"height":92},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":57242112248,"type":"draft","bounds":{"topleft":{"x":795,"y":6175},"width":80,"height":80},"draft_id":57242112248,"draft_name":"","draft_visible":true},{"node_id":11620878150,"type":"cxn","bounds":{"topleft":{"x":795,"y":6115},"width":2,"height":62},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":247121213,"type":"cxn","bounds":{"topleft":{"x":795,"y":6010},"width":147,"height":107},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":110242157197,"type":"cxn","bounds":{"topleft":{"x":570,"y":5780},"width":7,"height":107},"draft_id":-1,"draft_name":"","draft_visible":true},{"node_id":23748102130,"type":"draft","bounds":{"topleft":{"x":725,"y":5815},"width":15,"height":15},"draft_id":23748102130,"draft_name":"Color Repeats","draft_visible":true},{"node_id":19332228247,"type":"cxn","bounds":{"topleft":{"x":570,"y":5830},"width":157,"height":57},"draft_id":-1,"draft_name":"","draft_visible":true}],"tree":[{"node":13099207184,"parent":-1,"inputs":[254765134],"outputs":[407226247]},{"node":6225011159,"parent":13099207184,"inputs":[407226247],"outputs":[6247189219,15420817436,475510680]},{"node":407226247,"parent":-1,"inputs":[13099207184],"outputs":[6225011159]},{"node":24249116100,"parent":-1,"inputs":[],"outputs":[1487186126]},{"node":209136130186,"parent":24249116100,"inputs":[1487186126],"outputs":[254765134]},{"node":1487186126,"parent":-1,"inputs":[24249116100],"outputs":[209136130186]},{"node":169132242171,"parent":-1,"inputs":[],"outputs":[1671123785]},{"node":2915955202,"parent":169132242171,"inputs":[1671123785],"outputs":[]},{"node":1671123785,"parent":-1,"inputs":[169132242171],"outputs":[2915955202]},{"node":14620618121,"parent":-1,"inputs":[],"outputs":[5220460209]},{"node":2541108192,"parent":14620618121,"inputs":[5220460209],"outputs":[2431948169]},{"node":5220460209,"parent":-1,"inputs":[14620618121],"outputs":[2541108192]},{"node":65210143227,"parent":-1,"inputs":[],"outputs":[87108144]},{"node":16611981190,"parent":65210143227,"inputs":[87108144],"outputs":[25102205112]},{"node":87108144,"parent":-1,"inputs":[65210143227],"outputs":[16611981190]},{"node":200221222,"parent":-1,"inputs":[],"outputs":[909521278]},{"node":21213424254,"parent":200221222,"inputs":[909521278],"outputs":[12812824018]},{"node":909521278,"parent":-1,"inputs":[200221222],"outputs":[21213424254]},{"node":16443127230,"parent":-1,"inputs":[],"outputs":[90252196230]},{"node":1214223590,"parent":16443127230,"inputs":[90252196230],"outputs":[202181200220]},{"node":90252196230,"parent":-1,"inputs":[16443127230],"outputs":[1214223590]},{"node":254765134,"parent":-1,"inputs":[209136130186],"outputs":[13099207184]},{"node":22024123674,"parent":-1,"inputs":[2431948169],"outputs":[1483411465]},{"node":424820750,"parent":22024123674,"inputs":[1483411465],"outputs":[16836158221,50242106106]},{"node":1483411465,"parent":-1,"inputs":[22024123674],"outputs":[424820750]},{"node":2431948169,"parent":-1,"inputs":[2541108192],"outputs":[22024123674]},{"node":234252121174,"parent":-1,"inputs":[202181200220],"outputs":[1401044569]},{"node":4780120154,"parent":234252121174,"inputs":[1401044569],"outputs":[7022111846,1252495131,201179138123,19624016867]},{"node":1401044569,"parent":-1,"inputs":[234252121174],"outputs":[4780120154]},{"node":202181200220,"parent":-1,"inputs":[1214223590],"outputs":[234252121174]},{"node":2303837246,"parent":-1,"inputs":[6247189219],"outputs":[23119148247]},{"node":113870,"parent":-1,"inputs":[15420817436],"outputs":[181248119233]},{"node":6247189219,"parent":-1,"inputs":[6225011159],"outputs":[2303837246]},{"node":58184132117,"parent":2303837246,"inputs":[23119148247],"outputs":[20610614295]},{"node":23119148247,"parent":-1,"inputs":[2303837246],"outputs":[58184132117]},{"node":15420817436,"parent":-1,"inputs":[6225011159],"outputs":[113870]},{"node":104137210188,"parent":113870,"inputs":[181248119233],"outputs":[245183567]},{"node":181248119233,"parent":-1,"inputs":[113870],"outputs":[104137210188]},{"node":96218130234,"parent":-1,"inputs":[50242106106],"outputs":[1482242547]},{"node":1652240169,"parent":96218130234,"inputs":[1482242547],"outputs":[801091054]},{"node":1482242547,"parent":-1,"inputs":[96218130234],"outputs":[1652240169]},{"node":87109172182,"parent":-1,"inputs":[23160246141],"outputs":[182161238182]},{"node":10711340252,"parent":-1,"inputs":[1328209183],"outputs":[1189232198]},{"node":223147107218,"parent":10711340252,"inputs":[1189232198],"outputs":[]},{"node":1189232198,"parent":-1,"inputs":[10711340252],"outputs":[223147107218]},{"node":249185142230,"parent":87109172182,"inputs":[182161238182],"outputs":[23610170110,152214181160]},{"node":182161238182,"parent":-1,"inputs":[87109172182],"outputs":[249185142230]},{"node":12399121127,"parent":-1,"inputs":[19624016867],"outputs":[12725121]},{"node":2322372184,"parent":12399121127,"inputs":[12725121],"outputs":[1841713593]},{"node":12725121,"parent":-1,"inputs":[12399121127],"outputs":[2322372184]},{"node":951118063,"parent":-1,"inputs":[7022111846],"outputs":[8095158150]},{"node":7022111846,"parent":-1,"inputs":[4780120154],"outputs":[951118063]},{"node":2241038349,"parent":951118063,"inputs":[8095158150],"outputs":[160182123146]},{"node":8095158150,"parent":-1,"inputs":[951118063],"outputs":[2241038349]},{"node":1362514149,"parent":-1,"inputs":[1252495131],"outputs":[496611748]},{"node":1252495131,"parent":-1,"inputs":[4780120154],"outputs":[1362514149]},{"node":25570162201,"parent":1362514149,"inputs":[496611748],"outputs":[]},{"node":496611748,"parent":-1,"inputs":[1362514149],"outputs":[25570162201]},{"node":787157102,"parent":-1,"inputs":[201179138123],"outputs":[22425417452]},{"node":201179138123,"parent":-1,"inputs":[4780120154],"outputs":[787157102]},{"node":1941717421,"parent":787157102,"inputs":[22425417452],"outputs":[]},{"node":22425417452,"parent":-1,"inputs":[787157102],"outputs":[1941717421]},{"node":16516768194,"parent":-1,"inputs":[],"outputs":[9323725193]},{"node":98102160208,"parent":-1,"inputs":[210110232218],"outputs":[19970139249]},{"node":15320725586,"parent":-1,"inputs":[],"outputs":[210110232218]},{"node":210110232218,"parent":-1,"inputs":[15320725586],"outputs":[98102160208]},{"node":74224236223,"parent":98102160208,"inputs":[19970139249],"outputs":[]},{"node":19970139249,"parent":-1,"inputs":[98102160208],"outputs":[74224236223]},{"node":1893215418,"parent":-1,"inputs":[20610614295,1113447],"outputs":[116178123254]},{"node":821355273,"parent":1893215418,"inputs":[116178123254],"outputs":[]},{"node":116178123254,"parent":-1,"inputs":[1893215418],"outputs":[821355273]},{"node":20610614295,"parent":-1,"inputs":[58184132117],"outputs":[1893215418]},{"node":202271719,"parent":-1,"inputs":[245183567,136235133129],"outputs":[2423513196]},{"node":14996155194,"parent":202271719,"inputs":[2423513196],"outputs":[]},{"node":2423513196,"parent":-1,"inputs":[202271719],"outputs":[14996155194]},{"node":245183567,"parent":-1,"inputs":[104137210188],"outputs":[202271719]},{"node":23264496,"parent":-1,"inputs":[801091054,13217862239],"outputs":[53250109151]},{"node":42216170101,"parent":23264496,"inputs":[53250109151],"outputs":[]},{"node":53250109151,"parent":-1,"inputs":[23264496],"outputs":[42216170101]},{"node":801091054,"parent":-1,"inputs":[1652240169],"outputs":[23264496]},{"node":7925232201,"parent":-1,"inputs":[23610170110,1841713593],"outputs":[22424217640]},{"node":231104232189,"parent":7925232201,"inputs":[22424217640],"outputs":[]},{"node":22424217640,"parent":-1,"inputs":[7925232201],"outputs":[231104232189]},{"node":23610170110,"parent":-1,"inputs":[249185142230],"outputs":[7925232201]},{"node":1841713593,"parent":-1,"inputs":[2322372184],"outputs":[7925232201]},{"node":916694145,"parent":-1,"inputs":[],"outputs":[234161124252]},{"node":3456198156,"parent":916694145,"inputs":[234161124252],"outputs":[19648101230]},{"node":234161124252,"parent":-1,"inputs":[916694145],"outputs":[3456198156]},{"node":202154134107,"parent":-1,"inputs":[],"outputs":[10022713329]},{"node":2232522787,"parent":202154134107,"inputs":[10022713329],"outputs":[3615520484]},{"node":10022713329,"parent":-1,"inputs":[202154134107],"outputs":[2232522787]},{"node":51189191185,"parent":-1,"inputs":[19648101230],"outputs":[157228236249]},{"node":7220261104,"parent":51189191185,"inputs":[157228236249],"outputs":[22417111106,221110518,61181556,125136136110]},{"node":157228236249,"parent":-1,"inputs":[51189191185],"outputs":[7220261104]},{"node":19648101230,"parent":-1,"inputs":[3456198156],"outputs":[51189191185]},{"node":204195213250,"parent":-1,"inputs":[3615520484],"outputs":[18748190111]},{"node":5918834198,"parent":204195213250,"inputs":[18748190111],"outputs":[218550125,25144103182,1102957200,7413118317]},{"node":18748190111,"parent":-1,"inputs":[204195213250],"outputs":[5918834198]},{"node":3615520484,"parent":-1,"inputs":[2232522787],"outputs":[204195213250]},{"node":2072237485,"parent":-1,"inputs":[1972791109],"outputs":[8411121052]},{"node":36212143195,"parent":-1,"inputs":[67134211211],"outputs":[52486253]},{"node":742898183,"parent":36212143195,"inputs":[52486253],"outputs":[1972791109,66150285]},{"node":52486253,"parent":-1,"inputs":[36212143195],"outputs":[742898183]},{"node":1972791109,"parent":-1,"inputs":[742898183],"outputs":[2072237485]},{"node":153173157180,"parent":2072237485,"inputs":[8411121052],"outputs":[]},{"node":8411121052,"parent":-1,"inputs":[2072237485],"outputs":[153173157180]},{"node":1692387107,"parent":-1,"inputs":[66150285],"outputs":[764323234]},{"node":66150285,"parent":-1,"inputs":[742898183],"outputs":[1692387107]},{"node":154205150119,"parent":1692387107,"inputs":[764323234],"outputs":[2191642095]},{"node":764323234,"parent":-1,"inputs":[1692387107],"outputs":[154205150119]},{"node":18179110189,"parent":-1,"inputs":[2191642095],"outputs":[577910203,212208112223,42169156187]},{"node":2191642095,"parent":-1,"inputs":[154205150119],"outputs":[18179110189]},{"node":1481015181,"parent":18179110189,"inputs":[577910203],"outputs":[7783138100,4819651218]},{"node":577910203,"parent":-1,"inputs":[18179110189],"outputs":[1481015181]},{"node":2231425961,"parent":18179110189,"inputs":[212208112223],"outputs":[95129135,222225218183]},{"node":212208112223,"parent":-1,"inputs":[18179110189],"outputs":[2231425961]},{"node":96204254144,"parent":18179110189,"inputs":[42169156187],"outputs":[20413615919]},{"node":42169156187,"parent":-1,"inputs":[18179110189],"outputs":[96204254144]},{"node":176176176223,"parent":-1,"inputs":[7783138100,95129135,20413615919],"outputs":[2231616090]},{"node":7783138100,"parent":-1,"inputs":[1481015181],"outputs":[176176176223]},{"node":95129135,"parent":-1,"inputs":[2231425961],"outputs":[176176176223]},{"node":20413615919,"parent":-1,"inputs":[96204254144],"outputs":[176176176223]},{"node":181239144213,"parent":176176176223,"inputs":[2231616090],"outputs":[]},{"node":2231616090,"parent":-1,"inputs":[176176176223],"outputs":[181239144213]},{"node":5714424697,"parent":-1,"inputs":[22417111106,218550125],"outputs":[1421087162]},{"node":208545493,"parent":-1,"inputs":[221110518,25144103182],"outputs":[7820651159]},{"node":98702835,"parent":-1,"inputs":[61181556,1102957200],"outputs":[1632022914]},{"node":194104150167,"parent":-1,"inputs":[125136136110,7413118317],"outputs":[197620188]},{"node":22417111106,"parent":-1,"inputs":[7220261104],"outputs":[5714424697]},{"node":23913252,"parent":5714424697,"inputs":[1421087162],"outputs":[67134211211]},{"node":1421087162,"parent":-1,"inputs":[5714424697],"outputs":[23913252]},{"node":218550125,"parent":-1,"inputs":[5918834198],"outputs":[5714424697]},{"node":221110518,"parent":-1,"inputs":[7220261104],"outputs":[208545493]},{"node":204366114,"parent":208545493,"inputs":[7820651159],"outputs":[]},{"node":7820651159,"parent":-1,"inputs":[208545493],"outputs":[204366114]},{"node":25144103182,"parent":-1,"inputs":[5918834198],"outputs":[208545493]},{"node":61181556,"parent":-1,"inputs":[7220261104],"outputs":[98702835]},{"node":24218981201,"parent":98702835,"inputs":[1632022914],"outputs":[]},{"node":1632022914,"parent":-1,"inputs":[98702835],"outputs":[24218981201]},{"node":1102957200,"parent":-1,"inputs":[5918834198],"outputs":[98702835]},{"node":125136136110,"parent":-1,"inputs":[7220261104],"outputs":[194104150167]},{"node":1254299228,"parent":194104150167,"inputs":[197620188],"outputs":[]},{"node":197620188,"parent":-1,"inputs":[194104150167],"outputs":[1254299228]},{"node":7413118317,"parent":-1,"inputs":[5918834198],"outputs":[194104150167]},{"node":2227111848,"parent":-1,"inputs":[9323725193],"outputs":[65240134196]},{"node":9323725193,"parent":-1,"inputs":[16516768194],"outputs":[2227111848]},{"node":23286101120,"parent":2227111848,"inputs":[65240134196],"outputs":[226104103213]},{"node":65240134196,"parent":-1,"inputs":[2227111848],"outputs":[23286101120]},{"node":684209114,"parent":-1,"inputs":[475510680],"outputs":[3925263128]},{"node":475510680,"parent":-1,"inputs":[6225011159],"outputs":[684209114]},{"node":2071828171,"parent":684209114,"inputs":[3925263128],"outputs":[]},{"node":3925263128,"parent":-1,"inputs":[684209114],"outputs":[2071828171]},{"node":5410672179,"parent":-1,"inputs":[16836158221],"outputs":[51216273]},{"node":16836158221,"parent":-1,"inputs":[424820750],"outputs":[5410672179]},{"node":8516722826,"parent":5410672179,"inputs":[51216273],"outputs":[1113447,136235133129,13217862239]},{"node":51216273,"parent":-1,"inputs":[5410672179],"outputs":[8516722826]},{"node":1113447,"parent":-1,"inputs":[8516722826],"outputs":[1893215418]},{"node":136235133129,"parent":-1,"inputs":[8516722826],"outputs":[202271719]},{"node":13217862239,"parent":-1,"inputs":[8516722826],"outputs":[23264496]},{"node":5313824187,"parent":-1,"inputs":[25102205112],"outputs":[13521822141]},{"node":25102205112,"parent":-1,"inputs":[16611981190],"outputs":[5313824187]},{"node":56245131157,"parent":5313824187,"inputs":[13521822141],"outputs":[1328209183]},{"node":13521822141,"parent":-1,"inputs":[5313824187],"outputs":[56245131157]},{"node":1328209183,"parent":-1,"inputs":[56245131157],"outputs":[10711340252]},{"node":15915266154,"parent":-1,"inputs":[12812824018],"outputs":[140194150112]},{"node":12812824018,"parent":-1,"inputs":[21213424254],"outputs":[15915266154]},{"node":1657893,"parent":15915266154,"inputs":[140194150112],"outputs":[23160246141]},{"node":140194150112,"parent":-1,"inputs":[15915266154],"outputs":[1657893]},{"node":23160246141,"parent":-1,"inputs":[1657893],"outputs":[87109172182]},{"node":19513225233,"parent":-1,"inputs":[152214181160,54668123],"outputs":[1346934156]},{"node":152214181160,"parent":-1,"inputs":[249185142230],"outputs":[19513225233]},{"node":57143244186,"parent":19513225233,"inputs":[1346934156],"outputs":[]},{"node":1346934156,"parent":-1,"inputs":[19513225233],"outputs":[57143244186]},{"node":2133720230,"parent":-1,"inputs":[],"outputs":[54668123]},{"node":54668123,"parent":-1,"inputs":[2133720230],"outputs":[19513225233]},{"node":67134211211,"parent":-1,"inputs":[23913252],"outputs":[36212143195]},{"node":17911317,"parent":-1,"inputs":[4819651218],"outputs":[1009810238]},{"node":4819651218,"parent":-1,"inputs":[1481015181],"outputs":[17911317]},{"node":162176151237,"parent":17911317,"inputs":[1009810238],"outputs":[11611934146]},{"node":1009810238,"parent":-1,"inputs":[17911317],"outputs":[162176151237]},{"node":704423117,"parent":-1,"inputs":[222225218183],"outputs":[2131048796]},{"node":222225218183,"parent":-1,"inputs":[2231425961],"outputs":[704423117]},{"node":2362305339,"parent":704423117,"inputs":[2131048796],"outputs":[96153193238]},{"node":2131048796,"parent":-1,"inputs":[704423117],"outputs":[2362305339]},{"node":198869795,"parent":-1,"inputs":[11611934146],"outputs":[17652207232]},{"node":11611934146,"parent":-1,"inputs":[162176151237],"outputs":[198869795]},{"node":52140102208,"parent":198869795,"inputs":[17652207232],"outputs":[12298156]},{"node":17652207232,"parent":-1,"inputs":[198869795],"outputs":[52140102208]},{"node":125243139122,"parent":-1,"inputs":[96153193238],"outputs":[22620316064]},{"node":96153193238,"parent":-1,"inputs":[2362305339],"outputs":[125243139122]},{"node":14822314111,"parent":125243139122,"inputs":[22620316064],"outputs":[193818951,956142220]},{"node":22620316064,"parent":-1,"inputs":[125243139122],"outputs":[14822314111]},{"node":2321078280,"parent":-1,"inputs":[12298156,193818951],"outputs":[252107105187]},{"node":12298156,"parent":-1,"inputs":[52140102208],"outputs":[2321078280]},{"node":773141134,"parent":2321078280,"inputs":[252107105187],"outputs":[]},{"node":252107105187,"parent":-1,"inputs":[2321078280],"outputs":[773141134]},{"node":193818951,"parent":-1,"inputs":[14822314111],"outputs":[2321078280]},{"node":2228514266,"parent":-1,"inputs":[956142220],"outputs":[22310043126]},{"node":956142220,"parent":-1,"inputs":[14822314111],"outputs":[2228514266]},{"node":7820573120,"parent":2228514266,"inputs":[22310043126],"outputs":[]},{"node":22310043126,"parent":-1,"inputs":[2228514266],"outputs":[7820573120]},{"node":1842204769,"parent":-1,"inputs":[226104103213,160182123146,81478792],"outputs":[1634323329]},{"node":50189233170,"parent":1842204769,"inputs":[1634323329],"outputs":[]},{"node":1634323329,"parent":-1,"inputs":[1842204769],"outputs":[50189233170]},{"node":226104103213,"parent":-1,"inputs":[23286101120],"outputs":[1842204769]},{"node":160182123146,"parent":-1,"inputs":[2241038349],"outputs":[1842204769]},{"node":11246142238,"parent":-1,"inputs":[],"outputs":[195245217165]},{"node":1433196,"parent":11246142238,"inputs":[195245217165],"outputs":[81478792]},{"node":195245217165,"parent":-1,"inputs":[11246142238],"outputs":[1433196]},{"node":81478792,"parent":-1,"inputs":[1433196],"outputs":[1842204769]},{"node":19624016867,"parent":-1,"inputs":[4780120154],"outputs":[12399121127]},{"node":50242106106,"parent":-1,"inputs":[424820750],"outputs":[96218130234]},{"node":141189178229,"parent":-1,"inputs":[110242157197,19332228247],"outputs":[1801351859]},{"node":217240171192,"parent":141189178229,"inputs":[1801351859],"outputs":[63199186202]},{"node":1801351859,"parent":-1,"inputs":[141189178229],"outputs":[217240171192]},{"node":20425417385,"parent":-1,"inputs":[],"outputs":[1561063252]},{"node":403350135,"parent":20425417385,"inputs":[1561063252],"outputs":[110242157197]},{"node":1561063252,"parent":-1,"inputs":[20425417385],"outputs":[403350135]},{"node":51301053,"parent":-1,"inputs":[41025687,1972232140],"outputs":[175245716]},{"node":13553179110,"parent":-1,"inputs":[],"outputs":[23497218197]},{"node":5531221240,"parent":-1,"inputs":[23497218197],"outputs":[7629164183]},{"node":13816207252,"parent":5531221240,"inputs":[7629164183],"outputs":[41025687]},{"node":7629164183,"parent":-1,"inputs":[5531221240],"outputs":[13816207252]},{"node":23497218197,"parent":-1,"inputs":[13553179110],"outputs":[5531221240]},{"node":41025687,"parent":-1,"inputs":[13816207252],"outputs":[51301053]},{"node":21911523187,"parent":51301053,"inputs":[175245716],"outputs":[247121213]},{"node":175245716,"parent":-1,"inputs":[51301053],"outputs":[21911523187]},{"node":7618331104,"parent":-1,"inputs":[],"outputs":[1972232140]},{"node":1972232140,"parent":-1,"inputs":[7618331104],"outputs":[51301053]},{"node":184190128183,"parent":-1,"inputs":[63199186202,247121213],"outputs":[11620878150]},{"node":63199186202,"parent":-1,"inputs":[217240171192],"outputs":[184190128183]},{"node":57242112248,"parent":184190128183,"inputs":[11620878150],"outputs":[]},{"node":11620878150,"parent":-1,"inputs":[184190128183],"outputs":[57242112248]},{"node":247121213,"parent":-1,"inputs":[21911523187],"outputs":[184190128183]},{"node":110242157197,"parent":-1,"inputs":[403350135],"outputs":[141189178229]},{"node":23748102130,"parent":-1,"inputs":[],"outputs":[19332228247]},{"node":19332228247,"parent":-1,"inputs":[23748102130],"outputs":[141189178229]}],"ops":[{"node_id":13099207184,"name":"rectangle","params":[10,10]},{"node_id":24249116100,"name":"rib","params":[2,2,1]},{"node_id":169132242171,"name":"twill","params":[1,3,0]},{"node_id":14620618121,"name":"satin","params":[5,2]},{"node_id":65210143227,"name":"tabby","params":[1]},{"node_id":200221222,"name":"basket","params":[2,2]},{"node_id":16443127230,"name":"random","params":[6,6,50]},{"node_id":22024123674,"name":"rectangle","params":[10,10]},{"node_id":234252121174,"name":"rectangle","params":[10,10]},{"node_id":2303837246,"name":"shift left","params":[1]},{"node_id":113870,"name":"shift up","params":[11]},{"node_id":96218130234,"name":"flip vert","params":[]},{"node_id":87109172182,"name":"slope","params":[1,1]},{"node_id":10711340252,"name":"stretch","params":[2,2]},{"node_id":12399121127,"name":"resize","params":[8,8]},{"node_id":951118063,"name":"rotate","params":[]},{"node_id":1362514149,"name":"invert","params":[]},{"node_id":787157102,"name":"clear","params":[]},{"node_id":98102160208,"name":"set down to unset","params":[1]},{"node_id":1893215418,"name":"interlace","params":[]},{"node_id":202271719,"name":"layer","params":[]},{"node_id":23264496,"name":"join left","params":[]},{"node_id":7925232201,"name":"join top","params":[]},{"node_id":916694145,"name":"twill","params":[1,3,0]},{"node_id":202154134107,"name":"basket","params":[3,4]},{"node_id":51189191185,"name":"rectangle","params":[15,15]},{"node_id":204195213250,"name":"rectangle","params":[10,10]},{"node_id":2072237485,"name":"gemanify","params":[1]},{"node_id":36212143195,"name":"selvedge","params":[12,1]},{"node_id":1692387107,"name":"crackle-ify","params":[1]},{"node_id":18179110189,"name":"floor loom","params":[]},{"node_id":176176176223,"name":"drawdown","params":[]},{"node_id":5714424697,"name":"set atop, (a, b) => a","params":[0,0]},{"node_id":208545493,"name":"overlay, (a,b) => (a OR b)","params":[0,0]},{"node_id":98702835,"name":"mask, (a,b) => (a AND b)","params":[0,0]},{"node_id":194104150167,"name":"knockout, (a, b) => (a XOR b)","params":[0,0]},{"node_id":2227111848,"name":"set unset","params":[0]},{"node_id":684209114,"name":"crop","params":[1,1,7,6]},{"node_id":5410672179,"name":"flip horiz","params":[]},{"node_id":5313824187,"name":"margin","params":[1,1,1,1]},{"node_id":15915266154,"name":"tile","params":[4,4]},{"node_id":19513225233,"name":"splice in wefts","params":[1]},{"node_id":17911317,"name":"assign warp systems","params":[2,0,1]},{"node_id":704423117,"name":"assign warp systems","params":[2,1,1]},{"node_id":198869795,"name":"assign weft systems","params":[2,0]},{"node_id":125243139122,"name":"assign weft systems","params":[2,1]},{"node_id":2321078280,"name":"overlay, (a,b) => (a OR b)","params":[0,0]},{"node_id":2228514266,"name":"erase blank rows","params":[]},{"node_id":1842204769,"name":"fill","params":[]},{"node_id":11246142238,"name":"tabby","params":[1]},{"node_id":141189178229,"name":"apply materials","params":[]},{"node_id":20425417385,"name":"basket","params":[8,8]},{"node_id":51301053,"name":"apply materials","params":[]},{"node_id":5531221240,"name":"twill","params":[1,3,0]},{"node_id":184190128183,"name":"interlace","params":[]}],"notes":[{"id":0,"interlacement":{"i":24,"j":9,"si":24},"text":"STRUCTURE operations allow you to dynamically create weave structures by modifying their parameters "},{"id":1,"interlacement":{"i":83,"j":7,"si":83},"text":"BLOCK DESIGN operations use the input to fill a shaped blocks with a given structure "},{"id":2,"interlacement":{"i":140,"j":6,"si":140},"text":"TRANSFORMATIONS apply an operation to the input that transforms the input in some way"},{"id":3,"interlacement":{"i":218,"j":12,"si":218},"text":"COMBINE operations take more than one input and integrate them in some way"},{"id":4,"interlacement":{"i":366,"j":5,"si":366},"text":"BINARY operations take two inputs and perform binary operations on the interlacements"},{"id":5,"interlacement":{"i":435,"j":11,"si":435},"text":"HELPER operations perform common operations that you need to make a draft weavable"},{"id":6,"interlacement":{"i":498,"j":14,"si":498},"text":"MACHINE LEARNING are experimental functions that attempt to apply a style from one genre of weaving to your draft. Currently, we have trained models on German Weave Drafts and Crackle Weave Drafts "},{"id":7,"interlacement":{"i":621,"j":21,"si":621},"text":"FLOOR LOOM operations offer specific supports for working with frame looms"},{"id":8,"interlacement":{"i":707,"j":14,"si":707},"text":"JACQUARD operations are designed specially for common operations in drafting for jacquard, particularly the use of warp and weft systems. "},{"id":9,"interlacement":{"i":1180,"j":37,"si":1180},"text":"AESTHETICS operations deal with color patterning. The other operations will also factor in the colors as they work"}],"materials":[{"id":0,"name":"shuttle 0","insert":true,"visible":true,"color":"#333333","thickness":100,"type":0,"notes":""},{"id":1,"name":"shuttle 1","insert":true,"visible":true,"color":"#ffffff","thickness":100,"type":0,"notes":""},{"id":2,"name":"conductive","insert":true,"visible":true,"color":"#ff4081","thickness":100,"type":1,"notes":""},{"id":3,"name":"Contrast","insert":true,"visible":true,"color":"#e5ffba","thickness":100,"type":"0","notes":""}],"scale":5} |
-----------------------------------------------------------------------
-- util-streams-tests -- Unit tests for encoding buffered streams
-- Copyright (C) 2017, 2018, 2019 Stephane Carrez
-- Written by Stephane Carrez (Stephane.Carrez@gmail.com)
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Util.Test_Caller;
with Util.Streams.Files;
with Util.Streams.Texts;
with Util.Streams.Base64;
with Util.Streams.AES;
with Ada.IO_Exceptions;
with Ada.Streams.Stream_IO;
package body Util.Streams.Tests is
use Util.Streams.Files;
use Ada.Streams.Stream_IO;
package Caller is new Util.Test_Caller (Test, "Streams");
generic
Mode : in Util.Encoders.AES.AES_Mode;
Label : in String;
procedure Test_AES_Mode (T : in out Test);
procedure Test_AES (T : in out Test;
Item : in String;
Count : in Positive;
Mode : in Util.Encoders.AES.AES_Mode;
Label : in String) is
Reader : aliased Util.Streams.Texts.Reader_Stream;
Decipher : aliased Util.Streams.AES.Decoding_Stream;
Cipher : aliased Util.Streams.AES.Encoding_Stream;
Print : Util.Streams.Texts.Print_Stream;
Key : Util.Encoders.Secret_Key
:= Util.Encoders.Create ("0123456789abcdef0123456789abcdef");
begin
-- Print -> Cipher -> Decipher
Decipher.Initialize (64 * 1024);
Decipher.Set_Key (Key, Mode);
Cipher.Initialize (Decipher'Access, 1024);
Cipher.Set_Key (Key, Mode);
Print.Initialize (Cipher'Access);
for I in 1 .. Count loop
Print.Write (Item);
end loop;
Print.Flush;
Util.Tests.Assert_Equals (T,
Item'Length * Count,
Decipher.Get_Size,
Label & ": decipher buffer has the wrong size mode");
-- Read content in Decipher
Reader.Initialize (Decipher);
for I in 1 .. Count loop
declare
L : String (Item'Range) := (others => ' ');
begin
for J in L'Range loop
Reader.Read (L (J));
end loop;
Util.Tests.Assert_Equals (T, Item, L, Label & ": wrong value");
exception
when Ada.IO_Exceptions.Data_Error =>
Util.Tests.Assert_Equals (T, Item, L, Label & ": wrong value (DATA error)");
end;
end loop;
end Test_AES;
procedure Test_AES_Mode (T : in out Test) is
begin
for I in 1 .. 128 loop
Test_AES (T, "a", I, Mode, Label);
end loop;
for I in 1 .. 128 loop
Test_AES (T, "ab", I, Mode, Label);
end loop;
for I in 1 .. 128 loop
Test_AES (T, "abc", I, Mode, Label);
end loop;
end Test_AES_Mode;
procedure Test_AES_ECB is
new Test_AES_Mode (Mode => Util.Encoders.AES.ECB, Label => "AES-ECB");
procedure Test_AES_CBC is
new Test_AES_Mode (Mode => Util.Encoders.AES.CBC, Label => "AES-CBC");
procedure Test_AES_PCBC is
new Test_AES_Mode (Mode => Util.Encoders.AES.PCBC, Label => "AES-PCBC");
procedure Test_AES_CFB is
new Test_AES_Mode (Mode => Util.Encoders.AES.PCBC, Label => "AES-CFB");
procedure Test_AES_OFB is
new Test_AES_Mode (Mode => Util.Encoders.AES.PCBC, Label => "AES-OFB");
procedure Test_AES_CTR is
new Test_AES_Mode (Mode => Util.Encoders.AES.PCBC, Label => "AES-CTR");
procedure Test_Base64_Stream (T : in out Test) is
Stream : aliased File_Stream;
Buffer : aliased Util.Streams.Base64.Encoding_Stream;
Print : Util.Streams.Texts.Print_Stream;
Path : constant String := Util.Tests.Get_Test_Path ("regtests/result/test-stream.b64");
Expect : constant String := Util.Tests.Get_Path ("regtests/expect/test-stream.b64");
begin
Print.Initialize (Output => Buffer'Access, Size => 5);
Buffer.Initialize (Output => Stream'Access,
Size => 1024);
Stream.Create (Mode => Out_File, Name => Path);
for I in 1 .. 32 loop
Print.Write ("abcd");
Print.Write (" fghij");
Print.Write (ASCII.LF);
end loop;
Print.Flush;
Stream.Close;
Util.Tests.Assert_Equal_Files (T => T,
Expect => Expect,
Test => Path,
Message => "Base64 stream");
end Test_Base64_Stream;
procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite) is
begin
Caller.Add_Test (Suite, "Test Util.Streams.Base64.Write, Read",
Test_Base64_Stream'Access);
Caller.Add_Test (Suite, "Test Util.Streams.AES (AES-ECB)",
Test_AES_ECB'Access);
Caller.Add_Test (Suite, "Test Util.Streams.AES (AES-CBC)",
Test_AES_CBC'Access);
Caller.Add_Test (Suite, "Test Util.Streams.AES (AES-PCBC)",
Test_AES_PCBC'Access);
Caller.Add_Test (Suite, "Test Util.Streams.AES (AES-CFB)",
Test_AES_CFB'Access);
Caller.Add_Test (Suite, "Test Util.Streams.AES (AES-OFB)",
Test_AES_OFB'Access);
Caller.Add_Test (Suite, "Test Util.Streams.AES (AES-CTR)",
Test_AES_CTR'Access);
end Add_Tests;
end Util.Streams.Tests;
|
pragma Ada_2012;
with Adventofcode.File_Line_Readers;
package body Adventofcode.Day_3 is
Tree : constant Character := '#';
----------
-- Race --
----------
function Race (Slope : Slope_Type; Right : Natural := 3; Down : Natural := 1) return Long_Long_Integer is
Count : Long_Long_Integer := 0;
Cursor : Natural := 0;
L : Natural := 0;
begin
while L < Natural (Slope.Length) loop
declare
Line : constant String := Slope (L);
begin
if Line (Line'First + (Cursor mod Line'Length)) = Tree then
Count := Count + 1;
end if;
for C in 1 .. Right loop
Cursor := Cursor + 1;
end loop;
end;
L := L + Down;
end loop;
return Count;
end Race;
----------
-- Read --
----------
procedure Read (Into_Slope : in out Slope_Type; Path : String) is
begin
Into_Slope.Clear;
for Line of Adventofcode.File_Line_Readers.Read_Lines (Path) loop
if Line'Length > 0 and then Line (Line'First) in '.' | '#' then
Into_Slope.Append (Line);
end if;
end loop;
end Read;
end Adventofcode.Day_3;
|
<?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>reg_int_s</name>
<ret_bitwidth>32</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>1</id>
<name>in_r</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo class_id="6" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>in</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs class_id="7" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_2">
<Value>
<Obj>
<type>0</type>
<id>2</id>
<name>in_read</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot\utils/x_hls_utils.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>242</lineNumber>
<contextFuncName>reg&lt;int&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="10" tracking_level="0" version="0">
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\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>G:/Xilinx/Vivado/2018.3/common/technology/autopilot\utils/x_hls_utils.h</first>
<second>reg&lt;int&gt;</second>
</first>
<second>242</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>in</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>7</item>
<item>8</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>1</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_3">
<Value>
<Obj>
<type>0</type>
<id>4</id>
<name/>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot\utils/x_hls_utils.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>248</lineNumber>
<contextFuncName>reg&lt;int&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot\utils/x_hls_utils.h</first>
<second>reg&lt;int&gt;</second>
</first>
<second>248</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>2</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</consts>
<blocks class_id="16" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="17" tracking_level="1" version="0" object_id="_4">
<Obj>
<type>3</type>
<id>5</id>
<name>reg<int></name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>2</item>
<item>4</item>
</node_objs>
</item>
</blocks>
<edges class_id="18" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="19" tracking_level="1" version="0" object_id="_5">
<id>8</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>2</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_6">
<id>9</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>4</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="20" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="21" tracking_level="1" version="0" object_id="_7">
<mId>1</mId>
<mTag>reg<int></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>5</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"/>
</item>
</cdfg_regions>
<fsm class_id="23" tracking_level="1" version="0" object_id="_8">
<states class_id="24" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="25" tracking_level="1" version="0" object_id="_9">
<id>1</id>
<operations class_id="26" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="27" tracking_level="1" version="0" object_id="_10">
<id>2</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_11">
<id>4</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="25" object_id="_12">
<id>2</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="27" object_id="_13">
<id>3</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_14">
<id>4</id>
<stage>1</stage>
<latency>2</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="28" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="29" tracking_level="1" version="0" object_id="_15">
<inState>1</inState>
<outState>2</outState>
<condition class_id="30" tracking_level="0" version="0">
<id>-1</id>
<sop class_id="31" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="32" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
</transitions>
</fsm>
<res class_id="33" tracking_level="1" version="0" object_id="_16">
<dp_component_resource class_id="34" 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>1</count>
<item_version>0</item_version>
<item class_id="35" tracking_level="0" version="0">
<first>ap_return</first>
<second class_id="36" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="37" tracking_level="0" version="0">
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>64</second>
</item>
<item>
<first>LUT</first>
<second>3</second>
</item>
</second>
</item>
</dp_multiplexer_resource>
<dp_register_resource>
<count>3</count>
<item_version>0</item_version>
<item>
<first>ap_ce_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_return_int</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>32</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>32</second>
</item>
</second>
</item>
<item>
<first>ap_return_int_reg</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>
</dp_register_resource>
<dp_dsp_resource>
<count>0</count>
<item_version>0</item_version>
</dp_dsp_resource>
<dp_component_map class_id="38" 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="39" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="40" tracking_level="0" version="0">
<first>2</first>
<second class_id="41" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>4</first>
<second>
<first>0</first>
<second>1</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="42" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="43" tracking_level="0" version="0">
<first>5</first>
<second class_id="44" tracking_level="0" version="0">
<first>0</first>
<second>1</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="45" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="46" tracking_level="1" version="0" object_id="_17">
<region_name>reg<int></region_name>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>5</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="47" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="48" tracking_level="0" version="0">
<first>14</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>2</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="50" 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>1</count>
<item_version>0</item_version>
<item class_id="51" tracking_level="0" version="0">
<first>in_read_read_fu_14</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>2</item>
</second>
</item>
</dp_fu_nodes_io>
<return_ports>
<count>1</count>
<item_version>0</item_version>
<item>
<first>ap_return</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>4</item>
</second>
</item>
</return_ports>
<dp_mem_port_nodes class_id="52" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>1</count>
<item_version>0</item_version>
<item>
<first>20</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>2</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>1</count>
<item_version>0</item_version>
<item>
<first>in_read_reg_20</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>2</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="53" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="54" tracking_level="0" version="0">
<first>in_r</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>2</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core class_id="55" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
|
package Lv.Hal is
end Lv.Hal;
|
package Ordinary_Type_Declaration is
type Ordinary_Type is new Integer;
end Ordinary_Type_Declaration;
|
-- This test is check control data out with a fake class request
with USB_Testing; use USB_Testing;
with USB_Testing.UDC_Stub; use USB_Testing.UDC_Stub;
with USB_Testing.UDC_Scenarios;
with HAL; use HAL;
with Interfaces; use Interfaces;
with USB; use USB;
with USB.Device; use USB.Device;
with USB.Device.HID;
with USB.HAL.Device; use USB.HAL.Device;
procedure Main is
Scenario : aliased constant UDC_Stub.Stub_Scenario :=
UDC_Scenarios.Enumeration (Verbose => False) &
UDC_Scenarios.Set_Config (Verbose => True, Config_Id => 1) &
Stub_Scenario'(1 => (Kind => Set_Verbose, Verbose => True),
2 => (Kind => UDC_Event_E,
Evt => (Kind => Setup_Request,
-- Get Report descriptor
Req => ((Iface, 0, Stand, Device_To_Host),
6, 16#2200#, 0, 255),
Req_EP => 0)),
-- ACK the IN transfer with a ZLP
3 => (Kind => UDC_Event_E,
Evt => (Kind => Transfer_Complete,
EP => (0, EP_Out),
BCNT => 0))
);
RX_Data : aliased constant UInt8_Array := (1 .. 16 => 42);
Configuration : aliased constant UInt8_Array := (0 .. 1 => 0);
HID_Class : aliased USB.Device.HID.Default_HID_Class;
UDC : aliased UDC_Stub.Controller (Scenario'Unchecked_Access,
RX_Data'Unchecked_Access,
Has_Early_Address => False,
Max_Packet_Size => 64,
EP_Buffers_Size => 256,
Number_Of_EPs => 1);
Stack : USB.Device.USB_Device_Stack (Max_Classes => 1);
Result : USB.Device.Init_Result;
S : Natural := 1;
begin
if not Stack.Register_Class (HID_Class'Unchecked_Access) then
raise Program_Error with "Register class failed";
end if;
Result := Stack.Initialize
(Controller => UDC'Unchecked_Access,
Manufacturer => To_USB_String ("Manufacturer"),
Product => To_USB_String ("Product"),
Serial_Number => To_USB_String ("Serial"),
Max_Packet_Size => 64);
if Result /= Ok then
raise Program_Error with "Stack init failed: " & Result'Img;
end if;
Stack.Start;
loop
Stack.Poll;
if HID_Class.Ready then
case S is
when 1 =>
HID_Class.Set_Click (Btn1 => False,
Btn2 => False,
Btn3 => False);
HID_Class.Set_Move (10, 0);
HID_Class.Send_Report (UDC);
when 2 =>
HID_Class.Set_Click (Btn1 => False,
Btn2 => False,
Btn3 => False);
HID_Class.Set_Move (0, -10);
HID_Class.Send_Report (UDC);
when 3 =>
HID_Class.Set_Move (0, 0);
HID_Class.Set_Click (Btn1 => True,
Btn2 => False,
Btn3 => False);
HID_Class.Send_Report (UDC);
when others =>
null;
end case;
S := S + 1;
end if;
pragma Warnings (Off, "possible infinite loop");
exit when UDC.End_Of_Scenario;
pragma Warnings (On, "possible infinite loop");
end loop;
end Main;
|
-- This file is generated by SWIG. Please do not modify by hand.
--
with xcb.xcb_glx_generic_error_t;
with Interfaces.C;
with Interfaces.C.Pointers;
package xcb.xcb_glx_bad_fb_config_error_t is
-- Item
--
subtype Item is xcb.xcb_glx_generic_error_t.Item;
-- Item_Array
--
type Item_Array is
array
(Interfaces.C
.size_t range <>) of aliased xcb.xcb_glx_bad_fb_config_error_t
.Item;
-- Pointer
--
package C_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_glx_bad_fb_config_error_t.Item,
Element_Array => xcb.xcb_glx_bad_fb_config_error_t.Item_Array,
Default_Terminator => (others => <>));
subtype Pointer is C_Pointers.Pointer;
-- Pointer_Array
--
type Pointer_Array is
array
(Interfaces.C
.size_t range <>) of aliased xcb.xcb_glx_bad_fb_config_error_t
.Pointer;
-- Pointer_Pointer
--
package C_Pointer_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_glx_bad_fb_config_error_t.Pointer,
Element_Array => xcb.xcb_glx_bad_fb_config_error_t.Pointer_Array,
Default_Terminator => null);
subtype Pointer_Pointer is C_Pointer_Pointers.Pointer;
end xcb.xcb_glx_bad_fb_config_error_t;
|
-- C37213B.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 IF
-- A DISCRIMINANT CONSTRAINT
-- DEPENDS ON A DISCRIMINANT, THE NON-DISCRIMINANT EXPRESSIONS IN THE
-- CONSTRAINT ARE EVALUATED WHEN THE COMPONENT SUBTYPE DEFINITION IS
-- ELABORATED, BUT THE VALUES ARE CHECKED WHEN THE RECORD TYPE IS:
--
-- CASE B: USED WITHOUT A CONSTRAINT ONLY IN AN ALLOCATOR OR OBJECT
-- DECLARATION.
-- JBG 10/17/86
WITH REPORT; USE REPORT;
PROCEDURE C37213B IS
SUBTYPE SM IS INTEGER RANGE 1..10;
TYPE REC (D1, D2 : SM) IS
RECORD NULL; END RECORD;
F1_CONS : INTEGER := 2;
FUNCTION CHK (
CONS : INTEGER;
VALUE : INTEGER;
MESSAGE : STRING) RETURN BOOLEAN IS
BEGIN
IF CONS /= VALUE THEN
FAILED (MESSAGE & ": CONS IS " &
INTEGER'IMAGE(CONS));
END IF;
RETURN TRUE;
END CHK;
FUNCTION F1 RETURN INTEGER IS
BEGIN
F1_CONS := F1_CONS - IDENT_INT(1);
RETURN F1_CONS;
END F1;
BEGIN
TEST ("C37213B", "CHECK EVALUATION OF DISCRIMINANT EXPRESSIONS " &
"WHEN CONSTRAINT DEPENDS ON DISCRIMINANT, " &
"AND DISCRIMINANTS HAVE DEFAULTS");
-- CASE B
DECLARE
TYPE CONS (D3 : INTEGER := 1) IS
RECORD
C1 : REC (D3, F1); -- F1 EVALUATED
END RECORD;
CHK1 : BOOLEAN := CHK (F1_CONS, 1, "F1 NOT EVALUATED");
X : CONS; -- F1 NOT EVALUATED AGAIN
Y : CONS; -- F1 NOT EVALUATED AGAIN
CHK2 : BOOLEAN := CHK (F1_CONS, 1, "F1 EVALUATED");
BEGIN
IF X /= (1, (1, 1)) OR Y /= (1, (1, 1)) THEN
FAILED ("DISCRIMINANT VALUES NOT CORRECT");
END IF;
END;
F1_CONS := 12;
DECLARE
TYPE CONS (D3 : INTEGER := 1) IS
RECORD
C1 : REC(D3, F1);
END RECORD;
BEGIN
BEGIN
DECLARE
X : CONS;
BEGIN
FAILED ("DISCRIMINANT CHECK NOT PERFORMED - 1");
IF X /= (1, (1, 1)) THEN
COMMENT ("SHOULDN'T GET HERE");
END IF;
END;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ("UNEXPECTED EXCEPTION - 1");
END;
BEGIN
DECLARE
TYPE ACC_CONS IS ACCESS CONS;
X : ACC_CONS;
BEGIN
X := NEW CONS;
FAILED ("DISCRIMINANT CHECK NOT PERFORMED - 2");
BEGIN
IF X.ALL /= (1, (1, 1)) THEN
COMMENT ("IRRELEVANT");
END IF;
END;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ("UNEXPECTED EXCEPTION RAISED - 2");
END;
EXCEPTION
WHEN OTHERS =>
FAILED ("CONSTRAINT CHECKED TOO SOON - 2");
END;
BEGIN
DECLARE
SUBTYPE SCONS IS CONS;
BEGIN
DECLARE
X : SCONS;
BEGIN
FAILED ("DISCRIMINANT CHECK NOT " &
"PERFORMED - 3");
IF X /= (1, (1, 1)) THEN
COMMENT ("IRRELEVANT");
END IF;
END;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ("UNEXPECTED EXCEPTION RAISED - 3");
END;
EXCEPTION
WHEN OTHERS =>
FAILED ("CONSTRAINT CHECKED TOO SOON - 3");
END;
BEGIN
DECLARE
TYPE ARR IS ARRAY (1..5) OF CONS;
BEGIN
DECLARE
X : ARR;
BEGIN
FAILED ("DISCRIMINANT CHECK NOT " &
"PERFORMED - 4");
IF X /= (1..5 => (1, (1, 1))) THEN
COMMENT ("IRRELEVANT");
END IF;
END;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ("UNEXPECTED EXCEPTION RAISED - 4");
END;
EXCEPTION
WHEN OTHERS =>
FAILED ("CONSTRAINT CHECKED TOO SOON - 4");
END;
BEGIN
DECLARE
TYPE NREC IS
RECORD
C1 : CONS;
END RECORD;
BEGIN
DECLARE
X : NREC;
BEGIN
FAILED ("DISCRIMINANT CHECK NOT " &
"PERFORMED - 5");
IF X /= (C1 => (1, (1, 1))) THEN
COMMENT ("IRRELEVANT");
END IF;
END;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ("UNEXPECTED EXCEPTION RAISED - 5");
END;
EXCEPTION
WHEN OTHERS =>
FAILED ("CONSTRAINT CHECKED TOO SOON - 5");
END;
BEGIN
DECLARE
TYPE DREC IS NEW CONS;
BEGIN
DECLARE
X : DREC;
BEGIN
FAILED ("DISCRIMINANT CHECK NOT " &
"PERFORMED - 6");
IF X /= (1, (1, 1)) THEN
COMMENT ("IRRELEVANT");
END IF;
END;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ("UNEXPECTED EXCEPTION RAISED - 6");
END;
EXCEPTION
WHEN OTHERS =>
FAILED ("CONSTRAINT CHECKED TOO SOON - 6");
END;
END;
RESULT;
EXCEPTION
WHEN OTHERS =>
FAILED ("CONSTRAINT CHECK DONE TOO EARLY");
RESULT;
END C37213B;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . M E M O R Y --
-- --
-- B o d y --
-- --
-- Copyright (C) 2013-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. --
-- --
------------------------------------------------------------------------------
-- Simple implementation for use with Ravenscar Minimal. This implementation
-- is based on a simple static buffer (whose bounds are defined in the linker
-- script), and allocation is performed through a protected object to
-- protect against concurrency.
pragma Restrictions (No_Elaboration_Code);
-- This unit may be linked without being with'ed, so we need to ensure
-- there is no elaboration code (since this code might not be executed).
with System.Storage_Elements;
package body System.Memory is
use System.Storage_Elements;
Heap_Start : Character;
for Heap_Start'Alignment use Standard'Maximum_Alignment;
pragma Import (C, Heap_Start, "__heap_start");
-- The address of the variable is the start of the heap
Heap_End : Character;
pragma Import (C, Heap_End, "__heap_end");
-- The address of the variable is the end of the heap
Top : aliased Address := Heap_Start'Address;
-- First not used address (always aligned to the maximum alignment).
----------------
-- For C code --
----------------
function Malloc (Size : size_t) return System.Address;
pragma Export (C, Malloc, "malloc");
function Calloc (N_Elem : size_t; Elem_Size : size_t) return System.Address;
pragma Export (C, Calloc, "calloc");
procedure Free (Ptr : System.Address);
pragma Export (C, Free, "free");
-----------
-- Alloc --
-----------
function Alloc (Size : size_t) return System.Address
is
function Compare_And_Swap
(Ptr : access Address;
Old_Val : Integer_Address;
New_Val : Integer_Address) return Boolean;
pragma Import (Intrinsic, Compare_And_Swap,
"__sync_bool_compare_and_swap_" &
(case System.Word_Size is
when 32 => "4",
when 64 => "8",
when others => "unexpected"));
Max_Align : constant := Standard'Maximum_Alignment;
Max_Size : Storage_Count;
Res : Address;
begin
if Size = 0 then
-- Change size from zero to non-zero. We still want a proper pointer
-- for the zero case because pointers to zero length objects have to
-- be distinct.
Max_Size := Max_Align;
else
-- Detect overflow in the addition below. Note that we know that
-- upper bound of size_t is bigger than the upper bound of
-- Storage_Count.
if Size > size_t (Storage_Count'Last - Max_Align) then
raise Storage_Error;
end if;
-- Compute aligned size
Max_Size :=
((Storage_Count (Size) + Max_Align - 1) / Max_Align) * Max_Align;
end if;
loop
Res := Top;
-- Detect too large allocation
if Max_Size >= Storage_Count (Heap_End'Address - Res) then
raise Storage_Error;
end if;
-- Atomically update the top of the heap. Restart in case of
-- failure (concurrent allocation).
exit when Compare_And_Swap
(Top'Access,
Integer_Address (Res),
Integer_Address (Res + Max_Size));
end loop;
return Res;
end Alloc;
------------
-- Malloc --
------------
function Malloc (Size : size_t) return System.Address is
begin
return Alloc (Size);
end Malloc;
------------
-- Calloc --
------------
function Calloc
(N_Elem : size_t; Elem_Size : size_t) return System.Address
is
begin
return Malloc (N_Elem * Elem_Size);
end Calloc;
----------
-- Free --
----------
procedure Free (Ptr : System.Address) is
pragma Unreferenced (Ptr);
begin
null;
end Free;
end System.Memory;
|
with Ada.Text_IO;
procedure Hello is
package IO renames Ada.Text_IO;
digit: Integer := 4;
begin
if digit > 3 or else digit = 3 then
if digit < 5 then
IO.Put_Line("Hello, world!");
end if;
elsif digit < 2 then
IO.Put_Line("Hello, world!");
else
IO.Put_Line("Hello, world!");
end if;
end Hello;
|
-- 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;
package Pck is
type Enum_Idx is
(e_000, e_001, e_002, e_003, e_004, e_005, e_006, e_007, e_008,
e_009, e_010, e_011, e_012, e_013, e_014, e_015, e_016, e_017,
e_018, e_019, e_020, e_021, e_022, e_023, e_024, e_025, e_026,
e_027, e_028, e_029, e_030, e_031, e_032, e_033, e_034, e_035,
e_036, e_037, e_038, e_039, e_040, e_041, e_042, e_043, e_044,
e_045, e_046, e_047, e_048, e_049, e_050, e_051, e_052, e_053,
e_054, e_055, e_056, e_057, e_058, e_059, e_060, e_061, e_062,
e_063, e_064, e_065, e_066, e_067, e_068, e_069, e_070, e_071,
e_072, e_073, e_074, e_075, e_076, e_077, e_078, e_079, e_080,
e_081, e_082, e_083, e_084, e_085, e_086, e_087, e_088, e_089,
e_090, e_091, e_092, e_093, e_094, e_095, e_096, e_097, e_098,
e_099, e_100, e_101, e_102, e_103, e_104, e_105, e_106, e_107,
e_108, e_109, e_110, e_111, e_112, e_113, e_114, e_115, e_116,
e_117, e_118, e_119, e_120, e_121, e_122, e_123, e_124, e_125,
e_126, e_127, e_128, e_129, e_130, e_131, e_132, e_133, e_134,
e_135, e_136, e_137, e_138, e_139, e_140, e_141, e_142, e_143,
e_144, e_145, e_146, e_147, e_148, e_149, e_150, e_151, e_152,
e_153, e_154, e_155, e_156, e_157, e_158, e_159, e_160, e_161,
e_162, e_163, e_164, e_165, e_166, e_167, e_168, e_169, e_170,
e_171, e_172, e_173, e_174, e_175, e_176, e_177, e_178, e_179,
e_180, e_181, e_182, e_183, e_184, e_185, e_186, e_187, e_188,
e_189, e_190, e_191, e_192, e_193, e_194, e_195);
type PA is array (Enum_Idx) of Boolean;
pragma Pack (PA);
type T is array (Enum_Idx) of Boolean;
pragma Pack (T);
T_Empty : constant T := (others => False);
type Bad_Packed_Table is new T;
Procedure Do_Nothing (A : System.Address);
end Pck;
|
-----------------------------------------------------------------------
-- AWA.Countries.Models -- AWA.Countries.Models
-----------------------------------------------------------------------
-- File generated by ada-gen DO NOT MODIFY
-- Template used: templates/model/package-spec.xhtml
-- Ada Generator: https://ada-gen.googlecode.com/svn/trunk Revision 1095
-----------------------------------------------------------------------
-- Copyright (C) 2013 Stephane Carrez
-- Written by Stephane Carrez (Stephane.Carrez@gmail.com)
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
pragma Warnings (Off, "unit * is not referenced");
with ADO.Sessions;
with ADO.Objects;
with ADO.Statements;
with ADO.SQL;
with ADO.Schemas;
with Ada.Containers.Vectors;
with Ada.Strings.Unbounded;
with Util.Beans.Objects;
with Util.Beans.Basic.Lists;
pragma Warnings (On, "unit * is not referenced");
package AWA.Countries.Models is
type Country_Ref is new ADO.Objects.Object_Ref with null record;
type City_Ref is new ADO.Objects.Object_Ref with null record;
type Country_Neighbor_Ref is new ADO.Objects.Object_Ref with null record;
type Region_Ref is new ADO.Objects.Object_Ref with null record;
-- --------------------
-- The country model is a system data model for the application.
-- In theory, it never changes.
-- --------------------
-- Create an object key for Country.
function Country_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key;
-- Create an object key for Country from a string.
-- Raises Constraint_Error if the string cannot be converted into the object key.
function Country_Key (Id : in String) return ADO.Objects.Object_Key;
Null_Country : constant Country_Ref;
function "=" (Left, Right : Country_Ref'Class) return Boolean;
-- Set the country identifier
procedure Set_Id (Object : in out Country_Ref;
Value : in ADO.Identifier);
-- Get the country identifier
function Get_Id (Object : in Country_Ref)
return ADO.Identifier;
-- Set the country name
procedure Set_Name (Object : in out Country_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Name (Object : in out Country_Ref;
Value : in String);
-- Get the country name
function Get_Name (Object : in Country_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Name (Object : in Country_Ref)
return String;
-- Set the continent name
procedure Set_Continent (Object : in out Country_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Continent (Object : in out Country_Ref;
Value : in String);
-- Get the continent name
function Get_Continent (Object : in Country_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Continent (Object : in Country_Ref)
return String;
-- Set the currency used in the country
procedure Set_Currency (Object : in out Country_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Currency (Object : in out Country_Ref;
Value : in String);
-- Get the currency used in the country
function Get_Currency (Object : in Country_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Currency (Object : in Country_Ref)
return String;
-- Set the country ISO code
procedure Set_Iso_Code (Object : in out Country_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Iso_Code (Object : in out Country_Ref;
Value : in String);
-- Get the country ISO code
function Get_Iso_Code (Object : in Country_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Iso_Code (Object : in Country_Ref)
return String;
-- Set the country geoname id
procedure Set_Geonameid (Object : in out Country_Ref;
Value : in Integer);
-- Get the country geoname id
function Get_Geonameid (Object : in Country_Ref)
return Integer;
-- Set the country main language
procedure Set_Languages (Object : in out Country_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Languages (Object : in out Country_Ref;
Value : in String);
-- Get the country main language
function Get_Languages (Object : in Country_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Languages (Object : in Country_Ref)
return String;
-- Set the TLD associated with this country
procedure Set_Tld (Object : in out Country_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Tld (Object : in out Country_Ref;
Value : in String);
-- Get the TLD associated with this country
function Get_Tld (Object : in Country_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Tld (Object : in Country_Ref)
return String;
-- Set the currency code
procedure Set_Currency_Code (Object : in out Country_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Currency_Code (Object : in out Country_Ref;
Value : in String);
-- Get the currency code
function Get_Currency_Code (Object : in Country_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Currency_Code (Object : in Country_Ref)
return String;
-- Load the entity identified by 'Id'.
-- Raises the NOT_FOUND exception if it does not exist.
procedure Load (Object : in out Country_Ref;
Session : in out ADO.Sessions.Session'Class;
Id : in ADO.Identifier);
-- Load the entity identified by 'Id'.
-- Returns True in <b>Found</b> if the object was found and False if it does not exist.
procedure Load (Object : in out Country_Ref;
Session : in out ADO.Sessions.Session'Class;
Id : in ADO.Identifier;
Found : out Boolean);
-- Find and load the entity.
overriding
procedure Find (Object : in out Country_Ref;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class;
Found : out Boolean);
-- Save the entity. If the entity does not have an identifier, an identifier is allocated
-- and it is inserted in the table. Otherwise, only data fields which have been changed
-- are updated.
overriding
procedure Save (Object : in out Country_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
-- Delete the entity.
overriding
procedure Delete (Object : in out Country_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
function Get_Value (From : in Country_Ref;
Name : in String) return Util.Beans.Objects.Object;
-- Table definition
COUNTRY_TABLE : constant ADO.Schemas.Class_Mapping_Access;
-- Internal method to allocate the Object_Record instance
overriding
procedure Allocate (Object : in out Country_Ref);
-- Copy of the object.
procedure Copy (Object : in Country_Ref;
Into : in out Country_Ref);
-- Create an object key for City.
function City_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key;
-- Create an object key for City from a string.
-- Raises Constraint_Error if the string cannot be converted into the object key.
function City_Key (Id : in String) return ADO.Objects.Object_Key;
Null_City : constant City_Ref;
function "=" (Left, Right : City_Ref'Class) return Boolean;
-- Set the city identifier
procedure Set_Id (Object : in out City_Ref;
Value : in ADO.Identifier);
-- Get the city identifier
function Get_Id (Object : in City_Ref)
return ADO.Identifier;
-- Set the city name
procedure Set_Name (Object : in out City_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Name (Object : in out City_Ref;
Value : in String);
-- Get the city name
function Get_Name (Object : in City_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Name (Object : in City_Ref)
return String;
-- Set the city ZIP code
procedure Set_Zip_Code (Object : in out City_Ref;
Value : in Integer);
-- Get the city ZIP code
function Get_Zip_Code (Object : in City_Ref)
return Integer;
-- Set the city latitude
procedure Set_Latitude (Object : in out City_Ref;
Value : in Integer);
-- Get the city latitude
function Get_Latitude (Object : in City_Ref)
return Integer;
-- Set the city longitude
procedure Set_Longitude (Object : in out City_Ref;
Value : in Integer);
-- Get the city longitude
function Get_Longitude (Object : in City_Ref)
return Integer;
-- Set the region that this city belongs to
procedure Set_Region (Object : in out City_Ref;
Value : in AWA.Countries.Models.Region_Ref'Class);
-- Get the region that this city belongs to
function Get_Region (Object : in City_Ref)
return AWA.Countries.Models.Region_Ref'Class;
-- Set the country that this city belongs to
procedure Set_Country (Object : in out City_Ref;
Value : in AWA.Countries.Models.Country_Ref'Class);
-- Get the country that this city belongs to
function Get_Country (Object : in City_Ref)
return AWA.Countries.Models.Country_Ref'Class;
-- Load the entity identified by 'Id'.
-- Raises the NOT_FOUND exception if it does not exist.
procedure Load (Object : in out City_Ref;
Session : in out ADO.Sessions.Session'Class;
Id : in ADO.Identifier);
-- Load the entity identified by 'Id'.
-- Returns True in <b>Found</b> if the object was found and False if it does not exist.
procedure Load (Object : in out City_Ref;
Session : in out ADO.Sessions.Session'Class;
Id : in ADO.Identifier;
Found : out Boolean);
-- Find and load the entity.
overriding
procedure Find (Object : in out City_Ref;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class;
Found : out Boolean);
-- Save the entity. If the entity does not have an identifier, an identifier is allocated
-- and it is inserted in the table. Otherwise, only data fields which have been changed
-- are updated.
overriding
procedure Save (Object : in out City_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
-- Delete the entity.
overriding
procedure Delete (Object : in out City_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
function Get_Value (From : in City_Ref;
Name : in String) return Util.Beans.Objects.Object;
-- Table definition
CITY_TABLE : constant ADO.Schemas.Class_Mapping_Access;
-- Internal method to allocate the Object_Record instance
overriding
procedure Allocate (Object : in out City_Ref);
-- Copy of the object.
procedure Copy (Object : in City_Ref;
Into : in out City_Ref);
-- --------------------
-- The country neighbor defines what countries
-- are neigbors with each other
-- --------------------
-- Create an object key for Country_Neighbor.
function Country_Neighbor_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key;
-- Create an object key for Country_Neighbor from a string.
-- Raises Constraint_Error if the string cannot be converted into the object key.
function Country_Neighbor_Key (Id : in String) return ADO.Objects.Object_Key;
Null_Country_Neighbor : constant Country_Neighbor_Ref;
function "=" (Left, Right : Country_Neighbor_Ref'Class) return Boolean;
--
procedure Set_Id (Object : in out Country_Neighbor_Ref;
Value : in ADO.Identifier);
--
function Get_Id (Object : in Country_Neighbor_Ref)
return ADO.Identifier;
--
procedure Set_Neighbor_Of (Object : in out Country_Neighbor_Ref;
Value : in AWA.Countries.Models.Country_Ref'Class);
--
function Get_Neighbor_Of (Object : in Country_Neighbor_Ref)
return AWA.Countries.Models.Country_Ref'Class;
--
procedure Set_Neighbor (Object : in out Country_Neighbor_Ref;
Value : in AWA.Countries.Models.Country_Ref'Class);
--
function Get_Neighbor (Object : in Country_Neighbor_Ref)
return AWA.Countries.Models.Country_Ref'Class;
-- Load the entity identified by 'Id'.
-- Raises the NOT_FOUND exception if it does not exist.
procedure Load (Object : in out Country_Neighbor_Ref;
Session : in out ADO.Sessions.Session'Class;
Id : in ADO.Identifier);
-- Load the entity identified by 'Id'.
-- Returns True in <b>Found</b> if the object was found and False if it does not exist.
procedure Load (Object : in out Country_Neighbor_Ref;
Session : in out ADO.Sessions.Session'Class;
Id : in ADO.Identifier;
Found : out Boolean);
-- Find and load the entity.
overriding
procedure Find (Object : in out Country_Neighbor_Ref;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class;
Found : out Boolean);
-- Save the entity. If the entity does not have an identifier, an identifier is allocated
-- and it is inserted in the table. Otherwise, only data fields which have been changed
-- are updated.
overriding
procedure Save (Object : in out Country_Neighbor_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
-- Delete the entity.
overriding
procedure Delete (Object : in out Country_Neighbor_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
function Get_Value (From : in Country_Neighbor_Ref;
Name : in String) return Util.Beans.Objects.Object;
-- Table definition
COUNTRY_NEIGHBOR_TABLE : constant ADO.Schemas.Class_Mapping_Access;
-- Internal method to allocate the Object_Record instance
overriding
procedure Allocate (Object : in out Country_Neighbor_Ref);
-- Copy of the object.
procedure Copy (Object : in Country_Neighbor_Ref;
Into : in out Country_Neighbor_Ref);
-- --------------------
-- Region defines an area within a country.
-- --------------------
-- Create an object key for Region.
function Region_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key;
-- Create an object key for Region from a string.
-- Raises Constraint_Error if the string cannot be converted into the object key.
function Region_Key (Id : in String) return ADO.Objects.Object_Key;
Null_Region : constant Region_Ref;
function "=" (Left, Right : Region_Ref'Class) return Boolean;
-- Set the region identifier
procedure Set_Id (Object : in out Region_Ref;
Value : in ADO.Identifier);
-- Get the region identifier
function Get_Id (Object : in Region_Ref)
return ADO.Identifier;
-- Set the region name
procedure Set_Name (Object : in out Region_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Name (Object : in out Region_Ref;
Value : in String);
-- Get the region name
function Get_Name (Object : in Region_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Name (Object : in Region_Ref)
return String;
-- Set the region geonameid
procedure Set_Geonameid (Object : in out Region_Ref;
Value : in Integer);
-- Get the region geonameid
function Get_Geonameid (Object : in Region_Ref)
return Integer;
-- Set the country that this region belongs to
procedure Set_Country (Object : in out Region_Ref;
Value : in AWA.Countries.Models.Country_Ref'Class);
-- Get the country that this region belongs to
function Get_Country (Object : in Region_Ref)
return AWA.Countries.Models.Country_Ref'Class;
-- Load the entity identified by 'Id'.
-- Raises the NOT_FOUND exception if it does not exist.
procedure Load (Object : in out Region_Ref;
Session : in out ADO.Sessions.Session'Class;
Id : in ADO.Identifier);
-- Load the entity identified by 'Id'.
-- Returns True in <b>Found</b> if the object was found and False if it does not exist.
procedure Load (Object : in out Region_Ref;
Session : in out ADO.Sessions.Session'Class;
Id : in ADO.Identifier;
Found : out Boolean);
-- Find and load the entity.
overriding
procedure Find (Object : in out Region_Ref;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class;
Found : out Boolean);
-- Save the entity. If the entity does not have an identifier, an identifier is allocated
-- and it is inserted in the table. Otherwise, only data fields which have been changed
-- are updated.
overriding
procedure Save (Object : in out Region_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
-- Delete the entity.
overriding
procedure Delete (Object : in out Region_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
function Get_Value (From : in Region_Ref;
Name : in String) return Util.Beans.Objects.Object;
-- Table definition
REGION_TABLE : constant ADO.Schemas.Class_Mapping_Access;
-- Internal method to allocate the Object_Record instance
overriding
procedure Allocate (Object : in out Region_Ref);
-- Copy of the object.
procedure Copy (Object : in Region_Ref;
Into : in out Region_Ref);
private
COUNTRY_NAME : aliased constant String := "awa_country";
COL_0_1_NAME : aliased constant String := "id";
COL_1_1_NAME : aliased constant String := "name";
COL_2_1_NAME : aliased constant String := "continent";
COL_3_1_NAME : aliased constant String := "currency";
COL_4_1_NAME : aliased constant String := "iso_code";
COL_5_1_NAME : aliased constant String := "geonameid";
COL_6_1_NAME : aliased constant String := "languages";
COL_7_1_NAME : aliased constant String := "tld";
COL_8_1_NAME : aliased constant String := "currency_code";
COUNTRY_DEF : aliased constant ADO.Schemas.Class_Mapping :=
(Count => 9,
Table => COUNTRY_NAME'Access,
Members => (
1 => COL_0_1_NAME'Access,
2 => COL_1_1_NAME'Access,
3 => COL_2_1_NAME'Access,
4 => COL_3_1_NAME'Access,
5 => COL_4_1_NAME'Access,
6 => COL_5_1_NAME'Access,
7 => COL_6_1_NAME'Access,
8 => COL_7_1_NAME'Access,
9 => COL_8_1_NAME'Access
)
);
COUNTRY_TABLE : constant ADO.Schemas.Class_Mapping_Access
:= COUNTRY_DEF'Access;
Null_Country : constant Country_Ref
:= Country_Ref'(ADO.Objects.Object_Ref with others => <>);
type Country_Impl is
new ADO.Objects.Object_Record (Key_Type => ADO.Objects.KEY_INTEGER,
Of_Class => COUNTRY_DEF'Access)
with record
Name : Ada.Strings.Unbounded.Unbounded_String;
Continent : Ada.Strings.Unbounded.Unbounded_String;
Currency : Ada.Strings.Unbounded.Unbounded_String;
Iso_Code : Ada.Strings.Unbounded.Unbounded_String;
Geonameid : Integer;
Languages : Ada.Strings.Unbounded.Unbounded_String;
Tld : Ada.Strings.Unbounded.Unbounded_String;
Currency_Code : Ada.Strings.Unbounded.Unbounded_String;
end record;
type Country_Access is access all Country_Impl;
overriding
procedure Destroy (Object : access Country_Impl);
overriding
procedure Find (Object : in out Country_Impl;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class;
Found : out Boolean);
overriding
procedure Load (Object : in out Country_Impl;
Session : in out ADO.Sessions.Session'Class);
procedure Load (Object : in out Country_Impl;
Stmt : in out ADO.Statements.Query_Statement'Class;
Session : in out ADO.Sessions.Session'Class);
overriding
procedure Save (Object : in out Country_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Create (Object : in out Country_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
procedure Delete (Object : in out Country_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Set_Field (Object : in out Country_Ref'Class;
Impl : out Country_Access);
CITY_NAME : aliased constant String := "awa_city";
COL_0_2_NAME : aliased constant String := "id";
COL_1_2_NAME : aliased constant String := "name";
COL_2_2_NAME : aliased constant String := "zip_code";
COL_3_2_NAME : aliased constant String := "latitude";
COL_4_2_NAME : aliased constant String := "longitude";
COL_5_2_NAME : aliased constant String := "region_id";
COL_6_2_NAME : aliased constant String := "country_id";
CITY_DEF : aliased constant ADO.Schemas.Class_Mapping :=
(Count => 7,
Table => CITY_NAME'Access,
Members => (
1 => COL_0_2_NAME'Access,
2 => COL_1_2_NAME'Access,
3 => COL_2_2_NAME'Access,
4 => COL_3_2_NAME'Access,
5 => COL_4_2_NAME'Access,
6 => COL_5_2_NAME'Access,
7 => COL_6_2_NAME'Access
)
);
CITY_TABLE : constant ADO.Schemas.Class_Mapping_Access
:= CITY_DEF'Access;
Null_City : constant City_Ref
:= City_Ref'(ADO.Objects.Object_Ref with others => <>);
type City_Impl is
new ADO.Objects.Object_Record (Key_Type => ADO.Objects.KEY_INTEGER,
Of_Class => CITY_DEF'Access)
with record
Name : Ada.Strings.Unbounded.Unbounded_String;
Zip_Code : Integer;
Latitude : Integer;
Longitude : Integer;
Region : AWA.Countries.Models.Region_Ref;
Country : AWA.Countries.Models.Country_Ref;
end record;
type City_Access is access all City_Impl;
overriding
procedure Destroy (Object : access City_Impl);
overriding
procedure Find (Object : in out City_Impl;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class;
Found : out Boolean);
overriding
procedure Load (Object : in out City_Impl;
Session : in out ADO.Sessions.Session'Class);
procedure Load (Object : in out City_Impl;
Stmt : in out ADO.Statements.Query_Statement'Class;
Session : in out ADO.Sessions.Session'Class);
overriding
procedure Save (Object : in out City_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Create (Object : in out City_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
procedure Delete (Object : in out City_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Set_Field (Object : in out City_Ref'Class;
Impl : out City_Access);
COUNTRY_NEIGHBOR_NAME : aliased constant String := "awa_country_neighbor";
COL_0_3_NAME : aliased constant String := "id";
COL_1_3_NAME : aliased constant String := "neighbor_of_id";
COL_2_3_NAME : aliased constant String := "neighbor_id";
COUNTRY_NEIGHBOR_DEF : aliased constant ADO.Schemas.Class_Mapping :=
(Count => 3,
Table => COUNTRY_NEIGHBOR_NAME'Access,
Members => (
1 => COL_0_3_NAME'Access,
2 => COL_1_3_NAME'Access,
3 => COL_2_3_NAME'Access
)
);
COUNTRY_NEIGHBOR_TABLE : constant ADO.Schemas.Class_Mapping_Access
:= COUNTRY_NEIGHBOR_DEF'Access;
Null_Country_Neighbor : constant Country_Neighbor_Ref
:= Country_Neighbor_Ref'(ADO.Objects.Object_Ref with others => <>);
type Country_Neighbor_Impl is
new ADO.Objects.Object_Record (Key_Type => ADO.Objects.KEY_INTEGER,
Of_Class => COUNTRY_NEIGHBOR_DEF'Access)
with record
Neighbor_Of : AWA.Countries.Models.Country_Ref;
Neighbor : AWA.Countries.Models.Country_Ref;
end record;
type Country_Neighbor_Access is access all Country_Neighbor_Impl;
overriding
procedure Destroy (Object : access Country_Neighbor_Impl);
overriding
procedure Find (Object : in out Country_Neighbor_Impl;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class;
Found : out Boolean);
overriding
procedure Load (Object : in out Country_Neighbor_Impl;
Session : in out ADO.Sessions.Session'Class);
procedure Load (Object : in out Country_Neighbor_Impl;
Stmt : in out ADO.Statements.Query_Statement'Class;
Session : in out ADO.Sessions.Session'Class);
overriding
procedure Save (Object : in out Country_Neighbor_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Create (Object : in out Country_Neighbor_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
procedure Delete (Object : in out Country_Neighbor_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Set_Field (Object : in out Country_Neighbor_Ref'Class;
Impl : out Country_Neighbor_Access);
REGION_NAME : aliased constant String := "awa_region";
COL_0_4_NAME : aliased constant String := "id";
COL_1_4_NAME : aliased constant String := "name";
COL_2_4_NAME : aliased constant String := "geonameid";
COL_3_4_NAME : aliased constant String := "country_id";
REGION_DEF : aliased constant ADO.Schemas.Class_Mapping :=
(Count => 4,
Table => REGION_NAME'Access,
Members => (
1 => COL_0_4_NAME'Access,
2 => COL_1_4_NAME'Access,
3 => COL_2_4_NAME'Access,
4 => COL_3_4_NAME'Access
)
);
REGION_TABLE : constant ADO.Schemas.Class_Mapping_Access
:= REGION_DEF'Access;
Null_Region : constant Region_Ref
:= Region_Ref'(ADO.Objects.Object_Ref with others => <>);
type Region_Impl is
new ADO.Objects.Object_Record (Key_Type => ADO.Objects.KEY_INTEGER,
Of_Class => REGION_DEF'Access)
with record
Name : Ada.Strings.Unbounded.Unbounded_String;
Geonameid : Integer;
Country : AWA.Countries.Models.Country_Ref;
end record;
type Region_Access is access all Region_Impl;
overriding
procedure Destroy (Object : access Region_Impl);
overriding
procedure Find (Object : in out Region_Impl;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class;
Found : out Boolean);
overriding
procedure Load (Object : in out Region_Impl;
Session : in out ADO.Sessions.Session'Class);
procedure Load (Object : in out Region_Impl;
Stmt : in out ADO.Statements.Query_Statement'Class;
Session : in out ADO.Sessions.Session'Class);
overriding
procedure Save (Object : in out Region_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Create (Object : in out Region_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
procedure Delete (Object : in out Region_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Set_Field (Object : in out Region_Ref'Class;
Impl : out Region_Access);
end AWA.Countries.Models;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . P A C K _ 1 8 --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2019, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with System.Storage_Elements;
with System.Unsigned_Types;
package body System.Pack_18 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_18;
end record;
for Cluster use record
E0 at 0 range 0 * Bits .. 0 * Bits + Bits - 1;
E1 at 0 range 1 * Bits .. 1 * Bits + Bits - 1;
E2 at 0 range 2 * Bits .. 2 * Bits + Bits - 1;
E3 at 0 range 3 * Bits .. 3 * Bits + Bits - 1;
E4 at 0 range 4 * Bits .. 4 * Bits + Bits - 1;
E5 at 0 range 5 * Bits .. 5 * Bits + Bits - 1;
E6 at 0 range 6 * Bits .. 6 * Bits + Bits - 1;
E7 at 0 range 7 * Bits .. 7 * Bits + Bits - 1;
end record;
for Cluster'Size use Bits * 8;
for Cluster'Alignment use Integer'Min (Standard'Maximum_Alignment,
1 +
1 * Boolean'Pos (Bits mod 2 = 0) +
2 * Boolean'Pos (Bits mod 4 = 0));
-- Use maximum possible alignment, given the bit field size, since this
-- will result in the most efficient code possible for the field.
type Cluster_Ref is access Cluster;
type Rev_Cluster is new Cluster
with Bit_Order => Reverse_Bit_Order,
Scalar_Storage_Order => Reverse_Bit_Order;
type Rev_Cluster_Ref is access Rev_Cluster;
-- The following declarations are for the case where the address
-- passed to GetU_18 or SetU_18 is not guaranteed to be aligned.
-- These routines are used when the packed array is itself a
-- component of a packed record, and therefore may not be aligned.
type ClusterU is new Cluster;
for ClusterU'Alignment use 1;
type ClusterU_Ref is access ClusterU;
type Rev_ClusterU is new ClusterU
with Bit_Order => Reverse_Bit_Order,
Scalar_Storage_Order => Reverse_Bit_Order;
type Rev_ClusterU_Ref is access Rev_ClusterU;
------------
-- Get_18 --
------------
function Get_18
(Arr : System.Address;
N : Natural;
Rev_SSO : Boolean) return Bits_18
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_18;
-------------
-- GetU_18 --
-------------
function GetU_18
(Arr : System.Address;
N : Natural;
Rev_SSO : Boolean) return Bits_18
is
A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8);
C : ClusterU_Ref with Address => A'Address, Import;
RC : Rev_ClusterU_Ref with Address => A'Address, Import;
begin
if Rev_SSO then
case N07 (Uns (N) mod 8) is
when 0 => return RC.E0;
when 1 => return RC.E1;
when 2 => return RC.E2;
when 3 => return RC.E3;
when 4 => return RC.E4;
when 5 => return RC.E5;
when 6 => return RC.E6;
when 7 => return RC.E7;
end case;
else
case N07 (Uns (N) mod 8) is
when 0 => return C.E0;
when 1 => return C.E1;
when 2 => return C.E2;
when 3 => return C.E3;
when 4 => return C.E4;
when 5 => return C.E5;
when 6 => return C.E6;
when 7 => return C.E7;
end case;
end if;
end GetU_18;
------------
-- Set_18 --
------------
procedure Set_18
(Arr : System.Address;
N : Natural;
E : Bits_18;
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_18;
-------------
-- SetU_18 --
-------------
procedure SetU_18
(Arr : System.Address;
N : Natural;
E : Bits_18;
Rev_SSO : Boolean)
is
A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8);
C : ClusterU_Ref with Address => A'Address, Import;
RC : Rev_ClusterU_Ref with Address => A'Address, Import;
begin
if Rev_SSO then
case N07 (Uns (N) mod 8) is
when 0 => RC.E0 := E;
when 1 => RC.E1 := E;
when 2 => RC.E2 := E;
when 3 => RC.E3 := E;
when 4 => RC.E4 := E;
when 5 => RC.E5 := E;
when 6 => RC.E6 := E;
when 7 => RC.E7 := E;
end case;
else
case N07 (Uns (N) mod 8) is
when 0 => C.E0 := E;
when 1 => C.E1 := E;
when 2 => C.E2 := E;
when 3 => C.E3 := E;
when 4 => C.E4 := E;
when 5 => C.E5 := E;
when 6 => C.E6 := E;
when 7 => C.E7 := E;
end case;
end if;
end SetU_18;
end System.Pack_18;
|
package FLTK.Widgets.Buttons.Radio is
type Radio_Button is new Button with private;
type Radio_Button_Reference (Data : not null access Radio_Button'Class) is
limited null record with Implicit_Dereference => Data;
package Forge is
function Create
(X, Y, W, H : in Integer;
Text : in String)
return Radio_Button;
end Forge;
procedure Draw
(This : in out Radio_Button);
function Handle
(This : in out Radio_Button;
Event : in Event_Kind)
return Event_Outcome;
private
type Radio_Button is new Button with null record;
overriding procedure Finalize
(This : in out Radio_Button);
pragma Inline (Draw);
pragma Inline (Handle);
end FLTK.Widgets.Buttons.Radio;
|
-- Copyright (c) 2015-2017 Maxim Reznik <reznikmm@gmail.com>
--
-- SPDX-License-Identifier: MIT
-- License-Filename: LICENSE
-------------------------------------------------------------
with League.Strings;
with Incr.Lexers.Batch_Lexers;
package Incr.Nodes.Tokens is
-- @summary
-- Token nodes of parse tree
--
-- @description
-- This package provides Token type.
-- Tokens have no children, but usually contain some text of the document.
-- Tokens provide support for incremental lexer by keeping related data
-- such as
-- * state - scanner's state at the end of the token
-- * lookahead - number of characters after were seen by scanner after it
-- * lookback - number of preceding tokens with lookahead over this one
type Token is new Node with private;
-- Token nodesof parse tree
type Token_Access is access all Token'Class;
overriding function Kind (Self : Token) return Node_Kind;
-- Return type of the token. Kind is not expected to change
not overriding function Text
(Self : Token;
Time : Version_Trees.Version) return League.Strings.Universal_String;
-- Return text of the token
not overriding procedure Set_Text
(Self : in out Token;
Value : League.Strings.Universal_String);
-- Assign text to the token
not overriding function Next_Token
(Self : aliased Token;
Time : Version_Trees.Version) return Token_Access;
-- Find next token in the parse tree
not overriding function Previous_Token
(Self : aliased Token;
Time : Version_Trees.Version) return Token_Access;
-- Find previous token in the parse tree
not overriding function Lookback
(Self : Token;
Time : Version_Trees.Version) return Natural;
-- Get number of preceding tokens with lookahead extented over this one
subtype Scanner_State is Lexers.Batch_Lexers.State;
not overriding function State
(Self : access Token;
Time : Version_Trees.Version) return Scanner_State;
package Constructors is
procedure Initialize
(Self : out Token'Class;
Kind : Node_Kind;
Value : League.Strings.Universal_String;
State : Scanner_State;
Lookahead : Natural);
procedure Initialize_Ancient
(Self : aliased in out Token'Class;
Parent : Node_Access;
Back : Natural);
-- Initialize Self as token existent in initial version of the document.
end Constructors;
private
package Versioned_Strings is
new Version_Trees.Versioned_Values (League.Strings.Universal_String);
package Versioned_Naturals is new Version_Trees.Versioned_Values (Natural);
type Token is new Node_With_Parent with record
Kind : Node_Kind;
Text : Versioned_Strings.Container;
Back : Versioned_Naturals.Container;
Ahead : Versioned_Naturals.Container;
States : Versioned_Naturals.Container;
end record;
overriding function Is_Token (Self : Token) return Boolean;
overriding function Arity (Self : Token) return Natural;
overriding function Child
(Self : Token;
Index : Positive;
Time : Version_Trees.Version) return Node_Access;
overriding procedure Set_Child
(Self : aliased in out Token;
Index : Positive;
Value : Node_Access) is null;
overriding function Nested_Changes
(Self : Token;
From : Version_Trees.Version;
To : Version_Trees.Version) return Boolean;
overriding function Nested_Errors
(Self : Token;
Unused : Version_Trees.Version) return Boolean is (False);
overriding function Span
(Self : aliased in out Token;
Kind : Span_Kinds;
Time : Version_Trees.Version) return Natural;
overriding procedure Discard (Self : in out Token);
end Incr.Nodes.Tokens;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . E X P _ L L U --
-- --
-- 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 exceeding that of Unsigned_Types.Unsigned). The result
-- is always full width, the caller must do a masking operation if the
-- modulus is less than 2 ** (Long_Long_Unsigned'Size).
with System.Unsigned_Types;
package System.Exp_LLU is
pragma Pure;
function Exp_Long_Long_Unsigned
(Left : System.Unsigned_Types.Long_Long_Unsigned;
Right : Natural)
return System.Unsigned_Types.Long_Long_Unsigned;
end System.Exp_LLU;
|
with Ada.Text_IO;
use Ada.Text_IO;
with Ada.Integer_Text_IO;
use Ada.Integer_Text_IO;
with Ada.Real_Time;
use Ada.Real_Time;
with Ada.Numerics.Float_Random;
use Ada.Numerics.Float_Random;
procedure MonteCarloPi is
EXPERIMENTS : constant Integer := 100;
ITERATIONS : constant Integer := 2**24;
task type Master(workers : Integer) is
entry Result(pi : in Float);
end Master;
task body Master is
Start : Time;
Total : Time_Span;
Results : File_Type;
Total_Pi : Float;
begin
Create(File => Results, Mode => Out_File, Name => "results/mcp-ada-" & Integer'Image(workers) & ".csv");
Start := Clock;
for i in 1..EXPERIMENTS loop
Total_Pi := 0.0;
for w in 1..workers loop
accept Result(pi : in Float) do
Total_Pi := Total_Pi + pi;
end Result;
end loop;
Total_Pi := Total_Pi / Float(workers);
Total := (Clock - Start) * 1000000000;
Put_Line(Float'Image(Total_Pi) & " in " & Float'Image(Float(To_Duration(Total))) & "ns");
Put_Line(Results, Float'Image(Float(To_Duration(Total))));
Start := Clock;
end loop;
end Master;
Master_Task : access Master := null;
task type Worker(iters : Integer);
task body Worker is
gen : Generator;
in_circle : Integer := 0;
x : Float;
y : Float;
pi : Float;
begin
for i in 1..EXPERIMENTS loop
for j in 1..iters loop
x := Random(gen);
y := Random(gen);
if x**2 + y**2 <= 1.0 then
in_circle := in_circle + 1;
end if;
end loop;
pi := (4.0 * Float(in_circle)) / Float(iters);
Master_Task.Result(pi);
in_circle := 0;
end loop;
end Worker;
procedure Experiment(writers : Integer) is
workers : array(1..writers) of access Worker;
begin
Master_Task := new Master(writers);
for i in 1..writers loop
workers(i) := new Worker(ITERATIONS / writers);
end loop;
end Experiment;
begin
Put_Line("Monte Carlo Pi Benchmark");
Put_Line("1");
Experiment(1);
Put_Line("2");
Experiment(2);
Put_Line("4");
Experiment(4);
Put_Line("8");
Experiment(8);
Put_Line("16");
Experiment(16);
end MonteCarloPi;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Localization, Internationalization, Globalization for Ada --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2010-2012, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- UTF-8 encoder and decoder.
--
-- Note: this package is not private child of Text_Codecs because it is used
-- in League.Strings directly.
------------------------------------------------------------------------------
private with Matreshka.Internals.Unicode;
package Matreshka.Internals.Text_Codecs.UTF8 is
pragma Preelaborate;
------------------
-- UTF8_Decoder --
------------------
type UTF8_Decoder is new Abstract_Decoder with private;
overriding function Is_Error (Self : UTF8_Decoder) return Boolean;
overriding function Is_Mailformed
(Self : UTF8_Decoder) return Boolean;
overriding procedure Decode_Append
(Self : in out UTF8_Decoder;
Data : Ada.Streams.Stream_Element_Array;
String : in out Matreshka.Internals.Strings.Shared_String_Access);
function Decoder (Mode : Decoder_Mode) return Abstract_Decoder'Class;
------------------
-- UTF8_Encoder --
------------------
type UTF8_Encoder is new Abstract_Encoder with private;
overriding procedure Encode
(Self : in out UTF8_Encoder;
String : not null Matreshka.Internals.Strings.Shared_String_Access;
Buffer : out MISEV.Shared_Stream_Element_Vector_Access);
function Encoder return Abstract_Encoder'Class;
private
type UTF8_State is mod 2 ** 8;
type UTF8_Decoder is new Abstract_Decoder with record
State : UTF8_State := 0;
Code : Matreshka.Internals.Unicode.Code_Unit_32 := 0;
end record;
type UTF8_Encoder is new Abstract_Encoder with null record;
end Matreshka.Internals.Text_Codecs.UTF8;
|
------------------------------------------------------------------------------
-- --
-- Copyright (C) 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 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. --
-- --
------------------------------------------------------------------------------
-- This package provides an interface for the Bosch 9-DOF Absolute
-- Orientation IMU, integrating a triaxial 14-bit accelerometer, a triaxial
-- 16-bit gyroscope, a triaxial geomagnetic sensor and a 32-bit cortex M0+
-- microcontroller running Bosch Sensortec sensor fusion software.
--
-- See https://www.adafruit.com/products/2472
--
-- See the Datasheet: "BNO055 Intelligent 9-axis absolute orientation sensor"
-- by Bosch Sensortec.
-- Document number BST-BNO055-DS000-13 (BST_BNO055_DS000_13-838248.pdf)
-- Version 1.3 or higher, although version 1.2 is likely close enough.
-- Give the supplied package for I2C-based communication (BNO055_I2C_IO),
-- and a procedure for delaying a given number of milliseconds, one could
-- instantiate the package as follows (for example):
--
-- with BNO055_I2C_IO; use BNO055_I2C_IO;
-- with HAL.I2C; use HAL.I2C;
--
-- with Bosch_BNO055;
-- with Delay_Milliseconds;
--
-- package BNO055_I2C is new Bosch_BNO055
-- (IO_Port => IO_Port,
-- Any_IO_Port => Any_IO_Port,
-- Sensor_Data_Buffer => I2C_Data);
--
-- In the above we are specifying the generic actual types from the
-- BNO055_I2C_IO package and the HAL.I2C package, in that order, and taking
-- the defaults for the generic formal I/O subprograms made visible via the
-- use-clause for the BNO055_I2C_IO package. Note that a USART-based
-- instantiation could look very similar; given similar naming only the
-- first two lines would change.
--
-- Similarly, the with-clause on procedure Delay_Milliseconds makes a
-- procedure matching the formal subprogram's profile directly visible
-- (and only one), so the default can be taken there as well.
pragma Restrictions (No_Streams);
with System;
with Interfaces; use Interfaces;
with HAL.I2C; use HAL.I2C;
use HAL;
generic
-- Driving the BNO055 is accomplished by writing to, and reading from,
-- 8-bit registers on the device. This internal communication is in
-- terms of either I2C or serial (UART) input/output, specified as
-- actual parameters for the following generic formal parameters.
--
-- Note that selection of the protocol is configured by the hardware
-- "protocol select" pins PS0 and PS1, described in section 4.5 of the
-- Bosch manual. These are explicitly marked header pins on the AdaFruit
-- breakout board, for example. The protocol selected via the pins must
-- match the generic actual parameters used to instantiate this generic
-- unit. Thus, for example, if you use the pins to select the I2C-based
-- protocol you must instantiate the generic unit with an I2C-based
-- software abstraction via these parameters.
type IO_Port (<>) is abstract tagged limited private;
type Any_IO_Port is access all IO_Port'Class;
with procedure Read
(This : Any_IO_Port;
Register : UInt8;
Value : out UInt8) is <>;
-- Get the Value at the address specified in Register via This port.
with procedure Write
(This : Any_IO_Port;
Register : UInt8;
Value : UInt8) is <>;
-- Write the Value to the address specified in Register via This port.
type Sensor_Data_Buffer is array (Natural range <>) of UInt8;
with procedure Read_Buffer
(This : Any_IO_Port;
Register : UInt8;
Value : out Sensor_Data_Buffer) is <>;
-- Get the multiple Values at the address specified in Register via This
-- port.
with procedure Delay_Milliseconds (Count : Positive) is <>;
-- Issue a relative delay for Count milliseconds. This formal subprogram
-- removes the dependency on Ada.Real_Time so that this driver can be used
-- with runtimes that do not have that language-defined facility.
package Bosch_BNO055 is
type BNO055_9DOF_IMU (Port : not null Any_IO_Port) is tagged limited private;
-- The BNO055 is a System in Package (SiP) integrating a triaxial 14-bit
-- accelerometer, a triaxial 16-bit gyroscope, a triaxial geomagnetic
-- sensor and a 32-bit Cortex M0+ microcontroller running Bosch Sensortec
-- sensor fusion software providing fused orientation data. The designated
-- IO_Port is used to communicate with the sensor, and will be a concrete
-- instance of either an I2C port or a USART port.
function Device_Id (This : in out BNO055_9DOF_IMU) return UInt8;
-- Interacts with the device to read a device-class specific identifier
-- that can be checked for a BNO055-specific value
I_Am_BNO055 : constant := 16#A0#;
-- The value expected to be returned from Device_Id
-- These are the possible I2C addresses for the BNO055. Note that I2C is
-- one of two options for communicating with the BNO055 device (the other
-- being serial, ie USART).
BNO055_Primary_Address : constant I2C_Address := 16#28# * 2;
BNO055_Alternate_Address : constant I2C_Address := 16#29# * 2;
-- shift left one bit since we're using 7-bit addresses.
BNO055_Min_Sample_Interval : constant := 10;
-- According to the Datasheet, when using the internal oscillator the max
-- data rate is 100Hz for the data-fusion configurations. The AdaFruit
-- breakout has an external crystal available so this rate could be higher.
-- See Datasheet Table 0-2 in section 1.2, and especially Table 3-14 in
-- section 3.6.3. Rates for the Compass and M4G configurations are lower.
-- The procedure Configure has a parameter named Use_External_Crystal to
-- control that option.
type Power_Modes is
(Power_Mode_Normal,
Power_Mode_Lowpower,
Power_Mode_Suspend);
for Power_Modes use
(Power_Mode_Normal => 16#00#,
Power_Mode_Lowpower => 16#01#,
Power_Mode_Suspend => 16#02#);
-- see section 3.3 of the Datasheet
type Operating_Modes is
(Operating_Mode_Config,
Operating_Mode_Acc_Only,
Operating_Mode_Mag_Only,
Operating_Mode_Gyro_Only,
Operating_Mode_Acc_Mag,
Operating_Mode_Acc_Gyro,
Operating_Mode_Mag_Gyro,
Operating_Mode_AMG,
Operating_Mode_IMU,
Operating_Mode_Compass,
Operating_Mode_M4G,
Operating_Mode_NDOF_FMC_Off,
Operating_Mode_NDOF);
for Operating_Modes use
(Operating_Mode_Config => 16#00#,
Operating_Mode_Acc_Only => 16#01#,
Operating_Mode_Mag_Only => 16#02#,
Operating_Mode_Gyro_Only => 16#03#,
Operating_Mode_Acc_Mag => 16#04#,
Operating_Mode_Acc_Gyro => 16#05#,
Operating_Mode_Mag_Gyro => 16#06#,
Operating_Mode_AMG => 16#07#,
Operating_Mode_IMU => 16#08#,
Operating_Mode_Compass => 16#09#,
Operating_Mode_M4G => 16#0A#,
Operating_Mode_NDOF_FMC_Off => 16#0B#,
Operating_Mode_NDOF => 16#0C#);
function Current_Mode (This : in out BNO055_9DOF_IMU) return Operating_Modes;
-- After power up reset, returns Operating_Mode_Config
procedure Configure
(This : in out BNO055_9DOF_IMU;
Operating_Mode : Operating_Modes := Operating_Mode_NDOF;
Power_Mode : Power_Modes := Power_Mode_Normal;
Use_External_Crystal : Boolean := True)
with Post => Current_Mode (This) = Operating_Mode;
procedure Set_Mode
(This : in out BNO055_9DOF_IMU;
Mode : Operating_Modes)
with Post => Current_Mode (This) = Mode;
type Acceleration_Units is (Meters_Second_Squared, Milligravity);
-- linear and gravity vector
for Acceleration_Units use
(Meters_Second_Squared => 2#00000000#,
Milligravity => 2#00000001#);
procedure Set_Acceleration_Units
(This : in out BNO055_9DOF_IMU;
Units : Acceleration_Units)
with Post => Selected_Acceleration_Units (This) = Units;
type Angular_Rate_Units is (Degrees_Second, Radians_Second);
-- for gyro
for Angular_Rate_Units use
(Degrees_Second => 2#00000000#,
Radians_Second => 2#00000010#);
procedure Set_Angular_Rate_Units
(This : in out BNO055_9DOF_IMU;
Units : Angular_Rate_Units);
type Euler_Angle_Units is (Degrees, Radians);
for Euler_Angle_Units use
(Degrees => 2#00000000#,
Radians => 2#00000100#);
procedure Set_Euler_Angle_Units
(This : in out BNO055_9DOF_IMU;
Units : Euler_Angle_Units)
with Post => Selected_Euler_Units (This) = Units;
type Temperature_Units is (Celsius, Fahrenheit);
for Temperature_Units use
(Celsius => 2#00000000#,
Fahrenheit => 2#00010000#);
procedure Set_Temperature_Units
(This : in out BNO055_9DOF_IMU;
Units : Temperature_Units)
with Post => Selected_Temperature_Units (This) = Units;
type Pitch_Rotation_Conventions is (Clockwise_Increasing, Clockwise_Decreasing);
-- See the Datasheet, Table 3-12, in section 3.6.2 "Data output format"
-- in which "Android" and "Windows" are used for these possible values.
-- Nobody seems to know why they are used so we give them different names.
-- Clockwise_Increasing corresponds to "Windows" and Clockwise_Decreasing
-- corresponds to "Android" in that table. Clockwise_Increasing is the
-- default on power-up.
--
-- The effect is only applied to Pitch angle values, as follows:
-- Clockwise_Increasing => -180 to +180 degrees
-- Clockwise_Decreasing => +180 to -180 degrees
for Pitch_Rotation_Conventions use
(Clockwise_Increasing => 2#00000000#,
Clockwise_Decreasing => 2#10000000#);
procedure Set_Pitch_Rotation
(This : in out BNO055_9DOF_IMU;
Convention : Pitch_Rotation_Conventions);
function Selected_Euler_Units (This : in out BNO055_9DOF_IMU)
return Euler_Angle_Units;
function Selected_Acceleration_Units (This : in out BNO055_9DOF_IMU)
return Acceleration_Units;
function Selected_Temperature_Units (This : in out BNO055_9DOF_IMU)
return Temperature_Units;
procedure Reset (This : in out BNO055_9DOF_IMU);
-- Issues a software-reset command to the device, as opposed to a
-- hardware-based reset that requires a physical connection.
type Revision_Information is record
Accelerometer : UInt8;
Magnetometer : UInt8;
Gyroscope : UInt8;
Software : UInt16;
Bootloader : UInt8;
end record;
procedure Get_Revision_Info
(This : in out BNO055_9DOF_IMU;
Info : out Revision_Information);
-- see section 4.3.58
type System_Status_Values is
(Idle,
System_Error,
Initializing_Peripherals,
System_Initalization,
Executing_Self_Test,
Sensor_Fusion_Algorithm_Running,
System_Running_Without_Fusion_Algorithms)
with Size => 8;
for System_Status_Values use -- confirming
(Idle => 0,
System_Error => 1,
Initializing_Peripherals => 2,
System_Initalization => 3,
Executing_Self_Test => 4,
Sensor_Fusion_Algorithm_Running => 5,
System_Running_Without_Fusion_Algorithms => 6);
-- see section 3.8
type Self_Test_Results is record
Accelerometer_Passed : Boolean;
Magnetometer_Passed : Boolean;
Gyroscope_Passed : Boolean;
MCU_Passed : Boolean;
end record
with Size => 8, Alignment => 1, Bit_Order => System.Low_Order_First;
for Self_Test_Results use record
Accelerometer_Passed at 0 range 0 .. 0;
Magnetometer_Passed at 0 range 1 .. 1;
Gyroscope_Passed at 0 range 2 .. 2;
MCU_Passed at 0 range 3 .. 3;
end record;
All_Tests_Passed : constant Self_Test_Results := (others => True);
-- see section 4.3.59
type System_Error_Values is
(No_Error,
Peripheral_Initialization_Error,
System_Initialization_Error,
Self_Test_Result_Failed,
Register_Map_Value_Range_Error,
Register_Map_Address_Range_Error,
Register_Map_Write_Error,
BNO_Low_Power_Mode_Not_Available,
Accelerometer_Power_Mode_Not_Available,
Fusion_Algorithm_Configuration_Error,
Sensor_Configuration_Error)
with Size => 8;
for System_Error_Values use -- confirming
(No_Error => 0,
Peripheral_Initialization_Error => 1,
System_Initialization_Error => 2,
Self_Test_Result_Failed => 3,
Register_Map_Value_Range_Error => 4,
Register_Map_Address_Range_Error => 5,
Register_Map_Write_Error => 6,
BNO_Low_Power_Mode_Not_Available => 7,
Accelerometer_Power_Mode_Not_Available => 8,
Fusion_Algorithm_Configuration_Error => 9,
Sensor_Configuration_Error => 10);
procedure Get_Status
(This : in out BNO055_9DOF_IMU;
System_Status : out System_Status_Values;
Self_Test : out Self_Test_Results;
System_Error : out System_Error_Values);
subtype Calibration_Level is UInt8 range 0 .. 3;
subtype Uncalibrated is Calibration_Level range 0 .. 0;
subtype Partially_Calibrated is Calibration_Level range 1 .. 2;
subtype Fully_Calibrated is Calibration_Level range 3 .. 3;
type Calibration_States is record
Platform : Calibration_Level;
Gyroscope : Calibration_Level;
Accelerometer : Calibration_Level;
Magnetometer : Calibration_Level;
end record;
-- NB: The "platform" component ("system" in the Datasheet) can indicate
-- that the platform is (fully) calibrated, but that does not mean that
-- all sensors are individually fully calibrated. We define function
-- Calibration_Complete for determining the state based on the three
-- (or fewer, if so selected) sensors.
function Sensor_Calibration (This : in out BNO055_9DOF_IMU) return Calibration_States;
-- Note that you can select individual values if you don't want the
-- full record result. For example, given an object of type BNO055_9DOF_IMU
-- named "IMU" we could write any of the following:
--
-- Calibration_Data : Calibration_Values := IMU.Calibration;
-- or
-- Gyro_Calibration : UInt8 := IMU.Calibration.Gyroscope;
-- or
-- if IMU.Calibration.Gyroscope in Fully_Calibrated then
type Sensor_Id is (Accelerometer, Gyroscope, Magnetometer);
for Sensor_Id use (Accelerometer => 0, Gyroscope => 1, Magnetometer => 2);
-- confirming, but these are the required values so we make it explicit
type Sensors_Selection is array (Positive range <>) of Sensor_Id;
All_Sensors : constant Sensors_Selection := (Accelerometer, Magnetometer, Gyroscope);
function Calibration_Complete
(This : in out BNO055_9DOF_IMU;
Selection : Sensors_Selection := All_Sensors)
return Boolean
with Pre => Selection'Length in 1 .. 3;
-- Returns True iff all the selected sensors in Selection are in the
-- Fully_Calibrated state. Sensors not specified are ignored. For example,
-- to see if the gyroscope and magnetometer are fully configured, and
-- ignore the accelerometer:
--
-- IMU.Calibration_Complete ((Gyroscope, Magnetometer));
--
-- but to check all three:
--
-- IMU.Calibration_Complete;
type Axis is (X, Y, Z);
type Sensor_Data is array (Axis) of Float;
type Sensor_Data_Kinds is
(Accelerometer_Data,
Magnetometer_Data,
Gyroscope_Data,
Euler_Orientation,
Linear_Acceleration_Data,
Gravity_Data);
function Output
(This : in out BNO055_9DOF_IMU;
Kind : Sensor_Data_Kinds)
return Sensor_Data;
-- This is one of the two primary data access functions, the other being
-- function Quaternion_Orientation.
type Quaternion is array (1 .. 4) of Float;
-- W value is in the first indexed value
-- X value is in the second indexed value
-- Y value is in the third indexed value
-- Z value is in the fourth indexed value
--
-- We define this type here, rather than using the full Quaternions package
-- and type, because this facility does not manipulate quaternions itself,
-- it just provides the data. In addition, we use a numeric type for the
-- index so that this type will support direct conversion to the full
-- Quaternion type without requiring UC or a user-defined function. An
-- enumeration type for the index would not allow direct type conversion.
function Quaternion_Orientation (This : in out BNO055_9DOF_IMU) return Quaternion;
subtype Temperature_Source is Sensor_Id
with Static_Predicate => Temperature_Source in Accelerometer | Gyroscope;
-- The magnetometer's temperature is not available, per section 3.6.5.8
-- of the Datasheet.
function Sensor_Temperature
(This : in out BNO055_9DOF_IMU;
Source : Temperature_Source)
return Integer_8;
-- Returns the temperature of the selected on-board device, for the sake
-- of calibrating the unit as it warms up. NB: this is NOT the ambiant air
-- temperature. By default, units are Celsius.
type Sensor_Offset_Values is record
Accel_Offset_X : Integer_16;
Accel_Offset_Y : Integer_16;
Accel_Offset_Z : Integer_16;
Gyro_Offset_X : Integer_16;
Gyro_Offset_Y : Integer_16;
Gyro_Offset_Z : Integer_16;
Mag_Offset_X : Integer_16;
Mag_Offset_Y : Integer_16;
Mag_Offset_Z : Integer_16;
Accel_Radius : Integer_16;
Mag_Radius : Integer_16;
end record;
function Sensor_Offsets (This : in out BNO055_9DOF_IMU) return Sensor_Offset_Values
with Pre => This.Calibration_Complete (All_Sensors);
-- The precondition reflects the Datasheet, section 3.11.4, under the
-- "Reading Calibration profile " subsection.
procedure Set_Sensor_Offsets
(This : in out BNO055_9DOF_IMU;
Offsets : Sensor_Offset_Values);
type Axis_Remapping_Selections is (Remap_To_X, Remap_To_Y, Remap_To_Z)
with Size => 2;
for Axis_Remapping_Selections use
(Remap_To_X => 0, Remap_To_Y => 1, Remap_To_Z => 2); -- confirming
type Axes_Remapping is array (Axis) of Axis_Remapping_Selections;
-- see section 3.4 of the Datasheet
procedure Remap_Axes
(This : in out BNO055_9DOF_IMU;
Map : Axes_Remapping);
--
-- sample call:
-- Remap_Axes (Map => (X => Remap_To_Z, Y => Remap_To_X, Z => Remap_To_Y));
type Axis_Sign_Selections is (Remap_To_Positive, Remap_To_Negative)
with Size => 2;
for Axis_Sign_Selections use
(Remap_To_Positive => 0, Remap_To_Negative => 1); -- confirming
type Axes_Sign_Remapping is array (Axis) of Axis_Sign_Selections;
-- see section 3.4 of the Datasheet
procedure Remap_Axes_Signs
(This : in out BNO055_9DOF_IMU;
Map : Axes_Sign_Remapping);
private
type BNO055_9DOF_IMU (Port : not null Any_IO_Port) is
tagged limited record
Mode : Operating_Modes := Operating_Mode_Config;
end record;
-- masks for unit selections with the BNO055_UNIT_SEL register
Acceleration_Units_Mask : constant := 2#0000_0001#;
Angular_Rate_Units_Mask : constant := 2#0000_0010#;
Euler_Angle_Units_Mask : constant := 2#0000_0100#;
Temperature_Units_Mask : constant := 2#0001_0000#;
Pitch_Rotation_Convention_Mask : constant := 2#1000_0000#;
Operating_Mode_Mask : constant := 2#00001111#;
-- Page0 register definition start
BNO055_CHIP_ID_ADDR : constant := 16#00#;
BNO055_ACCEL_REV_ID_ADDR : constant := 16#01#;
BNO055_MAG_REV_ID_ADDR : constant := 16#02#;
BNO055_GYRO_REV_ID_ADDR : constant := 16#03#;
BNO055_SW_REV_ID_LSB_ADDR : constant := 16#04#;
BNO055_SW_REV_ID_MSB_ADDR : constant := 16#05#;
BNO055_BL_REV_ID_ADDR : constant := 16#06#;
-- Page id register definition
BNO055_PAGE_ID_ADDR : constant := 16#07#;
-- Accel data register
BNO055_ACCEL_DATA_X_LSB_ADDR : constant := 16#08#;
BNO055_ACCEL_DATA_X_MSB_ADDR : constant := 16#09#;
BNO055_ACCEL_DATA_Y_LSB_ADDR : constant := 16#0A#;
BNO055_ACCEL_DATA_Y_MSB_ADDR : constant := 16#0B#;
BNO055_ACCEL_DATA_Z_LSB_ADDR : constant := 16#0C#;
BNO055_ACCEL_DATA_Z_MSB_ADDR : constant := 16#0D#;
-- Mag data register
BNO055_MAG_DATA_X_LSB_ADDR : constant := 16#0E#;
BNO055_MAG_DATA_X_MSB_ADDR : constant := 16#0F#;
BNO055_MAG_DATA_Y_LSB_ADDR : constant := 16#10#;
BNO055_MAG_DATA_Y_MSB_ADDR : constant := 16#11#;
BNO055_MAG_DATA_Z_LSB_ADDR : constant := 16#12#;
BNO055_MAG_DATA_Z_MSB_ADDR : constant := 16#13#;
-- Gyro data registers
BNO055_GYRO_DATA_X_LSB_ADDR : constant := 16#14#;
BNO055_GYRO_DATA_X_MSB_ADDR : constant := 16#15#;
BNO055_GYRO_DATA_Y_LSB_ADDR : constant := 16#16#;
BNO055_GYRO_DATA_Y_MSB_ADDR : constant := 16#17#;
BNO055_GYRO_DATA_Z_LSB_ADDR : constant := 16#18#;
BNO055_GYRO_DATA_Z_MSB_ADDR : constant := 16#19#;
-- Euler data registers
BNO055_EULER_H_LSB_ADDR : constant := 16#1A#;
BNO055_EULER_H_MSB_ADDR : constant := 16#1B#;
BNO055_EULER_R_LSB_ADDR : constant := 16#1C#;
BNO055_EULER_R_MSB_ADDR : constant := 16#1D#;
BNO055_EULER_P_LSB_ADDR : constant := 16#1E#;
BNO055_EULER_P_MSB_ADDR : constant := 16#1F#;
-- Quaternion data registers
BNO055_QUATERNION_DATA_W_LSB_ADDR : constant := 16#20#;
BNO055_QUATERNION_DATA_W_MSB_ADDR : constant := 16#21#;
BNO055_QUATERNION_DATA_X_LSB_ADDR : constant := 16#22#;
BNO055_QUATERNION_DATA_X_MSB_ADDR : constant := 16#23#;
BNO055_QUATERNION_DATA_Y_LSB_ADDR : constant := 16#24#;
BNO055_QUATERNION_DATA_Y_MSB_ADDR : constant := 16#25#;
BNO055_QUATERNION_DATA_Z_LSB_ADDR : constant := 16#26#;
BNO055_QUATERNION_DATA_Z_MSB_ADDR : constant := 16#27#;
-- Linear acceleration data registers
BNO055_LINEAR_ACCEL_DATA_X_LSB_ADDR : constant := 16#28#;
BNO055_LINEAR_ACCEL_DATA_X_MSB_ADDR : constant := 16#29#;
BNO055_LINEAR_ACCEL_DATA_Y_LSB_ADDR : constant := 16#2A#;
BNO055_LINEAR_ACCEL_DATA_Y_MSB_ADDR : constant := 16#2B#;
BNO055_LINEAR_ACCEL_DATA_Z_LSB_ADDR : constant := 16#2C#;
BNO055_LINEAR_ACCEL_DATA_Z_MSB_ADDR : constant := 16#2D#;
-- Gravity data registers
BNO055_GRAVITY_DATA_X_LSB_ADDR : constant := 16#2E#;
BNO055_GRAVITY_DATA_X_MSB_ADDR : constant := 16#2F#;
BNO055_GRAVITY_DATA_Y_LSB_ADDR : constant := 16#30#;
BNO055_GRAVITY_DATA_Y_MSB_ADDR : constant := 16#31#;
BNO055_GRAVITY_DATA_Z_LSB_ADDR : constant := 16#32#;
BNO055_GRAVITY_DATA_Z_MSB_ADDR : constant := 16#33#;
-- Temperature data register
BNO055_TEMP_ADDR : constant := 16#34#;
-- Status registers
BNO055_CALIB_STAT_ADDR : constant := 16#35#;
BNO055_SELFTEST_RESULT_ADDR : constant := 16#36#;
BNO055_INTR_STAT_ADDR : constant := 16#37#;
BNO055_SYS_CLK_STAT_ADDR : constant := 16#38#;
BNO055_SYS_STAT_ADDR : constant := 16#39#;
BNO055_SYS_ERR_ADDR : constant := 16#3A#;
-- Unit selection register
BNO055_UNIT_SEL_ADDR : constant := 16#3B#;
BNO055_DATA_SELECT_ADDR : constant := 16#3C#;
-- Mode registers
BNO055_OPR_MODE_ADDR : constant := 16#3D#;
BNO055_PWR_MODE_ADDR : constant := 16#3E#;
BNO055_SYS_TRIGGER_ADDR : constant := 16#3F#;
BNO055_TEMP_SOURCE_ADDR : constant := 16#40#;
-- Axis remap registers
BNO055_AXIS_MAP_CONFIG_ADDR : constant := 16#41#;
BNO055_AXIS_MAP_SIGN_ADDR : constant := 16#42#;
-- SIC registers
BNO055_SIC_MATRIX_0_LSB_ADDR : constant := 16#43#;
BNO055_SIC_MATRIX_0_MSB_ADDR : constant := 16#44#;
BNO055_SIC_MATRIX_1_LSB_ADDR : constant := 16#45#;
BNO055_SIC_MATRIX_1_MSB_ADDR : constant := 16#46#;
BNO055_SIC_MATRIX_2_LSB_ADDR : constant := 16#47#;
BNO055_SIC_MATRIX_2_MSB_ADDR : constant := 16#48#;
BNO055_SIC_MATRIX_3_LSB_ADDR : constant := 16#49#;
BNO055_SIC_MATRIX_3_MSB_ADDR : constant := 16#4A#;
BNO055_SIC_MATRIX_4_LSB_ADDR : constant := 16#4B#;
BNO055_SIC_MATRIX_4_MSB_ADDR : constant := 16#4C#;
BNO055_SIC_MATRIX_5_LSB_ADDR : constant := 16#4D#;
BNO055_SIC_MATRIX_5_MSB_ADDR : constant := 16#4E#;
BNO055_SIC_MATRIX_6_LSB_ADDR : constant := 16#4F#;
BNO055_SIC_MATRIX_6_MSB_ADDR : constant := 16#50#;
BNO055_SIC_MATRIX_7_LSB_ADDR : constant := 16#51#;
BNO055_SIC_MATRIX_7_MSB_ADDR : constant := 16#52#;
BNO055_SIC_MATRIX_8_LSB_ADDR : constant := 16#53#;
BNO055_SIC_MATRIX_8_MSB_ADDR : constant := 16#54#;
-- Accelerometer Offset registers
ACCEL_OFFSET_X_LSB_ADDR : constant := 16#55#;
ACCEL_OFFSET_X_MSB_ADDR : constant := 16#56#;
ACCEL_OFFSET_Y_LSB_ADDR : constant := 16#57#;
ACCEL_OFFSET_Y_MSB_ADDR : constant := 16#58#;
ACCEL_OFFSET_Z_LSB_ADDR : constant := 16#59#;
ACCEL_OFFSET_Z_MSB_ADDR : constant := 16#5A#;
-- Magnetometer Offset registers
MAG_OFFSET_X_LSB_ADDR : constant := 16#5B#;
MAG_OFFSET_X_MSB_ADDR : constant := 16#5C#;
MAG_OFFSET_Y_LSB_ADDR : constant := 16#5D#;
MAG_OFFSET_Y_MSB_ADDR : constant := 16#5E#;
MAG_OFFSET_Z_LSB_ADDR : constant := 16#5F#;
MAG_OFFSET_Z_MSB_ADDR : constant := 16#60#;
-- Gyroscope Offset registers
GYRO_OFFSET_X_LSB_ADDR : constant := 16#61#;
GYRO_OFFSET_X_MSB_ADDR : constant := 16#62#;
GYRO_OFFSET_Y_LSB_ADDR : constant := 16#63#;
GYRO_OFFSET_Y_MSB_ADDR : constant := 16#64#;
GYRO_OFFSET_Z_LSB_ADDR : constant := 16#65#;
GYRO_OFFSET_Z_MSB_ADDR : constant := 16#66#;
-- Radius registers
ACCEL_RADIUS_LSB_ADDR : constant := 16#67#;
ACCEL_RADIUS_MSB_ADDR : constant := 16#68#;
MAG_RADIUS_LSB_ADDR : constant := 16#69#;
MAG_RADIUS_MSB_ADDR : constant := 16#6A#;
end Bosch_BNO055;
|
-- part of AdaYaml, (c) 2017 Felix Krause
-- released under the terms of the MIT license, see the file "copying.txt"
with Ada.Containers;
with Ada.Finalization;
with Text.Pool;
generic
type Value_Type is private;
package Yaml.Text_Set is
type Reference is new Ada.Finalization.Limited_Controlled with private;
type Holder is record
Hash : Ada.Containers.Hash_Type;
Key : Text.Reference;
Value : Value_Type;
end record;
function Get (Object : in out Reference; S : Standard.String;
Create : Boolean) return not null access Holder;
function Set (Object : in out Reference; S : Standard.String;
Value : Value_Type) return Boolean;
procedure Init (Object : in out Reference; Pool : Text.Pool.Reference;
Initial_Size : Positive);
procedure Clear (Object : in out Reference);
private
type Holder_Array is array (Natural range <>) of aliased Holder;
type Holder_Array_Access is access Holder_Array;
type Reference is new Ada.Finalization.Limited_Controlled with record
Count : Natural;
Elements : Holder_Array_Access;
Pool : Text.Pool.Reference;
end record;
overriding procedure Finalize (Object : in out Reference);
end Yaml.Text_Set;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S N A M E S --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2010, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Opt; use Opt;
with Table;
with Types; use Types;
package body Snames is
-- Table used to record convention identifiers
type Convention_Id_Entry is record
Name : Name_Id;
Convention : Convention_Id;
end record;
package Convention_Identifiers is new Table.Table (
Table_Component_Type => Convention_Id_Entry,
Table_Index_Type => Int,
Table_Low_Bound => 1,
Table_Initial => 50,
Table_Increment => 200,
Table_Name => "Name_Convention_Identifiers");
-- Table of names to be set by Initialize. Each name is terminated by a
-- single #, and the end of the list is marked by a null entry, i.e. by
-- two # marks in succession. Note that the table does not include the
-- entries for a-z, since these are initialized by Namet itself.
Preset_Names : constant String :=
"_parent#" &
"_tag#" &
"off#" &
"space#" &
"time#" &
"post#" &
"pre#" &
"_abort_signal#" &
"_alignment#" &
"_assign#" &
"_atcb#" &
"_chain#" &
"_clean#" &
"_controller#" &
"_cpu#" &
"_entry_bodies#" &
"_expunge#" &
"_final_list#" &
"_idepth#" &
"_init#" &
"_local_final_list#" &
"_master#" &
"_object#" &
"_postconditions#" &
"_priority#" &
"_process_atsd#" &
"_relative_deadline#" &
"_result#" &
"_secondary_stack#" &
"_service#" &
"_size#" &
"_stack#" &
"_tags#" &
"_task#" &
"_task_id#" &
"_task_info#" &
"_task_name#" &
"_trace_sp#" &
"_disp_asynchronous_select#" &
"_disp_conditional_select#" &
"_disp_get_prim_op_kind#" &
"_disp_get_task_id#" &
"_disp_requeue#" &
"_disp_timed_select#" &
"initialize#" &
"adjust#" &
"finalize#" &
"next#" &
"prev#" &
"allocate#" &
"deallocate#" &
"dereference#" &
"decimal_io#" &
"enumeration_io#" &
"fixed_io#" &
"float_io#" &
"integer_io#" &
"modular_io#" &
"const#" &
"<error>#" &
"go#" &
"put#" &
"put_line#" &
"to#" &
"defined#" &
"exception_traces#" &
"finalization#" &
"finalization_root#" &
"interfaces#" &
"most_recent_exception#" &
"standard#" &
"system#" &
"text_io#" &
"wide_text_io#" &
"wide_wide_text_io#" &
"no_dsa#" &
"garlic_dsa#" &
"polyorb_dsa#" &
"addr#" &
"async#" &
"get_active_partition_id#" &
"get_rci_package_receiver#" &
"get_rci_package_ref#" &
"origin#" &
"params#" &
"partition#" &
"partition_interface#" &
"ras#" &
"_call#" &
"rci_name#" &
"receiver#" &
"rpc#" &
"subp_id#" &
"operation#" &
"argument#" &
"arg_modes#" &
"handler#" &
"target#" &
"req#" &
"obj_typecode#" &
"stub#" &
"Oabs#" &
"Oand#" &
"Omod#" &
"Onot#" &
"Oor#" &
"Orem#" &
"Oxor#" &
"Oeq#" &
"One#" &
"Olt#" &
"Ole#" &
"Ogt#" &
"Oge#" &
"Oadd#" &
"Osubtract#" &
"Oconcat#" &
"Omultiply#" &
"Odivide#" &
"Oexpon#" &
"ada_83#" &
"ada_95#" &
"ada_05#" &
"ada_2005#" &
"ada_12#" &
"ada_2012#" &
"assertion_policy#" &
"assume_no_invalid_values#" &
"c_pass_by_copy#" &
"check_name#" &
"check_policy#" &
"compile_time_error#" &
"compile_time_warning#" &
"compiler_unit#" &
"component_alignment#" &
"convention_identifier#" &
"debug_policy#" &
"detect_blocking#" &
"default_storage_pool#" &
"discard_names#" &
"elaboration_checks#" &
"eliminate#" &
"extend_system#" &
"extensions_allowed#" &
"external_name_casing#" &
"favor_top_level#" &
"float_representation#" &
"implicit_packing#" &
"initialize_scalars#" &
"interrupt_state#" &
"license#" &
"locking_policy#" &
"long_float#" &
"no_run_time#" &
"no_strict_aliasing#" &
"normalize_scalars#" &
"optimize_alignment#" &
"persistent_bss#" &
"polling#" &
"priority_specific_dispatching#" &
"profile#" &
"profile_warnings#" &
"propagate_exceptions#" &
"queuing_policy#" &
"ravenscar#" &
"restricted_run_time#" &
"restrictions#" &
"restriction_warnings#" &
"reviewable#" &
"short_circuit_and_or#" &
"short_descriptors#" &
"source_file_name#" &
"source_file_name_project#" &
"style_checks#" &
"suppress#" &
"suppress_exception_locations#" &
"task_dispatching_policy#" &
"universal_data#" &
"unsuppress#" &
"use_vads_size#" &
"validity_checks#" &
"warnings#" &
"wide_character_encoding#" &
"abort_defer#" &
"all_calls_remote#" &
"annotate#" &
"assert#" &
"asynchronous#" &
"atomic#" &
"atomic_components#" &
"attach_handler#" &
"check#" &
"cil_constructor#" &
"comment#" &
"common_object#" &
"complete_representation#" &
"complex_representation#" &
"controlled#" &
"convention#" &
"cpp_class#" &
"cpp_constructor#" &
"cpp_virtual#" &
"cpp_vtable#" &
"cpu#" &
"debug#" &
"dimension#" &
"elaborate#" &
"elaborate_all#" &
"elaborate_body#" &
"export#" &
"export_exception#" &
"export_function#" &
"export_object#" &
"export_procedure#" &
"export_value#" &
"export_valued_procedure#" &
"external#" &
"finalize_storage_only#" &
"ident#" &
"implemented#" &
"import#" &
"import_exception#" &
"import_function#" &
"import_object#" &
"import_procedure#" &
"import_valued_procedure#" &
"independent#" &
"independent_components#" &
"inline#" &
"inline_always#" &
"inline_generic#" &
"inspection_point#" &
"interface_name#" &
"interrupt_handler#" &
"interrupt_priority#" &
"invariant#" &
"java_constructor#" &
"java_interface#" &
"keep_names#" &
"link_with#" &
"linker_alias#" &
"linker_constructor#" &
"linker_destructor#" &
"linker_options#" &
"linker_section#" &
"list#" &
"machine_attribute#" &
"main#" &
"main_storage#" &
"memory_size#" &
"no_body#" &
"no_return#" &
"obsolescent#" &
"optimize#" &
"ordered#" &
"pack#" &
"page#" &
"passive#" &
"postcondition#" &
"precondition#" &
"predicate#" &
"preelaborable_initialization#" &
"preelaborate#" &
"preelaborate_05#" &
"psect_object#" &
"pure#" &
"pure_05#" &
"pure_function#" &
"relative_deadline#" &
"remote_call_interface#" &
"remote_types#" &
"share_generic#" &
"shared#" &
"shared_passive#" &
"source_reference#" &
"static_elaboration_desired#" &
"stream_convert#" &
"subtitle#" &
"suppress_all#" &
"suppress_debug_info#" &
"suppress_initialization#" &
"system_name#" &
"task_info#" &
"task_name#" &
"task_storage#" &
"thread_local_storage#" &
"time_slice#" &
"title#" &
"unchecked_union#" &
"unimplemented_unit#" &
"universal_aliasing#" &
"unmodified#" &
"unreferenced#" &
"unreferenced_objects#" &
"unreserve_all_interrupts#" &
"volatile#" &
"volatile_components#" &
"weak_external#" &
"ada#" &
"assembler#" &
"cil#" &
"cobol#" &
"cpp#" &
"fortran#" &
"intrinsic#" &
"java#" &
"stdcall#" &
"stubbed#" &
"asm#" &
"assembly#" &
"default#" &
"c_plus_plus#" &
"dll#" &
"win32#" &
"as_is#" &
"assertion#" &
"attribute_name#" &
"body_file_name#" &
"boolean_entry_barriers#" &
"by_any#" &
"by_entry#" &
"by_protected_procedure#" &
"casing#" &
"code#" &
"component#" &
"component_size_4#" &
"copy#" &
"d_float#" &
"descriptor#" &
"dot_replacement#" &
"dynamic#" &
"entity#" &
"entry_count#" &
"external_name#" &
"first_optional_parameter#" &
"form#" &
"g_float#" &
"gcc#" &
"gnat#" &
"gpl#" &
"ieee_float#" &
"ignore#" &
"info#" &
"internal#" &
"link_name#" &
"lowercase#" &
"max_entry_queue_depth#" &
"max_entry_queue_length#" &
"max_size#" &
"mechanism#" &
"message#" &
"mixedcase#" &
"modified_gpl#" &
"name#" &
"nca#" &
"no#" &
"no_dependence#" &
"no_dynamic_attachment#" &
"no_dynamic_interrupts#" &
"no_requeue#" &
"no_requeue_statements#" &
"no_task_attributes#" &
"no_task_attributes_package#" &
"on#" &
"policy#" &
"parameter_types#" &
"reference#" &
"restricted#" &
"result_mechanism#" &
"result_type#" &
"runtime#" &
"sb#" &
"secondary_stack_size#" &
"section#" &
"semaphore#" &
"short_descriptor#" &
"simple_barriers#" &
"spec_file_name#" &
"state#" &
"static#" &
"stack_size#" &
"subunit_file_name#" &
"task_stack_size_default#" &
"task_type#" &
"time_slicing_enabled#" &
"top_guard#" &
"uba#" &
"ubs#" &
"ubsb#" &
"unit_name#" &
"unknown#" &
"unrestricted#" &
"uppercase#" &
"user#" &
"vax_float#" &
"vms#" &
"vtable_ptr#" &
"working_storage#" &
"abort_signal#" &
"access#" &
"address#" &
"address_size#" &
"aft#" &
"alignment#" &
"asm_input#" &
"asm_output#" &
"ast_entry#" &
"bit#" &
"bit_order#" &
"bit_position#" &
"body_version#" &
"callable#" &
"caller#" &
"code_address#" &
"compiler_version#" &
"component_size#" &
"compose#" &
"constrained#" &
"count#" &
"default_bit_order#" &
"definite#" &
"delta#" &
"denorm#" &
"digits#" &
"elaborated#" &
"emax#" &
"enabled#" &
"enum_rep#" &
"enum_val#" &
"epsilon#" &
"exponent#" &
"external_tag#" &
"fast_math#" &
"first#" &
"first_bit#" &
"fixed_value#" &
"fore#" &
"has_access_values#" &
"has_discriminants#" &
"has_tagged_values#" &
"identity#" &
"img#" &
"integer_value#" &
"invalid_value#" &
"large#" &
"last#" &
"last_bit#" &
"leading_part#" &
"length#" &
"machine_emax#" &
"machine_emin#" &
"machine_mantissa#" &
"machine_overflows#" &
"machine_radix#" &
"machine_rounding#" &
"machine_rounds#" &
"machine_size#" &
"mantissa#" &
"max_alignment_for_allocation#" &
"max_size_in_storage_elements#" &
"maximum_alignment#" &
"mechanism_code#" &
"mod#" &
"model_emin#" &
"model_epsilon#" &
"model_mantissa#" &
"model_small#" &
"modulus#" &
"null_parameter#" &
"object_size#" &
"old#" &
"partition_id#" &
"passed_by_reference#" &
"pool_address#" &
"pos#" &
"position#" &
"priority#" &
"range#" &
"range_length#" &
"ref#" &
"result#" &
"round#" &
"safe_emax#" &
"safe_first#" &
"safe_large#" &
"safe_last#" &
"safe_small#" &
"scale#" &
"scaling#" &
"signed_zeros#" &
"size#" &
"small#" &
"storage_size#" &
"storage_unit#" &
"stream_size#" &
"tag#" &
"target_name#" &
"terminated#" &
"to_address#" &
"type_class#" &
"type_key#" &
"uet_address#" &
"unbiased_rounding#" &
"unchecked_access#" &
"unconstrained_array#" &
"universal_literal_string#" &
"unrestricted_access#" &
"vads_size#" &
"val#" &
"valid#" &
"value_size#" &
"version#" &
"wchar_t_size#" &
"wide_wide_width#" &
"wide_width#" &
"width#" &
"word_size#" &
"adjacent#" &
"ceiling#" &
"copy_sign#" &
"floor#" &
"fraction#" &
"from_any#" &
"image#" &
"input#" &
"machine#" &
"max#" &
"min#" &
"model#" &
"pred#" &
"remainder#" &
"rounding#" &
"succ#" &
"to_any#" &
"truncation#" &
"typecode#" &
"value#" &
"wide_image#" &
"wide_wide_image#" &
"wide_value#" &
"wide_wide_value#" &
"output#" &
"read#" &
"write#" &
"elab_body#" &
"elab_spec#" &
"storage_pool#" &
"base#" &
"class#" &
"stub_type#" &
"ceiling_locking#" &
"inheritance_locking#" &
"fifo_queuing#" &
"priority_queuing#" &
"edf_across_priorities#" &
"fifo_within_priorities#" &
"non_preemptive_within_priorities#" &
"round_robin_within_priorities#" &
"access_check#" &
"accessibility_check#" &
"alignment_check#" &
"discriminant_check#" &
"division_check#" &
"elaboration_check#" &
"index_check#" &
"length_check#" &
"overflow_check#" &
"range_check#" &
"storage_check#" &
"tag_check#" &
"validity_check#" &
"all_checks#" &
"abort#" &
"abs#" &
"accept#" &
"and#" &
"all#" &
"array#" &
"at#" &
"begin#" &
"body#" &
"case#" &
"constant#" &
"declare#" &
"delay#" &
"do#" &
"else#" &
"elsif#" &
"end#" &
"entry#" &
"exception#" &
"exit#" &
"for#" &
"function#" &
"generic#" &
"goto#" &
"if#" &
"in#" &
"is#" &
"limited#" &
"loop#" &
"new#" &
"not#" &
"null#" &
"of#" &
"or#" &
"others#" &
"out#" &
"package#" &
"pragma#" &
"private#" &
"procedure#" &
"raise#" &
"record#" &
"rem#" &
"renames#" &
"return#" &
"reverse#" &
"select#" &
"separate#" &
"some#" &
"subtype#" &
"task#" &
"terminate#" &
"then#" &
"type#" &
"use#" &
"when#" &
"while#" &
"with#" &
"xor#" &
"divide#" &
"enclosing_entity#" &
"exception_information#" &
"exception_message#" &
"exception_name#" &
"file#" &
"generic_dispatching_constructor#" &
"import_address#" &
"import_largest_value#" &
"import_value#" &
"is_negative#" &
"line#" &
"rotate_left#" &
"rotate_right#" &
"shift_left#" &
"shift_right#" &
"shift_right_arithmetic#" &
"source_location#" &
"unchecked_conversion#" &
"unchecked_deallocation#" &
"to_pointer#" &
"free#" &
"abstract#" &
"aliased#" &
"protected#" &
"until#" &
"requeue#" &
"tagged#" &
"raise_exception#" &
"aggregate#" &
"archive_builder#" &
"archive_builder_append_option#" &
"archive_indexer#" &
"archive_suffix#" &
"binder#" &
"body_suffix#" &
"builder#" &
"compiler#" &
"compiler_command#" &
"config_body_file_name#" &
"config_body_file_name_index#" &
"config_body_file_name_pattern#" &
"config_file_switches#" &
"config_file_unique#" &
"config_spec_file_name#" &
"config_spec_file_name_index#" &
"config_spec_file_name_pattern#" &
"configuration#" &
"cross_reference#" &
"default_language#" &
"default_switches#" &
"dependency_driver#" &
"dependency_switches#" &
"driver#" &
"excluded_source_dirs#" &
"excluded_source_files#" &
"excluded_source_list_file#" &
"exec_dir#" &
"executable#" &
"executable_suffix#" &
"extends#" &
"external_as_list#" &
"externally_built#" &
"finder#" &
"global_compilation_switches#" &
"global_configuration_pragmas#" &
"global_config_file#" &
"gnatls#" &
"gnatstub#" &
"gnu#" &
"ide#" &
"ignore_source_sub_dirs#" &
"implementation#" &
"implementation_exceptions#" &
"implementation_suffix#" &
"include_switches#" &
"include_path#" &
"include_path_file#" &
"inherit_source_path#" &
"languages#" &
"leading_library_options#" &
"leading_required_switches#" &
"leading_switches#" &
"library#" &
"library_ali_dir#" &
"library_auto_init#" &
"library_auto_init_supported#" &
"library_builder#" &
"library_dir#" &
"library_gcc#" &
"library_install_name_option#" &
"library_interface#" &
"library_kind#" &
"library_name#" &
"library_major_minor_id_supported#" &
"library_options#" &
"library_partial_linker#" &
"library_reference_symbol_file#" &
"library_src_dir#" &
"library_support#" &
"library_symbol_file#" &
"library_symbol_policy#" &
"library_version#" &
"library_version_switches#" &
"linker#" &
"linker_executable_option#" &
"linker_lib_dir_option#" &
"linker_lib_name_option#" &
"local_config_file#" &
"local_configuration_pragmas#" &
"locally_removed_files#" &
"map_file_option#" &
"mapping_file_switches#" &
"mapping_spec_suffix#" &
"mapping_body_suffix#" &
"max_command_line_length#" &
"metrics#" &
"multi_unit_object_separator#" &
"multi_unit_switches#" &
"naming#" &
"none#" &
"object_file_suffix#" &
"object_file_switches#" &
"object_generated#" &
"object_list#" &
"objects_linked#" &
"objects_path#" &
"objects_path_file#" &
"object_dir#" &
"option_list#" &
"path_syntax#" &
"pic_option#" &
"pretty_printer#" &
"prefix#" &
"project#" &
"project_dir#" &
"project_files#" &
"project_path#" &
"response_file_format#" &
"response_file_switches#" &
"roots#" &
"required_switches#" &
"run_path_option#" &
"run_path_origin#" &
"separate_run_path_options#" &
"shared_library_minimum_switches#" &
"shared_library_prefix#" &
"shared_library_suffix#" &
"separate_suffix#" &
"source_dirs#" &
"source_files#" &
"source_list_file#" &
"spec#" &
"spec_suffix#" &
"specification#" &
"specification_exceptions#" &
"specification_suffix#" &
"stack#" &
"switches#" &
"symbolic_link_supported#" &
"synchronize#" &
"toolchain_description#" &
"toolchain_version#" &
"trailing_required_switches#" &
"runtime_library_dir#" &
"runtime_source_dir#" &
"unaligned_valid#" &
"cursor#" &
"element#" &
"element_type#" &
"no_element#" &
"previous#" &
"interface#" &
"overriding#" &
"synchronized#" &
"#";
---------------------
-- Generated Names --
---------------------
-- This section lists the various cases of generated names which are
-- built from existing names by adding unique leading and/or trailing
-- upper case letters. In some cases these names are built recursively,
-- in particular names built from types may be built from types which
-- themselves have generated names. In this list, xxx represents an
-- existing name to which identifying letters are prepended or appended,
-- and a trailing n represents a serial number in an external name that
-- has some semantic significance (e.g. the n'th index type of an array).
-- xxxA access type for formal xxx in entry param record (Exp_Ch9)
-- xxxB tag table for tagged type xxx (Exp_Ch3)
-- xxxB task body procedure for task xxx (Exp_Ch9)
-- xxxD dispatch table for tagged type xxx (Exp_Ch3)
-- xxxD discriminal for discriminant xxx (Sem_Ch3)
-- xxxDn n'th discr check function for rec type xxx (Exp_Ch3)
-- xxxE elaboration boolean flag for task xxx (Exp_Ch9)
-- xxxE dispatch table pointer type for tagged type xxx (Exp_Ch3)
-- xxxE parameters for accept body for entry xxx (Exp_Ch9)
-- xxxFn n'th primitive of a tagged type (named xxx) (Exp_Ch3)
-- xxxJ tag table type index for tagged type xxx (Exp_Ch3)
-- xxxM master Id value for access type xxx (Exp_Ch3)
-- xxxP tag table pointer type for tagged type xxx (Exp_Ch3)
-- xxxP parameter record type for entry xxx (Exp_Ch9)
-- xxxPA access to parameter record type for entry xxx (Exp_Ch9)
-- xxxPn pointer type for n'th primitive of tagged type xxx (Exp_Ch3)
-- xxxR dispatch table pointer for tagged type xxx (Exp_Ch3)
-- xxxT tag table type for tagged type xxx (Exp_Ch3)
-- xxxT literal table for enumeration type xxx (Sem_Ch3)
-- xxxV type for task value record for task xxx (Exp_Ch9)
-- xxxX entry index constant (Exp_Ch9)
-- xxxY dispatch table type for tagged type xxx (Exp_Ch3)
-- xxxZ size variable for task xxx (Exp_Ch9)
-- TSS names
-- xxxDA deep adjust routine for type xxx (Exp_TSS)
-- xxxDF deep finalize routine for type xxx (Exp_TSS)
-- xxxDI deep initialize routine for type xxx (Exp_TSS)
-- xxxEQ composite equality routine for record type xxx (Exp_TSS)
-- xxxFA PolyORB/DSA From_Any converter for type xxx (Exp_TSS)
-- xxxIP initialization procedure for type xxx (Exp_TSS)
-- xxxRA RAS type access routine for type xxx (Exp_TSS)
-- xxxRD RAS type dereference routine for type xxx (Exp_TSS)
-- xxxRP Rep to Pos conversion for enumeration type xxx (Exp_TSS)
-- xxxSA array/slice assignment for controlled comp. arrays (Exp_TSS)
-- xxxSI stream input attribute subprogram for type xxx (Exp_TSS)
-- xxxSO stream output attribute subprogram for type xxx (Exp_TSS)
-- xxxSR stream read attribute subprogram for type xxx (Exp_TSS)
-- xxxSW stream write attribute subprogram for type xxx (Exp_TSS)
-- xxxTA PolyORB/DSA To_Any converter for type xxx (Exp_TSS)
-- xxxTC PolyORB/DSA Typecode for type xxx (Exp_TSS)
-- Implicit type names
-- TxxxT type of literal table for enumeration type xxx (Sem_Ch3)
-- (Note: this list is not complete or accurate ???)
----------------------
-- Get_Attribute_Id --
----------------------
function Get_Attribute_Id (N : Name_Id) return Attribute_Id is
begin
return Attribute_Id'Val (N - First_Attribute_Name);
end Get_Attribute_Id;
-----------------------
-- Get_Convention_Id --
-----------------------
function Get_Convention_Id (N : Name_Id) return Convention_Id is
begin
case N is
when Name_Ada => return Convention_Ada;
when Name_Assembler => return Convention_Assembler;
when Name_C => return Convention_C;
when Name_CIL => return Convention_CIL;
when Name_COBOL => return Convention_COBOL;
when Name_CPP => return Convention_CPP;
when Name_Fortran => return Convention_Fortran;
when Name_Intrinsic => return Convention_Intrinsic;
when Name_Java => return Convention_Java;
when Name_Stdcall => return Convention_Stdcall;
when Name_Stubbed => return Convention_Stubbed;
-- If no direct match, then we must have a convention
-- identifier pragma that has specified this name.
when others =>
for J in 1 .. Convention_Identifiers.Last loop
if N = Convention_Identifiers.Table (J).Name then
return Convention_Identifiers.Table (J).Convention;
end if;
end loop;
raise Program_Error;
end case;
end Get_Convention_Id;
-------------------------
-- Get_Convention_Name --
-------------------------
function Get_Convention_Name (C : Convention_Id) return Name_Id is
begin
case C is
when Convention_Ada => return Name_Ada;
when Convention_Assembler => return Name_Assembler;
when Convention_C => return Name_C;
when Convention_CIL => return Name_CIL;
when Convention_COBOL => return Name_COBOL;
when Convention_CPP => return Name_CPP;
when Convention_Entry => return Name_Entry;
when Convention_Fortran => return Name_Fortran;
when Convention_Intrinsic => return Name_Intrinsic;
when Convention_Java => return Name_Java;
when Convention_Protected => return Name_Protected;
when Convention_Stdcall => return Name_Stdcall;
when Convention_Stubbed => return Name_Stubbed;
end case;
end Get_Convention_Name;
---------------------------
-- Get_Locking_Policy_Id --
---------------------------
function Get_Locking_Policy_Id (N : Name_Id) return Locking_Policy_Id is
begin
return Locking_Policy_Id'Val (N - First_Locking_Policy_Name);
end Get_Locking_Policy_Id;
-------------------
-- Get_Pragma_Id --
-------------------
function Get_Pragma_Id (N : Name_Id) return Pragma_Id is
begin
if N = Name_AST_Entry then
return Pragma_AST_Entry;
elsif N = Name_Fast_Math then
return Pragma_Fast_Math;
elsif N = Name_Interface then
return Pragma_Interface;
elsif N = Name_Priority then
return Pragma_Priority;
elsif N = Name_Relative_Deadline then
return Pragma_Relative_Deadline;
elsif N = Name_Storage_Size then
return Pragma_Storage_Size;
elsif N = Name_Storage_Unit then
return Pragma_Storage_Unit;
elsif N not in First_Pragma_Name .. Last_Pragma_Name then
return Unknown_Pragma;
else
return Pragma_Id'Val (N - First_Pragma_Name);
end if;
end Get_Pragma_Id;
---------------------------
-- Get_Queuing_Policy_Id --
---------------------------
function Get_Queuing_Policy_Id (N : Name_Id) return Queuing_Policy_Id is
begin
return Queuing_Policy_Id'Val (N - First_Queuing_Policy_Name);
end Get_Queuing_Policy_Id;
------------------------------------
-- Get_Task_Dispatching_Policy_Id --
------------------------------------
function Get_Task_Dispatching_Policy_Id
(N : Name_Id) return Task_Dispatching_Policy_Id
is
begin
return Task_Dispatching_Policy_Id'Val
(N - First_Task_Dispatching_Policy_Name);
end Get_Task_Dispatching_Policy_Id;
----------------
-- Initialize --
----------------
procedure Initialize is
P_Index : Natural;
Discard_Name : Name_Id;
begin
P_Index := Preset_Names'First;
loop
Name_Len := 0;
while Preset_Names (P_Index) /= '#' loop
Name_Len := Name_Len + 1;
Name_Buffer (Name_Len) := Preset_Names (P_Index);
P_Index := P_Index + 1;
end loop;
-- We do the Name_Find call to enter the name into the table, but
-- we don't need to do anything with the result, since we already
-- initialized all the preset names to have the right value (we
-- are depending on the order of the names and Preset_Names).
Discard_Name := Name_Find;
P_Index := P_Index + 1;
exit when Preset_Names (P_Index) = '#';
end loop;
-- Make sure that number of names in standard table is correct. If
-- this check fails, run utility program XSNAMES to construct a new
-- properly matching version of the body.
pragma Assert (Discard_Name = Last_Predefined_Name);
-- Initialize the convention identifiers table with the standard
-- set of synonyms that we recognize for conventions.
Convention_Identifiers.Init;
Convention_Identifiers.Append ((Name_Asm, Convention_Assembler));
Convention_Identifiers.Append ((Name_Assembly, Convention_Assembler));
Convention_Identifiers.Append ((Name_Default, Convention_C));
Convention_Identifiers.Append ((Name_External, Convention_C));
Convention_Identifiers.Append ((Name_C_Plus_Plus, Convention_CPP));
Convention_Identifiers.Append ((Name_DLL, Convention_Stdcall));
Convention_Identifiers.Append ((Name_Win32, Convention_Stdcall));
end Initialize;
-----------------------
-- Is_Attribute_Name --
-----------------------
function Is_Attribute_Name (N : Name_Id) return Boolean is
begin
return N in First_Attribute_Name .. Last_Attribute_Name;
end Is_Attribute_Name;
----------------------------------
-- Is_Configuration_Pragma_Name --
----------------------------------
function Is_Configuration_Pragma_Name (N : Name_Id) return Boolean is
begin
return N in First_Pragma_Name .. Last_Configuration_Pragma_Name
or else N = Name_Fast_Math;
end Is_Configuration_Pragma_Name;
------------------------
-- Is_Convention_Name --
------------------------
function Is_Convention_Name (N : Name_Id) return Boolean is
begin
-- Check if this is one of the standard conventions
if N in First_Convention_Name .. Last_Convention_Name
or else N = Name_C
then
return True;
-- Otherwise check if it is in convention identifier table
else
for J in 1 .. Convention_Identifiers.Last loop
if N = Convention_Identifiers.Table (J).Name then
return True;
end if;
end loop;
return False;
end if;
end Is_Convention_Name;
------------------------------
-- Is_Entity_Attribute_Name --
------------------------------
function Is_Entity_Attribute_Name (N : Name_Id) return Boolean is
begin
return N in First_Entity_Attribute_Name .. Last_Entity_Attribute_Name;
end Is_Entity_Attribute_Name;
--------------------------------
-- Is_Function_Attribute_Name --
--------------------------------
function Is_Function_Attribute_Name (N : Name_Id) return Boolean is
begin
return N in
First_Renamable_Function_Attribute ..
Last_Renamable_Function_Attribute;
end Is_Function_Attribute_Name;
---------------------
-- Is_Keyword_Name --
---------------------
function Is_Keyword_Name (N : Name_Id) return Boolean is
begin
return Get_Name_Table_Byte (N) /= 0
and then (Ada_Version >= Ada_95
or else N not in Ada_95_Reserved_Words)
and then (Ada_Version >= Ada_2005
or else N not in Ada_2005_Reserved_Words);
end Is_Keyword_Name;
----------------------------
-- Is_Locking_Policy_Name --
----------------------------
function Is_Locking_Policy_Name (N : Name_Id) return Boolean is
begin
return N in First_Locking_Policy_Name .. Last_Locking_Policy_Name;
end Is_Locking_Policy_Name;
-----------------------------
-- Is_Operator_Symbol_Name --
-----------------------------
function Is_Operator_Symbol_Name (N : Name_Id) return Boolean is
begin
return N in First_Operator_Name .. Last_Operator_Name;
end Is_Operator_Symbol_Name;
--------------------
-- Is_Pragma_Name --
--------------------
function Is_Pragma_Name (N : Name_Id) return Boolean is
begin
return N in First_Pragma_Name .. Last_Pragma_Name
or else N = Name_AST_Entry
or else N = Name_Fast_Math
or else N = Name_Interface
or else N = Name_Relative_Deadline
or else N = Name_Priority
or else N = Name_Storage_Size
or else N = Name_Storage_Unit;
end Is_Pragma_Name;
---------------------------------
-- Is_Procedure_Attribute_Name --
---------------------------------
function Is_Procedure_Attribute_Name (N : Name_Id) return Boolean is
begin
return N in First_Procedure_Attribute .. Last_Procedure_Attribute;
end Is_Procedure_Attribute_Name;
----------------------------
-- Is_Queuing_Policy_Name --
----------------------------
function Is_Queuing_Policy_Name (N : Name_Id) return Boolean is
begin
return N in First_Queuing_Policy_Name .. Last_Queuing_Policy_Name;
end Is_Queuing_Policy_Name;
-------------------------------------
-- Is_Task_Dispatching_Policy_Name --
-------------------------------------
function Is_Task_Dispatching_Policy_Name (N : Name_Id) return Boolean is
begin
return N in First_Task_Dispatching_Policy_Name ..
Last_Task_Dispatching_Policy_Name;
end Is_Task_Dispatching_Policy_Name;
----------------------------
-- Is_Type_Attribute_Name --
----------------------------
function Is_Type_Attribute_Name (N : Name_Id) return Boolean is
begin
return N in First_Type_Attribute_Name .. Last_Type_Attribute_Name;
end Is_Type_Attribute_Name;
----------------------------------
-- Record_Convention_Identifier --
----------------------------------
procedure Record_Convention_Identifier
(Id : Name_Id;
Convention : Convention_Id)
is
begin
Convention_Identifiers.Append ((Id, Convention));
end Record_Convention_Identifier;
end Snames;
|
-- Copyright 2017 Jeff Foley. All rights reserved.
-- Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
local json = require("json")
name = "Mnemonic"
type = "api"
function start()
setratelimit(1)
end
function vertical(ctx, domain)
local page, err = request(ctx, {url=apiurl(domain)})
if (err ~= nil and err ~= '') then
return
end
local resp = json.decode(page)
if (resp == nil or resp["responseCode"] ~= 200) then
return
end
for i, tb in pairs(resp.data) do
if ((tb.rrtype == "a" or tb.rrtype == "aaaa") and inscope(ctx, tb.query)) then
newname(ctx, tb.query)
newaddr(ctx, tb.answer, tb.query)
end
end
end
function apiurl(domain)
return "https://api.mnemonic.no/pdns/v3/" .. domain
end
|
<?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>xFInRange_9_0_2160_3840_15_0_1_9_1_3_s</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>22</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>1</id>
<name>rgb2hsv_4100</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo class_id="6" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>24</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>imgHelper1_4101</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>100</coreId>
</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="_3">
<Value>
<Obj>
<type>1</type>
<id>3</id>
<name>p_read</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>97</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_4">
<Value>
<Obj>
<type>1</type>
<id>4</id>
<name>p_read1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>795045746</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_5">
<Value>
<Obj>
<type>1</type>
<id>5</id>
<name>p_read2</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_6">
<Value>
<Obj>
<type>1</type>
<id>6</id>
<name>p_read3</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1735289188</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_7">
<Value>
<Obj>
<type>1</type>
<id>7</id>
<name>p_read4</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_8">
<Value>
<Obj>
<type>1</type>
<id>8</id>
<name>p_read5</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_9">
<Value>
<Obj>
<type>1</type>
<id>9</id>
<name>p_read6</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>3409111328</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_10">
<Value>
<Obj>
<type>1</type>
<id>10</id>
<name>p_read7</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_11">
<Value>
<Obj>
<type>1</type>
<id>11</id>
<name>p_read8</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>529</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_12">
<Value>
<Obj>
<type>1</type>
<id>12</id>
<name>p_read9</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_13">
<Value>
<Obj>
<type>1</type>
<id>13</id>
<name>p_read10</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_14">
<Value>
<Obj>
<type>1</type>
<id>14</id>
<name>p_read11</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_15">
<Value>
<Obj>
<type>1</type>
<id>15</id>
<name>p_read12</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_16">
<Value>
<Obj>
<type>1</type>
<id>16</id>
<name>p_read13</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_17">
<Value>
<Obj>
<type>1</type>
<id>17</id>
<name>p_read14</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>529</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_18">
<Value>
<Obj>
<type>1</type>
<id>18</id>
<name>p_read15</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_19">
<Value>
<Obj>
<type>1</type>
<id>19</id>
<name>p_read16</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_20">
<Value>
<Obj>
<type>1</type>
<id>20</id>
<name>p_read17</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_21">
<Value>
<Obj>
<type>1</type>
<id>21</id>
<name>p_read18</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>25</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_22">
<Value>
<Obj>
<type>1</type>
<id>22</id>
<name>p_read19</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>89</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>23</id>
<name>p_read_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>123</item>
<item>124</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>1</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>24</id>
<name>p_read_2</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>125</item>
<item>126</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>2</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>25</id>
<name>p_read_3</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>128</item>
<item>129</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>6</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>26</id>
<name>p_read_4</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>130</item>
<item>131</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>7</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>27</id>
<name>p_read_5</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>545</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>132</item>
<item>133</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>8</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>28</id>
<name>p_read_6</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>561</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>134</item>
<item>135</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>9</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>29</id>
<name>p_read_7</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>561</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>136</item>
<item>137</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>10</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>30</id>
<name>p_read_8</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>609</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>138</item>
<item>139</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>11</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>31</id>
<name>p_read_9</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>140</item>
<item>141</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>12</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>32</id>
<name>p_read_10</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>142</item>
<item>143</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>13</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>33</id>
<name>p_read_11</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>657</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>144</item>
<item>145</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>14</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>34</id>
<name>p_read_12</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>146</item>
<item>147</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>15</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>35</id>
<name>p_read_13</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>148</item>
<item>149</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<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="_36">
<Value>
<Obj>
<type>0</type>
<id>36</id>
<name>p_read_14</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>3407920208</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>150</item>
<item>151</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>17</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name>p_read_15</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>152</item>
<item>153</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>18</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name>p_read_16</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>3409342736</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>154</item>
<item>155</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>19</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>39</id>
<name>p_read_17</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>156</item>
<item>157</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>20</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_40">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>p_read_18</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>825045808</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>158</item>
<item>159</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>21</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name>p_read_19</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>160</item>
<item>161</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>22</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_42">
<Value>
<Obj>
<type>0</type>
<id>42</id>
<name>p_read_20</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>3409208016</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>162</item>
<item>163</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>23</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_43">
<Value>
<Obj>
<type>0</type>
<id>45</id>
<name>cast</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>769</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>164</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>3</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_44">
<Value>
<Obj>
<type>0</type>
<id>46</id>
<name>cast1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>539764286</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>165</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>4</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_45">
<Value>
<Obj>
<type>0</type>
<id>47</id>
<name>bound</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>769</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>166</item>
<item>167</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.82</m_delay>
<m_topoIndex>5</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_46">
<Value>
<Obj>
<type>0</type>
<id>48</id>
<name>br_ln92</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_colorthresholding.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>92</lineNumber>
<contextFuncName>xFInRange&lt;9, 0, 2160, 3840, 15, 0, 1, 9, 1, 3&gt;</contextFuncName>
<contextNormFuncName>xFInRange_9_0_2160_3840_15_0_1_9_1_3_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="11" tracking_level="0" version="0">
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second class_id="12" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="13" tracking_level="0" version="0">
<first class_id="14" tracking_level="0" version="0">
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_colorthresholding.hpp</first>
<second>colorthresholding&lt;9, 0, 3, 2160, 3840, 1&gt;</second>
</first>
<second>155</second>
</item>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_colorthresholding.hpp</first>
<second>xFInRange&lt;9, 0, 2160, 3840, 15, 0, 1, 9, 1, 3&gt;</second>
</first>
<second>92</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>168</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.29</m_delay>
<m_topoIndex>24</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_47">
<Value>
<Obj>
<type>0</type>
<id>50</id>
<name>indvar_flatten</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_colorthresholding.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>92</lineNumber>
<contextFuncName>xFInRange&lt;9, 0, 2160, 3840, 15, 0, 1, 9, 1, 3&gt;</contextFuncName>
<contextNormFuncName>xFInRange_9_0_2160_3840_15_0_1_9_1_3_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_colorthresholding.hpp</first>
<second>colorthresholding&lt;9, 0, 3, 2160, 3840, 1&gt;</second>
</first>
<second>155</second>
</item>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_colorthresholding.hpp</first>
<second>xFInRange&lt;9, 0, 2160, 3840, 15, 0, 1, 9, 1, 3&gt;</second>
</first>
<second>92</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>785</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>170</item>
<item>171</item>
<item>172</item>
<item>173</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>25</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_48">
<Value>
<Obj>
<type>0</type>
<id>51</id>
<name>add_ln92</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_colorthresholding.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>92</lineNumber>
<contextFuncName>xFInRange&lt;9, 0, 2160, 3840, 15, 0, 1, 9, 1, 3&gt;</contextFuncName>
<contextNormFuncName>xFInRange_9_0_2160_3840_15_0_1_9_1_3_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_colorthresholding.hpp</first>
<second>colorthresholding&lt;9, 0, 3, 2160, 3840, 1&gt;</second>
</first>
<second>155</second>
</item>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_colorthresholding.hpp</first>
<second>xFInRange&lt;9, 0, 2160, 3840, 15, 0, 1, 9, 1, 3&gt;</second>
</first>
<second>92</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>174</item>
<item>176</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.89</m_delay>
<m_topoIndex>26</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_49">
<Value>
<Obj>
<type>0</type>
<id>52</id>
<name>icmp_ln92</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_colorthresholding.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>92</lineNumber>
<contextFuncName>xFInRange&lt;9, 0, 2160, 3840, 15, 0, 1, 9, 1, 3&gt;</contextFuncName>
<contextNormFuncName>xFInRange_9_0_2160_3840_15_0_1_9_1_3_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_colorthresholding.hpp</first>
<second>colorthresholding&lt;9, 0, 3, 2160, 3840, 1&gt;</second>
</first>
<second>155</second>
</item>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_colorthresholding.hpp</first>
<second>xFInRange&lt;9, 0, 2160, 3840, 15, 0, 1, 9, 1, 3&gt;</second>
</first>
<second>92</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>785</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>177</item>
<item>178</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.96</m_delay>
<m_topoIndex>27</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_50">
<Value>
<Obj>
<type>0</type>
<id>53</id>
<name>br_ln92</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_colorthresholding.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>92</lineNumber>
<contextFuncName>xFInRange&lt;9, 0, 2160, 3840, 15, 0, 1, 9, 1, 3&gt;</contextFuncName>
<contextNormFuncName>xFInRange_9_0_2160_3840_15_0_1_9_1_3_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_colorthresholding.hpp</first>
<second>colorthresholding&lt;9, 0, 3, 2160, 3840, 1&gt;</second>
</first>
<second>155</second>
</item>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_colorthresholding.hpp</first>
<second>xFInRange&lt;9, 0, 2160, 3840, 15, 0, 1, 9, 1, 3&gt;</second>
</first>
<second>92</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>113</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>179</item>
<item>180</item>
<item>181</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>28</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_51">
<Value>
<Obj>
<type>0</type>
<id>59</id>
<name>tmp_V</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/hls_stream_39.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>145</lineNumber>
<contextFuncName>read</contextFuncName>
<contextNormFuncName>read</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/hls_stream_39.h</first>
<second>read</second>
</first>
<second>145</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.V</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>785</coreId>
</Obj>
<bitwidth>24</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>183</item>
<item>184</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.40</m_delay>
<m_topoIndex>29</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_52">
<Value>
<Obj>
<type>0</type>
<id>60</id>
<name>tmp_val1_V</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>674</lineNumber>
<contextFuncName>get</contextFuncName>
<contextNormFuncName>get</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first>
<second>get</second>
</first>
<second>674</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp_val1.V</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>785</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>185</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>30</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_53">
<Value>
<Obj>
<type>0</type>
<id>61</id>
<name>tmp_val1_V_1</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>674</lineNumber>
<contextFuncName>get</contextFuncName>
<contextNormFuncName>get</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first>
<second>get</second>
</first>
<second>674</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp_val1.V</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>785</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>187</item>
<item>188</item>
<item>190</item>
<item>192</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>31</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_54">
<Value>
<Obj>
<type>0</type>
<id>62</id>
<name>tmp_val1_V_2</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>674</lineNumber>
<contextFuncName>get</contextFuncName>
<contextNormFuncName>get</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first>
<second>get</second>
</first>
<second>674</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp_val1.V</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>785</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>193</item>
<item>194</item>
<item>196</item>
<item>198</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>32</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_55">
<Value>
<Obj>
<type>0</type>
<id>63</id>
<name>icmp_ln56</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</contextFuncName>
<contextNormFuncName>inrangeproc_9_1_15_0_9_1_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</first>
<second>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>785</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>199</item>
<item>200</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.31</m_delay>
<m_topoIndex>33</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_56">
<Value>
<Obj>
<type>0</type>
<id>64</id>
<name>xor_ln56</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</contextFuncName>
<contextNormFuncName>inrangeproc_9_1_15_0_9_1_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</first>
<second>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1634038388</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>201</item>
<item>203</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>34</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_57">
<Value>
<Obj>
<type>0</type>
<id>65</id>
<name>icmp_ln56_1</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</contextFuncName>
<contextNormFuncName>inrangeproc_9_1_15_0_9_1_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</first>
<second>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>204</item>
<item>205</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.31</m_delay>
<m_topoIndex>35</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_58">
<Value>
<Obj>
<type>0</type>
<id>66</id>
<name>xor_ln56_1</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</contextFuncName>
<contextNormFuncName>inrangeproc_9_1_15_0_9_1_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</first>
<second>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>833</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>206</item>
<item>207</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>36</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_59">
<Value>
<Obj>
<type>0</type>
<id>67</id>
<name>icmp_ln890</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>890</lineNumber>
<contextFuncName>operator&lt;=&lt;8, false&gt;</contextFuncName>
<contextNormFuncName>operator_le_8_false</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&lt;=&lt;8, false&gt;</second>
</first>
<second>890</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>208</item>
<item>209</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.31</m_delay>
<m_topoIndex>37</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_60">
<Value>
<Obj>
<type>0</type>
<id>68</id>
<name>xor_ln890</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>890</lineNumber>
<contextFuncName>operator&lt;=&lt;8, false&gt;</contextFuncName>
<contextNormFuncName>operator_le_8_false</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&lt;=&lt;8, false&gt;</second>
</first>
<second>890</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>833</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>210</item>
<item>211</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>38</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_61">
<Value>
<Obj>
<type>0</type>
<id>69</id>
<name>icmp_ln56_2</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</contextFuncName>
<contextNormFuncName>inrangeproc_9_1_15_0_9_1_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</first>
<second>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>212</item>
<item>213</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.31</m_delay>
<m_topoIndex>39</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_62">
<Value>
<Obj>
<type>0</type>
<id>70</id>
<name>xor_ln56_2</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</contextFuncName>
<contextNormFuncName>inrangeproc_9_1_15_0_9_1_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</first>
<second>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>833</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>214</item>
<item>215</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>40</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_63">
<Value>
<Obj>
<type>0</type>
<id>71</id>
<name>icmp_ln890_1</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>890</lineNumber>
<contextFuncName>operator&lt;=&lt;8, false&gt;</contextFuncName>
<contextNormFuncName>operator_le_8_false</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&lt;=&lt;8, false&gt;</second>
</first>
<second>890</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>833</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>216</item>
<item>217</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.31</m_delay>
<m_topoIndex>41</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_64">
<Value>
<Obj>
<type>0</type>
<id>72</id>
<name>xor_ln890_1</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>890</lineNumber>
<contextFuncName>operator&lt;=&lt;8, false&gt;</contextFuncName>
<contextNormFuncName>operator_le_8_false</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&lt;=&lt;8, false&gt;</second>
</first>
<second>890</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>218</item>
<item>219</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>42</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_65">
<Value>
<Obj>
<type>0</type>
<id>73</id>
<name>icmp_ln56_3</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</contextFuncName>
<contextNormFuncName>inrangeproc_9_1_15_0_9_1_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</first>
<second>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>881</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>220</item>
<item>221</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.31</m_delay>
<m_topoIndex>43</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_66">
<Value>
<Obj>
<type>0</type>
<id>74</id>
<name>xor_ln56_3</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</contextFuncName>
<contextNormFuncName>inrangeproc_9_1_15_0_9_1_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</first>
<second>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>881</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>222</item>
<item>223</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>44</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_67">
<Value>
<Obj>
<type>0</type>
<id>75</id>
<name>and_ln1348</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>1348</lineNumber>
<contextFuncName>operator&amp;&lt;8, false, 8, false&gt;</contextFuncName>
<contextNormFuncName>operator_8_false_8_false_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&amp;&lt;8, false, 8, false&gt;</second>
</first>
<second>1348</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>881</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>224</item>
<item>225</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>45</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_68">
<Value>
<Obj>
<type>0</type>
<id>76</id>
<name>and_ln1348_2</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>1348</lineNumber>
<contextFuncName>operator&amp;&lt;8, false, 8, false&gt;</contextFuncName>
<contextNormFuncName>operator_8_false_8_false_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&amp;&lt;8, false, 8, false&gt;</second>
</first>
<second>1348</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>881</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>226</item>
<item>227</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>46</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_69">
<Value>
<Obj>
<type>0</type>
<id>77</id>
<name>and_ln1348_4</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>1348</lineNumber>
<contextFuncName>operator&amp;&lt;8, false, 8, false&gt;</contextFuncName>
<contextNormFuncName>operator_8_false_8_false_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&amp;&lt;8, false, 8, false&gt;</second>
</first>
<second>1348</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>881</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>228</item>
<item>229</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>47</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_70">
<Value>
<Obj>
<type>0</type>
<id>78</id>
<name>and_ln1348_6</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>1348</lineNumber>
<contextFuncName>operator&amp;&lt;8, false, 8, false&gt;</contextFuncName>
<contextNormFuncName>operator_8_false_8_false_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&amp;&lt;8, false, 8, false&gt;</second>
</first>
<second>1348</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>881</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>230</item>
<item>231</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>48</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_71">
<Value>
<Obj>
<type>0</type>
<id>79</id>
<name>and_ln1348_1</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>1348</lineNumber>
<contextFuncName>operator&amp;&lt;8, false, 8, false&gt;</contextFuncName>
<contextNormFuncName>operator_8_false_8_false_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&amp;&lt;8, false, 8, false&gt;</second>
</first>
<second>1348</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>881</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>232</item>
<item>233</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.80</m_delay>
<m_topoIndex>49</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_72">
<Value>
<Obj>
<type>0</type>
<id>80</id>
<name>icmp_ln56_4</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</contextFuncName>
<contextNormFuncName>inrangeproc_9_1_15_0_9_1_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</first>
<second>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>881</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>234</item>
<item>235</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.31</m_delay>
<m_topoIndex>50</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_73">
<Value>
<Obj>
<type>0</type>
<id>81</id>
<name>xor_ln56_4</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</contextFuncName>
<contextNormFuncName>inrangeproc_9_1_15_0_9_1_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</first>
<second>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>881</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>236</item>
<item>237</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>51</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_74">
<Value>
<Obj>
<type>0</type>
<id>82</id>
<name>icmp_ln56_5</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</contextFuncName>
<contextNormFuncName>inrangeproc_9_1_15_0_9_1_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</first>
<second>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>238</item>
<item>239</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.31</m_delay>
<m_topoIndex>52</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_75">
<Value>
<Obj>
<type>0</type>
<id>83</id>
<name>xor_ln56_5</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</contextFuncName>
<contextNormFuncName>inrangeproc_9_1_15_0_9_1_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</first>
<second>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>913</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>240</item>
<item>241</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>53</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_76">
<Value>
<Obj>
<type>0</type>
<id>84</id>
<name>icmp_ln890_2</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>890</lineNumber>
<contextFuncName>operator&lt;=&lt;8, false&gt;</contextFuncName>
<contextNormFuncName>operator_le_8_false</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&lt;=&lt;8, false&gt;</second>
</first>
<second>890</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>913</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>242</item>
<item>243</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.31</m_delay>
<m_topoIndex>54</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_77">
<Value>
<Obj>
<type>0</type>
<id>85</id>
<name>xor_ln890_2</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>890</lineNumber>
<contextFuncName>operator&lt;=&lt;8, false&gt;</contextFuncName>
<contextNormFuncName>operator_le_8_false</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&lt;=&lt;8, false&gt;</second>
</first>
<second>890</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>244</item>
<item>245</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>55</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_78">
<Value>
<Obj>
<type>0</type>
<id>86</id>
<name>icmp_ln56_6</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</contextFuncName>
<contextNormFuncName>inrangeproc_9_1_15_0_9_1_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</first>
<second>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>246</item>
<item>247</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.31</m_delay>
<m_topoIndex>56</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_79">
<Value>
<Obj>
<type>0</type>
<id>87</id>
<name>xor_ln56_6</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</contextFuncName>
<contextNormFuncName>inrangeproc_9_1_15_0_9_1_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</first>
<second>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>248</item>
<item>249</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>57</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_80">
<Value>
<Obj>
<type>0</type>
<id>88</id>
<name>icmp_ln890_3</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>890</lineNumber>
<contextFuncName>operator&lt;=&lt;8, false&gt;</contextFuncName>
<contextNormFuncName>operator_le_8_false</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&lt;=&lt;8, false&gt;</second>
</first>
<second>890</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>913</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>250</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_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.31</m_delay>
<m_topoIndex>58</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_81">
<Value>
<Obj>
<type>0</type>
<id>89</id>
<name>xor_ln890_3</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>890</lineNumber>
<contextFuncName>operator&lt;=&lt;8, false&gt;</contextFuncName>
<contextNormFuncName>operator_le_8_false</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&lt;=&lt;8, false&gt;</second>
</first>
<second>890</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>913</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>252</item>
<item>253</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>59</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_82">
<Value>
<Obj>
<type>0</type>
<id>90</id>
<name>icmp_ln56_7</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</contextFuncName>
<contextNormFuncName>inrangeproc_9_1_15_0_9_1_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</first>
<second>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>254</item>
<item>255</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.31</m_delay>
<m_topoIndex>60</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_83">
<Value>
<Obj>
<type>0</type>
<id>91</id>
<name>xor_ln56_7</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</contextFuncName>
<contextNormFuncName>inrangeproc_9_1_15_0_9_1_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</first>
<second>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>980642920</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>256</item>
<item>257</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>61</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_84">
<Value>
<Obj>
<type>0</type>
<id>92</id>
<name>and_ln1348_7</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>1348</lineNumber>
<contextFuncName>operator&amp;&lt;8, false, 8, false&gt;</contextFuncName>
<contextNormFuncName>operator_8_false_8_false_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&amp;&lt;8, false, 8, false&gt;</second>
</first>
<second>1348</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>961</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>258</item>
<item>259</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>62</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_85">
<Value>
<Obj>
<type>0</type>
<id>93</id>
<name>and_ln1348_8</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>1348</lineNumber>
<contextFuncName>operator&amp;&lt;8, false, 8, false&gt;</contextFuncName>
<contextNormFuncName>operator_8_false_8_false_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&amp;&lt;8, false, 8, false&gt;</second>
</first>
<second>1348</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>260</item>
<item>261</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>63</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_86">
<Value>
<Obj>
<type>0</type>
<id>94</id>
<name>and_ln1348_9</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>1348</lineNumber>
<contextFuncName>operator&amp;&lt;8, false, 8, false&gt;</contextFuncName>
<contextNormFuncName>operator_8_false_8_false_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&amp;&lt;8, false, 8, false&gt;</second>
</first>
<second>1348</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>961</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>262</item>
<item>263</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>64</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_87">
<Value>
<Obj>
<type>0</type>
<id>95</id>
<name>and_ln1348_10</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>1348</lineNumber>
<contextFuncName>operator&amp;&lt;8, false, 8, false&gt;</contextFuncName>
<contextNormFuncName>operator_8_false_8_false_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&amp;&lt;8, false, 8, false&gt;</second>
</first>
<second>1348</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>264</item>
<item>265</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>65</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_88">
<Value>
<Obj>
<type>0</type>
<id>96</id>
<name>and_ln1348_3</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>1348</lineNumber>
<contextFuncName>operator&amp;&lt;8, false, 8, false&gt;</contextFuncName>
<contextNormFuncName>operator_8_false_8_false_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&amp;&lt;8, false, 8, false&gt;</second>
</first>
<second>1348</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>266</item>
<item>267</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.80</m_delay>
<m_topoIndex>66</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_89">
<Value>
<Obj>
<type>0</type>
<id>97</id>
<name>icmp_ln56_8</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</contextFuncName>
<contextNormFuncName>inrangeproc_9_1_15_0_9_1_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</first>
<second>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>268</item>
<item>269</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.31</m_delay>
<m_topoIndex>67</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_90">
<Value>
<Obj>
<type>0</type>
<id>98</id>
<name>xor_ln56_8</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</contextFuncName>
<contextNormFuncName>inrangeproc_9_1_15_0_9_1_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</first>
<second>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>270</item>
<item>271</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>68</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_91">
<Value>
<Obj>
<type>0</type>
<id>99</id>
<name>icmp_ln56_9</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</contextFuncName>
<contextNormFuncName>inrangeproc_9_1_15_0_9_1_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</first>
<second>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>272</item>
<item>273</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.31</m_delay>
<m_topoIndex>69</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_92">
<Value>
<Obj>
<type>0</type>
<id>100</id>
<name>xor_ln56_9</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</contextFuncName>
<contextNormFuncName>inrangeproc_9_1_15_0_9_1_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</first>
<second>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1009</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>274</item>
<item>275</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>70</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_93">
<Value>
<Obj>
<type>0</type>
<id>101</id>
<name>icmp_ln890_4</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>890</lineNumber>
<contextFuncName>operator&lt;=&lt;8, false&gt;</contextFuncName>
<contextNormFuncName>operator_le_8_false</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&lt;=&lt;8, false&gt;</second>
</first>
<second>890</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1089</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>276</item>
<item>277</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.31</m_delay>
<m_topoIndex>71</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_94">
<Value>
<Obj>
<type>0</type>
<id>102</id>
<name>xor_ln890_4</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>890</lineNumber>
<contextFuncName>operator&lt;=&lt;8, false&gt;</contextFuncName>
<contextNormFuncName>operator_le_8_false</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&lt;=&lt;8, false&gt;</second>
</first>
<second>890</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>278</item>
<item>279</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>72</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_95">
<Value>
<Obj>
<type>0</type>
<id>103</id>
<name>icmp_ln56_10</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</contextFuncName>
<contextNormFuncName>inrangeproc_9_1_15_0_9_1_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</first>
<second>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1089</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>280</item>
<item>281</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.31</m_delay>
<m_topoIndex>73</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_96">
<Value>
<Obj>
<type>0</type>
<id>104</id>
<name>xor_ln56_10</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</contextFuncName>
<contextNormFuncName>inrangeproc_9_1_15_0_9_1_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</first>
<second>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1089</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>282</item>
<item>283</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>74</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_97">
<Value>
<Obj>
<type>0</type>
<id>105</id>
<name>icmp_ln890_5</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>890</lineNumber>
<contextFuncName>operator&lt;=&lt;8, false&gt;</contextFuncName>
<contextNormFuncName>operator_le_8_false</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&lt;=&lt;8, false&gt;</second>
</first>
<second>890</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>284</item>
<item>285</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.31</m_delay>
<m_topoIndex>75</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_98">
<Value>
<Obj>
<type>0</type>
<id>106</id>
<name>xor_ln890_5</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>890</lineNumber>
<contextFuncName>operator&lt;=&lt;8, false&gt;</contextFuncName>
<contextNormFuncName>operator_le_8_false</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&lt;=&lt;8, false&gt;</second>
</first>
<second>890</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1089</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>286</item>
<item>287</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>76</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_99">
<Value>
<Obj>
<type>0</type>
<id>107</id>
<name>icmp_ln56_11</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</contextFuncName>
<contextNormFuncName>inrangeproc_9_1_15_0_9_1_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</first>
<second>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1089</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>288</item>
<item>289</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.31</m_delay>
<m_topoIndex>77</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_100">
<Value>
<Obj>
<type>0</type>
<id>108</id>
<name>xor_ln56_11</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</contextFuncName>
<contextNormFuncName>inrangeproc_9_1_15_0_9_1_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_inrange.hpp</first>
<second>inrangeproc&lt;9, 1, 15, 0, 9, 1&gt;</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1089</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>290</item>
<item>291</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>78</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_101">
<Value>
<Obj>
<type>0</type>
<id>109</id>
<name>and_ln1348_11</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>1348</lineNumber>
<contextFuncName>operator&amp;&lt;8, false, 8, false&gt;</contextFuncName>
<contextNormFuncName>operator_8_false_8_false_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&amp;&lt;8, false, 8, false&gt;</second>
</first>
<second>1348</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>292</item>
<item>293</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>79</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_102">
<Value>
<Obj>
<type>0</type>
<id>110</id>
<name>and_ln1348_12</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>1348</lineNumber>
<contextFuncName>operator&amp;&lt;8, false, 8, false&gt;</contextFuncName>
<contextNormFuncName>operator_8_false_8_false_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&amp;&lt;8, false, 8, false&gt;</second>
</first>
<second>1348</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1121</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>294</item>
<item>295</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>80</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_103">
<Value>
<Obj>
<type>0</type>
<id>111</id>
<name>and_ln1348_13</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>1348</lineNumber>
<contextFuncName>operator&amp;&lt;8, false, 8, false&gt;</contextFuncName>
<contextNormFuncName>operator_8_false_8_false_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&amp;&lt;8, false, 8, false&gt;</second>
</first>
<second>1348</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1137</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>296</item>
<item>297</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>81</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_104">
<Value>
<Obj>
<type>0</type>
<id>112</id>
<name>and_ln1348_14</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>1348</lineNumber>
<contextFuncName>operator&amp;&lt;8, false, 8, false&gt;</contextFuncName>
<contextNormFuncName>operator_8_false_8_false_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&amp;&lt;8, false, 8, false&gt;</second>
</first>
<second>1348</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>298</item>
<item>299</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>82</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_105">
<Value>
<Obj>
<type>0</type>
<id>113</id>
<name>and_ln1348_5</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>1348</lineNumber>
<contextFuncName>operator&amp;&lt;8, false, 8, false&gt;</contextFuncName>
<contextNormFuncName>operator_8_false_8_false_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator&amp;&lt;8, false, 8, false&gt;</second>
</first>
<second>1348</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>300</item>
<item>301</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.80</m_delay>
<m_topoIndex>83</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_106">
<Value>
<Obj>
<type>0</type>
<id>114</id>
<name>or_ln1349</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>1349</lineNumber>
<contextFuncName>operator|&lt;8, false, 8, false&gt;</contextFuncName>
<contextNormFuncName>operator_or_8_false_8_false</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator|&lt;8, false, 8, false&gt;</second>
</first>
<second>1349</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>302</item>
<item>303</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>84</m_topoIndex>
<m_clusterGroupNumber>4</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_107">
<Value>
<Obj>
<type>0</type>
<id>115</id>
<name>or_ln1349_1</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>1349</lineNumber>
<contextFuncName>operator|&lt;8, false, 8, false&gt;</contextFuncName>
<contextNormFuncName>operator_or_8_false_8_false</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first>
<second>operator|&lt;8, false, 8, false&gt;</second>
</first>
<second>1349</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1185</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>304</item>
<item>305</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>85</m_topoIndex>
<m_clusterGroupNumber>4</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_108">
<Value>
<Obj>
<type>0</type>
<id>116</id>
<name>select_ln174</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/hls_stream_39.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>174</lineNumber>
<contextFuncName>write</contextFuncName>
<contextNormFuncName>write</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/hls_stream_39.h</first>
<second>write</second>
</first>
<second>174</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>306</item>
<item>308</item>
<item>310</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.81</m_delay>
<m_topoIndex>86</m_topoIndex>
<m_clusterGroupNumber>4</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_109">
<Value>
<Obj>
<type>0</type>
<id>117</id>
<name>imgHelper1_4101_write_ln174</name>
<fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/hls_stream_39.h</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>174</lineNumber>
<contextFuncName>write</contextFuncName>
<contextNormFuncName>write</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/hls_stream_39.h</first>
<second>write</second>
</first>
<second>174</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>312</item>
<item>313</item>
<item>314</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.40</m_delay>
<m_topoIndex>87</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_110">
<Value>
<Obj>
<type>0</type>
<id>118</id>
<name>br_ln0</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1233</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>315</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>88</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_111">
<Value>
<Obj>
<type>0</type>
<id>120</id>
<name>_ln155</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_colorthresholding.hpp</fileName>
<fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory>
<lineNumber>155</lineNumber>
<contextFuncName>colorthresholding&lt;9, 0, 3, 2160, 3840, 1&gt;</contextFuncName>
<contextNormFuncName>colorthresholding_9_0_3_2160_3840_1_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_colorthresholding.hpp</first>
<second>colorthresholding&lt;9, 0, 3, 2160, 3840, 1&gt;</second>
</first>
<second>155</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>0</count>
<item_version>0</item_version>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>89</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_112">
<Value>
<Obj>
<type>2</type>
<id>169</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>4123168604</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_113">
<Value>
<Obj>
<type>2</type>
<id>175</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>3224369</coreId>
</Obj>
<bitwidth>32</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>189</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>97</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>8</content>
</item>
<item class_id_reference="16" object_id="_115">
<Value>
<Obj>
<type>2</type>
<id>191</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>15</content>
</item>
<item class_id_reference="16" object_id="_116">
<Value>
<Obj>
<type>2</type>
<id>195</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>3407935744</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>16</content>
</item>
<item class_id_reference="16" object_id="_117">
<Value>
<Obj>
<type>2</type>
<id>197</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>3408287472</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>23</content>
</item>
<item class_id_reference="16" object_id="_118">
<Value>
<Obj>
<type>2</type>
<id>202</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_119">
<Value>
<Obj>
<type>2</type>
<id>307</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>0</const_type>
<content>255</content>
</item>
<item class_id_reference="16" object_id="_120">
<Value>
<Obj>
<type>2</type>
<id>309</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_121">
<Obj>
<type>3</type>
<id>49</id>
<name>entry</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1768189039</coreId>
</Obj>
<node_objs>
<count>24</count>
<item_version>0</item_version>
<item>23</item>
<item>24</item>
<item>25</item>
<item>26</item>
<item>27</item>
<item>28</item>
<item>29</item>
<item>30</item>
<item>31</item>
<item>32</item>
<item>33</item>
<item>34</item>
<item>35</item>
<item>36</item>
<item>37</item>
<item>38</item>
<item>39</item>
<item>40</item>
<item>41</item>
<item>42</item>
<item>45</item>
<item>46</item>
<item>47</item>
<item>48</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_122">
<Obj>
<type>3</type>
<id>54</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1768189039</coreId>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>50</item>
<item>51</item>
<item>52</item>
<item>53</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_123">
<Obj>
<type>3</type>
<id>119</id>
<name>._crit_edge.loopexit.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1768189039</coreId>
</Obj>
<node_objs>
<count>60</count>
<item_version>0</item_version>
<item>59</item>
<item>60</item>
<item>61</item>
<item>62</item>
<item>63</item>
<item>64</item>
<item>65</item>
<item>66</item>
<item>67</item>
<item>68</item>
<item>69</item>
<item>70</item>
<item>71</item>
<item>72</item>
<item>73</item>
<item>74</item>
<item>75</item>
<item>76</item>
<item>77</item>
<item>78</item>
<item>79</item>
<item>80</item>
<item>81</item>
<item>82</item>
<item>83</item>
<item>84</item>
<item>85</item>
<item>86</item>
<item>87</item>
<item>88</item>
<item>89</item>
<item>90</item>
<item>91</item>
<item>92</item>
<item>93</item>
<item>94</item>
<item>95</item>
<item>96</item>
<item>97</item>
<item>98</item>
<item>99</item>
<item>100</item>
<item>101</item>
<item>102</item>
<item>103</item>
<item>104</item>
<item>105</item>
<item>106</item>
<item>107</item>
<item>108</item>
<item>109</item>
<item>110</item>
<item>111</item>
<item>112</item>
<item>113</item>
<item>114</item>
<item>115</item>
<item>116</item>
<item>117</item>
<item>118</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_124">
<Obj>
<type>3</type>
<id>121</id>
<name>xFInRange<9, 0, 2160, 3840, 15, 0, 1, 9, 1, 3>.exit</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>3408674640</coreId>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>120</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>160</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_125">
<id>124</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="_126">
<id>126</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>24</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_127">
<id>129</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_128">
<id>131</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>26</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_129">
<id>133</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>27</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_130">
<id>135</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>28</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_131">
<id>137</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>29</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_132">
<id>139</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>30</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_133">
<id>141</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>31</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_134">
<id>143</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>32</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_135">
<id>145</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>33</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_136">
<id>147</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>34</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_137">
<id>149</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_138">
<id>151</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>36</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_139">
<id>153</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_140">
<id>155</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>38</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_141">
<id>157</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_142">
<id>159</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_143">
<id>161</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_144">
<id>163</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_145">
<id>164</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>45</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_146">
<id>165</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>46</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_147">
<id>166</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_148">
<id>167</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_149">
<id>168</id>
<edge_type>2</edge_type>
<source_obj>54</source_obj>
<sink_obj>48</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_150">
<id>170</id>
<edge_type>1</edge_type>
<source_obj>169</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_151">
<id>171</id>
<edge_type>2</edge_type>
<source_obj>49</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_152">
<id>172</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_153">
<id>173</id>
<edge_type>2</edge_type>
<source_obj>119</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_154">
<id>174</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="_155">
<id>176</id>
<edge_type>1</edge_type>
<source_obj>175</source_obj>
<sink_obj>51</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_156">
<id>177</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>52</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_157">
<id>178</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>52</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_158">
<id>179</id>
<edge_type>1</edge_type>
<source_obj>52</source_obj>
<sink_obj>53</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_159">
<id>180</id>
<edge_type>2</edge_type>
<source_obj>119</source_obj>
<sink_obj>53</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_160">
<id>181</id>
<edge_type>2</edge_type>
<source_obj>121</source_obj>
<sink_obj>53</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_161">
<id>184</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>59</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_162">
<id>185</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="_163">
<id>188</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>61</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_164">
<id>190</id>
<edge_type>1</edge_type>
<source_obj>189</source_obj>
<sink_obj>61</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_165">
<id>192</id>
<edge_type>1</edge_type>
<source_obj>191</source_obj>
<sink_obj>61</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_166">
<id>194</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_167">
<id>196</id>
<edge_type>1</edge_type>
<source_obj>195</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_168">
<id>198</id>
<edge_type>1</edge_type>
<source_obj>197</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_169">
<id>199</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>63</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_170">
<id>200</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>63</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_171">
<id>201</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>64</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_172">
<id>203</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>64</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_173">
<id>204</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_174">
<id>205</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_175">
<id>206</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="_176">
<id>207</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>66</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_177">
<id>208</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>67</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_178">
<id>209</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>67</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_179">
<id>210</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>68</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_180">
<id>211</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>68</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_181">
<id>212</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>69</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_182">
<id>213</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>69</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_183">
<id>214</id>
<edge_type>1</edge_type>
<source_obj>69</source_obj>
<sink_obj>70</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_184">
<id>215</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>70</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_185">
<id>216</id>
<edge_type>1</edge_type>
<source_obj>31</source_obj>
<sink_obj>71</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_186">
<id>217</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>71</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_187">
<id>218</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>72</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_188">
<id>219</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>72</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_189">
<id>220</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>73</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_190">
<id>221</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>73</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_191">
<id>222</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="_192">
<id>223</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_193">
<id>224</id>
<edge_type>1</edge_type>
<source_obj>70</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_194">
<id>225</id>
<edge_type>1</edge_type>
<source_obj>64</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_195">
<id>226</id>
<edge_type>1</edge_type>
<source_obj>75</source_obj>
<sink_obj>76</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_196">
<id>227</id>
<edge_type>1</edge_type>
<source_obj>68</source_obj>
<sink_obj>76</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_197">
<id>228</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>77</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_198">
<id>229</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>77</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_199">
<id>230</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>78</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_200">
<id>231</id>
<edge_type>1</edge_type>
<source_obj>66</source_obj>
<sink_obj>78</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_201">
<id>232</id>
<edge_type>1</edge_type>
<source_obj>78</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_202">
<id>233</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_203">
<id>234</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>80</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_204">
<id>235</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>80</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_205">
<id>236</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="_206">
<id>237</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_207">
<id>238</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_208">
<id>239</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_209">
<id>240</id>
<edge_type>1</edge_type>
<source_obj>82</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_210">
<id>241</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_211">
<id>242</id>
<edge_type>1</edge_type>
<source_obj>29</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_212">
<id>243</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_213">
<id>244</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_214">
<id>245</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_215">
<id>246</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_216">
<id>247</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_217">
<id>248</id>
<edge_type>1</edge_type>
<source_obj>86</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_218">
<id>249</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_219">
<id>250</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_220">
<id>251</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_221">
<id>252</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>89</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_222">
<id>253</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>89</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_223">
<id>254</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>90</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_224">
<id>255</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>90</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_225">
<id>256</id>
<edge_type>1</edge_type>
<source_obj>90</source_obj>
<sink_obj>91</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_226">
<id>257</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>91</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_227">
<id>258</id>
<edge_type>1</edge_type>
<source_obj>87</source_obj>
<sink_obj>92</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_228">
<id>259</id>
<edge_type>1</edge_type>
<source_obj>81</source_obj>
<sink_obj>92</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_229">
<id>260</id>
<edge_type>1</edge_type>
<source_obj>92</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_230">
<id>261</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_231">
<id>262</id>
<edge_type>1</edge_type>
<source_obj>91</source_obj>
<sink_obj>94</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_232">
<id>263</id>
<edge_type>1</edge_type>
<source_obj>89</source_obj>
<sink_obj>94</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_233">
<id>264</id>
<edge_type>1</edge_type>
<source_obj>94</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_234">
<id>265</id>
<edge_type>1</edge_type>
<source_obj>83</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_235">
<id>266</id>
<edge_type>1</edge_type>
<source_obj>95</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_236">
<id>267</id>
<edge_type>1</edge_type>
<source_obj>93</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_237">
<id>268</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>97</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_238">
<id>269</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>97</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_239">
<id>270</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="_240">
<id>271</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_241">
<id>272</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_242">
<id>273</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_243">
<id>274</id>
<edge_type>1</edge_type>
<source_obj>99</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_244">
<id>275</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_245">
<id>276</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_246">
<id>277</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_247">
<id>278</id>
<edge_type>1</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="_248">
<id>279</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_249">
<id>280</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_250">
<id>281</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_251">
<id>282</id>
<edge_type>1</edge_type>
<source_obj>103</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_252">
<id>283</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_253">
<id>284</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_254">
<id>285</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_255">
<id>286</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_256">
<id>287</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_257">
<id>288</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>107</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_258">
<id>289</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>107</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_259">
<id>290</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="_260">
<id>291</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>108</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_261">
<id>292</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="_262">
<id>293</id>
<edge_type>1</edge_type>
<source_obj>98</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_263">
<id>294</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="_264">
<id>295</id>
<edge_type>1</edge_type>
<source_obj>102</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_265">
<id>296</id>
<edge_type>1</edge_type>
<source_obj>108</source_obj>
<sink_obj>111</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_266">
<id>297</id>
<edge_type>1</edge_type>
<source_obj>106</source_obj>
<sink_obj>111</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_267">
<id>298</id>
<edge_type>1</edge_type>
<source_obj>111</source_obj>
<sink_obj>112</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_268">
<id>299</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>112</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_269">
<id>300</id>
<edge_type>1</edge_type>
<source_obj>112</source_obj>
<sink_obj>113</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_270">
<id>301</id>
<edge_type>1</edge_type>
<source_obj>110</source_obj>
<sink_obj>113</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_271">
<id>302</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>114</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_272">
<id>303</id>
<edge_type>1</edge_type>
<source_obj>113</source_obj>
<sink_obj>114</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_273">
<id>304</id>
<edge_type>1</edge_type>
<source_obj>114</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_274">
<id>305</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_275">
<id>306</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="_276">
<id>308</id>
<edge_type>1</edge_type>
<source_obj>307</source_obj>
<sink_obj>116</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_277">
<id>310</id>
<edge_type>1</edge_type>
<source_obj>309</source_obj>
<sink_obj>116</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_278">
<id>313</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>117</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_279">
<id>314</id>
<edge_type>1</edge_type>
<source_obj>116</source_obj>
<sink_obj>117</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_280">
<id>315</id>
<edge_type>2</edge_type>
<source_obj>54</source_obj>
<sink_obj>118</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_281">
<id>380</id>
<edge_type>2</edge_type>
<source_obj>49</source_obj>
<sink_obj>54</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_282">
<id>381</id>
<edge_type>2</edge_type>
<source_obj>54</source_obj>
<sink_obj>121</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_283">
<id>382</id>
<edge_type>2</edge_type>
<source_obj>54</source_obj>
<sink_obj>119</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_284">
<id>383</id>
<edge_type>2</edge_type>
<source_obj>119</source_obj>
<sink_obj>54</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_285">
<mId>1</mId>
<mTag>xFInRange<9, 0, 2160, 3840, 15, 0, 1, 9, 1, 3></mTag>
<mNormTag>xFInRange_9_0_2160_3840_15_0_1_9_1_3_s</mNormTag>
<mType>0</mType>
<sub_regions>
<count>3</count>
<item_version>0</item_version>
<item>2</item>
<item>3</item>
<item>4</item>
</sub_regions>
<basic_blocks>
<count>0</count>
<item_version>0</item_version>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>5</mMinLatency>
<mMaxLatency>8294406</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_286">
<mId>2</mId>
<mTag>Entry</mTag>
<mNormTag>Entry</mNormTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>3</mMinLatency>
<mMaxLatency>3</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_287">
<mId>3</mId>
<mTag>VITIS_LOOP_92_1_VITIS_LOOP_96_2</mTag>
<mNormTag>VITIS_LOOP_92_1_VITIS_LOOP_96_2</mNormTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>54</item>
<item>119</item>
</basic_blocks>
<mII>1</mII>
<mDepth>3</mDepth>
<mMinTripCount>0</mMinTripCount>
<mMaxTripCount>8294400</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>8294401</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_288">
<mId>4</mId>
<mTag>Return</mTag>
<mNormTag>Return</mNormTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>0</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
</cdfg_regions>
<fsm class_id="-1"></fsm>
<res class_id="-1"></res>
<node_label_latency class_id="26" tracking_level="0" version="0">
<count>89</count>
<item_version>0</item_version>
<item class_id="27" tracking_level="0" version="0">
<first>23</first>
<second class_id="28" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>24</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>25</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>26</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>27</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>28</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>29</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>30</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>31</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>32</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>33</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>34</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>35</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>36</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>37</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>39</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>40</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>41</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>42</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>45</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>46</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>0</first>
<second>3</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>50</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>51</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>52</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>53</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>59</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>60</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>61</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>62</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>63</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>64</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>65</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>66</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>67</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>68</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>69</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>70</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>71</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>72</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>73</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>74</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>75</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>76</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>77</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>78</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>79</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>80</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>81</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>82</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>83</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>84</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>85</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>86</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>87</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>88</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>89</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>90</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>91</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>92</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>93</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>94</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>95</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>96</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>97</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>98</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>99</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>100</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>101</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>102</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>103</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>104</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>105</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>106</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>107</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>108</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>109</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>110</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>111</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>112</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>113</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>114</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>115</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>116</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>117</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>118</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>120</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="29" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="0" version="0">
<first>49</first>
<second class_id="31" tracking_level="0" version="0">
<first>0</first>
<second>3</second>
</second>
</item>
<item>
<first>54</first>
<second>
<first>4</first>
<second>4</second>
</second>
</item>
<item>
<first>119</first>
<second>
<first>5</first>
<second>6</second>
</second>
</item>
<item>
<first>121</first>
<second>
<first>5</first>
<second>5</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="32" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="33" tracking_level="1" version="0" object_id="_289">
<region_name>VITIS_LOOP_92_1_VITIS_LOOP_96_2</region_name>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>54</item>
<item>119</item>
</basic_blocks>
<nodes>
<count>0</count>
<item_version>0</item_version>
</nodes>
<anchor_node>-1</anchor_node>
<region_type>8</region_type>
<interval>1</interval>
<pipe_depth>3</pipe_depth>
</item>
</regions>
<dp_fu_nodes class_id="34" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="35" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_expression>
<dp_fu_nodes_module>
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_module>
<dp_fu_nodes_io>
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_io>
<return_ports>
<count>0</count>
<item_version>0</item_version>
</return_ports>
<dp_mem_port_nodes class_id="36" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>0</count>
<item_version>0</item_version>
</dp_reg_nodes>
<dp_regname_nodes>
<count>0</count>
<item_version>0</item_version>
</dp_regname_nodes>
<dp_reg_phi>
<count>0</count>
<item_version>0</item_version>
</dp_reg_phi>
<dp_regname_phi>
<count>0</count>
<item_version>0</item_version>
</dp_regname_phi>
<dp_port_io_nodes class_id="37" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_port_io_nodes>
<port2core>
<count>0</count>
<item_version>0</item_version>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
|
package body Brackelib.Stacks is
procedure Push (Self: in out Stack; Item : T) is
begin
Self.Container.Append (Item);
end Push;
procedure Clear (Self: in out Stack) is
begin
Self.Container.Clear;
end Clear;
function Top(Self: in Stack) return T is
begin
if Is_Empty (Self) then
raise Stack_Empty;
end if;
return Last_Element (Self.Container);
end Top;
function Pop(Self: in out Stack) return T is
Result: T;
begin
if Is_Empty (Self) then
raise Stack_Empty;
end if;
Result := Last_Element (Self.Container);
Delete_Last (Self.Container);
return Result;
end Pop;
function Size (Self : Stack) return Natural is
begin
return Natural (Length (Self.Container));
end Size;
function Is_Empty(Self: Stack) return Boolean is
begin
return Size(Self) = 0;
end Is_Empty;
end Brackelib.Stacks; |
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE boost_serialization>
<boost_serialization signature="serialization::archive" version="14">
<syndb class_id="0" tracking_level="0" version="0">
<userIPLatency>-1</userIPLatency>
<userIPName></userIPName>
<cdfg class_id="1" tracking_level="1" version="0" object_id="_0">
<name>Loop_Col_DCT_Loop_pr</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>1</id>
<name>col_inbuf</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo class_id="6" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>src</originalName>
<rtlName></rtlName>
<coreName>RAM</coreName>
</Obj>
<bitwidth>128</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>col_outbuf_i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>dst</originalName>
<rtlName></rtlName>
<coreName>RAM</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>75</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_3">
<Value>
<Obj>
<type>0</type>
<id>4</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>93</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_4">
<Value>
<Obj>
<type>0</type>
<id>6</id>
<name>i_2_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>96</item>
<item>97</item>
<item>98</item>
<item>99</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_5">
<Value>
<Obj>
<type>0</type>
<id>7</id>
<name>tmp_2</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>43</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="11" tracking_level="0" version="0">
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second class_id="12" tracking_level="0" version="0">
<count>2</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.c</first>
<second>dct</second>
</first>
<second>87</second>
</item>
<item>
<first>
<first>dct.c</first>
<second>dct_2d</second>
</first>
<second>43</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>100</item>
<item>102</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_6">
<Value>
<Obj>
<type>0</type>
<id>8</id>
<name>i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>43</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct</second>
</first>
<second>87</second>
</item>
<item>
<first>
<first>dct.c</first>
<second>dct_2d</second>
</first>
<second>43</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>103</item>
<item>105</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_7">
<Value>
<Obj>
<type>0</type>
<id>9</id>
<name></name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>43</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct</second>
</first>
<second>87</second>
</item>
<item>
<first>
<first>dct.c</first>
<second>dct_2d</second>
</first>
<second>43</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>106</item>
<item>107</item>
<item>108</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_8">
<Value>
<Obj>
<type>0</type>
<id>13</id>
<name>tmp_141_cast_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>43</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct</second>
</first>
<second>87</second>
</item>
<item>
<first>
<first>dct.c</first>
<second>dct_2d</second>
</first>
<second>43</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>109</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_9">
<Value>
<Obj>
<type>0</type>
<id>14</id>
<name>tmp_s</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>43</lineNumber>
<contextFuncName>dct_2d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct</second>
</first>
<second>87</second>
</item>
<item>
<first>
<first>dct.c</first>
<second>dct_2d</second>
</first>
<second>43</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>111</item>
<item>112</item>
<item>114</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>15</id>
<name>tmp_21_cast</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>4</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>4</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>115</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>16</id>
<name>col_inbuf_addr</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</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>116</item>
<item>118</item>
<item>119</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>17</id>
<name></name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>13</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>13</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>120</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>19</id>
<name>k_i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>k</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>121</item>
<item>122</item>
<item>123</item>
<item>124</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>20</id>
<name>tmp_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>13</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>13</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>125</item>
<item>126</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name>k</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>13</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>13</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>k</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>127</item>
<item>128</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>22</id>
<name></name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>13</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>13</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>129</item>
<item>130</item>
<item>131</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>28</id>
<name>tmp_i_32</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>16</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>16</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>132</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>29</id>
<name>tmp_i_cast</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>19</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>19</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>133</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>30</id>
<name>tmp_6</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>19</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>19</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>134</item>
<item>135</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>31</id>
<name>tmp_22_cast</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>19</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>19</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>136</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>32</id>
<name>col_outbuf_i_addr</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>19</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>19</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>137</item>
<item>138</item>
<item>139</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>33</id>
<name>dct_coeff_table_addr</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>16</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>16</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>140</item>
<item>141</item>
<item>142</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>34</id>
<name>dct_coeff_table_load</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>16</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>16</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>127</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>143</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>35</id>
<name>tmp_51</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>16</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>16</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>144</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>36</id>
<name>coeff_cast_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>145</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name>col_inbuf_load</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>128</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>146</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name>tmp_52</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</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>147</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>39</id>
<name>tmp_7_cast_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>148</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>tmp_8_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>149</item>
<item>150</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name>tmp_10_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>16</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>16</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>152</item>
<item>153</item>
<item>155</item>
<item>157</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>42</id>
<name>coeff_1_cast_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>158</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name>tmp_11_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</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>160</item>
<item>161</item>
<item>163</item>
<item>165</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>44</id>
<name>tmp_7_1_cast_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>166</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>45</id>
<name>tmp_8_1_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>167</item>
<item>168</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>46</id>
<name>tmp_12_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>16</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>16</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>169</item>
<item>170</item>
<item>172</item>
<item>174</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>47</id>
<name>coeff_2_cast_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>175</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>48</id>
<name>tmp_13_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</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>176</item>
<item>177</item>
<item>179</item>
<item>181</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>49</id>
<name>tmp_7_2_cast_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>182</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>50</id>
<name>tmp_8_2_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>183</item>
<item>184</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_40">
<Value>
<Obj>
<type>0</type>
<id>51</id>
<name>tmp_15_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>16</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>16</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>185</item>
<item>186</item>
<item>188</item>
<item>190</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>52</id>
<name>coeff_3_cast_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>191</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_42">
<Value>
<Obj>
<type>0</type>
<id>53</id>
<name>tmp_16_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</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>192</item>
<item>193</item>
<item>195</item>
<item>197</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_43">
<Value>
<Obj>
<type>0</type>
<id>54</id>
<name>tmp_7_3_cast_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>198</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_44">
<Value>
<Obj>
<type>0</type>
<id>55</id>
<name>tmp_8_3_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>199</item>
<item>200</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_45">
<Value>
<Obj>
<type>0</type>
<id>56</id>
<name>tmp_17_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>16</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>16</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>201</item>
<item>202</item>
<item>204</item>
<item>206</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_46">
<Value>
<Obj>
<type>0</type>
<id>57</id>
<name>coeff_4_cast_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>207</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_47">
<Value>
<Obj>
<type>0</type>
<id>58</id>
<name>tmp_18_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</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>208</item>
<item>209</item>
<item>211</item>
<item>213</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_48">
<Value>
<Obj>
<type>0</type>
<id>59</id>
<name>tmp_7_4_cast_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>214</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_49">
<Value>
<Obj>
<type>0</type>
<id>60</id>
<name>tmp_8_4_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>215</item>
<item>216</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_50">
<Value>
<Obj>
<type>0</type>
<id>61</id>
<name>tmp_19_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>16</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>16</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>217</item>
<item>218</item>
<item>220</item>
<item>222</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_51">
<Value>
<Obj>
<type>0</type>
<id>62</id>
<name>coeff_5_cast_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>223</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_52">
<Value>
<Obj>
<type>0</type>
<id>63</id>
<name>tmp_20_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</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>224</item>
<item>225</item>
<item>227</item>
<item>229</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_53">
<Value>
<Obj>
<type>0</type>
<id>64</id>
<name>tmp_7_5_cast_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>230</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_54">
<Value>
<Obj>
<type>0</type>
<id>65</id>
<name>tmp_8_5_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>231</item>
<item>232</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_55">
<Value>
<Obj>
<type>0</type>
<id>66</id>
<name>tmp_21_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>16</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>16</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>233</item>
<item>234</item>
<item>236</item>
<item>238</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_56">
<Value>
<Obj>
<type>0</type>
<id>67</id>
<name>coeff_6_cast_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>239</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_57">
<Value>
<Obj>
<type>0</type>
<id>68</id>
<name>tmp_22_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</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>240</item>
<item>241</item>
<item>243</item>
<item>245</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_58">
<Value>
<Obj>
<type>0</type>
<id>69</id>
<name>tmp_7_6_cast_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>246</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_59">
<Value>
<Obj>
<type>0</type>
<id>70</id>
<name>tmp_8_6_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>247</item>
<item>248</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_60">
<Value>
<Obj>
<type>0</type>
<id>71</id>
<name>tmp_3</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>16</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>16</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>15</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>250</item>
<item>251</item>
<item>253</item>
<item>255</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_61">
<Value>
<Obj>
<type>0</type>
<id>72</id>
<name>coeff_7_cast_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>256</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_62">
<Value>
<Obj>
<type>0</type>
<id>73</id>
<name>tmp_24_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</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>257</item>
<item>258</item>
<item>260</item>
<item>262</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_63">
<Value>
<Obj>
<type>0</type>
<id>74</id>
<name>tmp_7_7_cast_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>263</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_64">
<Value>
<Obj>
<type>0</type>
<id>75</id>
<name>tmp_8_7_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>264</item>
<item>265</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_65">
<Value>
<Obj>
<type>0</type>
<id>76</id>
<name>tmp1</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>19</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>19</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>266</item>
<item>267</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_66">
<Value>
<Obj>
<type>0</type>
<id>77</id>
<name>tmp2</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>19</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>19</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>268</item>
<item>269</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_67">
<Value>
<Obj>
<type>0</type>
<id>78</id>
<name>tmp</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>19</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>19</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>270</item>
<item>271</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_68">
<Value>
<Obj>
<type>0</type>
<id>79</id>
<name>tmp4</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>19</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>19</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>272</item>
<item>273</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_69">
<Value>
<Obj>
<type>0</type>
<id>80</id>
<name>tmp6</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>19</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>19</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>275</item>
<item>276</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_70">
<Value>
<Obj>
<type>0</type>
<id>81</id>
<name>tmp5</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>19</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>19</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>277</item>
<item>278</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_71">
<Value>
<Obj>
<type>0</type>
<id>82</id>
<name>tmp3</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>19</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>19</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>279</item>
<item>280</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_72">
<Value>
<Obj>
<type>0</type>
<id>83</id>
<name>tmp_3_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>19</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>19</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>281</item>
<item>282</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_73">
<Value>
<Obj>
<type>0</type>
<id>84</id>
<name>tmp_5_i</name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>19</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>19</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>284</item>
<item>285</item>
<item>287</item>
<item>289</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_74">
<Value>
<Obj>
<type>0</type>
<id>85</id>
<name></name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>19</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>19</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>290</item>
<item>291</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_75">
<Value>
<Obj>
<type>0</type>
<id>87</id>
<name></name>
<fileName>dct.c</fileName>
<fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory>
<lineNumber>13</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.c</first>
<second>dct_1d</second>
</first>
<second>13</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>292</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_76">
<Value>
<Obj>
<type>0</type>
<id>89</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>94</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_77">
<Value>
<Obj>
<type>0</type>
<id>91</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>0</count>
<item_version>0</item_version>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>36</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_78">
<Value>
<Obj>
<type>2</type>
<id>95</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="_79">
<Value>
<Obj>
<type>2</type>
<id>101</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="_80">
<Value>
<Obj>
<type>2</type>
<id>104</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="_81">
<Value>
<Obj>
<type>2</type>
<id>113</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_82">
<Value>
<Obj>
<type>2</type>
<id>117</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="_83">
<Value>
<Obj>
<type>2</type>
<id>154</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>16</content>
</item>
<item class_id_reference="16" object_id="_84">
<Value>
<Obj>
<type>2</type>
<id>156</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>31</content>
</item>
<item class_id_reference="16" object_id="_85">
<Value>
<Obj>
<type>2</type>
<id>162</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<const_type>0</const_type>
<content>16</content>
</item>
<item class_id_reference="16" object_id="_86">
<Value>
<Obj>
<type>2</type>
<id>164</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<const_type>0</const_type>
<content>31</content>
</item>
<item class_id_reference="16" object_id="_87">
<Value>
<Obj>
<type>2</type>
<id>171</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>32</content>
</item>
<item class_id_reference="16" object_id="_88">
<Value>
<Obj>
<type>2</type>
<id>173</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>47</content>
</item>
<item class_id_reference="16" object_id="_89">
<Value>
<Obj>
<type>2</type>
<id>178</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<const_type>0</const_type>
<content>32</content>
</item>
<item class_id_reference="16" object_id="_90">
<Value>
<Obj>
<type>2</type>
<id>180</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<const_type>0</const_type>
<content>47</content>
</item>
<item class_id_reference="16" object_id="_91">
<Value>
<Obj>
<type>2</type>
<id>187</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>48</content>
</item>
<item class_id_reference="16" object_id="_92">
<Value>
<Obj>
<type>2</type>
<id>189</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>63</content>
</item>
<item class_id_reference="16" object_id="_93">
<Value>
<Obj>
<type>2</type>
<id>194</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<const_type>0</const_type>
<content>48</content>
</item>
<item class_id_reference="16" object_id="_94">
<Value>
<Obj>
<type>2</type>
<id>196</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<const_type>0</const_type>
<content>63</content>
</item>
<item class_id_reference="16" object_id="_95">
<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>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>64</content>
</item>
<item class_id_reference="16" object_id="_96">
<Value>
<Obj>
<type>2</type>
<id>205</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>79</content>
</item>
<item class_id_reference="16" object_id="_97">
<Value>
<Obj>
<type>2</type>
<id>210</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<const_type>0</const_type>
<content>64</content>
</item>
<item class_id_reference="16" object_id="_98">
<Value>
<Obj>
<type>2</type>
<id>212</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<const_type>0</const_type>
<content>79</content>
</item>
<item class_id_reference="16" object_id="_99">
<Value>
<Obj>
<type>2</type>
<id>219</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>80</content>
</item>
<item class_id_reference="16" object_id="_100">
<Value>
<Obj>
<type>2</type>
<id>221</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>95</content>
</item>
<item class_id_reference="16" object_id="_101">
<Value>
<Obj>
<type>2</type>
<id>226</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<const_type>0</const_type>
<content>80</content>
</item>
<item class_id_reference="16" object_id="_102">
<Value>
<Obj>
<type>2</type>
<id>228</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<const_type>0</const_type>
<content>95</content>
</item>
<item class_id_reference="16" object_id="_103">
<Value>
<Obj>
<type>2</type>
<id>235</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>96</content>
</item>
<item class_id_reference="16" object_id="_104">
<Value>
<Obj>
<type>2</type>
<id>237</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="_105">
<Value>
<Obj>
<type>2</type>
<id>242</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<const_type>0</const_type>
<content>96</content>
</item>
<item class_id_reference="16" object_id="_106">
<Value>
<Obj>
<type>2</type>
<id>244</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<const_type>0</const_type>
<content>111</content>
</item>
<item class_id_reference="16" object_id="_107">
<Value>
<Obj>
<type>2</type>
<id>252</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="_108">
<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>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>126</content>
</item>
<item class_id_reference="16" object_id="_109">
<Value>
<Obj>
<type>2</type>
<id>259</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<const_type>0</const_type>
<content>112</content>
</item>
<item class_id_reference="16" object_id="_110">
<Value>
<Obj>
<type>2</type>
<id>261</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<const_type>0</const_type>
<content>127</content>
</item>
<item class_id_reference="16" object_id="_111">
<Value>
<Obj>
<type>2</type>
<id>274</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>29</bitwidth>
</Value>
<const_type>0</const_type>
<content>4096</content>
</item>
<item class_id_reference="16" object_id="_112">
<Value>
<Obj>
<type>2</type>
<id>286</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>13</content>
</item>
<item class_id_reference="16" object_id="_113">
<Value>
<Obj>
<type>2</type>
<id>288</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>28</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="_114">
<Obj>
<type>3</type>
<id>5</id>
<name>newFuncRoot</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>4</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_115">
<Obj>
<type>3</type>
<id>10</id>
<name>.preheader1.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>6</item>
<item>7</item>
<item>8</item>
<item>9</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_116">
<Obj>
<type>3</type>
<id>18</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>5</count>
<item_version>0</item_version>
<item>13</item>
<item>14</item>
<item>15</item>
<item>16</item>
<item>17</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_117">
<Obj>
<type>3</type>
<id>23</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>19</item>
<item>20</item>
<item>21</item>
<item>22</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_118">
<Obj>
<type>3</type>
<id>88</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>59</count>
<item_version>0</item_version>
<item>28</item>
<item>29</item>
<item>30</item>
<item>31</item>
<item>32</item>
<item>33</item>
<item>34</item>
<item>35</item>
<item>36</item>
<item>37</item>
<item>38</item>
<item>39</item>
<item>40</item>
<item>41</item>
<item>42</item>
<item>43</item>
<item>44</item>
<item>45</item>
<item>46</item>
<item>47</item>
<item>48</item>
<item>49</item>
<item>50</item>
<item>51</item>
<item>52</item>
<item>53</item>
<item>54</item>
<item>55</item>
<item>56</item>
<item>57</item>
<item>58</item>
<item>59</item>
<item>60</item>
<item>61</item>
<item>62</item>
<item>63</item>
<item>64</item>
<item>65</item>
<item>66</item>
<item>67</item>
<item>68</item>
<item>69</item>
<item>70</item>
<item>71</item>
<item>72</item>
<item>73</item>
<item>74</item>
<item>75</item>
<item>76</item>
<item>77</item>
<item>78</item>
<item>79</item>
<item>80</item>
<item>81</item>
<item>82</item>
<item>83</item>
<item>84</item>
<item>85</item>
<item>87</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_119">
<Obj>
<type>3</type>
<id>90</id>
<name>.preheader1.i.loopexit</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_120">
<Obj>
<type>3</type>
<id>92</id>
<name>.preheader.i.exitStub</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>151</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_121">
<id>93</id>
<edge_type>2</edge_type>
<source_obj>10</source_obj>
<sink_obj>4</sink_obj>
</item>
<item class_id_reference="20" object_id="_122">
<id>94</id>
<edge_type>2</edge_type>
<source_obj>10</source_obj>
<sink_obj>89</sink_obj>
</item>
<item class_id_reference="20" object_id="_123">
<id>96</id>
<edge_type>1</edge_type>
<source_obj>95</source_obj>
<sink_obj>6</sink_obj>
</item>
<item class_id_reference="20" object_id="_124">
<id>97</id>
<edge_type>2</edge_type>
<source_obj>5</source_obj>
<sink_obj>6</sink_obj>
</item>
<item class_id_reference="20" object_id="_125">
<id>98</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>6</sink_obj>
</item>
<item class_id_reference="20" object_id="_126">
<id>99</id>
<edge_type>2</edge_type>
<source_obj>90</source_obj>
<sink_obj>6</sink_obj>
</item>
<item class_id_reference="20" object_id="_127">
<id>100</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>7</sink_obj>
</item>
<item class_id_reference="20" object_id="_128">
<id>102</id>
<edge_type>1</edge_type>
<source_obj>101</source_obj>
<sink_obj>7</sink_obj>
</item>
<item class_id_reference="20" object_id="_129">
<id>103</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>8</sink_obj>
</item>
<item class_id_reference="20" object_id="_130">
<id>105</id>
<edge_type>1</edge_type>
<source_obj>104</source_obj>
<sink_obj>8</sink_obj>
</item>
<item class_id_reference="20" object_id="_131">
<id>106</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>9</sink_obj>
</item>
<item class_id_reference="20" object_id="_132">
<id>107</id>
<edge_type>2</edge_type>
<source_obj>18</source_obj>
<sink_obj>9</sink_obj>
</item>
<item class_id_reference="20" object_id="_133">
<id>108</id>
<edge_type>2</edge_type>
<source_obj>92</source_obj>
<sink_obj>9</sink_obj>
</item>
<item class_id_reference="20" object_id="_134">
<id>109</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_135">
<id>112</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>14</sink_obj>
</item>
<item class_id_reference="20" object_id="_136">
<id>114</id>
<edge_type>1</edge_type>
<source_obj>113</source_obj>
<sink_obj>14</sink_obj>
</item>
<item class_id_reference="20" object_id="_137">
<id>115</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_138">
<id>116</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>16</sink_obj>
</item>
<item class_id_reference="20" object_id="_139">
<id>118</id>
<edge_type>1</edge_type>
<source_obj>117</source_obj>
<sink_obj>16</sink_obj>
</item>
<item class_id_reference="20" object_id="_140">
<id>119</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>16</sink_obj>
</item>
<item class_id_reference="20" object_id="_141">
<id>120</id>
<edge_type>2</edge_type>
<source_obj>23</source_obj>
<sink_obj>17</sink_obj>
</item>
<item class_id_reference="20" object_id="_142">
<id>121</id>
<edge_type>1</edge_type>
<source_obj>95</source_obj>
<sink_obj>19</sink_obj>
</item>
<item class_id_reference="20" object_id="_143">
<id>122</id>
<edge_type>2</edge_type>
<source_obj>18</source_obj>
<sink_obj>19</sink_obj>
</item>
<item class_id_reference="20" object_id="_144">
<id>123</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>19</sink_obj>
</item>
<item class_id_reference="20" object_id="_145">
<id>124</id>
<edge_type>2</edge_type>
<source_obj>88</source_obj>
<sink_obj>19</sink_obj>
</item>
<item class_id_reference="20" object_id="_146">
<id>125</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_147">
<id>126</id>
<edge_type>1</edge_type>
<source_obj>101</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_148">
<id>127</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_149">
<id>128</id>
<edge_type>1</edge_type>
<source_obj>104</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_150">
<id>129</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>22</sink_obj>
</item>
<item class_id_reference="20" object_id="_151">
<id>130</id>
<edge_type>2</edge_type>
<source_obj>88</source_obj>
<sink_obj>22</sink_obj>
</item>
<item class_id_reference="20" object_id="_152">
<id>131</id>
<edge_type>2</edge_type>
<source_obj>90</source_obj>
<sink_obj>22</sink_obj>
</item>
<item class_id_reference="20" object_id="_153">
<id>132</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>28</sink_obj>
</item>
<item class_id_reference="20" object_id="_154">
<id>133</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>29</sink_obj>
</item>
<item class_id_reference="20" object_id="_155">
<id>134</id>
<edge_type>1</edge_type>
<source_obj>29</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_156">
<id>135</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_157">
<id>136</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>31</sink_obj>
</item>
<item class_id_reference="20" object_id="_158">
<id>137</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>32</sink_obj>
</item>
<item class_id_reference="20" object_id="_159">
<id>138</id>
<edge_type>1</edge_type>
<source_obj>117</source_obj>
<sink_obj>32</sink_obj>
</item>
<item class_id_reference="20" object_id="_160">
<id>139</id>
<edge_type>1</edge_type>
<source_obj>31</source_obj>
<sink_obj>32</sink_obj>
</item>
<item class_id_reference="20" object_id="_161">
<id>140</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_162">
<id>141</id>
<edge_type>1</edge_type>
<source_obj>117</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_163">
<id>142</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_164">
<id>143</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_165">
<id>144</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>35</sink_obj>
</item>
<item class_id_reference="20" object_id="_166">
<id>145</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>36</sink_obj>
</item>
<item class_id_reference="20" object_id="_167">
<id>146</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_168">
<id>147</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>38</sink_obj>
</item>
<item class_id_reference="20" object_id="_169">
<id>148</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>39</sink_obj>
</item>
<item class_id_reference="20" object_id="_170">
<id>149</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_171">
<id>150</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_172">
<id>153</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_173">
<id>155</id>
<edge_type>1</edge_type>
<source_obj>154</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_174">
<id>157</id>
<edge_type>1</edge_type>
<source_obj>156</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_175">
<id>158</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_176">
<id>161</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_177">
<id>163</id>
<edge_type>1</edge_type>
<source_obj>162</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_178">
<id>165</id>
<edge_type>1</edge_type>
<source_obj>164</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_179">
<id>166</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_180">
<id>167</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_181">
<id>168</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_182">
<id>170</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_183">
<id>172</id>
<edge_type>1</edge_type>
<source_obj>171</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_184">
<id>174</id>
<edge_type>1</edge_type>
<source_obj>173</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_185">
<id>175</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>47</sink_obj>
</item>
<item class_id_reference="20" object_id="_186">
<id>177</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>48</sink_obj>
</item>
<item class_id_reference="20" object_id="_187">
<id>179</id>
<edge_type>1</edge_type>
<source_obj>178</source_obj>
<sink_obj>48</sink_obj>
</item>
<item class_id_reference="20" object_id="_188">
<id>181</id>
<edge_type>1</edge_type>
<source_obj>180</source_obj>
<sink_obj>48</sink_obj>
</item>
<item class_id_reference="20" object_id="_189">
<id>182</id>
<edge_type>1</edge_type>
<source_obj>48</source_obj>
<sink_obj>49</sink_obj>
</item>
<item class_id_reference="20" object_id="_190">
<id>183</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>50</sink_obj>
</item>
<item class_id_reference="20" object_id="_191">
<id>184</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>50</sink_obj>
</item>
<item class_id_reference="20" object_id="_192">
<id>186</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>51</sink_obj>
</item>
<item class_id_reference="20" object_id="_193">
<id>188</id>
<edge_type>1</edge_type>
<source_obj>187</source_obj>
<sink_obj>51</sink_obj>
</item>
<item class_id_reference="20" object_id="_194">
<id>190</id>
<edge_type>1</edge_type>
<source_obj>189</source_obj>
<sink_obj>51</sink_obj>
</item>
<item class_id_reference="20" object_id="_195">
<id>191</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>52</sink_obj>
</item>
<item class_id_reference="20" object_id="_196">
<id>193</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_197">
<id>195</id>
<edge_type>1</edge_type>
<source_obj>194</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_198">
<id>197</id>
<edge_type>1</edge_type>
<source_obj>196</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_199">
<id>198</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>54</sink_obj>
</item>
<item class_id_reference="20" object_id="_200">
<id>199</id>
<edge_type>1</edge_type>
<source_obj>52</source_obj>
<sink_obj>55</sink_obj>
</item>
<item class_id_reference="20" object_id="_201">
<id>200</id>
<edge_type>1</edge_type>
<source_obj>54</source_obj>
<sink_obj>55</sink_obj>
</item>
<item class_id_reference="20" object_id="_202">
<id>202</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>56</sink_obj>
</item>
<item class_id_reference="20" object_id="_203">
<id>204</id>
<edge_type>1</edge_type>
<source_obj>203</source_obj>
<sink_obj>56</sink_obj>
</item>
<item class_id_reference="20" object_id="_204">
<id>206</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>56</sink_obj>
</item>
<item class_id_reference="20" object_id="_205">
<id>207</id>
<edge_type>1</edge_type>
<source_obj>56</source_obj>
<sink_obj>57</sink_obj>
</item>
<item class_id_reference="20" object_id="_206">
<id>209</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>58</sink_obj>
</item>
<item class_id_reference="20" object_id="_207">
<id>211</id>
<edge_type>1</edge_type>
<source_obj>210</source_obj>
<sink_obj>58</sink_obj>
</item>
<item class_id_reference="20" object_id="_208">
<id>213</id>
<edge_type>1</edge_type>
<source_obj>212</source_obj>
<sink_obj>58</sink_obj>
</item>
<item class_id_reference="20" object_id="_209">
<id>214</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>59</sink_obj>
</item>
<item class_id_reference="20" object_id="_210">
<id>215</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>60</sink_obj>
</item>
<item class_id_reference="20" object_id="_211">
<id>216</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>60</sink_obj>
</item>
<item class_id_reference="20" object_id="_212">
<id>218</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>61</sink_obj>
</item>
<item class_id_reference="20" object_id="_213">
<id>220</id>
<edge_type>1</edge_type>
<source_obj>219</source_obj>
<sink_obj>61</sink_obj>
</item>
<item class_id_reference="20" object_id="_214">
<id>222</id>
<edge_type>1</edge_type>
<source_obj>221</source_obj>
<sink_obj>61</sink_obj>
</item>
<item class_id_reference="20" object_id="_215">
<id>223</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>62</sink_obj>
</item>
<item class_id_reference="20" object_id="_216">
<id>225</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>63</sink_obj>
</item>
<item class_id_reference="20" object_id="_217">
<id>227</id>
<edge_type>1</edge_type>
<source_obj>226</source_obj>
<sink_obj>63</sink_obj>
</item>
<item class_id_reference="20" object_id="_218">
<id>229</id>
<edge_type>1</edge_type>
<source_obj>228</source_obj>
<sink_obj>63</sink_obj>
</item>
<item class_id_reference="20" object_id="_219">
<id>230</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>64</sink_obj>
</item>
<item class_id_reference="20" object_id="_220">
<id>231</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_221">
<id>232</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>234</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>66</sink_obj>
</item>
<item class_id_reference="20" object_id="_223">
<id>236</id>
<edge_type>1</edge_type>
<source_obj>235</source_obj>
<sink_obj>66</sink_obj>
</item>
<item class_id_reference="20" object_id="_224">
<id>238</id>
<edge_type>1</edge_type>
<source_obj>237</source_obj>
<sink_obj>66</sink_obj>
</item>
<item class_id_reference="20" object_id="_225">
<id>239</id>
<edge_type>1</edge_type>
<source_obj>66</source_obj>
<sink_obj>67</sink_obj>
</item>
<item class_id_reference="20" object_id="_226">
<id>241</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>68</sink_obj>
</item>
<item class_id_reference="20" object_id="_227">
<id>243</id>
<edge_type>1</edge_type>
<source_obj>242</source_obj>
<sink_obj>68</sink_obj>
</item>
<item class_id_reference="20" object_id="_228">
<id>245</id>
<edge_type>1</edge_type>
<source_obj>244</source_obj>
<sink_obj>68</sink_obj>
</item>
<item class_id_reference="20" object_id="_229">
<id>246</id>
<edge_type>1</edge_type>
<source_obj>68</source_obj>
<sink_obj>69</sink_obj>
</item>
<item class_id_reference="20" object_id="_230">
<id>247</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>70</sink_obj>
</item>
<item class_id_reference="20" object_id="_231">
<id>248</id>
<edge_type>1</edge_type>
<source_obj>69</source_obj>
<sink_obj>70</sink_obj>
</item>
<item class_id_reference="20" object_id="_232">
<id>251</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>71</sink_obj>
</item>
<item class_id_reference="20" object_id="_233">
<id>253</id>
<edge_type>1</edge_type>
<source_obj>252</source_obj>
<sink_obj>71</sink_obj>
</item>
<item class_id_reference="20" object_id="_234">
<id>255</id>
<edge_type>1</edge_type>
<source_obj>254</source_obj>
<sink_obj>71</sink_obj>
</item>
<item class_id_reference="20" object_id="_235">
<id>256</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>72</sink_obj>
</item>
<item class_id_reference="20" object_id="_236">
<id>258</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>73</sink_obj>
</item>
<item class_id_reference="20" object_id="_237">
<id>260</id>
<edge_type>1</edge_type>
<source_obj>259</source_obj>
<sink_obj>73</sink_obj>
</item>
<item class_id_reference="20" object_id="_238">
<id>262</id>
<edge_type>1</edge_type>
<source_obj>261</source_obj>
<sink_obj>73</sink_obj>
</item>
<item class_id_reference="20" object_id="_239">
<id>263</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>74</sink_obj>
</item>
<item class_id_reference="20" object_id="_240">
<id>264</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>75</sink_obj>
</item>
<item class_id_reference="20" object_id="_241">
<id>265</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>75</sink_obj>
</item>
<item class_id_reference="20" object_id="_242">
<id>266</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>76</sink_obj>
</item>
<item class_id_reference="20" object_id="_243">
<id>267</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>76</sink_obj>
</item>
<item class_id_reference="20" object_id="_244">
<id>268</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>77</sink_obj>
</item>
<item class_id_reference="20" object_id="_245">
<id>269</id>
<edge_type>1</edge_type>
<source_obj>55</source_obj>
<sink_obj>77</sink_obj>
</item>
<item class_id_reference="20" object_id="_246">
<id>270</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>78</sink_obj>
</item>
<item class_id_reference="20" object_id="_247">
<id>271</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>78</sink_obj>
</item>
<item class_id_reference="20" object_id="_248">
<id>272</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>79</sink_obj>
</item>
<item class_id_reference="20" object_id="_249">
<id>273</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>79</sink_obj>
</item>
<item class_id_reference="20" object_id="_250">
<id>275</id>
<edge_type>1</edge_type>
<source_obj>274</source_obj>
<sink_obj>80</sink_obj>
</item>
<item class_id_reference="20" object_id="_251">
<id>276</id>
<edge_type>1</edge_type>
<source_obj>75</source_obj>
<sink_obj>80</sink_obj>
</item>
<item class_id_reference="20" object_id="_252">
<id>277</id>
<edge_type>1</edge_type>
<source_obj>80</source_obj>
<sink_obj>81</sink_obj>
</item>
<item class_id_reference="20" object_id="_253">
<id>278</id>
<edge_type>1</edge_type>
<source_obj>70</source_obj>
<sink_obj>81</sink_obj>
</item>
<item class_id_reference="20" object_id="_254">
<id>279</id>
<edge_type>1</edge_type>
<source_obj>81</source_obj>
<sink_obj>82</sink_obj>
</item>
<item class_id_reference="20" object_id="_255">
<id>280</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>82</sink_obj>
</item>
<item class_id_reference="20" object_id="_256">
<id>281</id>
<edge_type>1</edge_type>
<source_obj>82</source_obj>
<sink_obj>83</sink_obj>
</item>
<item class_id_reference="20" object_id="_257">
<id>282</id>
<edge_type>1</edge_type>
<source_obj>78</source_obj>
<sink_obj>83</sink_obj>
</item>
<item class_id_reference="20" object_id="_258">
<id>285</id>
<edge_type>1</edge_type>
<source_obj>83</source_obj>
<sink_obj>84</sink_obj>
</item>
<item class_id_reference="20" object_id="_259">
<id>287</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>84</sink_obj>
</item>
<item class_id_reference="20" object_id="_260">
<id>289</id>
<edge_type>1</edge_type>
<source_obj>288</source_obj>
<sink_obj>84</sink_obj>
</item>
<item class_id_reference="20" object_id="_261">
<id>290</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>85</sink_obj>
</item>
<item class_id_reference="20" object_id="_262">
<id>291</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>85</sink_obj>
</item>
<item class_id_reference="20" object_id="_263">
<id>292</id>
<edge_type>2</edge_type>
<source_obj>23</source_obj>
<sink_obj>87</sink_obj>
</item>
<item class_id_reference="20" object_id="_264">
<id>328</id>
<edge_type>2</edge_type>
<source_obj>5</source_obj>
<sink_obj>10</sink_obj>
</item>
<item class_id_reference="20" object_id="_265">
<id>329</id>
<edge_type>2</edge_type>
<source_obj>10</source_obj>
<sink_obj>92</sink_obj>
</item>
<item class_id_reference="20" object_id="_266">
<id>330</id>
<edge_type>2</edge_type>
<source_obj>10</source_obj>
<sink_obj>18</sink_obj>
</item>
<item class_id_reference="20" object_id="_267">
<id>331</id>
<edge_type>2</edge_type>
<source_obj>18</source_obj>
<sink_obj>23</sink_obj>
</item>
<item class_id_reference="20" object_id="_268">
<id>332</id>
<edge_type>2</edge_type>
<source_obj>23</source_obj>
<sink_obj>90</sink_obj>
</item>
<item class_id_reference="20" object_id="_269">
<id>333</id>
<edge_type>2</edge_type>
<source_obj>23</source_obj>
<sink_obj>88</sink_obj>
</item>
<item class_id_reference="20" object_id="_270">
<id>334</id>
<edge_type>2</edge_type>
<source_obj>88</source_obj>
<sink_obj>23</sink_obj>
</item>
<item class_id_reference="20" object_id="_271">
<id>335</id>
<edge_type>2</edge_type>
<source_obj>90</source_obj>
<sink_obj>10</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="_272">
<mId>1</mId>
<mTag>Loop_Col_DCT_Loop_pr</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>121</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_273">
<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>5</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="_274">
<mId>3</mId>
<mTag>Col_DCT_Loop</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>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="_275">
<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>10</item>
<item>18</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="_276">
<mId>5</mId>
<mTag>DCT_Outer_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>23</item>
<item>88</item>
</basic_blocks>
<mII>1</mII>
<mDepth>6</mDepth>
<mMinTripCount>8</mMinTripCount>
<mMaxTripCount>8</mMaxTripCount>
<mMinLatency>12</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_277">
<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>90</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="_278">
<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>92</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="24" tracking_level="1" version="0" object_id="_279">
<states class_id="25" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="26" tracking_level="1" version="0" object_id="_280">
<id>1</id>
<operations class_id="27" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="28" tracking_level="1" version="0" object_id="_281">
<id>4</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_282">
<id>2</id>
<operations>
<count>12</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_283">
<id>6</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_284">
<id>7</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_285">
<id>8</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_286">
<id>9</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_287">
<id>11</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_288">
<id>12</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_289">
<id>13</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_290">
<id>14</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_291">
<id>15</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_292">
<id>16</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_293">
<id>17</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_294">
<id>91</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_295">
<id>3</id>
<operations>
<count>10</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_296">
<id>19</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_297">
<id>20</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_298">
<id>21</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_299">
<id>22</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_300">
<id>28</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_301">
<id>29</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_302">
<id>30</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_303">
<id>33</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_304">
<id>34</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_305">
<id>37</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_306">
<id>4</id>
<operations>
<count>18</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_307">
<id>34</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_308">
<id>35</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_309">
<id>37</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_310">
<id>38</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_311">
<id>41</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_312">
<id>43</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_313">
<id>46</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_314">
<id>48</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_315">
<id>51</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_316">
<id>53</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_317">
<id>56</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_318">
<id>58</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_319">
<id>61</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_320">
<id>63</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_321">
<id>66</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_322">
<id>68</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_323">
<id>71</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_324">
<id>73</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_325">
<id>5</id>
<operations>
<count>17</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_326">
<id>36</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_327">
<id>39</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_328">
<id>40</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_329">
<id>47</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_330">
<id>49</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_331">
<id>50</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_332">
<id>57</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_333">
<id>59</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_334">
<id>60</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_335">
<id>67</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_336">
<id>69</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_337">
<id>70</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_338">
<id>72</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_339">
<id>74</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_340">
<id>75</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_341">
<id>80</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_342">
<id>81</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_343">
<id>6</id>
<operations>
<count>13</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_344">
<id>42</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_345">
<id>44</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_346">
<id>45</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_347">
<id>52</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_348">
<id>54</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_349">
<id>55</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_350">
<id>62</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_351">
<id>64</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_352">
<id>65</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_353">
<id>76</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_354">
<id>77</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_355">
<id>79</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_356">
<id>82</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_357">
<id>7</id>
<operations>
<count>3</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_358">
<id>78</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_359">
<id>83</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_360">
<id>84</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_361">
<id>8</id>
<operations>
<count>9</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_362">
<id>24</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_363">
<id>25</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_364">
<id>26</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_365">
<id>27</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_366">
<id>31</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_367">
<id>32</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_368">
<id>85</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_369">
<id>86</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_370">
<id>87</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_371">
<id>9</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_372">
<id>89</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="29" tracking_level="0" version="0">
<count>10</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="1" version="0" object_id="_373">
<inState>1</inState>
<outState>2</outState>
<condition class_id="31" tracking_level="0" version="0">
<id>17</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="_374">
<inState>2</inState>
<outState>3</outState>
<condition>
<id>19</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>7</first>
<second>0</second>
</first>
<second>1</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_375">
<inState>9</inState>
<outState>2</outState>
<condition>
<id>31</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="_376">
<inState>4</inState>
<outState>5</outState>
<condition>
<id>33</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="_377">
<inState>5</inState>
<outState>6</outState>
<condition>
<id>34</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="_378">
<inState>6</inState>
<outState>7</outState>
<condition>
<id>35</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="_379">
<inState>7</inState>
<outState>8</outState>
<condition>
<id>36</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="_380">
<inState>8</inState>
<outState>3</outState>
<condition>
<id>37</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="_381">
<inState>3</inState>
<outState>9</outState>
<condition>
<id>32</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>20</first>
<second>0</second>
</first>
<second>0</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_382">
<inState>3</inState>
<outState>4</outState>
<condition>
<id>38</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>20</first>
<second>0</second>
</first>
<second>1</second>
</item>
</item>
</sop>
</condition>
</item>
</transitions>
</fsm>
<res class_id="-1"></res>
<node_label_latency class_id="37" tracking_level="0" version="0">
<count>75</count>
<item_version>0</item_version>
<item class_id="38" tracking_level="0" version="0">
<first>4</first>
<second class_id="39" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>6</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>7</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>8</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>9</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>13</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>14</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>15</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>16</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>17</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>19</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>20</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>21</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>22</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>28</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>29</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>30</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>31</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>32</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>33</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>34</first>
<second>
<first>2</first>
<second>1</second>
</second>
</item>
<item>
<first>35</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>36</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>37</first>
<second>
<first>2</first>
<second>1</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>39</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>40</first>
<second>
<first>4</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>5</first>
<second>0</second>
</second>
</item>
<item>
<first>43</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>44</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>45</first>
<second>
<first>5</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>4</first>
<second>0</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>49</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>50</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>51</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>52</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>53</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>54</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>55</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>56</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>57</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>58</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>59</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>60</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>61</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>62</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>63</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>64</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>65</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>66</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>67</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>68</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>69</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>70</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>71</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>72</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>73</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>74</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>75</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>76</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>77</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>78</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>79</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>80</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>81</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>82</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>83</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>84</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>85</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>87</first>
<second>
<first>7</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>1</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="40" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="41" tracking_level="0" version="0">
<first>5</first>
<second class_id="42" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>10</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>18</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>23</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>88</first>
<second>
<first>2</first>
<second>7</second>
</second>
</item>
<item>
<first>90</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>92</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="43" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="44" tracking_level="1" version="0" object_id="_383">
<region_name>DCT_Outer_Loop</region_name>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>23</item>
<item>88</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>6</pipe_depth>
</item>
</regions>
<dp_fu_nodes class_id="45" tracking_level="0" version="0">
<count>63</count>
<item_version>0</item_version>
<item class_id="46" tracking_level="0" version="0">
<first>112</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>119</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>126</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>34</item>
<item>34</item>
</second>
</item>
<item>
<first>131</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>37</item>
<item>37</item>
</second>
</item>
<item>
<first>135</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>142</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>151</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>6</item>
</second>
</item>
<item>
<first>162</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>169</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>7</item>
</second>
</item>
<item>
<first>175</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>181</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>186</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>194</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>198</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>204</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>210</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>215</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
<item>
<first>219</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>224</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>228</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>232</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>242</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>252</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>262</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>272</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>282</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>292</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>302</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>312</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>322</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>332</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>342</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>352</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>362</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>372</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>375</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>378</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>381</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>384</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>387</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>390</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>393</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>396</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>399</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>402</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>405</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>408</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>411</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>54</item>
</second>
</item>
<item>
<first>414</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>62</item>
</second>
</item>
<item>
<first>417</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>420</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>424</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>428</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>433</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>443</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</second>
</item>
<item>
<first>447</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>453</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>459</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>465</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>70</item>
<item>81</item>
</second>
</item>
<item>
<first>472</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>75</item>
<item>80</item>
</second>
</item>
<item>
<first>481</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>45</item>
<item>76</item>
</second>
</item>
<item>
<first>488</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>55</item>
<item>77</item>
</second>
</item>
<item>
<first>495</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>65</item>
<item>79</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="48" tracking_level="0" version="0">
<count>60</count>
<item_version>0</item_version>
<item class_id="49" tracking_level="0" version="0">
<first>coeff_1_cast_i_fu_402</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>coeff_2_cast_i_fu_378</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>coeff_3_cast_i_fu_408</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>coeff_4_cast_i_fu_384</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>coeff_5_cast_i_fu_414</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>62</item>
</second>
</item>
<item>
<first>coeff_6_cast_i_fu_390</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>coeff_7_cast_i_fu_396</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>coeff_cast_i_fu_372</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>col_inbuf_addr_gep_fu_112</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>col_outbuf_i_addr_gep_fu_135</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>dct_coeff_table_addr_gep_fu_119</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>grp_fu_465</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>70</item>
<item>81</item>
</second>
</item>
<item>
<first>grp_fu_472</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>75</item>
<item>80</item>
</second>
</item>
<item>
<first>grp_fu_481</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>45</item>
<item>76</item>
</second>
</item>
<item>
<first>grp_fu_488</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>55</item>
<item>77</item>
</second>
</item>
<item>
<first>grp_fu_495</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>65</item>
<item>79</item>
</second>
</item>
<item>
<first>i_2_i_phi_fu_151</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>6</item>
</second>
</item>
<item>
<first>i_fu_175</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>k_fu_204</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>k_i_phi_fu_162</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>tmp3_fu_420</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>tmp_10_i_fu_232</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>tmp_11_i_fu_242</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>tmp_12_i_fu_252</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>tmp_13_i_fu_262</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>tmp_141_cast_i_fu_181</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>tmp_15_i_fu_272</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>tmp_16_i_fu_282</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>tmp_17_i_fu_292</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>tmp_18_i_fu_302</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>tmp_19_i_fu_312</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>tmp_20_i_fu_322</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>tmp_21_cast_fu_194</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>tmp_21_i_fu_332</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>tmp_22_cast_fu_443</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</second>
</item>
<item>
<first>tmp_22_i_fu_342</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>tmp_24_i_fu_362</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>tmp_2_fu_169</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>7</item>
</second>
</item>
<item>
<first>tmp_3_fu_352</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>tmp_3_i_fu_428</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>tmp_51_fu_224</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>tmp_52_fu_228</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>tmp_5_i_fu_433</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>tmp_6_fu_219</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>tmp_7_1_cast_i_fu_405</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>tmp_7_2_cast_i_fu_381</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>tmp_7_3_cast_i_fu_411</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>54</item>
</second>
</item>
<item>
<first>tmp_7_4_cast_i_fu_387</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>tmp_7_5_cast_i_fu_417</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>tmp_7_6_cast_i_fu_393</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>tmp_7_7_cast_i_fu_399</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>tmp_7_cast_i_fu_375</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>tmp_8_2_i_fu_453</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>tmp_8_4_i_fu_459</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>tmp_8_i_fu_447</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>tmp_fu_424</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>tmp_i_32_fu_210</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>tmp_i_cast_fu_215</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
<item>
<first>tmp_i_fu_198</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>tmp_s_fu_186</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
</dp_fu_nodes_expression>
<dp_fu_nodes_module>
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_module>
<dp_fu_nodes_io>
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_io>
<return_ports>
<count>0</count>
<item_version>0</item_version>
</return_ports>
<dp_mem_port_nodes class_id="50" tracking_level="0" version="0">
<count>3</count>
<item_version>0</item_version>
<item class_id="51" tracking_level="0" version="0">
<first class_id="52" tracking_level="0" version="0">
<first>col_inbuf</first>
<second>0</second>
</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>37</item>
<item>37</item>
</second>
</item>
<item>
<first>
<first>col_outbuf_i</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>
<first>dct_coeff_table</first>
<second>0</second>
</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>34</item>
<item>34</item>
</second>
</item>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>34</count>
<item_version>0</item_version>
<item>
<first>147</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>6</item>
</second>
</item>
<item>
<first>158</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>503</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>7</item>
</second>
</item>
<item>
<first>507</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>512</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>517</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>522</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>526</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>531</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>536</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>541</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>546</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>551</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>556</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>561</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>566</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>571</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>576</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>581</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>586</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>591</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>596</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>601</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>606</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>611</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>616</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>621</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>626</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>631</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>636</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>641</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>646</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>651</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>656</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>34</count>
<item_version>0</item_version>
<item>
<first>col_inbuf_addr_reg_517</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>dct_coeff_table_addr_reg_536</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>i_2_i_reg_147</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>6</item>
</second>
</item>
<item>
<first>i_reg_507</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>k_i_reg_158</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>k_reg_526</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>tmp1_reg_641</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>tmp2_reg_646</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>tmp3_reg_651</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>tmp5_reg_636</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>tmp_10_i_reg_551</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>tmp_11_i_reg_556</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>tmp_12_i_reg_561</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>tmp_13_i_reg_566</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>tmp_15_i_reg_571</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>tmp_16_i_reg_576</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>tmp_17_i_reg_581</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>tmp_18_i_reg_586</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>tmp_19_i_reg_591</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>tmp_20_i_reg_596</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>tmp_21_cast_reg_512</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>tmp_21_i_reg_601</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>tmp_22_i_reg_606</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>tmp_24_i_reg_616</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>tmp_2_reg_503</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>7</item>
</second>
</item>
<item>
<first>tmp_3_reg_611</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>tmp_51_reg_541</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>tmp_52_reg_546</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>tmp_5_i_reg_656</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>tmp_6_reg_531</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>tmp_8_2_i_reg_626</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>tmp_8_4_i_reg_631</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>tmp_8_i_reg_621</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>tmp_i_reg_522</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
</dp_regname_nodes>
<dp_reg_phi>
<count>2</count>
<item_version>0</item_version>
<item>
<first>147</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>6</item>
</second>
</item>
<item>
<first>158</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
</dp_reg_phi>
<dp_regname_phi>
<count>2</count>
<item_version>0</item_version>
<item>
<first>i_2_i_reg_147</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>6</item>
</second>
</item>
<item>
<first>k_i_reg_158</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
</dp_regname_phi>
<dp_port_io_nodes class_id="53" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="54" tracking_level="0" version="0">
<first>col_inbuf(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>load</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>37</item>
<item>37</item>
</second>
</item>
</second>
</item>
<item>
<first>col_outbuf_i(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core class_id="55" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="56" tracking_level="0" version="0">
<first>1</first>
<second>RAM</second>
</item>
<item>
<first>2</first>
<second>RAM</second>
</item>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE boost_serialization>
<boost_serialization signature="serialization::archive" version="15">
<syndb class_id="0" tracking_level="0" version="0">
<userIPLatency>-1</userIPLatency>
<userIPName></userIPName>
<cdfg class_id="1" tracking_level="1" version="0" object_id="_0">
<name>honeybee</name>
<ret_bitwidth>64</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>6</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>1</id>
<name>edge_p1_x</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo class_id="6" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>edge_y.p1.x</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs class_id="7" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_2">
<Value>
<Obj>
<type>1</type>
<id>2</id>
<name>edge_p1_y</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>edge_y.p1.z</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_3">
<Value>
<Obj>
<type>1</type>
<id>3</id>
<name>edge_p1_z</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>edge_y.p1.y</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_4">
<Value>
<Obj>
<type>1</type>
<id>4</id>
<name>edge_p2_x</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>edge_y.p2.x</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_5">
<Value>
<Obj>
<type>1</type>
<id>5</id>
<name>edge_p2_y</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>edge_y.p2.z</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_6">
<Value>
<Obj>
<type>1</type>
<id>6</id>
<name>edge_p2_z</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>edge_y.p2.y</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>12</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_7">
<Value>
<Obj>
<type>0</type>
<id>15</id>
<name>edge_p2_z_read</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>142</lineNumber>
<contextFuncName>honeybee</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="10" tracking_level="0" version="0">
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second class_id="11" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="12" tracking_level="0" version="0">
<first class_id="13" tracking_level="0" version="0">
<first>src/honeybee.c</first>
<second>honeybee</second>
</first>
<second>142</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>29</item>
<item>30</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>1</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_8">
<Value>
<Obj>
<type>0</type>
<id>16</id>
<name>edge_p2_y_read</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>142</lineNumber>
<contextFuncName>honeybee</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>honeybee</second>
</first>
<second>142</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>31</item>
<item>32</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>2</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_9">
<Value>
<Obj>
<type>0</type>
<id>17</id>
<name>edge_p2_x_read</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>142</lineNumber>
<contextFuncName>honeybee</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>honeybee</second>
</first>
<second>142</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>33</item>
<item>34</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>3</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>18</id>
<name>edge_p1_z_read</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>142</lineNumber>
<contextFuncName>honeybee</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>honeybee</second>
</first>
<second>142</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>35</item>
<item>36</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>4</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>19</id>
<name>edge_p1_y_read</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>142</lineNumber>
<contextFuncName>honeybee</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>honeybee</second>
</first>
<second>142</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>37</item>
<item>38</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>5</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>20</id>
<name>edge_p1_x_read</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>142</lineNumber>
<contextFuncName>honeybee</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>honeybee</second>
</first>
<second>142</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>39</item>
<item>40</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>6</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name>collisions_z</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>149</lineNumber>
<contextFuncName>honeybee</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>honeybee</second>
</first>
<second>149</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>collisions_z</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>8</count>
<item_version>0</item_version>
<item>42</item>
<item>44</item>
<item>45</item>
<item>46</item>
<item>47</item>
<item>48</item>
<item>49</item>
<item>50</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>8.75</m_delay>
<m_topoIndex>7</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>22</id>
<name>collisions_y</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>150</lineNumber>
<contextFuncName>honeybee</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>honeybee</second>
</first>
<second>150</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>collisions_y</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>8</count>
<item_version>0</item_version>
<item>51</item>
<item>53</item>
<item>54</item>
<item>55</item>
<item>56</item>
<item>57</item>
<item>58</item>
<item>59</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>8.75</m_delay>
<m_topoIndex>8</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>23</id>
<name>collisions_x</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>151</lineNumber>
<contextFuncName>honeybee</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>honeybee</second>
</first>
<second>151</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>collisions_x</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>8</count>
<item_version>0</item_version>
<item>60</item>
<item>62</item>
<item>63</item>
<item>64</item>
<item>65</item>
<item>66</item>
<item>67</item>
<item>68</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>8.75</m_delay>
<m_topoIndex>9</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>24</id>
<name>or_ln153</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>153</lineNumber>
<contextFuncName>honeybee</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>honeybee</second>
</first>
<second>153</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>69</item>
<item>70</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>10</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>25</id>
<name>collisions</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>153</lineNumber>
<contextFuncName>honeybee</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>honeybee</second>
</first>
<second>153</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>collisions</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>71</item>
<item>72</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.80</m_delay>
<m_topoIndex>11</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>26</id>
<name>_ln154</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>154</lineNumber>
<contextFuncName>honeybee</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>honeybee</second>
</first>
<second>154</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>73</item>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>12</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_19">
<Value>
<Obj>
<type>2</type>
<id>41</id>
<name>checkAxis</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<const_type>6</const_type>
<content><constant:checkAxis></content>
</item>
<item class_id_reference="16" object_id="_20">
<Value>
<Obj>
<type>2</type>
<id>43</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="_21">
<Value>
<Obj>
<type>2</type>
<id>52</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_22">
<Value>
<Obj>
<type>2</type>
<id>61</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<const_type>0</const_type>
<content>2</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="_23">
<Obj>
<type>3</type>
<id>27</id>
<name>honeybee</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>12</count>
<item_version>0</item_version>
<item>15</item>
<item>16</item>
<item>17</item>
<item>18</item>
<item>19</item>
<item>20</item>
<item>21</item>
<item>22</item>
<item>23</item>
<item>24</item>
<item>25</item>
<item>26</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>35</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_24">
<id>30</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>15</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_25">
<id>32</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>16</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_26">
<id>34</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_27">
<id>36</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>18</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_28">
<id>38</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>19</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_29">
<id>40</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>20</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_30">
<id>42</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_31">
<id>44</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_32">
<id>45</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_33">
<id>46</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_34">
<id>47</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_35">
<id>48</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_36">
<id>49</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_37">
<id>50</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_38">
<id>51</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_39">
<id>53</id>
<edge_type>1</edge_type>
<source_obj>52</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_40">
<id>54</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_41">
<id>55</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_42">
<id>56</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>22</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>17</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_44">
<id>58</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="_45">
<id>59</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_46">
<id>60</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_47">
<id>62</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_48">
<id>63</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_49">
<id>64</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_50">
<id>65</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>23</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>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_52">
<id>67</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_53">
<id>68</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_54">
<id>69</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>24</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_55">
<id>70</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="_56">
<id>71</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_57">
<id>72</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_58">
<id>73</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>26</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_59">
<mId>1</mId>
<mTag>honeybee</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>226</mMinLatency>
<mMaxLatency>226</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
</cdfg_regions>
<fsm class_id="-1"></fsm>
<res class_id="-1"></res>
<node_label_latency class_id="26" tracking_level="0" version="0">
<count>12</count>
<item_version>0</item_version>
<item class_id="27" tracking_level="0" version="0">
<first>15</first>
<second class_id="28" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>16</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>17</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>18</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>19</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>20</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>21</first>
<second>
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>22</first>
<second>
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>23</first>
<second>
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>24</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>25</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>26</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="29" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="0" version="0">
<first>27</first>
<second class_id="31" tracking_level="0" version="0">
<first>0</first>
<second>1</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="32" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</regions>
<dp_fu_nodes class_id="33" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="34" 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="35" 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="36" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_port_io_nodes>
<port2core class_id="37" 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>
|
----------------------------------------------------------------
-- ZLib for Ada thick binding. --
-- --
-- Copyright (C) 2002-2004 Dmitriy Anisimkov --
-- --
-- Open source license information is in the zlib.ads file. --
----------------------------------------------------------------
-- $Id: zlib.adb,v 1.2 2020/09/15 02:05:31 christos Exp $
with Ada.Exceptions;
with Ada.Unchecked_Conversion;
with Ada.Unchecked_Deallocation;
with Interfaces.C.Strings;
with ZLib.Thin;
package body ZLib is
use type Thin.Int;
type Z_Stream is new Thin.Z_Stream;
type Return_Code_Enum is
(OK,
STREAM_END,
NEED_DICT,
ERRNO,
STREAM_ERROR,
DATA_ERROR,
MEM_ERROR,
BUF_ERROR,
VERSION_ERROR);
type Flate_Step_Function is access
function (Strm : in Thin.Z_Streamp; Flush : in Thin.Int) return Thin.Int;
pragma Convention (C, Flate_Step_Function);
type Flate_End_Function is access
function (Ctrm : in Thin.Z_Streamp) return Thin.Int;
pragma Convention (C, Flate_End_Function);
type Flate_Type is record
Step : Flate_Step_Function;
Done : Flate_End_Function;
end record;
subtype Footer_Array is Stream_Element_Array (1 .. 8);
Simple_GZip_Header : constant Stream_Element_Array (1 .. 10)
:= (16#1f#, 16#8b#, -- Magic header
16#08#, -- Z_DEFLATED
16#00#, -- Flags
16#00#, 16#00#, 16#00#, 16#00#, -- Time
16#00#, -- XFlags
16#03# -- OS code
);
-- The simplest gzip header is not for informational, but just for
-- gzip format compatibility.
-- Note that some code below is using assumption
-- Simple_GZip_Header'Last > Footer_Array'Last, so do not make
-- Simple_GZip_Header'Last <= Footer_Array'Last.
Return_Code : constant array (Thin.Int range <>) of Return_Code_Enum
:= (0 => OK,
1 => STREAM_END,
2 => NEED_DICT,
-1 => ERRNO,
-2 => STREAM_ERROR,
-3 => DATA_ERROR,
-4 => MEM_ERROR,
-5 => BUF_ERROR,
-6 => VERSION_ERROR);
Flate : constant array (Boolean) of Flate_Type
:= (True => (Step => Thin.Deflate'Access,
Done => Thin.DeflateEnd'Access),
False => (Step => Thin.Inflate'Access,
Done => Thin.InflateEnd'Access));
Flush_Finish : constant array (Boolean) of Flush_Mode
:= (True => Finish, False => No_Flush);
procedure Raise_Error (Stream : in Z_Stream);
pragma Inline (Raise_Error);
procedure Raise_Error (Message : in String);
pragma Inline (Raise_Error);
procedure Check_Error (Stream : in Z_Stream; Code : in Thin.Int);
procedure Free is new Ada.Unchecked_Deallocation
(Z_Stream, Z_Stream_Access);
function To_Thin_Access is new Ada.Unchecked_Conversion
(Z_Stream_Access, Thin.Z_Streamp);
procedure Translate_GZip
(Filter : in out Filter_Type;
In_Data : in Ada.Streams.Stream_Element_Array;
In_Last : out Ada.Streams.Stream_Element_Offset;
Out_Data : out Ada.Streams.Stream_Element_Array;
Out_Last : out Ada.Streams.Stream_Element_Offset;
Flush : in Flush_Mode);
-- Separate translate routine for make gzip header.
procedure Translate_Auto
(Filter : in out Filter_Type;
In_Data : in Ada.Streams.Stream_Element_Array;
In_Last : out Ada.Streams.Stream_Element_Offset;
Out_Data : out Ada.Streams.Stream_Element_Array;
Out_Last : out Ada.Streams.Stream_Element_Offset;
Flush : in Flush_Mode);
-- translate routine without additional headers.
-----------------
-- Check_Error --
-----------------
procedure Check_Error (Stream : in Z_Stream; Code : in Thin.Int) is
use type Thin.Int;
begin
if Code /= Thin.Z_OK then
Raise_Error
(Return_Code_Enum'Image (Return_Code (Code))
& ": " & Last_Error_Message (Stream));
end if;
end Check_Error;
-----------
-- Close --
-----------
procedure Close
(Filter : in out Filter_Type;
Ignore_Error : in Boolean := False)
is
Code : Thin.Int;
begin
if not Ignore_Error and then not Is_Open (Filter) then
raise Status_Error;
end if;
Code := Flate (Filter.Compression).Done (To_Thin_Access (Filter.Strm));
if Ignore_Error or else Code = Thin.Z_OK then
Free (Filter.Strm);
else
declare
Error_Message : constant String
:= Last_Error_Message (Filter.Strm.all);
begin
Free (Filter.Strm);
Ada.Exceptions.Raise_Exception
(ZLib_Error'Identity,
Return_Code_Enum'Image (Return_Code (Code))
& ": " & Error_Message);
end;
end if;
end Close;
-----------
-- CRC32 --
-----------
function CRC32
(CRC : in Unsigned_32;
Data : in Ada.Streams.Stream_Element_Array)
return Unsigned_32
is
use Thin;
begin
return Unsigned_32 (crc32 (ULong (CRC),
Data'Address,
Data'Length));
end CRC32;
procedure CRC32
(CRC : in out Unsigned_32;
Data : in Ada.Streams.Stream_Element_Array) is
begin
CRC := CRC32 (CRC, Data);
end CRC32;
------------------
-- Deflate_Init --
------------------
procedure Deflate_Init
(Filter : in out Filter_Type;
Level : in Compression_Level := Default_Compression;
Strategy : in Strategy_Type := Default_Strategy;
Method : in Compression_Method := Deflated;
Window_Bits : in Window_Bits_Type := Default_Window_Bits;
Memory_Level : in Memory_Level_Type := Default_Memory_Level;
Header : in Header_Type := Default)
is
use type Thin.Int;
Win_Bits : Thin.Int := Thin.Int (Window_Bits);
begin
if Is_Open (Filter) then
raise Status_Error;
end if;
-- We allow ZLib to make header only in case of default header type.
-- Otherwise we would either do header by ourselfs, or do not do
-- header at all.
if Header = None or else Header = GZip then
Win_Bits := -Win_Bits;
end if;
-- For the GZip CRC calculation and make headers.
if Header = GZip then
Filter.CRC := 0;
Filter.Offset := Simple_GZip_Header'First;
else
Filter.Offset := Simple_GZip_Header'Last + 1;
end if;
Filter.Strm := new Z_Stream;
Filter.Compression := True;
Filter.Stream_End := False;
Filter.Header := Header;
if Thin.Deflate_Init
(To_Thin_Access (Filter.Strm),
Level => Thin.Int (Level),
method => Thin.Int (Method),
windowBits => Win_Bits,
memLevel => Thin.Int (Memory_Level),
strategy => Thin.Int (Strategy)) /= Thin.Z_OK
then
Raise_Error (Filter.Strm.all);
end if;
end Deflate_Init;
-----------
-- Flush --
-----------
procedure Flush
(Filter : in out Filter_Type;
Out_Data : out Ada.Streams.Stream_Element_Array;
Out_Last : out Ada.Streams.Stream_Element_Offset;
Flush : in Flush_Mode)
is
No_Data : Stream_Element_Array := (1 .. 0 => 0);
Last : Stream_Element_Offset;
begin
Translate (Filter, No_Data, Last, Out_Data, Out_Last, Flush);
end Flush;
-----------------------
-- Generic_Translate --
-----------------------
procedure Generic_Translate
(Filter : in out ZLib.Filter_Type;
In_Buffer_Size : in Integer := Default_Buffer_Size;
Out_Buffer_Size : in Integer := Default_Buffer_Size)
is
In_Buffer : Stream_Element_Array
(1 .. Stream_Element_Offset (In_Buffer_Size));
Out_Buffer : Stream_Element_Array
(1 .. Stream_Element_Offset (Out_Buffer_Size));
Last : Stream_Element_Offset;
In_Last : Stream_Element_Offset;
In_First : Stream_Element_Offset;
Out_Last : Stream_Element_Offset;
begin
Main : loop
Data_In (In_Buffer, Last);
In_First := In_Buffer'First;
loop
Translate
(Filter => Filter,
In_Data => In_Buffer (In_First .. Last),
In_Last => In_Last,
Out_Data => Out_Buffer,
Out_Last => Out_Last,
Flush => Flush_Finish (Last < In_Buffer'First));
if Out_Buffer'First <= Out_Last then
Data_Out (Out_Buffer (Out_Buffer'First .. Out_Last));
end if;
exit Main when Stream_End (Filter);
-- The end of in buffer.
exit when In_Last = Last;
In_First := In_Last + 1;
end loop;
end loop Main;
end Generic_Translate;
------------------
-- Inflate_Init --
------------------
procedure Inflate_Init
(Filter : in out Filter_Type;
Window_Bits : in Window_Bits_Type := Default_Window_Bits;
Header : in Header_Type := Default)
is
use type Thin.Int;
Win_Bits : Thin.Int := Thin.Int (Window_Bits);
procedure Check_Version;
-- Check the latest header types compatibility.
procedure Check_Version is
begin
if Version <= "1.1.4" then
Raise_Error
("Inflate header type " & Header_Type'Image (Header)
& " incompatible with ZLib version " & Version);
end if;
end Check_Version;
begin
if Is_Open (Filter) then
raise Status_Error;
end if;
case Header is
when None =>
Check_Version;
-- Inflate data without headers determined
-- by negative Win_Bits.
Win_Bits := -Win_Bits;
when GZip =>
Check_Version;
-- Inflate gzip data defined by flag 16.
Win_Bits := Win_Bits + 16;
when Auto =>
Check_Version;
-- Inflate with automatic detection
-- of gzip or native header defined by flag 32.
Win_Bits := Win_Bits + 32;
when Default => null;
end case;
Filter.Strm := new Z_Stream;
Filter.Compression := False;
Filter.Stream_End := False;
Filter.Header := Header;
if Thin.Inflate_Init
(To_Thin_Access (Filter.Strm), Win_Bits) /= Thin.Z_OK
then
Raise_Error (Filter.Strm.all);
end if;
end Inflate_Init;
-------------
-- Is_Open --
-------------
function Is_Open (Filter : in Filter_Type) return Boolean is
begin
return Filter.Strm /= null;
end Is_Open;
-----------------
-- Raise_Error --
-----------------
procedure Raise_Error (Message : in String) is
begin
Ada.Exceptions.Raise_Exception (ZLib_Error'Identity, Message);
end Raise_Error;
procedure Raise_Error (Stream : in Z_Stream) is
begin
Raise_Error (Last_Error_Message (Stream));
end Raise_Error;
----------
-- Read --
----------
procedure Read
(Filter : in out Filter_Type;
Item : out Ada.Streams.Stream_Element_Array;
Last : out Ada.Streams.Stream_Element_Offset;
Flush : in Flush_Mode := No_Flush)
is
In_Last : Stream_Element_Offset;
Item_First : Ada.Streams.Stream_Element_Offset := Item'First;
V_Flush : Flush_Mode := Flush;
begin
pragma Assert (Rest_First in Buffer'First .. Buffer'Last + 1);
pragma Assert (Rest_Last in Buffer'First - 1 .. Buffer'Last);
loop
if Rest_Last = Buffer'First - 1 then
V_Flush := Finish;
elsif Rest_First > Rest_Last then
Read (Buffer, Rest_Last);
Rest_First := Buffer'First;
if Rest_Last < Buffer'First then
V_Flush := Finish;
end if;
end if;
Translate
(Filter => Filter,
In_Data => Buffer (Rest_First .. Rest_Last),
In_Last => In_Last,
Out_Data => Item (Item_First .. Item'Last),
Out_Last => Last,
Flush => V_Flush);
Rest_First := In_Last + 1;
exit when Stream_End (Filter)
or else Last = Item'Last
or else (Last >= Item'First and then Allow_Read_Some);
Item_First := Last + 1;
end loop;
end Read;
----------------
-- Stream_End --
----------------
function Stream_End (Filter : in Filter_Type) return Boolean is
begin
if Filter.Header = GZip and Filter.Compression then
return Filter.Stream_End
and then Filter.Offset = Footer_Array'Last + 1;
else
return Filter.Stream_End;
end if;
end Stream_End;
--------------
-- Total_In --
--------------
function Total_In (Filter : in Filter_Type) return Count is
begin
return Count (Thin.Total_In (To_Thin_Access (Filter.Strm).all));
end Total_In;
---------------
-- Total_Out --
---------------
function Total_Out (Filter : in Filter_Type) return Count is
begin
return Count (Thin.Total_Out (To_Thin_Access (Filter.Strm).all));
end Total_Out;
---------------
-- Translate --
---------------
procedure Translate
(Filter : in out Filter_Type;
In_Data : in Ada.Streams.Stream_Element_Array;
In_Last : out Ada.Streams.Stream_Element_Offset;
Out_Data : out Ada.Streams.Stream_Element_Array;
Out_Last : out Ada.Streams.Stream_Element_Offset;
Flush : in Flush_Mode) is
begin
if Filter.Header = GZip and then Filter.Compression then
Translate_GZip
(Filter => Filter,
In_Data => In_Data,
In_Last => In_Last,
Out_Data => Out_Data,
Out_Last => Out_Last,
Flush => Flush);
else
Translate_Auto
(Filter => Filter,
In_Data => In_Data,
In_Last => In_Last,
Out_Data => Out_Data,
Out_Last => Out_Last,
Flush => Flush);
end if;
end Translate;
--------------------
-- Translate_Auto --
--------------------
procedure Translate_Auto
(Filter : in out Filter_Type;
In_Data : in Ada.Streams.Stream_Element_Array;
In_Last : out Ada.Streams.Stream_Element_Offset;
Out_Data : out Ada.Streams.Stream_Element_Array;
Out_Last : out Ada.Streams.Stream_Element_Offset;
Flush : in Flush_Mode)
is
use type Thin.Int;
Code : Thin.Int;
begin
if not Is_Open (Filter) then
raise Status_Error;
end if;
if Out_Data'Length = 0 and then In_Data'Length = 0 then
raise Constraint_Error;
end if;
Set_Out (Filter.Strm.all, Out_Data'Address, Out_Data'Length);
Set_In (Filter.Strm.all, In_Data'Address, In_Data'Length);
Code := Flate (Filter.Compression).Step
(To_Thin_Access (Filter.Strm),
Thin.Int (Flush));
if Code = Thin.Z_STREAM_END then
Filter.Stream_End := True;
else
Check_Error (Filter.Strm.all, Code);
end if;
In_Last := In_Data'Last
- Stream_Element_Offset (Avail_In (Filter.Strm.all));
Out_Last := Out_Data'Last
- Stream_Element_Offset (Avail_Out (Filter.Strm.all));
end Translate_Auto;
--------------------
-- Translate_GZip --
--------------------
procedure Translate_GZip
(Filter : in out Filter_Type;
In_Data : in Ada.Streams.Stream_Element_Array;
In_Last : out Ada.Streams.Stream_Element_Offset;
Out_Data : out Ada.Streams.Stream_Element_Array;
Out_Last : out Ada.Streams.Stream_Element_Offset;
Flush : in Flush_Mode)
is
Out_First : Stream_Element_Offset;
procedure Add_Data (Data : in Stream_Element_Array);
-- Add data to stream from the Filter.Offset till necessary,
-- used for add gzip headr/footer.
procedure Put_32
(Item : in out Stream_Element_Array;
Data : in Unsigned_32);
pragma Inline (Put_32);
--------------
-- Add_Data --
--------------
procedure Add_Data (Data : in Stream_Element_Array) is
Data_First : Stream_Element_Offset renames Filter.Offset;
Data_Last : Stream_Element_Offset;
Data_Len : Stream_Element_Offset; -- -1
Out_Len : Stream_Element_Offset; -- -1
begin
Out_First := Out_Last + 1;
if Data_First > Data'Last then
return;
end if;
Data_Len := Data'Last - Data_First;
Out_Len := Out_Data'Last - Out_First;
if Data_Len <= Out_Len then
Out_Last := Out_First + Data_Len;
Data_Last := Data'Last;
else
Out_Last := Out_Data'Last;
Data_Last := Data_First + Out_Len;
end if;
Out_Data (Out_First .. Out_Last) := Data (Data_First .. Data_Last);
Data_First := Data_Last + 1;
Out_First := Out_Last + 1;
end Add_Data;
------------
-- Put_32 --
------------
procedure Put_32
(Item : in out Stream_Element_Array;
Data : in Unsigned_32)
is
D : Unsigned_32 := Data;
begin
for J in Item'First .. Item'First + 3 loop
Item (J) := Stream_Element (D and 16#FF#);
D := Shift_Right (D, 8);
end loop;
end Put_32;
begin
Out_Last := Out_Data'First - 1;
if not Filter.Stream_End then
Add_Data (Simple_GZip_Header);
Translate_Auto
(Filter => Filter,
In_Data => In_Data,
In_Last => In_Last,
Out_Data => Out_Data (Out_First .. Out_Data'Last),
Out_Last => Out_Last,
Flush => Flush);
CRC32 (Filter.CRC, In_Data (In_Data'First .. In_Last));
end if;
if Filter.Stream_End and then Out_Last <= Out_Data'Last then
-- This detection method would work only when
-- Simple_GZip_Header'Last > Footer_Array'Last
if Filter.Offset = Simple_GZip_Header'Last + 1 then
Filter.Offset := Footer_Array'First;
end if;
declare
Footer : Footer_Array;
begin
Put_32 (Footer, Filter.CRC);
Put_32 (Footer (Footer'First + 4 .. Footer'Last),
Unsigned_32 (Total_In (Filter)));
Add_Data (Footer);
end;
end if;
end Translate_GZip;
-------------
-- Version --
-------------
function Version return String is
begin
return Interfaces.C.Strings.Value (Thin.zlibVersion);
end Version;
-----------
-- Write --
-----------
procedure Write
(Filter : in out Filter_Type;
Item : in Ada.Streams.Stream_Element_Array;
Flush : in Flush_Mode := No_Flush)
is
Buffer : Stream_Element_Array (1 .. Buffer_Size);
In_Last : Stream_Element_Offset;
Out_Last : Stream_Element_Offset;
In_First : Stream_Element_Offset := Item'First;
begin
if Item'Length = 0 and Flush = No_Flush then
return;
end if;
loop
Translate
(Filter => Filter,
In_Data => Item (In_First .. Item'Last),
In_Last => In_Last,
Out_Data => Buffer,
Out_Last => Out_Last,
Flush => Flush);
if Out_Last >= Buffer'First then
Write (Buffer (1 .. Out_Last));
end if;
exit when In_Last = Item'Last or Stream_End (Filter);
In_First := In_Last + 1;
end loop;
end Write;
end ZLib;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Web Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2014-2015, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with League.String_Vectors;
with League.Strings;
limited with Matreshka.Servlet_Containers;
with Servlet.Configs;
with Servlet.Contexts;
with Servlet.Servlet_Registrations;
with Servlet.Servlets;
package Matreshka.Servlet_Registrations is
type Servlet_Access is access all Servlet.Servlets.Servlet'Class;
type Servlet_Registration
(Context :
not null access Matreshka.Servlet_Containers.Servlet_Container'Class) is
limited new Servlet.Servlet_Registrations.Servlet_Registration
and Servlet.Configs.Servlet_Config with
record
Name : League.Strings.Universal_String;
Servlet : Servlet_Access;
end record;
type Servlet_Registration_Access is access all Servlet_Registration'Class;
overriding function Add_Mapping
(Self : not null access Servlet_Registration;
URL_Patterns : League.String_Vectors.Universal_String_Vector)
return League.String_Vectors.Universal_String_Vector;
overriding function Get_Servlet_Name
(Self : Servlet_Registration) return League.Strings.Universal_String;
-- Returns the name of this servlet instance. The name may be provided via
-- server administration, assigned in the web application deployment
-- descriptor, or for an unregistered (and thus unnamed) servlet instance
-- it will be the servlet's class name.
overriding function Get_Servlet_Context
(Self : Servlet_Registration)
return not null access Servlet.Contexts.Servlet_Context'Class;
-- Returns a reference to the ServletContext in which the caller is
-- executing.
end Matreshka.Servlet_Registrations;
|
-----------------------------------------------------------------------
-- babel-files-sets -- Sets of files
-- Copyright (C) 2014 Stephane.Carrez
-- Written by Stephane.Carrez (Stephane.Carrez@gmail.com)
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Ada.Containers.Ordered_Sets;
with Util.Strings;
package body Babel.Files.Sets is
-- Insert the file in the file set.
procedure Insert (Into : in out File_Set;
File : in File_Type) is
begin
File_Sets.Insert (Into, File);
end Insert;
end Babel.Files.Sets;
|
------------------------------------------------------------------------------
-- --
-- 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 the copyright holder nor the names of its --
-- contributors may be used to endorse or promote products derived --
-- from this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT --
-- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, --
-- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY --
-- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT --
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE --
-- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
with System; use System;
with Ada.Unchecked_Conversion;
with STM32_SVD.RCC; use STM32_SVD.RCC;
with STM32_SVD.CRC; use STM32_SVD.CRC;
with STM32.RCC; use STM32.RCC;
package body STM32.Device is
HPRE_Presc_Table : constant array (UInt4) of UInt32 :=
(1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 8, 16, 64, 128, 256, 512);
PPRE_Presc_Table : constant array (UInt3) of UInt32 :=
(1, 1, 1, 1, 2, 4, 8, 16);
------------------
-- Enable_Clock --
------------------
procedure Enable_Clock (This : aliased GPIO_Port) is
begin
if This'Address = GPIOA_Base then
RCC_Periph.AHBENR.IOPAEN := True;
elsif This'Address = GPIOB_Base then
RCC_Periph.AHBENR.IOPBEN := True;
elsif This'Address = GPIOC_Base then
RCC_Periph.AHBENR.IOPCEN := True;
elsif This'Address = GPIOD_Base then
RCC_Periph.AHBENR.IOPDEN := True;
elsif This'Address = GPIOF_Base then
RCC_Periph.AHBENR.IOPFEN := True;
else
raise Unknown_Device;
end if;
end Enable_Clock;
------------------
-- Enable_Clock --
------------------
procedure Enable_Clock (Point : GPIO_Point)
is
begin
Enable_Clock (Point.Periph.all);
end Enable_Clock;
------------------
-- Enable_Clock --
------------------
procedure Enable_Clock (Points : GPIO_Points)
is
begin
for Point of Points loop
Enable_Clock (Point.Periph.all);
end loop;
end Enable_Clock;
-----------
-- Reset --
-----------
procedure Reset (This : aliased GPIO_Port) is
begin
if This'Address = GPIOA_Base then
RCC_Periph.AHBRSTR.IOPARST := True;
RCC_Periph.AHBRSTR.IOPARST := False;
elsif This'Address = GPIOB_Base then
RCC_Periph.AHBRSTR.IOPBRST := True;
RCC_Periph.AHBRSTR.IOPBRST := False;
elsif This'Address = GPIOC_Base then
RCC_Periph.AHBRSTR.IOPCRST := True;
RCC_Periph.AHBRSTR.IOPCRST := False;
elsif This'Address = GPIOD_Base then
RCC_Periph.AHBRSTR.IOPDRST := True;
RCC_Periph.AHBRSTR.IOPDRST := False;
elsif This'Address = GPIOF_Base then
RCC_Periph.AHBRSTR.IOPFRST := True;
RCC_Periph.AHBRSTR.IOPFRST := False;
else
raise Unknown_Device;
end if;
end Reset;
-----------
-- Reset --
-----------
procedure Reset (Point : GPIO_Point) is
begin
Reset (Point.Periph.all);
end Reset;
-----------
-- Reset --
-----------
procedure Reset (Points : GPIO_Points)
is
Do_Reset : Boolean;
begin
for J in Points'Range loop
Do_Reset := True;
for K in Points'First .. J - 1 loop
if Points (K).Periph = Points (J).Periph then
Do_Reset := False;
exit;
end if;
end loop;
if Do_Reset then
Reset (Points (J).Periph.all);
end if;
end loop;
end Reset;
------------------------------
-- GPIO_Port_Representation --
------------------------------
function GPIO_Port_Representation (Port : GPIO_Port) return UInt4 is
begin
-- TODO: rather ugly to have this board-specific range here
if Port'Address = GPIOA_Base then
return 0;
elsif Port'Address = GPIOB_Base then
return 1;
elsif Port'Address = GPIOC_Base then
return 2;
elsif Port'Address = GPIOD_Base then
return 3;
elsif Port'Address = GPIOF_Base then
return 5;
else
raise Program_Error;
end if;
end GPIO_Port_Representation;
------------------
-- Enable_Clock --
------------------
procedure Enable_Clock (This : aliased Analog_To_Digital_Converter)
is
begin
if This'Address = ADC1_Base then
RCC_Periph.AHBENR.ADC12EN := True;
elsif This'Address = ADC2_Base then
RCC_Periph.AHBENR.ADC12EN := True;
else
raise Unknown_Device;
end if;
end Enable_Clock;
-------------------------
-- Reset_All_ADC_Units --
-------------------------
procedure Reset_All_ADC_Units is
begin
RCC_Periph.AHBRSTR.ADC12RST := True;
RCC_Periph.AHBRSTR.ADC12RST := False;
end Reset_All_ADC_Units;
-------------------------
-- Select_Clock_Source --
-------------------------
procedure Select_Clock_Source
(This : Analog_To_Digital_Converter;
Source : ADC_Clock_Source;
Prescaler : ADC_Prescaler := (Enable => False, Value => DIV_2))
is
pragma Unreferenced (This);
function To_ADCPRE is new Ada.Unchecked_Conversion
(ADC_Prescaler, UInt5);
AHB_PRE : constant ADC_Prescaler := (Enable => False, Value => DIV_2);
begin
case Source is
when AHB =>
RCC_Periph.CFGR2.ADC12PRES := To_ADCPRE (AHB_PRE);
if not RCC_Periph.AHBENR.ADC12EN then
RCC_Periph.AHBENR.ADC12EN := True;
end if;
when PLLCLK =>
if Prescaler.Enable then
RCC_Periph.AHBENR.ADC12EN := False;
end if;
RCC_Periph.CFGR2.ADC12PRES := To_ADCPRE (Prescaler);
end case;
end Select_Clock_Source;
------------------
-- Enable_Clock --
------------------
-- procedure Enable_Clock
-- (This : aliased Digital_To_Analog_Converter)
-- is
-- begin
-- if This'Address = DAC1_Base then
-- RCC_Periph.APB1ENR.DAC1EN := True;
-- elsif This'Address = DAC2_Base then
-- RCC_Periph.APB1ENR.DAC2EN := True;
-- end if;
-- end Enable_Clock;
-----------
-- Reset --
-----------
-- procedure Reset (This : aliased Digital_To_Analog_Converter)
-- is
-- begin
-- if This'Address = DAC1_Base then
-- RCC_Periph.APB1RSTR.DAC1RST := True;
-- RCC_Periph.APB1RSTR.DAC1RST := False;
-- elsif This'Address = DAC2_Base then
-- RCC_Periph.APB1RSTR.DAC2RST := True;
-- RCC_Periph.APB1RSTR.DAC2RST := False;
-- end if;
-- end Reset;
------------------
-- Enable_Clock --
------------------
-- procedure Enable_Clock (This : CRC_32) is
-- pragma Unreferenced (This);
-- begin
-- RCC_Periph.AHBENR.CRCEN := True;
-- end Enable_Clock;
-------------------
-- Disable_Clock --
-------------------
-- procedure Disable_Clock (This : CRC_32) is
-- pragma Unreferenced (This);
-- begin
-- RCC_Periph.AHBENR.CRCEN := False;
-- end Disable_Clock;
-----------
-- Reset --
-----------
-- procedure Reset (This : CRC_32) is
-- pragma Unreferenced (This);
-- begin
-- CRC_Periph.CR.RESET := True;
-- end Reset;
------------------
-- Enable_Clock --
------------------
-- procedure Enable_Clock (This : aliased DMA_Controller) is
-- begin
-- if This'Address = STM32_SVD.DMA_Base then
-- RCC_Periph.AHBENR.DMA1EN := True;
-- else
-- raise Unknown_Device;
-- end if;
-- end Enable_Clock;
-----------
-- Reset --
-----------
-- This processor doesn't have DMA reset. When a DMA transfer error occurs
-- during a DMA read or write access, the faulty channel x is automatically
-- disabled through a hardware clear of its EN bit in the corresponding
-- DMA_CCRx register. See RM0364 rev 4 pg 181 chapter 11.4.6.
-- procedure Reset (This : aliased DMA_Controller) is
-- begin
-- if This'Address = STM32_SVD.DMA_Base then
-- RCC_Periph.AHBENR.DMA1EN := False;
-- RCC_Periph.AHBENR.DMA1EN := True;
-- else
-- raise Unknown_Device;
-- end if;
-- end Reset;
------------------
-- Enable_Clock --
------------------
-- procedure Enable_Clock (This : aliased USART) is
-- begin
-- if This.Periph.all'Address = USART1_Base then
-- RCC_Periph.APB2ENR.USART1EN := True;
-- elsif This.Periph.all'Address = USART2_Base then
-- RCC_Periph.APB1ENR.USART2EN := True;
-- elsif This.Periph.all'Address = USART3_Base then
-- RCC_Periph.APB1ENR.USART3EN := True;
-- else
-- raise Unknown_Device;
-- end if;
-- end Enable_Clock;
-----------
-- Reset --
-----------
-- procedure Reset (This : aliased USART) is
-- begin
-- if This.Periph.all'Address = USART1_Base then
-- RCC_Periph.APB2RSTR.USART1RST := True;
-- RCC_Periph.APB2RSTR.USART1RST := False;
-- elsif This.Periph.all'Address = USART2_Base then
-- RCC_Periph.APB1RSTR.USART2RST := True;
-- RCC_Periph.APB1RSTR.USART2RST := False;
-- elsif This.Periph.all'Address = USART3_Base then
-- RCC_Periph.APB1RSTR.USART3RST := True;
-- RCC_Periph.APB1RSTR.USART3RST := False;
-- else
-- raise Unknown_Device;
-- end if;
-- end Reset;
-------------------------
-- Select_Clock_Source --
-------------------------
-- procedure Select_Clock_Source (This : USART;
-- Source : USART_Clock_Source)
-- is
-- begin
-- if This'Address = USART1_Base then
-- RCC_Periph.CFGR3.USART1SW := Source'Enum_Rep;
-- else
-- raise Unknown_Device;
-- end if;
-- end Select_Clock_Source;
-----------------------
-- Read_Clock_Source --
-----------------------
-- function Read_Clock_Source
-- (This : USART) return USART_Clock_Source
-- is
-- begin
-- if This'Address = USART1_Base then
-- return USART_Clock_Source'Val (RCC_Periph.CFGR3.USART1SW);
-- else
-- raise Unknown_Device;
-- end if;
-- end Read_Clock_Source;
------------------
-- Enable_Clock --
------------------
-- procedure Enable_Clock (This : aliased CAN_Controller) is
-- begin
-- if This'Address = CAN_Base then
-- RCC_Periph.APB1ENR.CANEN := True;
-- else
-- raise Unknown_Device;
-- end if;
-- end Enable_Clock;
-----------
-- Reset --
-----------
-- procedure Reset (This : aliased CAN_Controller) is
-- begin
-- if This'Address = STM32_SVD.CAN_Base then
-- RCC_Periph.APB1RSTR.CANRST := True;
-- RCC_Periph.APB1RSTR.CANRST := False;
-- else
-- raise Unknown_Device;
-- end if;
-- end Reset;
----------------
-- As_Port_Id --
----------------
-- function As_Port_Id (Port : I2C_Port'Class) return I2C_Port_Id is
-- begin
-- if Port.Periph.all'Address = I2C_Base then
-- return I2C_Id_1;
-- else
-- raise Unknown_Device;
-- end if;
-- end As_Port_Id;
------------------
-- Enable_Clock --
------------------
-- procedure Enable_Clock (This : aliased I2C_Port'Class) is
-- begin
-- Enable_Clock (As_Port_Id (This));
-- end Enable_Clock;
------------------
-- Enable_Clock --
------------------
-- procedure Enable_Clock (This : I2C_Port_Id) is
-- begin
-- case This is
-- when I2C_Id_1 =>
-- RCC_Periph.APB1ENR.I2C1EN := True;
-- end case;
-- end Enable_Clock;
-----------
-- Reset --
-----------
-- procedure Reset (This : I2C_Port'Class) is
-- begin
-- Reset (As_Port_Id (This));
-- end Reset;
-----------
-- Reset --
-----------
-- procedure Reset (This : I2C_Port_Id) is
-- begin
-- case This is
-- when I2C_Id_1 =>
-- RCC_Periph.APB1RSTR.I2C1RST := True;
-- RCC_Periph.APB1RSTR.I2C1RST := False;
-- end case;
-- end Reset;
-------------------------
-- Select_Clock_Source --
-------------------------
-- procedure Select_Clock_Source (This : I2C_Port'Class;
-- Source : I2C_Clock_Source)
-- is
-- begin
-- case This is
-- when I2C_Id_1 =>
-- RCC_Periph.CFGR3.I2C1SW := Source = SYSCLK;
-- end case;
-- end Select_Clock_Source;
-------------------------
-- Select_Clock_Source --
-------------------------
-- procedure Select_Clock_Source (This : I2C_Port_Id;
-- Source : I2C_Clock_Source)
-- is
-- begin
-- RCC_Periph.CFGR3.I2C1SW := Source = SYSCLK;
-- end Select_Clock_Source;
-----------------------
-- Read_Clock_Source --
-----------------------
-- function Read_Clock_Source (This : I2C_Port'Class) return I2C_Clock_Source
-- is
-- begin
-- case This is
-- when I2C_Id_1 =>
-- if RCC_Periph.CFGR3.I2C1SW then
-- return SYSCLK;
-- else
-- return HSI;
-- end if;
-- end case;
-- end Read_Clock_Source;
------------------------
-- Read_Clock_Source --
------------------------
-- function Read_Clock_Source (This : I2C_Port_Id) return I2C_Clock_Source
-- is
-- begin
-- return I2C_Clock_Source'Val (RCC_Periph.CFGR3.I2C1SW);
-- end Read_Clock_Source;
------------------
-- Enable_Clock --
------------------
-- procedure Enable_Clock (This : SPI_Port'Class) is
-- begin
-- if This.Periph.all'Address = SPI_Base then
-- RCC_Periph.APB2ENR.SPI1EN := True;
-- else
-- raise Unknown_Device;
-- end if;
-- end Enable_Clock;
-----------
-- Reset --
-----------
-- procedure Reset (This : SPI_Port'Class) is
-- begin
-- if This.Periph.all'Address = SPI_Base then
-- RCC_Periph.APB2RSTR.SPI1RST := True;
-- RCC_Periph.APB2RSTR.SPI1RST := False;
-- else
-- raise Unknown_Device;
-- end if;
-- end Reset;
------------------
-- Enable_Clock --
------------------
-- procedure Enable_Clock (This : RTC_Device) is
-- pragma Unreferenced (This);
-- begin
-- RCC_Periph.BDCR.RTCEN := True;
-- end Enable_Clock;
-------------------------
-- Select_Clock_Source --
-------------------------
-- procedure Select_Clock_Source
-- (This : RTC_Device;
-- Source : RTC_Clock_Source)
-- is
-- pragma Unreferenced (This);
-- begin
-- RCC_Periph.BDCR.RTCSEL := Source'Enum_Rep;
-- end Select_Clock_Source;
------------------------
-- Read_Clock_Source --
------------------------
-- function Read_Clock_Source (This : RTC_Device) return RTC_Clock_Source
-- is
-- pragma Unreferenced (This);
-- begin
-- return RTC_Clock_Source'Val (RCC_Periph.BDCR.RTCSEL);
-- end Read_Clock_Source;
------------------
-- Enable_Clock --
------------------
procedure Enable_Clock (This : Timer) is
begin
if This'Address = TIM1_Base then
RCC_Periph.APB2ENR.TIM1EN := True;
elsif This'Address = TIM2_Base then
RCC_Periph.APB1ENR.TIM2EN := True;
elsif This'Address = TIM3_Base then
RCC_Periph.APB1ENR.TIM3EN := True;
elsif This'Address = TIM6_Base then
RCC_Periph.APB1ENR.TIM6EN := True;
elsif This'Address = TIM7_Base then
RCC_Periph.APB1ENR.TIM7EN := True;
elsif This'Address = TIM15_Base then
RCC_Periph.APB2ENR.TIM15EN := True;
elsif This'Address = TIM16_Base then
RCC_Periph.APB2ENR.TIM16EN := True;
elsif This'Address = TIM17_Base then
RCC_Periph.APB2ENR.TIM17EN := True;
else
raise Unknown_Device;
end if;
end Enable_Clock;
-----------
-- Reset --
-----------
procedure Reset (This : Timer) is
begin
if This'Address = TIM1_Base then
RCC_Periph.APB2RSTR.TIM1RST := True;
RCC_Periph.APB2RSTR.TIM1RST := False;
elsif This'Address = TIM2_Base then
RCC_Periph.APB1RSTR.TIM2RST := True;
RCC_Periph.APB1RSTR.TIM2RST := False;
elsif This'Address = TIM3_Base then
RCC_Periph.APB1RSTR.TIM3RST := True;
RCC_Periph.APB1RSTR.TIM3RST := False;
elsif This'Address = TIM6_Base then
RCC_Periph.APB1RSTR.TIM6RST := True;
RCC_Periph.APB1RSTR.TIM6RST := False;
elsif This'Address = TIM7_Base then
RCC_Periph.APB1RSTR.TIM7RST := True;
RCC_Periph.APB1RSTR.TIM7RST := False;
elsif This'Address = TIM15_Base then
RCC_Periph.APB2RSTR.TIM15RST := True;
RCC_Periph.APB2RSTR.TIM15RST := False;
elsif This'Address = TIM16_Base then
RCC_Periph.APB2RSTR.TIM16RST := True;
RCC_Periph.APB2RSTR.TIM16RST := False;
elsif This'Address = TIM17_Base then
RCC_Periph.APB2RSTR.TIM17RST := True;
RCC_Periph.APB2RSTR.TIM17RST := False;
else
raise Unknown_Device;
end if;
end Reset;
-------------------------
-- Select_Clock_Source --
-------------------------
procedure Select_Clock_Source (This : Timer;
Source : Timer_Clock_Source)
is
begin
if This'Address = TIM1_Base then
RCC_Periph.CFGR3.TIM1SW := Source = PLLCLK;
else
raise Unknown_Device;
end if;
end Select_Clock_Source;
-----------------------
-- Read_Clock_Source --
-----------------------
function Read_Clock_Source
(This : Timer) return Timer_Clock_Source
is
begin
if This'Address = TIM1_Base then
if RCC_Periph.CFGR3.TIM1SW then
return PLLCLK;
else
return PCLK2;
end if;
else
raise Unknown_Device;
end if;
end Read_Clock_Source;
-------------------------
-- Get_Clock_Frequency --
-------------------------
function Get_Clock_Frequency (This : Timer) return UInt32 is
begin
if This'Address = TIM1_Base then
return System_Clock_Frequencies.TIM1CLK;
elsif This'Address = TIM2_Base or
This'Address = TIM3_Base or
This'Address = TIM6_Base or
This'Address = TIM7_Base
then
return System_Clock_Frequencies.TIMCLK1;
elsif This'Address = TIM15_Base or
This'Address = TIM16_Base or
This'Address = TIM17_Base
then
return System_Clock_Frequencies.TIMCLK2;
else
raise Unknown_Device;
end if;
end Get_Clock_Frequency;
------------------
-- Enable_Clock --
------------------
-- procedure Enable_Clock (This : HRTimer_Master) is
-- begin
-- if This'Address = HRTIM_Master_Base then
-- RCC_Periph.APB2ENR.HRTIM1EN := True;
-- else
-- raise Unknown_Device;
-- end if;
-- end Enable_Clock;
------------------
-- Enable_Clock --
------------------
-- procedure Enable_Clock (This : HRTimer_Channel) is
-- begin
-- if This'Address = HRTIM_TIMA_Base or
-- This'Address = HRTIM_TIMB_Base or
-- This'Address = HRTIM_TIMC_Base or
-- This'Address = HRTIM_TIMD_Base or
-- This'Address = HRTIM_TIME_Base
-- then
-- RCC_Periph.APB2ENR.HRTIM1EN := True;
-- else
-- raise Unknown_Device;
-- end if;
-- end Enable_Clock;
-----------
-- Reset --
-----------
-- procedure Reset (This : HRTimer_Master) is
-- begin
-- if This'Address = HRTIM_Master_Base then
-- RCC_Periph.APB2RSTR.HRTIM1RST := True;
-- RCC_Periph.APB2RSTR.HRTIM1RST := False;
-- else
-- raise Unknown_Device;
-- end if;
-- end Reset;
-----------
-- Reset --
-----------
-- procedure Reset (This : HRTimer_Channel) is
-- begin
-- if This'Address = HRTIM_TIMA_Base or
-- This'Address = HRTIM_TIMB_Base or
-- This'Address = HRTIM_TIMC_Base or
-- This'Address = HRTIM_TIMD_Base or
-- This'Address = HRTIM_TIME_Base
-- then
-- RCC_Periph.APB2RSTR.HRTIM1RST := True;
-- RCC_Periph.APB2RSTR.HRTIM1RST := False;
-- else
-- raise Unknown_Device;
-- end if;
-- end Reset;
-------------------------
-- Select_Clock_Source --
-------------------------
-- procedure Select_Clock_Source (This : HRTimer_Master;
-- Source : Timer_Clock_Source)
-- is
-- begin
-- if This'Address = HRTIM_Master_Base then
-- RCC_Periph.CFGR3.HRTIM1SW := Source = PLLCLK;
-- else
-- raise Unknown_Device;
-- end if;
-- end Select_Clock_Source;
-----------------------
-- Read_Clock_Source --
-----------------------
-- function Read_Clock_Source
-- (This : HRTimer_Master) return Timer_Clock_Source
-- is
-- begin
-- if This'Address = TIM1_Base then
-- if RCC_Periph.CFGR3.HRTIM1SW then
-- return PLLCLK;
-- else
-- return PCLK2;
-- end if;
-- else
-- raise Unknown_Device;
-- end if;
-- end Read_Clock_Source;
-------------------------
-- Get_Clock_Frequency --
-------------------------
-- function Get_Clock_Frequency (This : HRTimer_Master) return UInt32 is
-- pragma Unreferenced (This);
-- begin
-- return System_Clock_Frequencies.TIMCLK2;
-- end Get_Clock_Frequency;
-------------------------
-- Get_Clock_Frequency --
-------------------------
-- function Get_Clock_Frequency (This : HRTimer_Channel) return UInt32 is
-- pragma Unreferenced (This);
-- begin
-- return System_Clock_Frequencies.HRTIM1CLK;
-- end Get_Clock_Frequency;
------------------------------
-- System_Clock_Frequencies --
------------------------------
function System_Clock_Frequencies return RCC_System_Clocks
is
Source : constant SYSCLK_Clock_Source :=
SYSCLK_Clock_Source'Val (RCC_Periph.CFGR.SWS);
-- Get System Clock Mux
PLLCLK : UInt32;
-- PLL output
Result : RCC_System_Clocks;
begin
case Source is
-- HSI as source
when SYSCLK_SRC_HSI =>
Result.SYSCLK := HSI_VALUE;
Result.I2CCLK := HSI_VALUE;
-- HSE as source
when SYSCLK_SRC_HSE =>
Result.SYSCLK := HSE_VALUE;
Result.I2CCLK := HSE_VALUE;
-- PLL as source
when SYSCLK_SRC_PLL =>
declare
Plld : constant UInt32 := UInt32 (RCC_Periph.CFGR2.PREDIV + 1);
-- Get the correct value of Pll divisor
Pllm : constant UInt32 := UInt32 (RCC_Periph.CFGR.PLLMUL + 2);
-- Get the correct value of Pll multiplier
PLLSRC : constant Boolean := RCC_Periph.CFGR.PLLSRC;
-- Get the PLL entry clock source
begin
-- PLL Source Mux
if PLLSRC then
-- HSE/PREDIV selected as PLL input clock
PLLCLK := (HSE_VALUE / Plld) * Pllm;
else
-- HSI/2 selected as PLL input clock
PLLCLK := (HSI_VALUE / 2) * Pllm;
end if;
Result.SYSCLK := PLLCLK;
Result.I2CCLK := PLLCLK;
end;
end case;
declare
HPRE : constant UInt4 := RCC_Periph.CFGR.HPRE;
PPRE1 : constant UInt3 := RCC_Periph.CFGR.PPRE.Arr (1);
PPRE2 : constant UInt3 := RCC_Periph.CFGR.PPRE.Arr (2);
begin
Result.HCLK := Result.SYSCLK / HPRE_Presc_Table (HPRE);
Result.PCLK1 := Result.HCLK / PPRE_Presc_Table (PPRE1);
Result.PCLK2 := Result.HCLK / PPRE_Presc_Table (PPRE2);
-- Timer clocks
-- If the APB prescaler (PPRE1, PPRE2 in the RCC_CFGR register)
-- is configured to a division factor of 1, TIMxCLK = PCLKx.
-- Otherwise, the timer clock frequencies are set to twice to the
-- frequency of the APB domain to which the timers are connected:
-- TIMxCLK = 2 x PCLKx.
-- TIMs 2, 3, 6, 7
if PPRE_Presc_Table (PPRE1) = 1 then
Result.TIMCLK1 := Result.PCLK1;
else
Result.TIMCLK1 := Result.PCLK1 * 2;
end if;
-- TIMs 15, 16, 17
if PPRE_Presc_Table (PPRE2) = 1 then
Result.TIMCLK2 := Result.PCLK2;
else
Result.TIMCLK2 := Result.PCLK2 * 2;
end if;
end;
declare
Activate_Pll : constant Boolean := RCC_Periph.CR.PLLON;
TIM1_Pll : constant Boolean := RCC_Periph.CFGR3.TIM1SW;
HRTIM1_Pll : constant Boolean := RCC_Periph.CFGR3.HRTIM1SW;
begin
-- TIM1 source Mux
if Activate_Pll and TIM1_Pll then
Result.TIM1CLK := PLLCLK * 2;
else
Result.TIM1CLK := Result.PCLK2;
end if;
-- HRTIM1 source Mux
if Activate_Pll and HRTIM1_Pll then
Result.HRTIM1CLK := PLLCLK * 2;
else
Result.HRTIM1CLK := Result.PCLK2;
end if;
end;
return Result;
end System_Clock_Frequencies;
end STM32.Device;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- This file is generated, don't edit it.
------------------------------------------------------------------------------
-- A remove structural feature value action is a write structural feature
-- action that removes values from structural features.
------------------------------------------------------------------------------
limited with AMF.UML.Input_Pins;
with AMF.UML.Write_Structural_Feature_Actions;
package AMF.UML.Remove_Structural_Feature_Value_Actions is
pragma Preelaborate;
type UML_Remove_Structural_Feature_Value_Action is limited interface
and AMF.UML.Write_Structural_Feature_Actions.UML_Write_Structural_Feature_Action;
type UML_Remove_Structural_Feature_Value_Action_Access is
access all UML_Remove_Structural_Feature_Value_Action'Class;
for UML_Remove_Structural_Feature_Value_Action_Access'Storage_Size use 0;
not overriding function Get_Is_Remove_Duplicates
(Self : not null access constant UML_Remove_Structural_Feature_Value_Action)
return Boolean is abstract;
-- Getter of RemoveStructuralFeatureValueAction::isRemoveDuplicates.
--
-- Specifies whether to remove duplicates of the value in nonunique
-- structural features.
not overriding procedure Set_Is_Remove_Duplicates
(Self : not null access UML_Remove_Structural_Feature_Value_Action;
To : Boolean) is abstract;
-- Setter of RemoveStructuralFeatureValueAction::isRemoveDuplicates.
--
-- Specifies whether to remove duplicates of the value in nonunique
-- structural features.
not overriding function Get_Remove_At
(Self : not null access constant UML_Remove_Structural_Feature_Value_Action)
return AMF.UML.Input_Pins.UML_Input_Pin_Access is abstract;
-- Getter of RemoveStructuralFeatureValueAction::removeAt.
--
-- Specifies the position of an existing value to remove in ordered
-- nonunique structural features. The type of the pin is UnlimitedNatural,
-- but the value cannot be zero or unlimited.
not overriding procedure Set_Remove_At
(Self : not null access UML_Remove_Structural_Feature_Value_Action;
To : AMF.UML.Input_Pins.UML_Input_Pin_Access) is abstract;
-- Setter of RemoveStructuralFeatureValueAction::removeAt.
--
-- Specifies the position of an existing value to remove in ordered
-- nonunique structural features. The type of the pin is UnlimitedNatural,
-- but the value cannot be zero or unlimited.
end AMF.UML.Remove_Structural_Feature_Value_Actions;
|
-----------------------------------------------------------------------
-- awa-wikis -- Wiki module
-- Copyright (C) 2011 Stephane Carrez
-- Written by Stephane Carrez (Stephane.Carrez@gmail.com)
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
package AWA.Wikis is
pragma Preelaborate;
end AWA.Wikis;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
-- --
-- S Y S T E M . O S _ P R I M I T I V E S --
-- --
-- S p e c --
-- --
-- Copyright (C) 1998-2009, Free Software Foundation, Inc. --
-- --
-- GNARL is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNARL was developed by the GNARL team at Florida State University. --
-- Extensive contributions were provided by Ada Core Technologies, Inc. --
-- --
------------------------------------------------------------------------------
-- This package provides low level primitives used to implement clock and
-- delays in non tasking applications.
-- The choice of the real clock/delay implementation (depending on whether
-- tasking is involved or not) is done via soft links (see s-soflin.ads)
-- NEVER add any dependency to tasking packages here
package System.OS_Primitives is
pragma Preelaborate;
Max_Sensible_Delay : constant Duration :=
Duration'Min (183 * 24 * 60 * 60.0,
Duration'Last);
-- Max of half a year delay, needed to prevent exceptions for large delay
-- values. It seems unlikely that any test will notice this restriction,
-- except in the case of applications setting the clock at run time (see
-- s-tastim.adb). Also note that a larger value might cause problems (e.g
-- overflow, or more likely OS limitation in the primitives used). In the
-- case where half a year is too long (which occurs in high integrity mode
-- with 32-bit words, and possibly on some specific ports of GNAT),
-- Duration'Last is used instead.
procedure Initialize;
-- Initialize global settings related to this package. This procedure
-- should be called before any other subprograms in this package. Note
-- that this procedure can be called several times.
function Clock return Duration;
pragma Inline (Clock);
-- Returns "absolute" time, represented as an offset relative to "the
-- Epoch", which is Jan 1, 1970 00:00:00 UTC on UNIX systems. This
-- implementation is affected by system's clock changes.
function Monotonic_Clock return Duration;
pragma Inline (Monotonic_Clock);
-- Returns "absolute" time, represented as an offset relative to "the Unix
-- Epoch", which is Jan 1, 1970 00:00:00 UTC. This clock implementation is
-- immune to the system's clock changes.
Relative : constant := 0;
Absolute_Calendar : constant := 1;
Absolute_RT : constant := 2;
-- Values for Mode call below. Note that the compiler (exp_ch9.adb) relies
-- on these values. So any change here must be reflected in corresponding
-- changes in the compiler.
procedure Timed_Delay (Time : Duration; Mode : Integer);
-- Implements the semantics of the delay statement when no tasking is used
-- in the application.
--
-- Mode is one of the three values above
--
-- Time is a relative or absolute duration value, depending on Mode.
--
-- Note that currently Ada.Real_Time always uses the tasking run time,
-- so this procedure should never be called with Mode set to Absolute_RT.
-- This may change in future or bare board implementations.
end System.OS_Primitives;
|
-- SPDX-License-Identifier: Apache-2.0
--
-- Copyright (c) 2020 onox <denkpadje@gmail.com>
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
with EGL.Objects.Devices;
package EGL.Objects.Displays is
pragma Preelaborate;
type Platform_Kind is (Device, GBM, Wayland);
-- The following extension is required for a specific platform:
--
-- Device: EGL_EXT_platform_device
-- Wayland: EGL_EXT_platform_wayland
-- GBM: EGL_MESA_platform_gbm
type Display (Platform : Platform_Kind) is new EGL_Object with private;
-- Not_Initialized_Error is raised if a display for the requested
-- platform could not be initialized
function Create_Display (Platform : Platform_Kind) return Display;
-- Create a display using the first device or default connection to
-- the given platform
--
-- This function primarily exists for the Orka_EGL_Info tool to query
-- a list of platform extensions and other info about the platform.
-- To create an actual useful connection to a platform, one of the
-- functions below must be used.
function Create_Display (Device : Devices.Device) return Display
with Pre => not Device.In_Use;
function Create_Display (Wayland_Display : Native_Display_Ptr) return Display;
function Client_Extensions return String_List;
-- Return a list of EGL client extensions
--
-- Requires EGL 1.5 or EGL_EXT_client_extensions. If an
-- Invalid_Operation_Error is raised, then the extension is not
-- supported.
function Extensions (Object : Display) return String_List;
-- Return a list of EGL display extensions
function Vendor (Object : Display) return String;
function Version (Object : Display) return String;
function Device (Object : Display) return Devices.Device;
-- Return the device on which the display is based
--
-- Requires EGL_EXT_device_query extension.
No_Display : constant Display;
private
for Platform_Kind use
(Device => 16#313F#,
GBM => 16#31D7#,
Wayland => 16#31D8#);
for Platform_Kind'Size use Enum'Size;
type Display (Platform : Platform_Kind) is new EGL_Object with record
Device : Devices.Device := Devices.No_Device;
end record;
overriding procedure Pre_Finalize (Object : in out Display);
No_Display : constant Display := (EGL_Object with Platform => Device, others => <>);
end EGL.Objects.Displays;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . T A S K _ T E R M I N A T I O N --
-- --
-- S p e c --
-- --
-- This specification is derived from the Ada Reference Manual for use with --
-- GNAT. In accordance with the copyright of that document, you can freely --
-- copy and modify this specification, provided that if you redistribute a --
-- modified version, any changes that you have made are clearly indicated. --
-- --
------------------------------------------------------------------------------
with Ada.Task_Identification;
with Ada.Exceptions;
package Ada.Task_Termination is
pragma Preelaborate (Task_Termination);
type Cause_Of_Termination is (Normal, Abnormal, Unhandled_Exception);
type Termination_Handler is access protected procedure
(Cause : Cause_Of_Termination;
T : Ada.Task_Identification.Task_Id;
X : Ada.Exceptions.Exception_Occurrence);
procedure Set_Dependents_Fallback_Handler
(Handler : Termination_Handler);
function Current_Task_Fallback_Handler return Termination_Handler;
procedure Set_Specific_Handler
(T : Ada.Task_Identification.Task_Id;
Handler : Termination_Handler);
function Specific_Handler
(T : Ada.Task_Identification.Task_Id) return Termination_Handler;
end Ada.Task_Termination;
|
with
Interfaces.C.Strings,
System;
use type
System.Address;
package body FLTK.Widgets.Valuators.Sliders.Nice is
procedure nice_slider_set_draw_hook
(W, D : in System.Address);
pragma Import (C, nice_slider_set_draw_hook, "nice_slider_set_draw_hook");
pragma Inline (nice_slider_set_draw_hook);
procedure nice_slider_set_handle_hook
(W, H : in System.Address);
pragma Import (C, nice_slider_set_handle_hook, "nice_slider_set_handle_hook");
pragma Inline (nice_slider_set_handle_hook);
function new_fl_nice_slider
(X, Y, W, H : in Interfaces.C.int;
Text : in Interfaces.C.char_array)
return System.Address;
pragma Import (C, new_fl_nice_slider, "new_fl_nice_slider");
pragma Inline (new_fl_nice_slider);
procedure free_fl_nice_slider
(D : in System.Address);
pragma Import (C, free_fl_nice_slider, "free_fl_nice_slider");
pragma Inline (free_fl_nice_slider);
procedure fl_nice_slider_draw
(W : in System.Address);
pragma Import (C, fl_nice_slider_draw, "fl_nice_slider_draw");
pragma Inline (fl_nice_slider_draw);
function fl_nice_slider_handle
(W : in System.Address;
E : in Interfaces.C.int)
return Interfaces.C.int;
pragma Import (C, fl_nice_slider_handle, "fl_nice_slider_handle");
pragma Inline (fl_nice_slider_handle);
procedure Finalize
(This : in out Nice_Slider) is
begin
if This.Void_Ptr /= System.Null_Address and then
This in Nice_Slider'Class
then
free_fl_nice_slider (This.Void_Ptr);
This.Void_Ptr := System.Null_Address;
end if;
Finalize (Slider (This));
end Finalize;
package body Forge is
function Create
(X, Y, W, H : in Integer;
Text : in String)
return Nice_Slider is
begin
return This : Nice_Slider do
This.Void_Ptr := new_fl_nice_slider
(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));
nice_slider_set_draw_hook (This.Void_Ptr, Draw_Hook'Address);
nice_slider_set_handle_hook (This.Void_Ptr, Handle_Hook'Address);
end return;
end Create;
end Forge;
procedure Draw
(This : in out Nice_Slider) is
begin
fl_nice_slider_draw (This.Void_Ptr);
end Draw;
function Handle
(This : in out Nice_Slider;
Event : in Event_Kind)
return Event_Outcome is
begin
return Event_Outcome'Val
(fl_nice_slider_handle (This.Void_Ptr, Event_Kind'Pos (Event)));
end Handle;
end FLTK.Widgets.Valuators.Sliders.Nice;
|
pragma Ada_2005;
pragma Style_Checks (Off);
pragma Warnings (Off);
with Interfaces.C; use Interfaces.C;
with System;
with GStreamer.GST_Low_Level.gstreamer_0_10_gst_video_gstbasevideocodec_h;
with glib;
with glib.Values;
with System;
limited with GStreamer.GST_Low_Level.gstreamer_0_10_gst_base_gstadapter_h;
-- limited with GStreamer.GST_Low_Level.glib_2_0_glib_glist_h;
with GLIB; -- with GStreamer.GST_Low_Level.glibconfig_h;
with GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstclock_h;
with GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstpad_h;
limited with GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstbuffer_h;
with glib;
package GStreamer.GST_Low_Level.gstreamer_0_10_gst_video_gstbasevideodecoder_h is
-- unsupported macro: GST_TYPE_BASE_VIDEO_DECODER (gst_base_video_decoder_get_type())
-- arg-macro: function GST_BASE_VIDEO_DECODER (obj)
-- return G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_BASE_VIDEO_DECODER,GstBaseVideoDecoder);
-- arg-macro: function GST_BASE_VIDEO_DECODER_CLASS (klass)
-- return G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_BASE_VIDEO_DECODER,GstBaseVideoDecoderClass);
-- arg-macro: function GST_BASE_VIDEO_DECODER_GET_CLASS (obj)
-- return G_TYPE_INSTANCE_GET_CLASS((obj),GST_TYPE_BASE_VIDEO_DECODER,GstBaseVideoDecoderClass);
-- arg-macro: function GST_IS_BASE_VIDEO_DECODER (obj)
-- return G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_BASE_VIDEO_DECODER);
-- arg-macro: function GST_IS_BASE_VIDEO_DECODER_CLASS (obj)
-- return G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_BASE_VIDEO_DECODER);
GST_BASE_VIDEO_DECODER_SINK_NAME : aliased constant String := "sink" & ASCII.NUL; -- gst/video/gstbasevideodecoder.h:53
GST_BASE_VIDEO_DECODER_SRC_NAME : aliased constant String := "src" & ASCII.NUL; -- gst/video/gstbasevideodecoder.h:59
-- unsupported macro: GST_BASE_VIDEO_DECODER_FLOW_NEED_DATA GST_FLOW_CUSTOM_SUCCESS
-- unsupported macro: GST_BASE_VIDEO_DECODER_FLOW_DROPPED GST_FLOW_CUSTOM_SUCCESS_1
-- unsupported macro: GST_BASE_AUDIO_DECODER_ERROR(el,w,domain,code,text,debug,ret) G_STMT_START { gchar *__txt = _gst_element_error_printf text; gchar *__dbg = _gst_element_error_printf debug; GstBaseVideoDecoder *dec = GST_BASE_VIDEO_DECODER (el); ret = _gst_base_video_decoder_error (dec, w, GST_ ## domain ## _ERROR, GST_ ## domain ## _ERROR_ ## code, __txt, __dbg, __FILE__, GST_FUNCTION, __LINE__); } G_STMT_END
-- GStreamer
-- * Copyright (C) 2008 David Schleef <ds@schleef.org>
-- * Copyright (C) 2011 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>.
-- * Copyright (C) 2011 Nokia Corporation. All rights reserved.
-- * Contact: Stefan Kost <stefan.kost@nokia.com>
-- *
-- * This library is free software; you can redistribute it and/or
-- * modify it under the terms of the GNU Library General Public
-- * License as published by the Free Software Foundation; either
-- * version 2 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
-- * Library General Public License for more details.
-- *
-- * You should have received a copy of the GNU Library 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.
--
--*
-- * GST_BASE_VIDEO_DECODER_SINK_NAME:
-- *
-- * The name of the templates for the sink pad.
--
--*
-- * GST_BASE_VIDEO_DECODER_SRC_NAME:
-- *
-- * The name of the templates for the source pad.
--
--*
-- * GST_BASE_VIDEO_DECODER_FLOW_NEED_DATA:
-- *
-- * Returned while parsing to indicate more data is needed.
-- *
--*
-- * GST_BASE_VIDEO_DECODER_FLOW_DROPPED:
-- *
-- * Returned when the event/buffer should be dropped.
--
type GstBaseVideoDecoder;
type u_GstBaseVideoDecoder_padding_array is array (0 .. 19) of System.Address;
--subtype GstBaseVideoDecoder is u_GstBaseVideoDecoder; -- gst/video/gstbasevideodecoder.h:75
type GstBaseVideoDecoderClass;
type u_GstBaseVideoDecoderClass_padding_array is array (0 .. 19) of System.Address;
--subtype GstBaseVideoDecoderClass is u_GstBaseVideoDecoderClass; -- gst/video/gstbasevideodecoder.h:76
-- do not use this one, use macro below
-- skipped func _gst_base_video_decoder_error
--*
-- * GST_BASE_VIDEO_DECODER_ERROR:
-- * @el: the base video decoder element that generates the error
-- * @weight: element defined weight of the error, added to error count
-- * @domain: like CORE, LIBRARY, RESOURCE or STREAM (see #gstreamer-GstGError)
-- * @code: error code defined for that domain (see #gstreamer-GstGError)
-- * @text: the message to display (format string and args enclosed in
-- * parentheses)
-- * @debug: debugging information for the message (format string and args
-- * enclosed in parentheses)
-- * @ret: variable to receive return value
-- *
-- * Utility function that audio decoder elements can use in case they encountered
-- * a data processing error that may be fatal for the current "data unit" but
-- * need not prevent subsequent decoding. Such errors are counted and if there
-- * are too many, as configured in the context's max_errors, the pipeline will
-- * post an error message and the application will be requested to stop further
-- * media processing. Otherwise, it is considered a "glitch" and only a warning
-- * is logged. In either case, @ret is set to the proper value to
-- * return to upstream/caller (indicating either GST_FLOW_ERROR or GST_FLOW_OK).
--
--*
-- * GstBaseVideoDecoder:
-- *
-- * The opaque #GstBaseVideoDecoder data structure.
--
type GstBaseVideoDecoder is record
base_video_codec : aliased GStreamer.GST_Low_Level.gstreamer_0_10_gst_video_gstbasevideocodec_h.GstBaseVideoCodec; -- gst/video/gstbasevideodecoder.h:125
sink_clipping : aliased GLIB.gboolean; -- gst/video/gstbasevideodecoder.h:128
do_byte_time : aliased GLIB.gboolean; -- gst/video/gstbasevideodecoder.h:129
packetized : aliased GLIB.gboolean; -- gst/video/gstbasevideodecoder.h:130
max_errors : aliased GLIB.gint; -- gst/video/gstbasevideodecoder.h:131
input_adapter : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_base_gstadapter_h.GstAdapter; -- gst/video/gstbasevideodecoder.h:135
output_adapter : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_base_gstadapter_h.GstAdapter; -- gst/video/gstbasevideodecoder.h:137
current_frame : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_video_gstbasevideocodec_h.GstVideoFrame; -- gst/video/gstbasevideodecoder.h:145
current_frame_events : access GStreamer.GST_Low_Level.glib_2_0_glib_glist_h.GList; -- gst/video/gstbasevideodecoder.h:147
input_offset : aliased GLIB.guint64; -- gst/video/gstbasevideodecoder.h:149
frame_offset : aliased GLIB.guint64; -- gst/video/gstbasevideodecoder.h:151
timestamps : access GStreamer.GST_Low_Level.glib_2_0_glib_glist_h.GList; -- gst/video/gstbasevideodecoder.h:153
have_sync : aliased GLIB.gboolean; -- gst/video/gstbasevideodecoder.h:155
timestamp_offset : aliased GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstclock_h.GstClockTime; -- gst/video/gstbasevideodecoder.h:160
field_index : aliased int; -- gst/video/gstbasevideodecoder.h:161
last_timestamp : aliased GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstclock_h.GstClockTime; -- gst/video/gstbasevideodecoder.h:164
error_count : aliased GLIB.gint; -- gst/video/gstbasevideodecoder.h:165
gather : access GStreamer.GST_Low_Level.glib_2_0_glib_glist_h.GList; -- gst/video/gstbasevideodecoder.h:169
parse : access GStreamer.GST_Low_Level.glib_2_0_glib_glist_h.GList; -- gst/video/gstbasevideodecoder.h:171
parse_gather : access GStreamer.GST_Low_Level.glib_2_0_glib_glist_h.GList; -- gst/video/gstbasevideodecoder.h:173
decode : access GStreamer.GST_Low_Level.glib_2_0_glib_glist_h.GList; -- gst/video/gstbasevideodecoder.h:175
queued : access GStreamer.GST_Low_Level.glib_2_0_glib_glist_h.GList; -- gst/video/gstbasevideodecoder.h:177
process : aliased GLIB.gboolean; -- gst/video/gstbasevideodecoder.h:178
base_picture_number : aliased GLIB.guint64; -- gst/video/gstbasevideodecoder.h:181
reorder_depth : aliased int; -- gst/video/gstbasevideodecoder.h:182
distance_from_sync : aliased int; -- gst/video/gstbasevideodecoder.h:183
dropped : aliased GLIB.guint; -- gst/video/gstbasevideodecoder.h:186
processed : aliased GLIB.guint; -- gst/video/gstbasevideodecoder.h:187
padding : u_GstBaseVideoDecoder_padding_array; -- gst/video/gstbasevideodecoder.h:190
end record;
pragma Convention (C_Pass_By_Copy, GstBaseVideoDecoder); -- gst/video/gstbasevideodecoder.h:123
--< protected >
-- parse tracking
-- input data
-- assembles current frame
--< private >
-- FIXME move to real private part ?
-- * (and introduce a context ?)
-- ... being tracked here;
-- * only available during parsing
-- FIXME remove and add parameter to method
-- events that should apply to the current frame
-- relative offset of input data
-- relative offset of frame
-- tracking ts and offsets
-- whether parsing is in sync
-- maybe sort-of protected ?
-- combine to yield (presentation) ts
-- last outgoing ts
-- reverse playback
-- collect input
-- to-be-parsed
-- collected parsed frames
-- frames to be handled == decoded
-- collected output
-- no comment ...
-- qos messages: frames dropped/processed
-- FIXME before moving to base
--*
-- * GstBaseVideoDecoderClass:
-- * @start: Optional.
-- * Called when the element starts processing.
-- * Allows opening external resources.
-- * @stop: Optional.
-- * Called when the element stops processing.
-- * Allows closing external resources.
-- * @set_format: Notifies subclass of incoming data format (caps).
-- * @scan_for_sync: Optional.
-- * Allows subclass to obtain sync for subsequent parsing
-- * by custom means (above an beyond scanning for specific
-- * marker and mask).
-- * @parse_data: Required for non-packetized input.
-- * Allows chopping incoming data into manageable units (frames)
-- * for subsequent decoding.
-- * @reset: Optional.
-- * Allows subclass (codec) to perform post-seek semantics reset.
-- * @handle_frame: Provides input data frame to subclass.
-- * @finish: Optional.
-- * Called to request subclass to dispatch any pending remaining
-- * data (e.g. at EOS).
-- *
-- * Subclasses can override any of the available virtual methods or not, as
-- * needed. At minimum @handle_frame needs to be overridden, and @set_format
-- * and likely as well. If non-packetized input is supported or expected,
-- * @parse needs to be overridden as well.
--
type GstBaseVideoDecoderClass is record
base_video_codec_class : aliased GStreamer.GST_Low_Level.gstreamer_0_10_gst_video_gstbasevideocodec_h.GstBaseVideoCodecClass; -- gst/video/gstbasevideodecoder.h:223
start : access function (arg1 : access GstBaseVideoDecoder) return GLIB.gboolean; -- gst/video/gstbasevideodecoder.h:225
stop : access function (arg1 : access GstBaseVideoDecoder) return GLIB.gboolean; -- gst/video/gstbasevideodecoder.h:227
scan_for_sync : access function
(arg1 : access GstBaseVideoDecoder;
arg2 : GLIB.gboolean;
arg3 : int;
arg4 : int) return int; -- gst/video/gstbasevideodecoder.h:230
parse_data : access function (arg1 : access GstBaseVideoDecoder; arg2 : GLIB.gboolean) return GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstpad_h.GstFlowReturn; -- gst/video/gstbasevideodecoder.h:232
set_format : access function (arg1 : access GstBaseVideoDecoder; arg2 : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_video_gstbasevideocodec_h.GstVideoState) return GLIB.gboolean; -- gst/video/gstbasevideodecoder.h:234
reset : access function (arg1 : access GstBaseVideoDecoder) return GLIB.gboolean; -- gst/video/gstbasevideodecoder.h:236
finish : access function (arg1 : access GstBaseVideoDecoder) return GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstpad_h.GstFlowReturn; -- gst/video/gstbasevideodecoder.h:238
handle_frame : access function (arg1 : access GstBaseVideoDecoder; arg2 : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_video_gstbasevideocodec_h.GstVideoFrame) return GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstpad_h.GstFlowReturn; -- gst/video/gstbasevideodecoder.h:240
capture_mask : aliased GLIB.guint32; -- gst/video/gstbasevideodecoder.h:244
capture_pattern : aliased GLIB.guint32; -- gst/video/gstbasevideodecoder.h:245
padding : u_GstBaseVideoDecoderClass_padding_array; -- gst/video/gstbasevideodecoder.h:248
end record;
pragma Convention (C_Pass_By_Copy, GstBaseVideoDecoderClass); -- gst/video/gstbasevideodecoder.h:221
--< private >
-- FIXME before moving to base
procedure gst_base_video_decoder_class_set_capture_pattern
(klass : access GstBaseVideoDecoderClass;
mask : GLIB.guint32;
pattern : GLIB.guint32); -- gst/video/gstbasevideodecoder.h:251
pragma Import (C, gst_base_video_decoder_class_set_capture_pattern, "gst_base_video_decoder_class_set_capture_pattern");
function gst_base_video_decoder_get_frame (coder : access GstBaseVideoDecoder; frame_number : int) return access GStreamer.GST_Low_Level.gstreamer_0_10_gst_video_gstbasevideocodec_h.GstVideoFrame; -- gst/video/gstbasevideodecoder.h:254
pragma Import (C, gst_base_video_decoder_get_frame, "gst_base_video_decoder_get_frame");
function gst_base_video_decoder_get_oldest_frame (coder : access GstBaseVideoDecoder) return access GStreamer.GST_Low_Level.gstreamer_0_10_gst_video_gstbasevideocodec_h.GstVideoFrame; -- gst/video/gstbasevideodecoder.h:256
pragma Import (C, gst_base_video_decoder_get_oldest_frame, "gst_base_video_decoder_get_oldest_frame");
procedure gst_base_video_decoder_add_to_frame (base_video_decoder : access GstBaseVideoDecoder; n_bytes : int); -- gst/video/gstbasevideodecoder.h:258
pragma Import (C, gst_base_video_decoder_add_to_frame, "gst_base_video_decoder_add_to_frame");
procedure gst_base_video_decoder_lost_sync (base_video_decoder : access GstBaseVideoDecoder); -- gst/video/gstbasevideodecoder.h:260
pragma Import (C, gst_base_video_decoder_lost_sync, "gst_base_video_decoder_lost_sync");
function gst_base_video_decoder_have_frame (base_video_decoder : access GstBaseVideoDecoder) return GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstpad_h.GstFlowReturn; -- gst/video/gstbasevideodecoder.h:261
pragma Import (C, gst_base_video_decoder_have_frame, "gst_base_video_decoder_have_frame");
procedure gst_base_video_decoder_set_sync_point (base_video_decoder : access GstBaseVideoDecoder); -- gst/video/gstbasevideodecoder.h:263
pragma Import (C, gst_base_video_decoder_set_sync_point, "gst_base_video_decoder_set_sync_point");
function gst_base_video_decoder_set_src_caps (base_video_decoder : access GstBaseVideoDecoder) return GLIB.gboolean; -- gst/video/gstbasevideodecoder.h:264
pragma Import (C, gst_base_video_decoder_set_src_caps, "gst_base_video_decoder_set_src_caps");
function gst_base_video_decoder_alloc_src_buffer (base_video_decoder : access GstBaseVideoDecoder) return access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstbuffer_h.GstBuffer; -- gst/video/gstbasevideodecoder.h:265
pragma Import (C, gst_base_video_decoder_alloc_src_buffer, "gst_base_video_decoder_alloc_src_buffer");
function gst_base_video_decoder_alloc_src_frame (base_video_decoder : access GstBaseVideoDecoder; frame : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_video_gstbasevideocodec_h.GstVideoFrame) return GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstpad_h.GstFlowReturn; -- gst/video/gstbasevideodecoder.h:266
pragma Import (C, gst_base_video_decoder_alloc_src_frame, "gst_base_video_decoder_alloc_src_frame");
function gst_base_video_decoder_get_state (base_video_decoder : access GstBaseVideoDecoder) return access GStreamer.GST_Low_Level.gstreamer_0_10_gst_video_gstbasevideocodec_h.GstVideoState; -- gst/video/gstbasevideodecoder.h:268
pragma Import (C, gst_base_video_decoder_get_state, "gst_base_video_decoder_get_state");
function gst_base_video_decoder_get_max_decode_time (base_video_decoder : access GstBaseVideoDecoder; frame : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_video_gstbasevideocodec_h.GstVideoFrame) return GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstclock_h.GstClockTimeDiff; -- gst/video/gstbasevideodecoder.h:269
pragma Import (C, gst_base_video_decoder_get_max_decode_time, "gst_base_video_decoder_get_max_decode_time");
function gst_base_video_decoder_finish_frame (base_video_decoder : access GstBaseVideoDecoder; frame : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_video_gstbasevideocodec_h.GstVideoFrame) return GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstpad_h.GstFlowReturn; -- gst/video/gstbasevideodecoder.h:272
pragma Import (C, gst_base_video_decoder_finish_frame, "gst_base_video_decoder_finish_frame");
function gst_base_video_decoder_drop_frame (dec : access GstBaseVideoDecoder; frame : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_video_gstbasevideocodec_h.GstVideoFrame) return GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstpad_h.GstFlowReturn; -- gst/video/gstbasevideodecoder.h:274
pragma Import (C, gst_base_video_decoder_drop_frame, "gst_base_video_decoder_drop_frame");
function gst_base_video_decoder_get_type return GLIB.GType; -- gst/video/gstbasevideodecoder.h:276
pragma Import (C, gst_base_video_decoder_get_type, "gst_base_video_decoder_get_type");
end GStreamer.GST_Low_Level.gstreamer_0_10_gst_video_gstbasevideodecoder_h;
|
-- SPDX-FileCopyrightText: 2019 Max Reznik <reznikmm@gmail.com>
--
-- SPDX-License-Identifier: MIT
-------------------------------------------------------------
generic
type Object is limited private;
type Object_Access is access all Object;
package Program.Relative_Access_Types is
type Relative_Access is limited private;
function "+" (Value : Object_Access) return Relative_Access with Inline;
function "-" (Value : Relative_Access) return Object_Access with Inline;
private
type Relative_Access is range -2 ** 31 .. 2 ** 31 - 1;
end Program.Relative_Access_Types;
|
-- Copyright 2014-2019 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
type Array_Type is array (Integer range <>) of Integer;
Var: Array_Type (0 .. -1);
begin
Do_Nothing (Var'Address); -- STOP
end Foo;
|
-- SPDX-License-Identifier: Apache-2.0
--
-- Copyright (c) 2016 onox <denkpadje@gmail.com>
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
package JSON is
pragma Pure;
end JSON;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- ADA.STRINGS.WIDE_WIDE_MAPS.WIDE_WIDE_CONSTANTS --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2005 Free Software Foundation, Inc. --
-- --
-- This specification is derived from the Ada Reference Manual for use with --
-- GNAT. The copyright notice above, and the license provisions that follow --
-- apply solely to the contents of the part following the private keyword. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
--
--
--
--
--
--
--
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Ada.Characters.Wide_Wide_Latin_1;
package Ada.Strings.Wide_Wide_Maps.Wide_Wide_Constants is
pragma Preelaborate;
Control_Set : constant Wide_Wide_Maps.Wide_Wide_Character_Set;
Graphic_Set : constant Wide_Wide_Maps.Wide_Wide_Character_Set;
Letter_Set : constant Wide_Wide_Maps.Wide_Wide_Character_Set;
Lower_Set : constant Wide_Wide_Maps.Wide_Wide_Character_Set;
Upper_Set : constant Wide_Wide_Maps.Wide_Wide_Character_Set;
Basic_Set : constant Wide_Wide_Maps.Wide_Wide_Character_Set;
Decimal_Digit_Set : constant Wide_Wide_Maps.Wide_Wide_Character_Set;
Hexadecimal_Digit_Set : constant Wide_Wide_Maps.Wide_Wide_Character_Set;
Alphanumeric_Set : constant Wide_Wide_Maps.Wide_Wide_Character_Set;
Special_Graphic_Set : constant Wide_Wide_Maps.Wide_Wide_Character_Set;
ISO_646_Set : constant Wide_Wide_Maps.Wide_Wide_Character_Set;
Character_Set : constant Wide_Wide_Maps.Wide_Wide_Character_Set;
Lower_Case_Map : constant Wide_Wide_Maps.Wide_Wide_Character_Mapping;
-- Maps to lower case for letters, else identity
Upper_Case_Map : constant Wide_Wide_Maps.Wide_Wide_Character_Mapping;
-- Maps to upper case for letters, else identity
Basic_Map : constant Wide_Wide_Maps.Wide_Wide_Character_Mapping;
-- Maps to basic letter for letters, else identity
private
package W renames Ada.Characters.Wide_Wide_Latin_1;
subtype WC is Wide_Wide_Character;
Control_Ranges : aliased constant Wide_Wide_Character_Ranges :=
((W.NUL, W.US),
(W.DEL, W.APC));
Control_Set : constant Wide_Wide_Character_Set :=
(AF.Controlled with
Control_Ranges'Unrestricted_Access);
Graphic_Ranges : aliased constant Wide_Wide_Character_Ranges :=
((W.Space, W.Tilde),
(WC'Val (256), WC'Last));
Graphic_Set : constant Wide_Wide_Character_Set :=
(AF.Controlled with
Graphic_Ranges'Unrestricted_Access);
Letter_Ranges : aliased constant Wide_Wide_Character_Ranges :=
(('A', 'Z'),
(W.LC_A, W.LC_Z),
(W.UC_A_Grave, W.UC_O_Diaeresis),
(W.UC_O_Oblique_Stroke, W.LC_O_Diaeresis),
(W.LC_O_Oblique_Stroke, W.LC_Y_Diaeresis));
Letter_Set : constant Wide_Wide_Character_Set :=
(AF.Controlled with
Letter_Ranges'Unrestricted_Access);
Lower_Ranges : aliased constant Wide_Wide_Character_Ranges :=
(1 => (W.LC_A, W.LC_Z),
2 => (W.LC_German_Sharp_S, W.LC_O_Diaeresis),
3 => (W.LC_O_Oblique_Stroke, W.LC_Y_Diaeresis));
Lower_Set : constant Wide_Wide_Character_Set :=
(AF.Controlled with
Lower_Ranges'Unrestricted_Access);
Upper_Ranges : aliased constant Wide_Wide_Character_Ranges :=
(1 => ('A', 'Z'),
2 => (W.UC_A_Grave, W.UC_O_Diaeresis),
3 => (W.UC_O_Oblique_Stroke, W.UC_Icelandic_Thorn));
Upper_Set : constant Wide_Wide_Character_Set :=
(AF.Controlled with
Upper_Ranges'Unrestricted_Access);
Basic_Ranges : aliased constant Wide_Wide_Character_Ranges :=
(1 => ('A', 'Z'),
2 => (W.LC_A, W.LC_Z),
3 => (W.UC_AE_Diphthong, W.UC_AE_Diphthong),
4 => (W.LC_AE_Diphthong, W.LC_AE_Diphthong),
5 => (W.LC_German_Sharp_S, W.LC_German_Sharp_S),
6 => (W.UC_Icelandic_Thorn, W.UC_Icelandic_Thorn),
7 => (W.LC_Icelandic_Thorn, W.LC_Icelandic_Thorn),
8 => (W.UC_Icelandic_Eth, W.UC_Icelandic_Eth),
9 => (W.LC_Icelandic_Eth, W.LC_Icelandic_Eth));
Basic_Set : constant Wide_Wide_Character_Set :=
(AF.Controlled with
Basic_Ranges'Unrestricted_Access);
Decimal_Digit_Ranges : aliased constant Wide_Wide_Character_Ranges :=
(1 => ('0', '9'));
Decimal_Digit_Set : constant Wide_Wide_Character_Set :=
(AF.Controlled with
Decimal_Digit_Ranges'Unrestricted_Access);
Hexadecimal_Digit_Ranges : aliased constant Wide_Wide_Character_Ranges :=
(1 => ('0', '9'),
2 => ('A', 'F'),
3 => (W.LC_A, W.LC_F));
Hexadecimal_Digit_Set : constant Wide_Wide_Character_Set :=
(AF.Controlled with
Hexadecimal_Digit_Ranges'Unrestricted_Access);
Alphanumeric_Ranges : aliased constant Wide_Wide_Character_Ranges :=
(1 => ('0', '9'),
2 => ('A', 'Z'),
3 => (W.LC_A, W.LC_Z),
4 => (W.UC_A_Grave, W.UC_O_Diaeresis),
5 => (W.UC_O_Oblique_Stroke, W.LC_O_Diaeresis),
6 => (W.LC_O_Oblique_Stroke, W.LC_Y_Diaeresis));
Alphanumeric_Set : constant Wide_Wide_Character_Set :=
(AF.Controlled with
Alphanumeric_Ranges'Unrestricted_Access);
Special_Graphic_Ranges : aliased constant Wide_Wide_Character_Ranges :=
(1 => (Wide_Wide_Space, W.Solidus),
2 => (W.Colon, W.Commercial_At),
3 => (W.Left_Square_Bracket, W.Grave),
4 => (W.Left_Curly_Bracket, W.Tilde),
5 => (W.No_Break_Space, W.Inverted_Question),
6 => (W.Multiplication_Sign, W.Multiplication_Sign),
7 => (W.Division_Sign, W.Division_Sign));
Special_Graphic_Set : constant Wide_Wide_Character_Set :=
(AF.Controlled with
Special_Graphic_Ranges'Unrestricted_Access);
ISO_646_Ranges : aliased constant Wide_Wide_Character_Ranges :=
(1 => (W.NUL, W.DEL));
ISO_646_Set : constant Wide_Wide_Character_Set :=
(AF.Controlled with
ISO_646_Ranges'Unrestricted_Access);
Character_Ranges : aliased constant Wide_Wide_Character_Ranges :=
(1 => (W.NUL, WC'Val (255)));
Character_Set : constant Wide_Wide_Character_Set :=
(AF.Controlled with
Character_Ranges'Unrestricted_Access);
Lower_Case_Mapping : aliased constant Wide_Wide_Character_Mapping_Values :=
(Length => 56,
Domain =>
"ABCDEFGHIJKLMNOPQRSTUVWXYZ" &
W.UC_A_Grave &
W.UC_A_Acute &
W.UC_A_Circumflex &
W.UC_A_Tilde &
W.UC_A_Diaeresis &
W.UC_A_Ring &
W.UC_AE_Diphthong &
W.UC_C_Cedilla &
W.UC_E_Grave &
W.UC_E_Acute &
W.UC_E_Circumflex &
W.UC_E_Diaeresis &
W.UC_I_Grave &
W.UC_I_Acute &
W.UC_I_Circumflex &
W.UC_I_Diaeresis &
W.UC_Icelandic_Eth &
W.UC_N_Tilde &
W.UC_O_Grave &
W.UC_O_Acute &
W.UC_O_Circumflex &
W.UC_O_Tilde &
W.UC_O_Diaeresis &
W.UC_O_Oblique_Stroke &
W.UC_U_Grave &
W.UC_U_Acute &
W.UC_U_Circumflex &
W.UC_U_Diaeresis &
W.UC_Y_Acute &
W.UC_Icelandic_Thorn,
Rangev =>
"abcdefghijklmnopqrstuvwxyz" &
W.LC_A_Grave &
W.LC_A_Acute &
W.LC_A_Circumflex &
W.LC_A_Tilde &
W.LC_A_Diaeresis &
W.LC_A_Ring &
W.LC_AE_Diphthong &
W.LC_C_Cedilla &
W.LC_E_Grave &
W.LC_E_Acute &
W.LC_E_Circumflex &
W.LC_E_Diaeresis &
W.LC_I_Grave &
W.LC_I_Acute &
W.LC_I_Circumflex &
W.LC_I_Diaeresis &
W.LC_Icelandic_Eth &
W.LC_N_Tilde &
W.LC_O_Grave &
W.LC_O_Acute &
W.LC_O_Circumflex &
W.LC_O_Tilde &
W.LC_O_Diaeresis &
W.LC_O_Oblique_Stroke &
W.LC_U_Grave &
W.LC_U_Acute &
W.LC_U_Circumflex &
W.LC_U_Diaeresis &
W.LC_Y_Acute &
W.LC_Icelandic_Thorn);
Lower_Case_Map : constant Wide_Wide_Character_Mapping :=
(AF.Controlled with
Map => Lower_Case_Mapping'Unrestricted_Access);
Upper_Case_Mapping : aliased constant Wide_Wide_Character_Mapping_Values :=
(Length => 56,
Domain =>
"abcdefghijklmnopqrstuvwxyz" &
W.LC_A_Grave &
W.LC_A_Acute &
W.LC_A_Circumflex &
W.LC_A_Tilde &
W.LC_A_Diaeresis &
W.LC_A_Ring &
W.LC_AE_Diphthong &
W.LC_C_Cedilla &
W.LC_E_Grave &
W.LC_E_Acute &
W.LC_E_Circumflex &
W.LC_E_Diaeresis &
W.LC_I_Grave &
W.LC_I_Acute &
W.LC_I_Circumflex &
W.LC_I_Diaeresis &
W.LC_Icelandic_Eth &
W.LC_N_Tilde &
W.LC_O_Grave &
W.LC_O_Acute &
W.LC_O_Circumflex &
W.LC_O_Tilde &
W.LC_O_Diaeresis &
W.LC_O_Oblique_Stroke &
W.LC_U_Grave &
W.LC_U_Acute &
W.LC_U_Circumflex &
W.LC_U_Diaeresis &
W.LC_Y_Acute &
W.LC_Icelandic_Thorn,
Rangev =>
"ABCDEFGHIJKLMNOPQRSTUVWXYZ" &
W.UC_A_Grave &
W.UC_A_Acute &
W.UC_A_Circumflex &
W.UC_A_Tilde &
W.UC_A_Diaeresis &
W.UC_A_Ring &
W.UC_AE_Diphthong &
W.UC_C_Cedilla &
W.UC_E_Grave &
W.UC_E_Acute &
W.UC_E_Circumflex &
W.UC_E_Diaeresis &
W.UC_I_Grave &
W.UC_I_Acute &
W.UC_I_Circumflex &
W.UC_I_Diaeresis &
W.UC_Icelandic_Eth &
W.UC_N_Tilde &
W.UC_O_Grave &
W.UC_O_Acute &
W.UC_O_Circumflex &
W.UC_O_Tilde &
W.UC_O_Diaeresis &
W.UC_O_Oblique_Stroke &
W.UC_U_Grave &
W.UC_U_Acute &
W.UC_U_Circumflex &
W.UC_U_Diaeresis &
W.UC_Y_Acute &
W.UC_Icelandic_Thorn);
Upper_Case_Map : constant Wide_Wide_Character_Mapping :=
(AF.Controlled with
Upper_Case_Mapping'Unrestricted_Access);
Basic_Mapping : aliased constant Wide_Wide_Character_Mapping_Values :=
(Length => 55,
Domain =>
W.UC_A_Grave &
W.UC_A_Acute &
W.UC_A_Circumflex &
W.UC_A_Tilde &
W.UC_A_Diaeresis &
W.UC_A_Ring &
W.UC_C_Cedilla &
W.UC_E_Grave &
W.UC_E_Acute &
W.UC_E_Circumflex &
W.UC_E_Diaeresis &
W.UC_I_Grave &
W.UC_I_Acute &
W.UC_I_Circumflex &
W.UC_I_Diaeresis &
W.UC_N_Tilde &
W.UC_O_Grave &
W.UC_O_Acute &
W.UC_O_Circumflex &
W.UC_O_Tilde &
W.UC_O_Diaeresis &
W.UC_O_Oblique_Stroke &
W.UC_U_Grave &
W.UC_U_Acute &
W.UC_U_Circumflex &
W.UC_U_Diaeresis &
W.UC_Y_Acute &
W.LC_A_Grave &
W.LC_A_Acute &
W.LC_A_Circumflex &
W.LC_A_Tilde &
W.LC_A_Diaeresis &
W.LC_A_Ring &
W.LC_C_Cedilla &
W.LC_E_Grave &
W.LC_E_Acute &
W.LC_E_Circumflex &
W.LC_E_Diaeresis &
W.LC_I_Grave &
W.LC_I_Acute &
W.LC_I_Circumflex &
W.LC_I_Diaeresis &
W.LC_N_Tilde &
W.LC_O_Grave &
W.LC_O_Acute &
W.LC_O_Circumflex &
W.LC_O_Tilde &
W.LC_O_Diaeresis &
W.LC_O_Oblique_Stroke &
W.LC_U_Grave &
W.LC_U_Acute &
W.LC_U_Circumflex &
W.LC_U_Diaeresis &
W.LC_Y_Acute &
W.LC_Y_Diaeresis,
Rangev =>
'A' & -- UC_A_Grave
'A' & -- UC_A_Acute
'A' & -- UC_A_Circumflex
'A' & -- UC_A_Tilde
'A' & -- UC_A_Diaeresis
'A' & -- UC_A_Ring
'C' & -- UC_C_Cedilla
'E' & -- UC_E_Grave
'E' & -- UC_E_Acute
'E' & -- UC_E_Circumflex
'E' & -- UC_E_Diaeresis
'I' & -- UC_I_Grave
'I' & -- UC_I_Acute
'I' & -- UC_I_Circumflex
'I' & -- UC_I_Diaeresis
'N' & -- UC_N_Tilde
'O' & -- UC_O_Grave
'O' & -- UC_O_Acute
'O' & -- UC_O_Circumflex
'O' & -- UC_O_Tilde
'O' & -- UC_O_Diaeresis
'O' & -- UC_O_Oblique_Stroke
'U' & -- UC_U_Grave
'U' & -- UC_U_Acute
'U' & -- UC_U_Circumflex
'U' & -- UC_U_Diaeresis
'Y' & -- UC_Y_Acute
'a' & -- LC_A_Grave
'a' & -- LC_A_Acute
'a' & -- LC_A_Circumflex
'a' & -- LC_A_Tilde
'a' & -- LC_A_Diaeresis
'a' & -- LC_A_Ring
'c' & -- LC_C_Cedilla
'e' & -- LC_E_Grave
'e' & -- LC_E_Acute
'e' & -- LC_E_Circumflex
'e' & -- LC_E_Diaeresis
'i' & -- LC_I_Grave
'i' & -- LC_I_Acute
'i' & -- LC_I_Circumflex
'i' & -- LC_I_Diaeresis
'n' & -- LC_N_Tilde
'o' & -- LC_O_Grave
'o' & -- LC_O_Acute
'o' & -- LC_O_Circumflex
'o' & -- LC_O_Tilde
'o' & -- LC_O_Diaeresis
'o' & -- LC_O_Oblique_Stroke
'u' & -- LC_U_Grave
'u' & -- LC_U_Acute
'u' & -- LC_U_Circumflex
'u' & -- LC_U_Diaeresis
'y' & -- LC_Y_Acute
'y'); -- LC_Y_Diaeresis
Basic_Map : constant Wide_Wide_Character_Mapping :=
(AF.Controlled with
Basic_Mapping'Unrestricted_Access);
end Ada.Strings.Wide_Wide_Maps.Wide_Wide_Constants;
|
------------------------------------------------------------------------------
-- --
-- GNAT LIBRARY COMPONENTS --
-- --
-- G N A T . M D 5 --
-- --
-- B o d y --
-- --
-- Copyright (C) 2002-2005, AdaCore --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Ada.Unchecked_Conversion;
package body GNAT.MD5 is
use Interfaces;
Padding : constant String :=
(1 => Character'Val (16#80#), 2 .. 64 => ASCII.NUL);
Hex_Digit : constant array (Unsigned_32 range 0 .. 15) of Character :=
('0', '1', '2', '3', '4', '5', '6', '7',
'8', '9', 'a', 'b', 'c', 'd', 'e', 'f');
-- Look-up table for each hex digit of the Message-Digest.
-- Used by function Digest (Context).
-- The sixten values used to rotate the context words.
-- Four for each rounds. Used in procedure Transform.
-- Round 1
S11 : constant := 7;
S12 : constant := 12;
S13 : constant := 17;
S14 : constant := 22;
-- Round 2
S21 : constant := 5;
S22 : constant := 9;
S23 : constant := 14;
S24 : constant := 20;
-- Round 3
S31 : constant := 4;
S32 : constant := 11;
S33 : constant := 16;
S34 : constant := 23;
-- Round 4
S41 : constant := 6;
S42 : constant := 10;
S43 : constant := 15;
S44 : constant := 21;
type Sixteen_Words is array (Natural range 0 .. 15)
of Interfaces.Unsigned_32;
-- Sixteen 32-bit words, converted from block of 64 characters.
-- Used in procedure Decode and Transform.
procedure Decode
(Block : String;
X : out Sixteen_Words);
-- Convert a String of 64 characters into 16 32-bit numbers
-- The following functions (F, FF, G, GG, H, HH, I and II) are the
-- equivalent of the macros of the same name in the example
-- C implementation in the annex of RFC 1321.
function F (X, Y, Z : Unsigned_32) return Unsigned_32;
pragma Inline (F);
procedure FF
(A : in out Unsigned_32;
B, C, D : Unsigned_32;
X : Unsigned_32;
AC : Unsigned_32;
S : Positive);
pragma Inline (FF);
function G (X, Y, Z : Unsigned_32) return Unsigned_32;
pragma Inline (G);
procedure GG
(A : in out Unsigned_32;
B, C, D : Unsigned_32;
X : Unsigned_32;
AC : Unsigned_32;
S : Positive);
pragma Inline (GG);
function H (X, Y, Z : Unsigned_32) return Unsigned_32;
pragma Inline (H);
procedure HH
(A : in out Unsigned_32;
B, C, D : Unsigned_32;
X : Unsigned_32;
AC : Unsigned_32;
S : Positive);
pragma Inline (HH);
function I (X, Y, Z : Unsigned_32) return Unsigned_32;
pragma Inline (I);
procedure II
(A : in out Unsigned_32;
B, C, D : Unsigned_32;
X : Unsigned_32;
AC : Unsigned_32;
S : Positive);
pragma Inline (II);
procedure Transform
(C : in out Context;
Block : String);
-- Process one block of 64 characters
------------
-- Decode --
------------
procedure Decode
(Block : String;
X : out Sixteen_Words)
is
Cur : Positive := Block'First;
begin
pragma Assert (Block'Length = 64);
for Index in X'Range loop
X (Index) :=
Unsigned_32 (Character'Pos (Block (Cur))) +
Shift_Left (Unsigned_32 (Character'Pos (Block (Cur + 1))), 8) +
Shift_Left (Unsigned_32 (Character'Pos (Block (Cur + 2))), 16) +
Shift_Left (Unsigned_32 (Character'Pos (Block (Cur + 3))), 24);
Cur := Cur + 4;
end loop;
end Decode;
------------
-- Digest --
------------
function Digest (C : Context) return Message_Digest is
Result : Message_Digest;
Cur : Natural := 1;
-- Index in Result where the next character will be placed
Last_Block : String (1 .. 64);
C1 : Context := C;
procedure Convert (X : Unsigned_32);
-- Put the contribution of one of the four words (A, B, C, D) of the
-- Context in Result. Increments Cur.
-------------
-- Convert --
-------------
procedure Convert (X : Unsigned_32) is
Y : Unsigned_32 := X;
begin
for J in 1 .. 4 loop
Result (Cur + 1) := Hex_Digit (Y and Unsigned_32'(16#0F#));
Y := Shift_Right (Y, 4);
Result (Cur) := Hex_Digit (Y and Unsigned_32'(16#0F#));
Y := Shift_Right (Y, 4);
Cur := Cur + 2;
end loop;
end Convert;
-- Start of processing for Digest
begin
-- Process characters in the context buffer, if any
Last_Block (1 .. C.Last) := C.Buffer (1 .. C.Last);
if C.Last > 56 then
Last_Block (C.Last + 1 .. 64) := Padding (1 .. 64 - C.Last);
Transform (C1, Last_Block);
Last_Block := (others => ASCII.NUL);
else
Last_Block (C.Last + 1 .. 56) := Padding (1 .. 56 - C.Last);
end if;
-- Add the input length (as stored in the context) as 8 characters
Last_Block (57 .. 64) := (others => ASCII.NUL);
declare
L : Unsigned_64 := Unsigned_64 (C.Length) * 8;
Idx : Positive := 57;
begin
while L > 0 loop
Last_Block (Idx) := Character'Val (L and 16#Ff#);
L := Shift_Right (L, 8);
Idx := Idx + 1;
end loop;
end;
Transform (C1, Last_Block);
Convert (C1.A);
Convert (C1.B);
Convert (C1.C);
Convert (C1.D);
return Result;
end Digest;
function Digest (S : String) return Message_Digest is
C : Context;
begin
Update (C, S);
return Digest (C);
end Digest;
function Digest
(A : Ada.Streams.Stream_Element_Array) return Message_Digest
is
C : Context;
begin
Update (C, A);
return Digest (C);
end Digest;
-------
-- F --
-------
function F (X, Y, Z : Unsigned_32) return Unsigned_32 is
begin
return (X and Y) or ((not X) and Z);
end F;
--------
-- FF --
--------
procedure FF
(A : in out Unsigned_32;
B, C, D : Unsigned_32;
X : Unsigned_32;
AC : Unsigned_32;
S : Positive)
is
begin
A := A + F (B, C, D) + X + AC;
A := Rotate_Left (A, S);
A := A + B;
end FF;
-------
-- G --
-------
function G (X, Y, Z : Unsigned_32) return Unsigned_32 is
begin
return (X and Z) or (Y and (not Z));
end G;
--------
-- GG --
--------
procedure GG
(A : in out Unsigned_32;
B, C, D : Unsigned_32;
X : Unsigned_32;
AC : Unsigned_32;
S : Positive)
is
begin
A := A + G (B, C, D) + X + AC;
A := Rotate_Left (A, S);
A := A + B;
end GG;
-------
-- H --
-------
function H (X, Y, Z : Unsigned_32) return Unsigned_32 is
begin
return X xor Y xor Z;
end H;
--------
-- HH --
--------
procedure HH
(A : in out Unsigned_32;
B, C, D : Unsigned_32;
X : Unsigned_32;
AC : Unsigned_32;
S : Positive)
is
begin
A := A + H (B, C, D) + X + AC;
A := Rotate_Left (A, S);
A := A + B;
end HH;
-------
-- I --
-------
function I (X, Y, Z : Unsigned_32) return Unsigned_32 is
begin
return Y xor (X or (not Z));
end I;
--------
-- II --
--------
procedure II
(A : in out Unsigned_32;
B, C, D : Unsigned_32;
X : Unsigned_32;
AC : Unsigned_32;
S : Positive)
is
begin
A := A + I (B, C, D) + X + AC;
A := Rotate_Left (A, S);
A := A + B;
end II;
---------------
-- Transform --
---------------
procedure Transform
(C : in out Context;
Block : String)
is
X : Sixteen_Words;
AA : Unsigned_32 := C.A;
BB : Unsigned_32 := C.B;
CC : Unsigned_32 := C.C;
DD : Unsigned_32 := C.D;
begin
pragma Assert (Block'Length = 64);
Decode (Block, X);
-- Round 1
FF (AA, BB, CC, DD, X (00), 16#D76aa478#, S11); -- 1
FF (DD, AA, BB, CC, X (01), 16#E8c7b756#, S12); -- 2
FF (CC, DD, AA, BB, X (02), 16#242070db#, S13); -- 3
FF (BB, CC, DD, AA, X (03), 16#C1bdceee#, S14); -- 4
FF (AA, BB, CC, DD, X (04), 16#f57c0faf#, S11); -- 5
FF (DD, AA, BB, CC, X (05), 16#4787c62a#, S12); -- 6
FF (CC, DD, AA, BB, X (06), 16#a8304613#, S13); -- 7
FF (BB, CC, DD, AA, X (07), 16#fd469501#, S14); -- 8
FF (AA, BB, CC, DD, X (08), 16#698098d8#, S11); -- 9
FF (DD, AA, BB, CC, X (09), 16#8b44f7af#, S12); -- 10
FF (CC, DD, AA, BB, X (10), 16#ffff5bb1#, S13); -- 11
FF (BB, CC, DD, AA, X (11), 16#895cd7be#, S14); -- 12
FF (AA, BB, CC, DD, X (12), 16#6b901122#, S11); -- 13
FF (DD, AA, BB, CC, X (13), 16#fd987193#, S12); -- 14
FF (CC, DD, AA, BB, X (14), 16#a679438e#, S13); -- 15
FF (BB, CC, DD, AA, X (15), 16#49b40821#, S14); -- 16
-- Round 2
GG (AA, BB, CC, DD, X (01), 16#f61e2562#, S21); -- 17
GG (DD, AA, BB, CC, X (06), 16#c040b340#, S22); -- 18
GG (CC, DD, AA, BB, X (11), 16#265e5a51#, S23); -- 19
GG (BB, CC, DD, AA, X (00), 16#e9b6c7aa#, S24); -- 20
GG (AA, BB, CC, DD, X (05), 16#d62f105d#, S21); -- 21
GG (DD, AA, BB, CC, X (10), 16#02441453#, S22); -- 22
GG (CC, DD, AA, BB, X (15), 16#d8a1e681#, S23); -- 23
GG (BB, CC, DD, AA, X (04), 16#e7d3fbc8#, S24); -- 24
GG (AA, BB, CC, DD, X (09), 16#21e1cde6#, S21); -- 25
GG (DD, AA, BB, CC, X (14), 16#c33707d6#, S22); -- 26
GG (CC, DD, AA, BB, X (03), 16#f4d50d87#, S23); -- 27
GG (BB, CC, DD, AA, X (08), 16#455a14ed#, S24); -- 28
GG (AA, BB, CC, DD, X (13), 16#a9e3e905#, S21); -- 29
GG (DD, AA, BB, CC, X (02), 16#fcefa3f8#, S22); -- 30
GG (CC, DD, AA, BB, X (07), 16#676f02d9#, S23); -- 31
GG (BB, CC, DD, AA, X (12), 16#8d2a4c8a#, S24); -- 32
-- Round 3
HH (AA, BB, CC, DD, X (05), 16#fffa3942#, S31); -- 33
HH (DD, AA, BB, CC, X (08), 16#8771f681#, S32); -- 34
HH (CC, DD, AA, BB, X (11), 16#6d9d6122#, S33); -- 35
HH (BB, CC, DD, AA, X (14), 16#fde5380c#, S34); -- 36
HH (AA, BB, CC, DD, X (01), 16#a4beea44#, S31); -- 37
HH (DD, AA, BB, CC, X (04), 16#4bdecfa9#, S32); -- 38
HH (CC, DD, AA, BB, X (07), 16#f6bb4b60#, S33); -- 39
HH (BB, CC, DD, AA, X (10), 16#bebfbc70#, S34); -- 40
HH (AA, BB, CC, DD, X (13), 16#289b7ec6#, S31); -- 41
HH (DD, AA, BB, CC, X (00), 16#eaa127fa#, S32); -- 42
HH (CC, DD, AA, BB, X (03), 16#d4ef3085#, S33); -- 43
HH (BB, CC, DD, AA, X (06), 16#04881d05#, S34); -- 44
HH (AA, BB, CC, DD, X (09), 16#d9d4d039#, S31); -- 45
HH (DD, AA, BB, CC, X (12), 16#e6db99e5#, S32); -- 46
HH (CC, DD, AA, BB, X (15), 16#1fa27cf8#, S33); -- 47
HH (BB, CC, DD, AA, X (02), 16#c4ac5665#, S34); -- 48
-- Round 4
II (AA, BB, CC, DD, X (00), 16#f4292244#, S41); -- 49
II (DD, AA, BB, CC, X (07), 16#432aff97#, S42); -- 50
II (CC, DD, AA, BB, X (14), 16#ab9423a7#, S43); -- 51
II (BB, CC, DD, AA, X (05), 16#fc93a039#, S44); -- 52
II (AA, BB, CC, DD, X (12), 16#655b59c3#, S41); -- 53
II (DD, AA, BB, CC, X (03), 16#8f0ccc92#, S42); -- 54
II (CC, DD, AA, BB, X (10), 16#ffeff47d#, S43); -- 55
II (BB, CC, DD, AA, X (01), 16#85845dd1#, S44); -- 56
II (AA, BB, CC, DD, X (08), 16#6fa87e4f#, S41); -- 57
II (DD, AA, BB, CC, X (15), 16#fe2ce6e0#, S42); -- 58
II (CC, DD, AA, BB, X (06), 16#a3014314#, S43); -- 59
II (BB, CC, DD, AA, X (13), 16#4e0811a1#, S44); -- 60
II (AA, BB, CC, DD, X (04), 16#f7537e82#, S41); -- 61
II (DD, AA, BB, CC, X (11), 16#bd3af235#, S42); -- 62
II (CC, DD, AA, BB, X (02), 16#2ad7d2bb#, S43); -- 63
II (BB, CC, DD, AA, X (09), 16#eb86d391#, S44); -- 64
C.A := C.A + AA;
C.B := C.B + BB;
C.C := C.C + CC;
C.D := C.D + DD;
end Transform;
------------
-- Update --
------------
procedure Update
(C : in out Context;
Input : String)
is
Inp : constant String := C.Buffer (1 .. C.Last) & Input;
Cur : Positive := Inp'First;
begin
C.Length := C.Length + Input'Length;
while Cur + 63 <= Inp'Last loop
Transform (C, Inp (Cur .. Cur + 63));
Cur := Cur + 64;
end loop;
C.Last := Inp'Last - Cur + 1;
C.Buffer (1 .. C.Last) := Inp (Cur .. Inp'Last);
end Update;
procedure Update
(C : in out Context;
Input : Ada.Streams.Stream_Element_Array)
is
subtype Stream_Array is Ada.Streams.Stream_Element_Array (Input'Range);
subtype Stream_String is
String (1 + Integer (Input'First) .. 1 + Integer (Input'Last));
function To_String is new Ada.Unchecked_Conversion
(Stream_Array, Stream_String);
String_Input : constant String := To_String (Input);
begin
Update (C, String_Input);
end Update;
-----------------
-- Wide_Digest --
-----------------
function Wide_Digest (W : Wide_String) return Message_Digest is
C : Context;
begin
Wide_Update (C, W);
return Digest (C);
end Wide_Digest;
-----------------
-- Wide_Update --
-----------------
procedure Wide_Update
(C : in out Context;
Input : Wide_String)
is
String_Input : String (1 .. 2 * Input'Length);
Cur : Positive := 1;
begin
for Index in Input'Range loop
String_Input (Cur) :=
Character'Val
(Unsigned_32 (Wide_Character'Pos (Input (Index))) and 16#FF#);
Cur := Cur + 1;
String_Input (Cur) :=
Character'Val
(Shift_Right (Unsigned_32 (Wide_Character'Pos (Input (Index))), 8)
and 16#FF#);
Cur := Cur + 1;
end loop;
Update (C, String_Input);
end Wide_Update;
end GNAT.MD5;
|
<?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>checkAxis_1</name>
<ret_bitwidth>64</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>6</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>1</id>
<name>edge_p1_x</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo class_id="6" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs class_id="7" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_2">
<Value>
<Obj>
<type>1</type>
<id>2</id>
<name>edge_p1_y</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_3">
<Value>
<Obj>
<type>1</type>
<id>3</id>
<name>edge_p1_z</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_4">
<Value>
<Obj>
<type>1</type>
<id>4</id>
<name>edge_p2_x</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_5">
<Value>
<Obj>
<type>1</type>
<id>5</id>
<name>edge_p2_y</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_6">
<Value>
<Obj>
<type>1</type>
<id>6</id>
<name>edge_p2_z</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>92</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_7">
<Value>
<Obj>
<type>0</type>
<id>7</id>
<name>edge_p2_z_read</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="10" tracking_level="0" version="0">
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second class_id="11" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="12" tracking_level="0" version="0">
<first class_id="13" tracking_level="0" version="0">
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>109</item>
<item>110</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>1</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_8">
<Value>
<Obj>
<type>0</type>
<id>8</id>
<name>edge_p2_y_read</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>111</item>
<item>112</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>2</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_9">
<Value>
<Obj>
<type>0</type>
<id>9</id>
<name>edge_p2_x_read</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>113</item>
<item>114</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>3</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>10</id>
<name>edge_p1_z_read</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>115</item>
<item>116</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>4</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>11</id>
<name>edge_p1_y_read</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>117</item>
<item>118</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>5</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>12</id>
<name>edge_p1_x_read</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>119</item>
<item>120</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>6</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>13</id>
<name>call_ret</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>96</bitwidth>
</Value>
<oprand_edges>
<count>8</count>
<item_version>0</item_version>
<item>122</item>
<item>123</item>
<item>124</item>
<item>125</item>
<item>126</item>
<item>127</item>
<item>128</item>
<item>130</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>8.75</m_delay>
<m_topoIndex>7</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>14</id>
<name>p_0</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>131</item>
</oprand_edges>
<opcode>extractvalue</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>8</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>15</id>
<name>p_1</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>132</item>
</oprand_edges>
<opcode>extractvalue</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>9</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>16</id>
<name>p_2</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>133</item>
</oprand_edges>
<opcode>extractvalue</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>10</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>17</id>
<name>tmp_s</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>123</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>123</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>10</count>
<item_version>0</item_version>
<item>135</item>
<item>136</item>
<item>137</item>
<item>138</item>
<item>139</item>
<item>140</item>
<item>141</item>
<item>142</item>
<item>143</item>
<item>144</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>5.28</m_delay>
<m_topoIndex>11</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>18</id>
<name>_ln123</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>123</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>123</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>145</item>
<item>146</item>
<item>147</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.46</m_delay>
<m_topoIndex>12</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>20</id>
<name>j_assign</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>124</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>j</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>179</item>
<item>180</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>8.58</m_delay>
<m_topoIndex>13</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name>k_assign</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>124</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>k</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>181</item>
<item>182</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>8.58</m_delay>
<m_topoIndex>14</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>22</id>
<name>shl_ln80</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>shiftAmount</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
<item>
<first>
<first>src/honeybee.c</first>
<second>shiftAmount</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>183</item>
<item>185</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>15</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>23</id>
<name>shl_ln80_4</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>shiftAmount</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
<item>
<first>
<first>src/honeybee.c</first>
<second>shiftAmount</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>186</item>
<item>188</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>16</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>24</id>
<name>add_ln80</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>shiftAmount</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
<item>
<first>
<first>src/honeybee.c</first>
<second>shiftAmount</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>189</item>
<item>190</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.89</m_delay>
<m_topoIndex>17</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>25</id>
<name>zext_ln124</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>124</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</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>191</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>18</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>26</id>
<name>shl_ln124</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>124</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>193</item>
<item>194</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>19</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>27</id>
<name>add_ln80_10</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>shiftAmount</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>125</second>
</item>
<item>
<first>
<first>src/honeybee.c</first>
<second>shiftAmount</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>196</item>
<item>197</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>20</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>28</id>
<name>add_ln80_11</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>shiftAmount</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>125</second>
</item>
<item>
<first>
<first>src/honeybee.c</first>
<second>shiftAmount</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>198</item>
<item>199</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>3.58</m_delay>
<m_topoIndex>21</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>29</id>
<name>zext_ln125</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>125</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>200</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>22</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>30</id>
<name>shl_ln125</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>125</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>201</item>
<item>202</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>23</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>31</id>
<name>or_ln125</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>125</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>203</item>
<item>204</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.93</m_delay>
<m_topoIndex>24</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>32</id>
<name>_ln126</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>126</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>126</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>205</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.46</m_delay>
<m_topoIndex>25</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>34</id>
<name>collisions_5_0</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>125</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>148</item>
<item>149</item>
<item>151</item>
<item>152</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>31</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>35</id>
<name>call_ret_1</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>96</bitwidth>
</Value>
<oprand_edges>
<count>8</count>
<item_version>0</item_version>
<item>153</item>
<item>154</item>
<item>155</item>
<item>156</item>
<item>157</item>
<item>158</item>
<item>159</item>
<item>161</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>8.75</m_delay>
<m_topoIndex>26</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>36</id>
<name>p_0_0_1</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>162</item>
</oprand_edges>
<opcode>extractvalue</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>27</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name>p_1_0_1</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>163</item>
</oprand_edges>
<opcode>extractvalue</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>28</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name>p_2_0_1</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>164</item>
</oprand_edges>
<opcode>extractvalue</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>29</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>39</id>
<name>tmp_43_1</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>123</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>123</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>10</count>
<item_version>0</item_version>
<item>165</item>
<item>166</item>
<item>167</item>
<item>168</item>
<item>169</item>
<item>170</item>
<item>171</item>
<item>172</item>
<item>173</item>
<item>174</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>5.28</m_delay>
<m_topoIndex>30</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>_ln123</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>123</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>123</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>175</item>
<item>176</item>
<item>177</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.46</m_delay>
<m_topoIndex>32</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>42</id>
<name>j_assign_4</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>124</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>j</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>235</item>
<item>236</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>8.58</m_delay>
<m_topoIndex>33</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_40">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name>k_assign_1</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>124</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>k</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>237</item>
<item>238</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>8.58</m_delay>
<m_topoIndex>34</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>44</id>
<name>shl_ln80_5</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>shiftAmount</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
<item>
<first>
<first>src/honeybee.c</first>
<second>shiftAmount</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>239</item>
<item>240</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>35</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_42">
<Value>
<Obj>
<type>0</type>
<id>45</id>
<name>shl_ln80_6</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>shiftAmount</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
<item>
<first>
<first>src/honeybee.c</first>
<second>shiftAmount</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>241</item>
<item>242</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>36</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_43">
<Value>
<Obj>
<type>0</type>
<id>46</id>
<name>or_ln80</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>shiftAmount</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
<item>
<first>
<first>src/honeybee.c</first>
<second>shiftAmount</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>243</item>
<item>245</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>37</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_44">
<Value>
<Obj>
<type>0</type>
<id>47</id>
<name>add_ln80_12</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>shiftAmount</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
<item>
<first>
<first>src/honeybee.c</first>
<second>shiftAmount</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>246</item>
<item>247</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.89</m_delay>
<m_topoIndex>38</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_45">
<Value>
<Obj>
<type>0</type>
<id>48</id>
<name>zext_ln124_1</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>124</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</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>248</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>39</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_46">
<Value>
<Obj>
<type>0</type>
<id>49</id>
<name>shl_ln124_1</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>124</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>249</item>
<item>250</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>40</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_47">
<Value>
<Obj>
<type>0</type>
<id>50</id>
<name>add_ln80_13</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>shiftAmount</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>125</second>
</item>
<item>
<first>
<first>src/honeybee.c</first>
<second>shiftAmount</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>251</item>
<item>252</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.89</m_delay>
<m_topoIndex>41</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_48">
<Value>
<Obj>
<type>0</type>
<id>51</id>
<name>zext_ln125_1</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>125</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>253</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>42</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_49">
<Value>
<Obj>
<type>0</type>
<id>52</id>
<name>shl_ln125_1</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>125</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>254</item>
<item>255</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>43</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_50">
<Value>
<Obj>
<type>0</type>
<id>53</id>
<name>or_ln125_4</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>125</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>256</item>
<item>257</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>44</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_51">
<Value>
<Obj>
<type>0</type>
<id>54</id>
<name>or_ln125_1</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>125</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>258</item>
<item>259</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.93</m_delay>
<m_topoIndex>45</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_52">
<Value>
<Obj>
<type>0</type>
<id>55</id>
<name>_ln126</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>126</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>126</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>260</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.46</m_delay>
<m_topoIndex>46</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_53">
<Value>
<Obj>
<type>0</type>
<id>57</id>
<name>collisions_5_1</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>125</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>206</item>
<item>207</item>
<item>208</item>
<item>209</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>48</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_54">
<Value>
<Obj>
<type>0</type>
<id>58</id>
<name>call_ret_2</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>96</bitwidth>
</Value>
<oprand_edges>
<count>8</count>
<item_version>0</item_version>
<item>210</item>
<item>211</item>
<item>212</item>
<item>213</item>
<item>214</item>
<item>215</item>
<item>216</item>
<item>218</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>8.75</m_delay>
<m_topoIndex>47</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_55">
<Value>
<Obj>
<type>0</type>
<id>59</id>
<name>p_0_0_2</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>219</item>
</oprand_edges>
<opcode>extractvalue</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>49</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_56">
<Value>
<Obj>
<type>0</type>
<id>60</id>
<name>p_1_0_2</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>220</item>
</oprand_edges>
<opcode>extractvalue</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>50</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_57">
<Value>
<Obj>
<type>0</type>
<id>61</id>
<name>p_2_0_2</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>221</item>
</oprand_edges>
<opcode>extractvalue</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>51</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_58">
<Value>
<Obj>
<type>0</type>
<id>62</id>
<name>tmp_43_2</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>123</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>123</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>10</count>
<item_version>0</item_version>
<item>222</item>
<item>223</item>
<item>224</item>
<item>225</item>
<item>226</item>
<item>227</item>
<item>228</item>
<item>229</item>
<item>230</item>
<item>231</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>5.28</m_delay>
<m_topoIndex>52</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_59">
<Value>
<Obj>
<type>0</type>
<id>63</id>
<name>_ln123</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>123</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>123</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>232</item>
<item>233</item>
<item>234</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.46</m_delay>
<m_topoIndex>53</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_60">
<Value>
<Obj>
<type>0</type>
<id>65</id>
<name>j_assign_5</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>124</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>j</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>290</item>
<item>291</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>8.58</m_delay>
<m_topoIndex>54</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_61">
<Value>
<Obj>
<type>0</type>
<id>66</id>
<name>k_assign_2</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>124</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>k</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>292</item>
<item>293</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>8.58</m_delay>
<m_topoIndex>55</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_62">
<Value>
<Obj>
<type>0</type>
<id>67</id>
<name>shl_ln80_7</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>shiftAmount</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
<item>
<first>
<first>src/honeybee.c</first>
<second>shiftAmount</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>294</item>
<item>295</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>56</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_63">
<Value>
<Obj>
<type>0</type>
<id>68</id>
<name>shl_ln80_8</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>shiftAmount</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
<item>
<first>
<first>src/honeybee.c</first>
<second>shiftAmount</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>296</item>
<item>297</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>57</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_64">
<Value>
<Obj>
<type>0</type>
<id>69</id>
<name>or_ln80_1</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>shiftAmount</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
<item>
<first>
<first>src/honeybee.c</first>
<second>shiftAmount</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>298</item>
<item>299</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>58</m_topoIndex>
<m_clusterGroupNumber>4</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_65">
<Value>
<Obj>
<type>0</type>
<id>70</id>
<name>add_ln80_14</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>shiftAmount</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
<item>
<first>
<first>src/honeybee.c</first>
<second>shiftAmount</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>300</item>
<item>301</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.89</m_delay>
<m_topoIndex>59</m_topoIndex>
<m_clusterGroupNumber>4</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_66">
<Value>
<Obj>
<type>0</type>
<id>71</id>
<name>zext_ln124_2</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>124</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</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>302</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>60</m_topoIndex>
<m_clusterGroupNumber>5</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_67">
<Value>
<Obj>
<type>0</type>
<id>72</id>
<name>shl_ln124_2</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>124</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>303</item>
<item>304</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>61</m_topoIndex>
<m_clusterGroupNumber>5</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_68">
<Value>
<Obj>
<type>0</type>
<id>73</id>
<name>or_ln80_2</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>shiftAmount</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>125</second>
</item>
<item>
<first>
<first>src/honeybee.c</first>
<second>shiftAmount</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>305</item>
<item>306</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>62</m_topoIndex>
<m_clusterGroupNumber>6</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_69">
<Value>
<Obj>
<type>0</type>
<id>74</id>
<name>add_ln80_15</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>shiftAmount</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>125</second>
</item>
<item>
<first>
<first>src/honeybee.c</first>
<second>shiftAmount</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>307</item>
<item>308</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.89</m_delay>
<m_topoIndex>63</m_topoIndex>
<m_clusterGroupNumber>6</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_70">
<Value>
<Obj>
<type>0</type>
<id>75</id>
<name>zext_ln125_2</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>125</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>309</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>64</m_topoIndex>
<m_clusterGroupNumber>5</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_71">
<Value>
<Obj>
<type>0</type>
<id>76</id>
<name>shl_ln125_2</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>125</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>310</item>
<item>311</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>65</m_topoIndex>
<m_clusterGroupNumber>5</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_72">
<Value>
<Obj>
<type>0</type>
<id>77</id>
<name>or_ln125_5</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>125</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>312</item>
<item>313</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>66</m_topoIndex>
<m_clusterGroupNumber>5</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_73">
<Value>
<Obj>
<type>0</type>
<id>78</id>
<name>or_ln125_2</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>125</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>314</item>
<item>315</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.93</m_delay>
<m_topoIndex>67</m_topoIndex>
<m_clusterGroupNumber>5</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_74">
<Value>
<Obj>
<type>0</type>
<id>79</id>
<name>_ln126</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>126</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>126</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>316</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.46</m_delay>
<m_topoIndex>68</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_75">
<Value>
<Obj>
<type>0</type>
<id>81</id>
<name>collisions_5_2</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>125</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>261</item>
<item>262</item>
<item>263</item>
<item>264</item>
</oprand_edges>
<opcode>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>70</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_76">
<Value>
<Obj>
<type>0</type>
<id>82</id>
<name>call_ret_3</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>96</bitwidth>
</Value>
<oprand_edges>
<count>8</count>
<item_version>0</item_version>
<item>265</item>
<item>266</item>
<item>267</item>
<item>268</item>
<item>269</item>
<item>270</item>
<item>271</item>
<item>273</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>8.75</m_delay>
<m_topoIndex>69</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_77">
<Value>
<Obj>
<type>0</type>
<id>83</id>
<name>p_0_0_3</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>274</item>
</oprand_edges>
<opcode>extractvalue</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>71</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_78">
<Value>
<Obj>
<type>0</type>
<id>84</id>
<name>p_1_0_3</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>275</item>
</oprand_edges>
<opcode>extractvalue</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>72</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_79">
<Value>
<Obj>
<type>0</type>
<id>85</id>
<name>p_2_0_3</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>276</item>
</oprand_edges>
<opcode>extractvalue</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>73</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_80">
<Value>
<Obj>
<type>0</type>
<id>86</id>
<name>tmp_43_3</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>123</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>123</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>10</count>
<item_version>0</item_version>
<item>277</item>
<item>278</item>
<item>279</item>
<item>280</item>
<item>281</item>
<item>282</item>
<item>283</item>
<item>284</item>
<item>285</item>
<item>286</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>5.28</m_delay>
<m_topoIndex>74</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_81">
<Value>
<Obj>
<type>0</type>
<id>87</id>
<name>_ln123</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>123</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>123</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_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.46</m_delay>
<m_topoIndex>75</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_82">
<Value>
<Obj>
<type>0</type>
<id>89</id>
<name>j_assign_6</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>124</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>j</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>322</item>
<item>323</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>8.58</m_delay>
<m_topoIndex>76</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_83">
<Value>
<Obj>
<type>0</type>
<id>90</id>
<name>k_assign_3</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>124</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>k</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>324</item>
<item>325</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>8.58</m_delay>
<m_topoIndex>77</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_84">
<Value>
<Obj>
<type>0</type>
<id>91</id>
<name>shl_ln80_9</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>shiftAmount</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
<item>
<first>
<first>src/honeybee.c</first>
<second>shiftAmount</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>326</item>
<item>327</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>78</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_85">
<Value>
<Obj>
<type>0</type>
<id>92</id>
<name>shl_ln80_10</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>shiftAmount</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
<item>
<first>
<first>src/honeybee.c</first>
<second>shiftAmount</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>328</item>
<item>329</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>79</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_86">
<Value>
<Obj>
<type>0</type>
<id>93</id>
<name>or_ln80_3</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>shiftAmount</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
<item>
<first>
<first>src/honeybee.c</first>
<second>shiftAmount</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>330</item>
<item>332</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>80</m_topoIndex>
<m_clusterGroupNumber>7</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_87">
<Value>
<Obj>
<type>0</type>
<id>94</id>
<name>add_ln80_16</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>shiftAmount</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
<item>
<first>
<first>src/honeybee.c</first>
<second>shiftAmount</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>333</item>
<item>334</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.89</m_delay>
<m_topoIndex>81</m_topoIndex>
<m_clusterGroupNumber>7</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_88">
<Value>
<Obj>
<type>0</type>
<id>95</id>
<name>zext_ln124_3</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>124</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</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>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>82</m_topoIndex>
<m_clusterGroupNumber>8</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_89">
<Value>
<Obj>
<type>0</type>
<id>96</id>
<name>shl_ln124_3</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>124</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>124</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>336</item>
<item>337</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>83</m_topoIndex>
<m_clusterGroupNumber>8</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_90">
<Value>
<Obj>
<type>0</type>
<id>97</id>
<name>or_ln80_4</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>shiftAmount</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>125</second>
</item>
<item>
<first>
<first>src/honeybee.c</first>
<second>shiftAmount</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>338</item>
<item>339</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>84</m_topoIndex>
<m_clusterGroupNumber>9</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_91">
<Value>
<Obj>
<type>0</type>
<id>98</id>
<name>add_ln80_17</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>shiftAmount</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>125</second>
</item>
<item>
<first>
<first>src/honeybee.c</first>
<second>shiftAmount</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>340</item>
<item>341</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.89</m_delay>
<m_topoIndex>85</m_topoIndex>
<m_clusterGroupNumber>9</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_92">
<Value>
<Obj>
<type>0</type>
<id>99</id>
<name>zext_ln125_3</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>125</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>342</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>86</m_topoIndex>
<m_clusterGroupNumber>8</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_93">
<Value>
<Obj>
<type>0</type>
<id>100</id>
<name>shl_ln125_3</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>125</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>343</item>
<item>344</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>87</m_topoIndex>
<m_clusterGroupNumber>8</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_94">
<Value>
<Obj>
<type>0</type>
<id>101</id>
<name>or_ln125_6</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>125</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>345</item>
<item>346</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>88</m_topoIndex>
<m_clusterGroupNumber>8</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_95">
<Value>
<Obj>
<type>0</type>
<id>102</id>
<name>or_ln125_3</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>125</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>347</item>
<item>348</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.93</m_delay>
<m_topoIndex>89</m_topoIndex>
<m_clusterGroupNumber>8</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_96">
<Value>
<Obj>
<type>0</type>
<id>103</id>
<name>_ln126</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>126</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>126</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>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.46</m_delay>
<m_topoIndex>90</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_97">
<Value>
<Obj>
<type>0</type>
<id>105</id>
<name>collisions_5_3</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>125</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>125</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>317</item>
<item>318</item>
<item>319</item>
<item>320</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>91</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_98">
<Value>
<Obj>
<type>0</type>
<id>106</id>
<name>_ln130</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>130</lineNumber>
<contextFuncName>checkAxis</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>checkAxis</second>
</first>
<second>130</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>321</item>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>92</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>14</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_99">
<Value>
<Obj>
<type>2</type>
<id>121</id>
<name>lineIntersectsPlane</name>
<fileName></fileName>
<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>96</bitwidth>
</Value>
<const_type>6</const_type>
<content><constant:lineIntersectsPlane></content>
</item>
<item class_id_reference="16" object_id="_100">
<Value>
<Obj>
<type>2</type>
<id>129</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>1</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_101">
<Value>
<Obj>
<type>2</type>
<id>134</id>
<name>pointOnSegment</name>
<fileName></fileName>
<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>6</const_type>
<content><constant:pointOnSegment></content>
</item>
<item class_id_reference="16" object_id="_102">
<Value>
<Obj>
<type>2</type>
<id>150</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="_103">
<Value>
<Obj>
<type>2</type>
<id>160</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>1</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_104">
<Value>
<Obj>
<type>2</type>
<id>178</id>
<name>p_hls_fptosi_float_i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>6</const_type>
<content><constant:__hls_fptosi_float_i></content>
</item>
<item class_id_reference="16" object_id="_105">
<Value>
<Obj>
<type>2</type>
<id>184</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>2</content>
</item>
<item class_id_reference="16" object_id="_106">
<Value>
<Obj>
<type>2</type>
<id>187</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>4</content>
</item>
<item class_id_reference="16" object_id="_107">
<Value>
<Obj>
<type>2</type>
<id>192</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="_108">
<Value>
<Obj>
<type>2</type>
<id>195</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>4294967295</content>
</item>
<item class_id_reference="16" object_id="_109">
<Value>
<Obj>
<type>2</type>
<id>217</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>1</const_type>
<content>2</content>
</item>
<item class_id_reference="16" object_id="_110">
<Value>
<Obj>
<type>2</type>
<id>244</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="_111">
<Value>
<Obj>
<type>2</type>
<id>272</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>1</const_type>
<content>3</content>
</item>
<item class_id_reference="16" object_id="_112">
<Value>
<Obj>
<type>2</type>
<id>331</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>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_113">
<Obj>
<type>3</type>
<id>19</id>
<name>._crit_edge</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>12</count>
<item_version>0</item_version>
<item>7</item>
<item>8</item>
<item>9</item>
<item>10</item>
<item>11</item>
<item>12</item>
<item>13</item>
<item>14</item>
<item>15</item>
<item>16</item>
<item>17</item>
<item>18</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_114">
<Obj>
<type>3</type>
<id>33</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>13</count>
<item_version>0</item_version>
<item>20</item>
<item>21</item>
<item>22</item>
<item>23</item>
<item>24</item>
<item>25</item>
<item>26</item>
<item>27</item>
<item>28</item>
<item>29</item>
<item>30</item>
<item>31</item>
<item>32</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_115">
<Obj>
<type>3</type>
<id>41</id>
<name>._crit_edge20.0</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>7</count>
<item_version>0</item_version>
<item>34</item>
<item>35</item>
<item>36</item>
<item>37</item>
<item>38</item>
<item>39</item>
<item>40</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_116">
<Obj>
<type>3</type>
<id>56</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>14</count>
<item_version>0</item_version>
<item>42</item>
<item>43</item>
<item>44</item>
<item>45</item>
<item>46</item>
<item>47</item>
<item>48</item>
<item>49</item>
<item>50</item>
<item>51</item>
<item>52</item>
<item>53</item>
<item>54</item>
<item>55</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_117">
<Obj>
<type>3</type>
<id>64</id>
<name>._crit_edge20.1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>7</count>
<item_version>0</item_version>
<item>57</item>
<item>58</item>
<item>59</item>
<item>60</item>
<item>61</item>
<item>62</item>
<item>63</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_118">
<Obj>
<type>3</type>
<id>80</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>15</count>
<item_version>0</item_version>
<item>65</item>
<item>66</item>
<item>67</item>
<item>68</item>
<item>69</item>
<item>70</item>
<item>71</item>
<item>72</item>
<item>73</item>
<item>74</item>
<item>75</item>
<item>76</item>
<item>77</item>
<item>78</item>
<item>79</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_119">
<Obj>
<type>3</type>
<id>88</id>
<name>._crit_edge20.2</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>7</count>
<item_version>0</item_version>
<item>81</item>
<item>82</item>
<item>83</item>
<item>84</item>
<item>85</item>
<item>86</item>
<item>87</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_120">
<Obj>
<type>3</type>
<id>104</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>15</count>
<item_version>0</item_version>
<item>89</item>
<item>90</item>
<item>91</item>
<item>92</item>
<item>93</item>
<item>94</item>
<item>95</item>
<item>96</item>
<item>97</item>
<item>98</item>
<item>99</item>
<item>100</item>
<item>101</item>
<item>102</item>
<item>103</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_121">
<Obj>
<type>3</type>
<id>107</id>
<name>._crit_edge20.3</name>
<fileName></fileName>
<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>105</item>
<item>106</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>233</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_122">
<id>110</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>7</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_123">
<id>112</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>8</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_124">
<id>114</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>9</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_125">
<id>116</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>10</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_126">
<id>118</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>11</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_127">
<id>120</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>12</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_128">
<id>122</id>
<edge_type>1</edge_type>
<source_obj>121</source_obj>
<sink_obj>13</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_129">
<id>123</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>13</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_130">
<id>124</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>13</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_131">
<id>125</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>13</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_132">
<id>126</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>13</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_133">
<id>127</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>13</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_134">
<id>128</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>13</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_135">
<id>130</id>
<edge_type>1</edge_type>
<source_obj>129</source_obj>
<sink_obj>13</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_136">
<id>131</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>14</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_137">
<id>132</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>15</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_138">
<id>133</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>16</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_139">
<id>135</id>
<edge_type>1</edge_type>
<source_obj>134</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_140">
<id>136</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_141">
<id>137</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_142">
<id>138</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_143">
<id>139</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_144">
<id>140</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_145">
<id>141</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_146">
<id>142</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_147">
<id>143</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_148">
<id>144</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_149">
<id>145</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="_150">
<id>146</id>
<edge_type>2</edge_type>
<source_obj>41</source_obj>
<sink_obj>18</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_151">
<id>147</id>
<edge_type>2</edge_type>
<source_obj>33</source_obj>
<sink_obj>18</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_152">
<id>148</id>
<edge_type>1</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="_153">
<id>149</id>
<edge_type>2</edge_type>
<source_obj>33</source_obj>
<sink_obj>34</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_154">
<id>151</id>
<edge_type>1</edge_type>
<source_obj>150</source_obj>
<sink_obj>34</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_155">
<id>152</id>
<edge_type>2</edge_type>
<source_obj>19</source_obj>
<sink_obj>34</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_156">
<id>153</id>
<edge_type>1</edge_type>
<source_obj>121</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_157">
<id>154</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_158">
<id>155</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_159">
<id>156</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_160">
<id>157</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_161">
<id>158</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_162">
<id>159</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_163">
<id>161</id>
<edge_type>1</edge_type>
<source_obj>160</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_164">
<id>162</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>36</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_165">
<id>163</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_166">
<id>164</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>38</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_167">
<id>165</id>
<edge_type>1</edge_type>
<source_obj>134</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_168">
<id>166</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="_169">
<id>167</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_170">
<id>168</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_171">
<id>169</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_172">
<id>170</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_173">
<id>171</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_174">
<id>172</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_175">
<id>173</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_176">
<id>174</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_177">
<id>175</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_178">
<id>176</id>
<edge_type>2</edge_type>
<source_obj>64</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_179">
<id>177</id>
<edge_type>2</edge_type>
<source_obj>56</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_180">
<id>179</id>
<edge_type>1</edge_type>
<source_obj>178</source_obj>
<sink_obj>20</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_181">
<id>180</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>20</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_182">
<id>181</id>
<edge_type>1</edge_type>
<source_obj>178</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_183">
<id>182</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_184">
<id>183</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_185">
<id>185</id>
<edge_type>1</edge_type>
<source_obj>184</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_186">
<id>186</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_187">
<id>188</id>
<edge_type>1</edge_type>
<source_obj>187</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_188">
<id>189</id>
<edge_type>1</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="_189">
<id>190</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="_190">
<id>191</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_191">
<id>193</id>
<edge_type>1</edge_type>
<source_obj>192</source_obj>
<sink_obj>26</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_192">
<id>194</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="_193">
<id>196</id>
<edge_type>1</edge_type>
<source_obj>195</source_obj>
<sink_obj>27</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_194">
<id>197</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>27</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_195">
<id>198</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>28</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_196">
<id>199</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>28</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_197">
<id>200</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>29</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_198">
<id>201</id>
<edge_type>1</edge_type>
<source_obj>192</source_obj>
<sink_obj>30</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_199">
<id>202</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="_200">
<id>203</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>31</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_201">
<id>204</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>31</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_202">
<id>205</id>
<edge_type>2</edge_type>
<source_obj>41</source_obj>
<sink_obj>32</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_203">
<id>206</id>
<edge_type>1</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="_204">
<id>207</id>
<edge_type>2</edge_type>
<source_obj>56</source_obj>
<sink_obj>57</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_205">
<id>208</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>57</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_206">
<id>209</id>
<edge_type>2</edge_type>
<source_obj>41</source_obj>
<sink_obj>57</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_207">
<id>210</id>
<edge_type>1</edge_type>
<source_obj>121</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_208">
<id>211</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_209">
<id>212</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_210">
<id>213</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_211">
<id>214</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_212">
<id>215</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_213">
<id>216</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_214">
<id>218</id>
<edge_type>1</edge_type>
<source_obj>217</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_215">
<id>219</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>59</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_216">
<id>220</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="_217">
<id>221</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>61</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_218">
<id>222</id>
<edge_type>1</edge_type>
<source_obj>134</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_219">
<id>223</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="_220">
<id>224</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_221">
<id>225</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_222">
<id>226</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_223">
<id>227</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_224">
<id>228</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_225">
<id>229</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="_226">
<id>230</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_227">
<id>231</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_228">
<id>232</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>63</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_229">
<id>233</id>
<edge_type>2</edge_type>
<source_obj>88</source_obj>
<sink_obj>63</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_230">
<id>234</id>
<edge_type>2</edge_type>
<source_obj>80</source_obj>
<sink_obj>63</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_231">
<id>235</id>
<edge_type>1</edge_type>
<source_obj>178</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_232">
<id>236</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_233">
<id>237</id>
<edge_type>1</edge_type>
<source_obj>178</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_234">
<id>238</id>
<edge_type>1</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="_235">
<id>239</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>44</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_236">
<id>240</id>
<edge_type>1</edge_type>
<source_obj>184</source_obj>
<sink_obj>44</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_237">
<id>241</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>45</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_238">
<id>242</id>
<edge_type>1</edge_type>
<source_obj>187</source_obj>
<sink_obj>45</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_239">
<id>243</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>46</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_240">
<id>245</id>
<edge_type>1</edge_type>
<source_obj>244</source_obj>
<sink_obj>46</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_241">
<id>246</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_242">
<id>247</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_243">
<id>248</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>48</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_244">
<id>249</id>
<edge_type>1</edge_type>
<source_obj>192</source_obj>
<sink_obj>49</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_245">
<id>250</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="_246">
<id>251</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_247">
<id>252</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_248">
<id>253</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="_249">
<id>254</id>
<edge_type>1</edge_type>
<source_obj>192</source_obj>
<sink_obj>52</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_250">
<id>255</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="_251">
<id>256</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>53</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_252">
<id>257</id>
<edge_type>1</edge_type>
<source_obj>52</source_obj>
<sink_obj>53</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_253">
<id>258</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>54</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_254">
<id>259</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>54</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_255">
<id>260</id>
<edge_type>2</edge_type>
<source_obj>64</source_obj>
<sink_obj>55</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_256">
<id>261</id>
<edge_type>1</edge_type>
<source_obj>78</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_257">
<id>262</id>
<edge_type>2</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="_258">
<id>263</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_259">
<id>264</id>
<edge_type>2</edge_type>
<source_obj>64</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_260">
<id>265</id>
<edge_type>1</edge_type>
<source_obj>121</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_261">
<id>266</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_262">
<id>267</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_263">
<id>268</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_264">
<id>269</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_265">
<id>270</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_266">
<id>271</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_267">
<id>273</id>
<edge_type>1</edge_type>
<source_obj>272</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_268">
<id>274</id>
<edge_type>1</edge_type>
<source_obj>82</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_269">
<id>275</id>
<edge_type>1</edge_type>
<source_obj>82</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_270">
<id>276</id>
<edge_type>1</edge_type>
<source_obj>82</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_271">
<id>277</id>
<edge_type>1</edge_type>
<source_obj>134</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_272">
<id>278</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="_273">
<id>279</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_274">
<id>280</id>
<edge_type>1</edge_type>
<source_obj>83</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_275">
<id>281</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_276">
<id>282</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_277">
<id>283</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_278">
<id>284</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_279">
<id>285</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_280">
<id>286</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_281">
<id>287</id>
<edge_type>1</edge_type>
<source_obj>86</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_282">
<id>288</id>
<edge_type>2</edge_type>
<source_obj>107</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_283">
<id>289</id>
<edge_type>2</edge_type>
<source_obj>104</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_284">
<id>290</id>
<edge_type>1</edge_type>
<source_obj>178</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_285">
<id>291</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_286">
<id>292</id>
<edge_type>1</edge_type>
<source_obj>178</source_obj>
<sink_obj>66</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_287">
<id>293</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>66</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_288">
<id>294</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>67</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_289">
<id>295</id>
<edge_type>1</edge_type>
<source_obj>184</source_obj>
<sink_obj>67</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_290">
<id>296</id>
<edge_type>1</edge_type>
<source_obj>66</source_obj>
<sink_obj>68</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_291">
<id>297</id>
<edge_type>1</edge_type>
<source_obj>187</source_obj>
<sink_obj>68</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_292">
<id>298</id>
<edge_type>1</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="_293">
<id>299</id>
<edge_type>1</edge_type>
<source_obj>184</source_obj>
<sink_obj>69</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_294">
<id>300</id>
<edge_type>1</edge_type>
<source_obj>69</source_obj>
<sink_obj>70</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_295">
<id>301</id>
<edge_type>1</edge_type>
<source_obj>68</source_obj>
<sink_obj>70</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_296">
<id>302</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="_297">
<id>303</id>
<edge_type>1</edge_type>
<source_obj>192</source_obj>
<sink_obj>72</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_298">
<id>304</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>72</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_299">
<id>305</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>73</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_300">
<id>306</id>
<edge_type>1</edge_type>
<source_obj>244</source_obj>
<sink_obj>73</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_301">
<id>307</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="_302">
<id>308</id>
<edge_type>1</edge_type>
<source_obj>68</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_303">
<id>309</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_304">
<id>310</id>
<edge_type>1</edge_type>
<source_obj>192</source_obj>
<sink_obj>76</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_305">
<id>311</id>
<edge_type>1</edge_type>
<source_obj>75</source_obj>
<sink_obj>76</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_306">
<id>312</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>77</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_307">
<id>313</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="_308">
<id>314</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>78</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_309">
<id>315</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>78</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_310">
<id>316</id>
<edge_type>2</edge_type>
<source_obj>88</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_311">
<id>317</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="_312">
<id>318</id>
<edge_type>2</edge_type>
<source_obj>104</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_313">
<id>319</id>
<edge_type>1</edge_type>
<source_obj>81</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_314">
<id>320</id>
<edge_type>2</edge_type>
<source_obj>88</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_315">
<id>321</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_316">
<id>322</id>
<edge_type>1</edge_type>
<source_obj>178</source_obj>
<sink_obj>89</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_317">
<id>323</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>89</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_318">
<id>324</id>
<edge_type>1</edge_type>
<source_obj>178</source_obj>
<sink_obj>90</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_319">
<id>325</id>
<edge_type>1</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="_320">
<id>326</id>
<edge_type>1</edge_type>
<source_obj>89</source_obj>
<sink_obj>91</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_321">
<id>327</id>
<edge_type>1</edge_type>
<source_obj>184</source_obj>
<sink_obj>91</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_322">
<id>328</id>
<edge_type>1</edge_type>
<source_obj>90</source_obj>
<sink_obj>92</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_323">
<id>329</id>
<edge_type>1</edge_type>
<source_obj>187</source_obj>
<sink_obj>92</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_324">
<id>330</id>
<edge_type>1</edge_type>
<source_obj>91</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_325">
<id>332</id>
<edge_type>1</edge_type>
<source_obj>331</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_326">
<id>333</id>
<edge_type>1</edge_type>
<source_obj>93</source_obj>
<sink_obj>94</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_327">
<id>334</id>
<edge_type>1</edge_type>
<source_obj>92</source_obj>
<sink_obj>94</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_328">
<id>335</id>
<edge_type>1</edge_type>
<source_obj>94</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_329">
<id>336</id>
<edge_type>1</edge_type>
<source_obj>192</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_330">
<id>337</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="_331">
<id>338</id>
<edge_type>1</edge_type>
<source_obj>91</source_obj>
<sink_obj>97</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_332">
<id>339</id>
<edge_type>1</edge_type>
<source_obj>184</source_obj>
<sink_obj>97</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_333">
<id>340</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="_334">
<id>341</id>
<edge_type>1</edge_type>
<source_obj>92</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_335">
<id>342</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="_336">
<id>343</id>
<edge_type>1</edge_type>
<source_obj>192</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_337">
<id>344</id>
<edge_type>1</edge_type>
<source_obj>99</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_338">
<id>345</id>
<edge_type>1</edge_type>
<source_obj>81</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_339">
<id>346</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_340">
<id>347</id>
<edge_type>1</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="_341">
<id>348</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_342">
<id>349</id>
<edge_type>2</edge_type>
<source_obj>107</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_343">
<id>350</id>
<edge_type>2</edge_type>
<source_obj>19</source_obj>
<sink_obj>33</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_344">
<id>351</id>
<edge_type>2</edge_type>
<source_obj>19</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_345">
<id>352</id>
<edge_type>2</edge_type>
<source_obj>33</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_346">
<id>353</id>
<edge_type>2</edge_type>
<source_obj>41</source_obj>
<sink_obj>56</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_347">
<id>354</id>
<edge_type>2</edge_type>
<source_obj>41</source_obj>
<sink_obj>64</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_348">
<id>355</id>
<edge_type>2</edge_type>
<source_obj>56</source_obj>
<sink_obj>64</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_349">
<id>356</id>
<edge_type>2</edge_type>
<source_obj>64</source_obj>
<sink_obj>80</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_350">
<id>357</id>
<edge_type>2</edge_type>
<source_obj>64</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_351">
<id>358</id>
<edge_type>2</edge_type>
<source_obj>80</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_352">
<id>359</id>
<edge_type>2</edge_type>
<source_obj>88</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_353">
<id>360</id>
<edge_type>2</edge_type>
<source_obj>88</source_obj>
<sink_obj>107</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_354">
<id>361</id>
<edge_type>2</edge_type>
<source_obj>104</source_obj>
<sink_obj>107</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="_355">
<mId>1</mId>
<mTag>checkAxis.1</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>9</count>
<item_version>0</item_version>
<item>19</item>
<item>33</item>
<item>41</item>
<item>56</item>
<item>64</item>
<item>80</item>
<item>88</item>
<item>104</item>
<item>107</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>204</mMinLatency>
<mMaxLatency>204</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
</cdfg_regions>
<fsm class_id="-1"></fsm>
<res class_id="-1"></res>
<node_label_latency class_id="26" tracking_level="0" version="0">
<count>92</count>
<item_version>0</item_version>
<item class_id="27" tracking_level="0" version="0">
<first>7</first>
<second class_id="28" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>8</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>9</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>10</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>11</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>12</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>13</first>
<second>
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>14</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>15</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>16</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>17</first>
<second>
<first>2</first>
<second>1</second>
</second>
</item>
<item>
<first>18</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>20</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>21</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>22</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>23</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>24</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>25</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>26</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>27</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>28</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>29</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>30</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>31</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>32</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>34</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>35</first>
<second>
<first>4</first>
<second>1</second>
</second>
</item>
<item>
<first>36</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>37</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>39</first>
<second>
<first>6</first>
<second>1</second>
</second>
</item>
<item>
<first>40</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>42</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>43</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>44</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>45</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>46</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>49</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>50</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>51</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>52</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>53</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>54</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>55</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>57</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>58</first>
<second>
<first>8</first>
<second>1</second>
</second>
</item>
<item>
<first>59</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>60</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>61</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>62</first>
<second>
<first>10</first>
<second>1</second>
</second>
</item>
<item>
<first>63</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>65</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>66</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>67</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>68</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>69</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>70</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>71</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>72</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>73</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>74</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>75</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>76</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>77</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>78</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>79</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>81</first>
<second>
<first>13</first>
<second>0</second>
</second>
</item>
<item>
<first>82</first>
<second>
<first>12</first>
<second>1</second>
</second>
</item>
<item>
<first>83</first>
<second>
<first>13</first>
<second>0</second>
</second>
</item>
<item>
<first>84</first>
<second>
<first>13</first>
<second>0</second>
</second>
</item>
<item>
<first>85</first>
<second>
<first>13</first>
<second>0</second>
</second>
</item>
<item>
<first>86</first>
<second>
<first>14</first>
<second>1</second>
</second>
</item>
<item>
<first>87</first>
<second>
<first>15</first>
<second>0</second>
</second>
</item>
<item>
<first>89</first>
<second>
<first>15</first>
<second>0</second>
</second>
</item>
<item>
<first>90</first>
<second>
<first>15</first>
<second>0</second>
</second>
</item>
<item>
<first>91</first>
<second>
<first>16</first>
<second>0</second>
</second>
</item>
<item>
<first>92</first>
<second>
<first>16</first>
<second>0</second>
</second>
</item>
<item>
<first>93</first>
<second>
<first>16</first>
<second>0</second>
</second>
</item>
<item>
<first>94</first>
<second>
<first>16</first>
<second>0</second>
</second>
</item>
<item>
<first>95</first>
<second>
<first>16</first>
<second>0</second>
</second>
</item>
<item>
<first>96</first>
<second>
<first>16</first>
<second>0</second>
</second>
</item>
<item>
<first>97</first>
<second>
<first>16</first>
<second>0</second>
</second>
</item>
<item>
<first>98</first>
<second>
<first>16</first>
<second>0</second>
</second>
</item>
<item>
<first>99</first>
<second>
<first>16</first>
<second>0</second>
</second>
</item>
<item>
<first>100</first>
<second>
<first>16</first>
<second>0</second>
</second>
</item>
<item>
<first>101</first>
<second>
<first>16</first>
<second>0</second>
</second>
</item>
<item>
<first>102</first>
<second>
<first>16</first>
<second>0</second>
</second>
</item>
<item>
<first>103</first>
<second>
<first>16</first>
<second>0</second>
</second>
</item>
<item>
<first>105</first>
<second>
<first>16</first>
<second>0</second>
</second>
</item>
<item>
<first>106</first>
<second>
<first>16</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="29" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="0" version="0">
<first>19</first>
<second class_id="31" tracking_level="0" version="0">
<first>0</first>
<second>3</second>
</second>
</item>
<item>
<first>33</first>
<second>
<first>3</first>
<second>4</second>
</second>
</item>
<item>
<first>41</first>
<second>
<first>4</first>
<second>7</second>
</second>
</item>
<item>
<first>56</first>
<second>
<first>7</first>
<second>8</second>
</second>
</item>
<item>
<first>64</first>
<second>
<first>8</first>
<second>11</second>
</second>
</item>
<item>
<first>80</first>
<second>
<first>11</first>
<second>12</second>
</second>
</item>
<item>
<first>88</first>
<second>
<first>12</first>
<second>15</second>
</second>
</item>
<item>
<first>104</first>
<second>
<first>15</first>
<second>16</second>
</second>
</item>
<item>
<first>107</first>
<second>
<first>16</first>
<second>16</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="32" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</regions>
<dp_fu_nodes class_id="33" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="34" 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="35" 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="36" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_port_io_nodes>
<port2core class_id="37" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
|
------------------------------------------------------------------------------
-- Copyright (c) 2014-2017, Natacha Porté --
-- --
-- Permission to use, copy, modify, and distribute this software for any --
-- purpose with or without fee is hereby granted, provided that the above --
-- copyright notice and this permission notice appear in all copies. --
-- --
-- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES --
-- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF --
-- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR --
-- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES --
-- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN --
-- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF --
-- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --
------------------------------------------------------------------------------
------------------------------------------------------------------------------
-- Natools.S_Expressions.Parsers.Tests provides a test suite for the --
-- S-expression stream parser. --
------------------------------------------------------------------------------
with Natools.Tests;
package Natools.S_Expressions.Parsers.Tests is
pragma Preelaborate (Tests);
package NT renames Natools.Tests;
procedure All_Tests (Report : in out NT.Reporter'Class);
procedure Atom_Encodings (Report : in out NT.Reporter'Class);
procedure Base64_Subexpression (Report : in out NT.Reporter'Class);
procedure Canonical_Encoding (Report : in out NT.Reporter'Class);
procedure Close_Current_List (Report : in out NT.Reporter'Class);
procedure Lockable_Interface (Report : in out NT.Reporter'Class);
procedure Locked_Next (Report : in out NT.Reporter'Class);
procedure Memory_Parser (Report : in out NT.Reporter'Class);
procedure Nested_Subpexression (Report : in out NT.Reporter'Class);
procedure Number_Prefixes (Report : in out NT.Reporter'Class);
procedure Quoted_Escapes (Report : in out NT.Reporter'Class);
procedure Reset (Report : in out NT.Reporter'Class);
procedure Special_Subexpression (Report : in out NT.Reporter'Class);
end Natools.S_Expressions.Parsers.Tests;
|
-- Lua.LibInternal
-- Contains the routines for loading the standard Lua library
-- Generated from lualib.h and then manually tidied up
-- Copyright (c) 2015, James Humphry
-- Derived from the original Lua work
-- Copyright (C) 1994-2015 Lua.org, PUC-Rio.
-- See LICENSE for details
with Interfaces.C; use Interfaces.C;
with System;
private package Lua.LibInternal is
function luaopen_base (arg1 : System.Address) return int; -- /usr/include/lualib.h:15
pragma Import (C, luaopen_base, "luaopen_base");
function luaopen_coroutine (arg1 : System.Address) return int; -- /usr/include/lualib.h:18
pragma Import (C, luaopen_coroutine, "luaopen_coroutine");
function luaopen_table (arg1 : System.Address) return int; -- /usr/include/lualib.h:21
pragma Import (C, luaopen_table, "luaopen_table");
function luaopen_io (arg1 : System.Address) return int; -- /usr/include/lualib.h:24
pragma Import (C, luaopen_io, "luaopen_io");
function luaopen_os (arg1 : System.Address) return int; -- /usr/include/lualib.h:27
pragma Import (C, luaopen_os, "luaopen_os");
function luaopen_string (arg1 : System.Address) return int; -- /usr/include/lualib.h:30
pragma Import (C, luaopen_string, "luaopen_string");
function luaopen_utf8 (arg1 : System.Address) return int; -- /usr/include/lualib.h:33
pragma Import (C, luaopen_utf8, "luaopen_utf8");
function luaopen_bit32 (arg1 : System.Address) return int; -- /usr/include/lualib.h:36
pragma Import (C, luaopen_bit32, "luaopen_bit32");
function luaopen_math (arg1 : System.Address) return int; -- /usr/include/lualib.h:39
pragma Import (C, luaopen_math, "luaopen_math");
function luaopen_debug (arg1 : System.Address) return int; -- /usr/include/lualib.h:42
pragma Import (C, luaopen_debug, "luaopen_debug");
function luaopen_package (arg1 : System.Address) return int; -- /usr/include/lualib.h:45
pragma Import (C, luaopen_package, "luaopen_package");
-- open all previous libraries
procedure luaL_openlibs (arg1 : System.Address); -- /usr/include/lualib.h:49
pragma Import (C, luaL_openlibs, "luaL_openlibs");
end Lua.LibInternal;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . T E X T _ I O . F L O A T _ A U X --
-- --
-- B o d y --
-- --
-- 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. --
-- --
------------------------------------------------------------------------------
with Ada.Text_IO.Generic_Aux; use Ada.Text_IO.Generic_Aux;
with System.Img_Real; use System.Img_Real;
with System.Val_Real; use System.Val_Real;
package body Ada.Text_IO.Float_Aux is
---------
-- Get --
---------
procedure Get
(File : File_Type;
Item : out Long_Long_Float;
Width : Field)
is
Buf : String (1 .. Field'Last);
Stop : Integer := 0;
Ptr : aliased Integer := 1;
begin
if Width /= 0 then
Load_Width (File, Width, Buf, Stop);
String_Skip (Buf, Ptr);
else
Load_Real (File, Buf, Stop);
end if;
Item := Scan_Real (Buf, Ptr'Access, Stop);
Check_End_Of_Field (Buf, Stop, Ptr, Width);
end Get;
----------
-- Gets --
----------
procedure Gets
(From : String;
Item : out Long_Long_Float;
Last : out Positive)
is
Pos : aliased Integer;
begin
String_Skip (From, Pos);
Item := Scan_Real (From, Pos'Access, From'Last);
Last := Pos - 1;
exception
when Constraint_Error =>
raise Data_Error;
end Gets;
---------------
-- Load_Real --
---------------
procedure Load_Real
(File : File_Type;
Buf : out String;
Ptr : in out Natural)
is
Loaded : Boolean;
begin
-- Skip initial blanks, and load possible sign
Load_Skip (File);
Load (File, Buf, Ptr, '+', '-');
-- Case of .nnnn
Load (File, Buf, Ptr, '.', Loaded);
if Loaded then
Load_Digits (File, Buf, Ptr, Loaded);
-- Hopeless junk if no digits loaded
if not Loaded then
return;
end if;
-- Otherwise must have digits to start
else
Load_Digits (File, Buf, Ptr, Loaded);
-- Hopeless junk if no digits loaded
if not Loaded then
return;
end if;
-- Based cases. We recognize either the standard '#' or the
-- allowed alternative replacement ':' (see RM J.2(3)).
Load (File, Buf, Ptr, '#', ':', Loaded);
if Loaded then
-- Case of nnn#.xxx#
Load (File, Buf, Ptr, '.', Loaded);
if Loaded then
Load_Extended_Digits (File, Buf, Ptr);
Load (File, Buf, Ptr, '#', ':');
-- Case of nnn#xxx.[xxx]# or nnn#xxx#
else
Load_Extended_Digits (File, Buf, Ptr);
Load (File, Buf, Ptr, '.', Loaded);
if Loaded then
Load_Extended_Digits (File, Buf, Ptr);
end if;
-- As usual, it seems strange to allow mixed base characters,
-- but that is what ACVC tests expect, see CE3804M, case (3).
Load (File, Buf, Ptr, '#', ':');
end if;
-- Case of nnn.[nnn] or nnn
else
-- Prevent the potential processing of '.' in cases where the
-- initial digits have a trailing underscore.
if Buf (Ptr) = '_' then
return;
end if;
Load (File, Buf, Ptr, '.', Loaded);
if Loaded then
Load_Digits (File, Buf, Ptr);
end if;
end if;
end if;
-- Deal with exponent
Load (File, Buf, Ptr, 'E', 'e', Loaded);
if Loaded then
Load (File, Buf, Ptr, '+', '-');
Load_Digits (File, Buf, Ptr);
end if;
end Load_Real;
---------
-- Put --
---------
procedure Put
(File : File_Type;
Item : Long_Long_Float;
Fore : Field;
Aft : Field;
Exp : Field)
is
Buf : String (1 .. Max_Real_Image_Length);
Ptr : Natural := 0;
begin
Set_Image_Real (Item, Buf, Ptr, Fore, Aft, Exp);
Put_Item (File, Buf (1 .. Ptr));
end Put;
----------
-- Puts --
----------
procedure Puts
(To : out String;
Item : Long_Long_Float;
Aft : Field;
Exp : Field)
is
Buf : String (1 .. Max_Real_Image_Length);
Ptr : Natural := 0;
begin
Set_Image_Real (Item, Buf, Ptr, Fore => 1, Aft => Aft, Exp => Exp);
if Ptr > To'Length then
raise Layout_Error;
else
for J in 1 .. Ptr loop
To (To'Last - Ptr + J) := Buf (J);
end loop;
for J in To'First .. To'Last - Ptr loop
To (J) := ' ';
end loop;
end if;
end Puts;
end Ada.Text_IO.Float_Aux;
|
with Gtk.Window; use Gtk.Window;
with Gtk.Box; use Gtk.Box;
with Gtk.Menu; use Gtk.Menu;
with Gtk.Menu_Bar; use Gtk.Menu_Bar;
with Gtk.Menu_Item; use Gtk.Menu_Item;
with Gtk.Table; use Gtk.Table;
with Gtk.Button; use Gtk.Button;
with Gtk.Status_Bar; use Gtk.Status_Bar;
package Life_Pkg is
type Life_Record is new Gtk_Window_Record with record
Vbox1 : Gtk_Vbox;
Menubar1 : Gtk_Menu_Bar;
Life1 : Gtk_Menu_Item;
Life1_Menu : Gtk_Menu;
Exit1 : Gtk_Menu_Item;
end record;
type Life_Access is access all Life_Record'Class;
procedure Gtk_New (Life_Value : out Life_Access);
procedure Initialize (Life_Value : out Life_Record'Class);
Life_Value : Life_Access;
end;
|
------------------------------------------------------------------------------
-- --
-- Copyright (C) 2015, 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 stm32f429i_discovery_lcd.h --
-- @author MCD Application Team --
-- @version V1.1.0 --
-- @date 19-June-2014 --
-- @brief This file contains all the functions prototypes for the --
-- stm32f429i_discovery_lcd.c driver. --
-- --
-- COPYRIGHT(c) 2014 STMicroelectronics --
------------------------------------------------------------------------------
with System;
with STM32.Device; use STM32.Device;
with HAL.Framebuffer;
package STM32.LTDC is
type LCD_Layer is (Layer1, Layer2);
-- These bits defines the color format
type Pixel_Format is
(Pixel_Fmt_ARGB8888,
Pixel_Fmt_RGB888,
Pixel_Fmt_RGB565,
Pixel_Fmt_ARGB1555,
Pixel_Fmt_ARGB4444,
Pixel_Fmt_L8, -- 8bit luminance
Pixel_Fmt_AL44, -- 4-bit Alpha, 4-bit Luniunance
Pixel_Fmt_AL88) -- 8-bit Alpha, 8-bit Luniunance
with Size => 3;
function Bytes_Per_Pixel (Fmt : Pixel_Format) return Natural
with Inline;
subtype Frame_Buffer_Access is System.Address;
type Blending_Factor is
(BF_Constant_Alpha,
BF_Pixel_Alpha_X_Constant_Alpha);
procedure Initialize (Width : Positive;
Height : Positive;
H_Sync : Natural;
H_Back_Porch : Natural;
H_Front_Porch : Natural;
V_Sync : Natural;
V_Back_Porch : Natural;
V_Front_Porch : Natural;
PLLSAI_N : UInt9;
PLLSAI_R : UInt3;
DivR : Natural);
function Initialized return Boolean;
procedure Start;
procedure Stop;
procedure Set_Background (R, G, B : UInt8);
procedure Layer_Init
(Layer : LCD_Layer;
Config : Pixel_Format;
Buffer : System.Address;
X, Y : Natural;
W, H : Positive;
Constant_Alpha : UInt8 := 255;
BF : Blending_Factor := BF_Pixel_Alpha_X_Constant_Alpha);
procedure Set_Layer_State
(Layer : LCD_Layer;
Enabled : Boolean);
procedure Set_Frame_Buffer
(Layer : LCD_Layer; Addr : Frame_Buffer_Access);
function Get_Frame_Buffer
(Layer : LCD_Layer)
return Frame_Buffer_Access;
procedure Reload_Config (Immediate : Boolean := False);
function To_LTDC_Mode (HAL_Mode : HAL.Framebuffer.FB_Color_Mode)
return STM32.LTDC.Pixel_Format;
-- Convert HAL.Framebuffer color mode to LTDC color mode
private
function Bytes_Per_Pixel (Fmt : Pixel_Format) return Natural
is (case Fmt is
when Pixel_Fmt_ARGB8888 => 4,
when Pixel_Fmt_RGB888 => 3,
when Pixel_Fmt_RGB565 | Pixel_Fmt_ARGB1555 | Pixel_Fmt_ARGB4444 => 2,
when Pixel_Fmt_L8 | Pixel_Fmt_AL44 => 1,
when Pixel_Fmt_AL88 => 2);
end STM32.LTDC;
|
package body openGL.Conversions
is
function to_Vector_4 (From : in rgba_Color) return Vector_4
is
begin
return (Real (to_Primary (From.Primary.Red)),
Real (to_Primary (From.Primary.Green)),
Real (to_Primary (From.Primary.Blue)),
Real (to_Primary (From.Alpha)));
end to_Vector_4;
function to_Vector_4 (From : in lucid_Color) return Vector_4
is
begin
return (Real (From.Primary.Red),
Real (From.Primary.Green),
Real (From.Primary.Blue),
Real (From.Opacity));
end to_Vector_4;
function to_Vector_3 (From : in rgb_Color) return Vector_3
is
begin
return (Real (to_Primary (From.Red)),
Real (to_Primary (From.Green)),
Real (to_Primary (From.Blue)));
end to_Vector_3;
function to_Vector_3 (From : in Color) return Vector_3
is
begin
return (Real (From.Red),
Real (From.Green),
Real (From.Blue));
end to_Vector_3;
end openGL.Conversions;
|
with
AdaM.a_Type,
Ada.Containers.Vectors,
Ada.Streams;
package AdaM.Declaration.of_object
is
type Item is new Declaration.item with private;
-- View
--
type View is access all Item'Class;
procedure View_write (Stream : not null access Ada.Streams.Root_Stream_Type'Class;
Self : in View);
procedure View_read (Stream : not null access Ada.Streams.Root_Stream_Type'Class;
Self : out View);
for View'write use View_write;
for View'read use View_read;
-- Vector
--
package Vectors is new ada.Containers.Vectors (Positive, View);
subtype Vector is Vectors.Vector;
-- Forge
--
function new_Declaration (Name : in String) return Declaration.of_object.view;
procedure free (Self : in out Declaration.of_object.view);
overriding
procedure destruct (Self : in out Declaration.of_object.item);
-- Attributes
--
overriding
function Id (Self : access Item) return AdaM.Id;
procedure is_Aliased (Self : in out Item; Now : in Boolean := True);
function is_Aliased (Self : in Item) return Boolean;
procedure is_Constant (Self : in out Item; Now : in Boolean := True);
function is_Constant (Self : in Item) return Boolean;
procedure Type_is (Self : in out Item; Now : in AdaM.a_Type.view);
function my_Type (Self : in Item) return AdaM.a_Type.view;
function my_Type (Self : access Item) return access AdaM.a_Type.view;
procedure Initialiser_is (Self : in out Item; Now : in String);
function Initialiser (Self : in Item) return String;
private
type Item is new Declaration.item with
record
is_Aliased : Boolean := False;
is_Constant : Boolean := False;
my_Type : aliased a_Type.view;
Initialiser : Text;
end record;
end AdaM.Declaration.of_object;
|
-- Copyright (c) 2013, Nordic Semiconductor ASA
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the following conditions are met:
--
-- * Redistributions of source code must retain the above copyright notice, this
-- list of conditions and the following disclaimer.
--
-- * Redistributions in binary form must reproduce the above copyright notice,
-- this list of conditions and the following disclaimer in the documentation
-- and/or other materials provided with the distribution.
--
-- * Neither the name of Nordic Semiconductor ASA nor the names of its
-- contributors may be used to endorse or promote products derived from
-- this software without specific prior written permission.
--
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
-- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
-- SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
-- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-- OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
--
-- This spec has been automatically generated from nrf51.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with HAL;
with System;
package NRF51_SVD.QDEC is
pragma Preelaborate;
---------------
-- Registers --
---------------
-- Shortcut between REPORTRDY event and READCLRACC task.
type SHORTS_REPORTRDY_READCLRACC_Field is
(
-- Shortcut disabled.
Disabled,
-- Shortcut enabled.
Enabled)
with Size => 1;
for SHORTS_REPORTRDY_READCLRACC_Field use
(Disabled => 0,
Enabled => 1);
-- Shortcut between SAMPLERDY event and STOP task.
type SHORTS_SAMPLERDY_STOP_Field is
(
-- Shortcut disabled.
Disabled,
-- Shortcut enabled.
Enabled)
with Size => 1;
for SHORTS_SAMPLERDY_STOP_Field use
(Disabled => 0,
Enabled => 1);
-- Shortcuts for the QDEC.
type SHORTS_Register is record
-- Shortcut between REPORTRDY event and READCLRACC task.
REPORTRDY_READCLRACC : SHORTS_REPORTRDY_READCLRACC_Field :=
NRF51_SVD.QDEC.Disabled;
-- Shortcut between SAMPLERDY event and STOP task.
SAMPLERDY_STOP : SHORTS_SAMPLERDY_STOP_Field :=
NRF51_SVD.QDEC.Disabled;
-- unspecified
Reserved_2_31 : HAL.UInt30 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SHORTS_Register use record
REPORTRDY_READCLRACC at 0 range 0 .. 0;
SAMPLERDY_STOP at 0 range 1 .. 1;
Reserved_2_31 at 0 range 2 .. 31;
end record;
-- Enable interrupt on SAMPLERDY event.
type INTENSET_SAMPLERDY_Field is
(
-- Interrupt disabled.
Disabled,
-- Interrupt enabled.
Enabled)
with Size => 1;
for INTENSET_SAMPLERDY_Field use
(Disabled => 0,
Enabled => 1);
-- Enable interrupt on SAMPLERDY event.
type INTENSET_SAMPLERDY_Field_1 is
(
-- Reset value for the field
Intenset_Samplerdy_Field_Reset,
-- Enable interrupt on write.
Set)
with Size => 1;
for INTENSET_SAMPLERDY_Field_1 use
(Intenset_Samplerdy_Field_Reset => 0,
Set => 1);
-- Enable interrupt on REPORTRDY event.
type INTENSET_REPORTRDY_Field is
(
-- Interrupt disabled.
Disabled,
-- Interrupt enabled.
Enabled)
with Size => 1;
for INTENSET_REPORTRDY_Field use
(Disabled => 0,
Enabled => 1);
-- Enable interrupt on REPORTRDY event.
type INTENSET_REPORTRDY_Field_1 is
(
-- Reset value for the field
Intenset_Reportrdy_Field_Reset,
-- Enable interrupt on write.
Set)
with Size => 1;
for INTENSET_REPORTRDY_Field_1 use
(Intenset_Reportrdy_Field_Reset => 0,
Set => 1);
-- Enable interrupt on ACCOF event.
type INTENSET_ACCOF_Field is
(
-- Interrupt disabled.
Disabled,
-- Interrupt enabled.
Enabled)
with Size => 1;
for INTENSET_ACCOF_Field use
(Disabled => 0,
Enabled => 1);
-- Enable interrupt on ACCOF event.
type INTENSET_ACCOF_Field_1 is
(
-- Reset value for the field
Intenset_Accof_Field_Reset,
-- Enable interrupt on write.
Set)
with Size => 1;
for INTENSET_ACCOF_Field_1 use
(Intenset_Accof_Field_Reset => 0,
Set => 1);
-- Interrupt enable set register.
type INTENSET_Register is record
-- Enable interrupt on SAMPLERDY event.
SAMPLERDY : INTENSET_SAMPLERDY_Field_1 :=
Intenset_Samplerdy_Field_Reset;
-- Enable interrupt on REPORTRDY event.
REPORTRDY : INTENSET_REPORTRDY_Field_1 :=
Intenset_Reportrdy_Field_Reset;
-- Enable interrupt on ACCOF event.
ACCOF : INTENSET_ACCOF_Field_1 := Intenset_Accof_Field_Reset;
-- unspecified
Reserved_3_31 : HAL.UInt29 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for INTENSET_Register use record
SAMPLERDY at 0 range 0 .. 0;
REPORTRDY at 0 range 1 .. 1;
ACCOF at 0 range 2 .. 2;
Reserved_3_31 at 0 range 3 .. 31;
end record;
-- Disable interrupt on SAMPLERDY event.
type INTENCLR_SAMPLERDY_Field is
(
-- Interrupt disabled.
Disabled,
-- Interrupt enabled.
Enabled)
with Size => 1;
for INTENCLR_SAMPLERDY_Field use
(Disabled => 0,
Enabled => 1);
-- Disable interrupt on SAMPLERDY event.
type INTENCLR_SAMPLERDY_Field_1 is
(
-- Reset value for the field
Intenclr_Samplerdy_Field_Reset,
-- Disable interrupt on write.
Clear)
with Size => 1;
for INTENCLR_SAMPLERDY_Field_1 use
(Intenclr_Samplerdy_Field_Reset => 0,
Clear => 1);
-- Disable interrupt on REPORTRDY event.
type INTENCLR_REPORTRDY_Field is
(
-- Interrupt disabled.
Disabled,
-- Interrupt enabled.
Enabled)
with Size => 1;
for INTENCLR_REPORTRDY_Field use
(Disabled => 0,
Enabled => 1);
-- Disable interrupt on REPORTRDY event.
type INTENCLR_REPORTRDY_Field_1 is
(
-- Reset value for the field
Intenclr_Reportrdy_Field_Reset,
-- Disable interrupt on write.
Clear)
with Size => 1;
for INTENCLR_REPORTRDY_Field_1 use
(Intenclr_Reportrdy_Field_Reset => 0,
Clear => 1);
-- Disable interrupt on ACCOF event.
type INTENCLR_ACCOF_Field is
(
-- Interrupt disabled.
Disabled,
-- Interrupt enabled.
Enabled)
with Size => 1;
for INTENCLR_ACCOF_Field use
(Disabled => 0,
Enabled => 1);
-- Disable interrupt on ACCOF event.
type INTENCLR_ACCOF_Field_1 is
(
-- Reset value for the field
Intenclr_Accof_Field_Reset,
-- Disable interrupt on write.
Clear)
with Size => 1;
for INTENCLR_ACCOF_Field_1 use
(Intenclr_Accof_Field_Reset => 0,
Clear => 1);
-- Interrupt enable clear register.
type INTENCLR_Register is record
-- Disable interrupt on SAMPLERDY event.
SAMPLERDY : INTENCLR_SAMPLERDY_Field_1 :=
Intenclr_Samplerdy_Field_Reset;
-- Disable interrupt on REPORTRDY event.
REPORTRDY : INTENCLR_REPORTRDY_Field_1 :=
Intenclr_Reportrdy_Field_Reset;
-- Disable interrupt on ACCOF event.
ACCOF : INTENCLR_ACCOF_Field_1 := Intenclr_Accof_Field_Reset;
-- unspecified
Reserved_3_31 : HAL.UInt29 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for INTENCLR_Register use record
SAMPLERDY at 0 range 0 .. 0;
REPORTRDY at 0 range 1 .. 1;
ACCOF at 0 range 2 .. 2;
Reserved_3_31 at 0 range 3 .. 31;
end record;
-- Enable or disable QDEC.
type ENABLE_ENABLE_Field is
(
-- Disabled QDEC.
Disabled,
-- Enable QDEC.
Enabled)
with Size => 1;
for ENABLE_ENABLE_Field use
(Disabled => 0,
Enabled => 1);
-- Enable the QDEC.
type ENABLE_Register is record
-- Enable or disable QDEC.
ENABLE : ENABLE_ENABLE_Field := NRF51_SVD.QDEC.Disabled;
-- unspecified
Reserved_1_31 : HAL.UInt31 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for ENABLE_Register use record
ENABLE at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-- LED output pin polarity.
type LEDPOL_LEDPOL_Field is
(
-- LED output is active low.
Activelow,
-- LED output is active high.
Activehigh)
with Size => 1;
for LEDPOL_LEDPOL_Field use
(Activelow => 0,
Activehigh => 1);
-- LED output pin polarity.
type LEDPOL_Register is record
-- LED output pin polarity.
LEDPOL : LEDPOL_LEDPOL_Field := NRF51_SVD.QDEC.Activelow;
-- unspecified
Reserved_1_31 : HAL.UInt31 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for LEDPOL_Register use record
LEDPOL at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-- Sample period.
type SAMPLEPER_SAMPLEPER_Field is
(
-- 128us sample period.
SAMPLEPER_SAMPLEPER_Field_128US,
-- 256us sample period.
SAMPLEPER_SAMPLEPER_Field_256US,
-- 512us sample period.
SAMPLEPER_SAMPLEPER_Field_512US,
-- 1024us sample period.
SAMPLEPER_SAMPLEPER_Field_1024US,
-- 2048us sample period.
SAMPLEPER_SAMPLEPER_Field_2048US,
-- 4096us sample period.
SAMPLEPER_SAMPLEPER_Field_4096US,
-- 8192us sample period.
SAMPLEPER_SAMPLEPER_Field_8192US,
-- 16384us sample period.
SAMPLEPER_SAMPLEPER_Field_16384US)
with Size => 3;
for SAMPLEPER_SAMPLEPER_Field use
(SAMPLEPER_SAMPLEPER_Field_128US => 0,
SAMPLEPER_SAMPLEPER_Field_256US => 1,
SAMPLEPER_SAMPLEPER_Field_512US => 2,
SAMPLEPER_SAMPLEPER_Field_1024US => 3,
SAMPLEPER_SAMPLEPER_Field_2048US => 4,
SAMPLEPER_SAMPLEPER_Field_4096US => 5,
SAMPLEPER_SAMPLEPER_Field_8192US => 6,
SAMPLEPER_SAMPLEPER_Field_16384US => 7);
-- Sample period.
type SAMPLEPER_Register is record
-- Sample period.
SAMPLEPER : SAMPLEPER_SAMPLEPER_Field :=
NRF51_SVD.QDEC.SAMPLEPER_SAMPLEPER_Field_128US;
-- unspecified
Reserved_3_31 : HAL.UInt29 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SAMPLEPER_Register use record
SAMPLEPER at 0 range 0 .. 2;
Reserved_3_31 at 0 range 3 .. 31;
end record;
-- Number of samples to generate an EVENT_REPORTRDY.
type REPORTPER_REPORTPER_Field is
(
-- 10 samples per report.
REPORTPER_REPORTPER_Field_10Smpl,
-- 40 samples per report.
REPORTPER_REPORTPER_Field_40Smpl,
-- 80 samples per report.
REPORTPER_REPORTPER_Field_80Smpl,
-- 120 samples per report.
REPORTPER_REPORTPER_Field_120Smpl,
-- 160 samples per report.
REPORTPER_REPORTPER_Field_160Smpl,
-- 200 samples per report.
REPORTPER_REPORTPER_Field_200Smpl,
-- 240 samples per report.
REPORTPER_REPORTPER_Field_240Smpl,
-- 280 samples per report.
REPORTPER_REPORTPER_Field_280Smpl)
with Size => 3;
for REPORTPER_REPORTPER_Field use
(REPORTPER_REPORTPER_Field_10Smpl => 0,
REPORTPER_REPORTPER_Field_40Smpl => 1,
REPORTPER_REPORTPER_Field_80Smpl => 2,
REPORTPER_REPORTPER_Field_120Smpl => 3,
REPORTPER_REPORTPER_Field_160Smpl => 4,
REPORTPER_REPORTPER_Field_200Smpl => 5,
REPORTPER_REPORTPER_Field_240Smpl => 6,
REPORTPER_REPORTPER_Field_280Smpl => 7);
-- Number of samples to generate an EVENT_REPORTRDY.
type REPORTPER_Register is record
-- Number of samples to generate an EVENT_REPORTRDY.
REPORTPER : REPORTPER_REPORTPER_Field :=
NRF51_SVD.QDEC.REPORTPER_REPORTPER_Field_10Smpl;
-- unspecified
Reserved_3_31 : HAL.UInt29 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for REPORTPER_Register use record
REPORTPER at 0 range 0 .. 2;
Reserved_3_31 at 0 range 3 .. 31;
end record;
-- Enable debounce input filters.
type DBFEN_DBFEN_Field is
(
-- Debounce input filters disabled.
Disabled,
-- Debounce input filters enabled.
Enabled)
with Size => 1;
for DBFEN_DBFEN_Field use
(Disabled => 0,
Enabled => 1);
-- Enable debouncer input filters.
type DBFEN_Register is record
-- Enable debounce input filters.
DBFEN : DBFEN_DBFEN_Field := NRF51_SVD.QDEC.Disabled;
-- unspecified
Reserved_1_31 : HAL.UInt31 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for DBFEN_Register use record
DBFEN at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
subtype LEDPRE_LEDPRE_Field is HAL.UInt9;
-- Time LED is switched ON before the sample.
type LEDPRE_Register is record
-- Period in us the LED in switched on prior to sampling.
LEDPRE : LEDPRE_LEDPRE_Field := 16#10#;
-- unspecified
Reserved_9_31 : HAL.UInt23 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for LEDPRE_Register use record
LEDPRE at 0 range 0 .. 8;
Reserved_9_31 at 0 range 9 .. 31;
end record;
subtype ACCDBL_ACCDBL_Field is HAL.UInt4;
-- Accumulated double (error) transitions register.
type ACCDBL_Register is record
-- Read-only. Accumulated double (error) transitions.
ACCDBL : ACCDBL_ACCDBL_Field;
-- unspecified
Reserved_4_31 : HAL.UInt28;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for ACCDBL_Register use record
ACCDBL at 0 range 0 .. 3;
Reserved_4_31 at 0 range 4 .. 31;
end record;
subtype ACCDBLREAD_ACCDBLREAD_Field is HAL.UInt4;
-- Snapshot of ACCDBL register. Value generated by the TASKS_READCLEACC
-- task.
type ACCDBLREAD_Register is record
-- Read-only. Snapshot of accumulated double (error) transitions.
ACCDBLREAD : ACCDBLREAD_ACCDBLREAD_Field;
-- unspecified
Reserved_4_31 : HAL.UInt28;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for ACCDBLREAD_Register use record
ACCDBLREAD at 0 range 0 .. 3;
Reserved_4_31 at 0 range 4 .. 31;
end record;
-- Peripheral power control.
type POWER_POWER_Field is
(
-- Module power disabled.
Disabled,
-- Module power enabled.
Enabled)
with Size => 1;
for POWER_POWER_Field use
(Disabled => 0,
Enabled => 1);
-- Peripheral power control.
type POWER_Register is record
-- Peripheral power control.
POWER : POWER_POWER_Field := NRF51_SVD.QDEC.Disabled;
-- unspecified
Reserved_1_31 : HAL.UInt31 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for POWER_Register use record
POWER at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- Rotary decoder.
type QDEC_Peripheral is record
-- Start the quadrature decoder.
TASKS_START : aliased HAL.UInt32;
-- Stop the quadrature decoder.
TASKS_STOP : aliased HAL.UInt32;
-- Transfers the content from ACC registers to ACCREAD registers, and
-- clears the ACC registers.
TASKS_READCLRACC : aliased HAL.UInt32;
-- A new sample is written to the sample register.
EVENTS_SAMPLERDY : aliased HAL.UInt32;
-- REPORTPER number of samples accumulated in ACC register, and ACC
-- register different than zero.
EVENTS_REPORTRDY : aliased HAL.UInt32;
-- ACC or ACCDBL register overflow.
EVENTS_ACCOF : aliased HAL.UInt32;
-- Shortcuts for the QDEC.
SHORTS : aliased SHORTS_Register;
-- Interrupt enable set register.
INTENSET : aliased INTENSET_Register;
-- Interrupt enable clear register.
INTENCLR : aliased INTENCLR_Register;
-- Enable the QDEC.
ENABLE : aliased ENABLE_Register;
-- LED output pin polarity.
LEDPOL : aliased LEDPOL_Register;
-- Sample period.
SAMPLEPER : aliased SAMPLEPER_Register;
-- Motion sample value.
SAMPLE : aliased HAL.UInt32;
-- Number of samples to generate an EVENT_REPORTRDY.
REPORTPER : aliased REPORTPER_Register;
-- Accumulated valid transitions register.
ACC : aliased HAL.UInt32;
-- Snapshot of ACC register. Value generated by the TASKS_READCLEACC
-- task.
ACCREAD : aliased HAL.UInt32;
-- Pin select for LED output.
PSELLED : aliased HAL.UInt32;
-- Pin select for phase A input.
PSELA : aliased HAL.UInt32;
-- Pin select for phase B input.
PSELB : aliased HAL.UInt32;
-- Enable debouncer input filters.
DBFEN : aliased DBFEN_Register;
-- Time LED is switched ON before the sample.
LEDPRE : aliased LEDPRE_Register;
-- Accumulated double (error) transitions register.
ACCDBL : aliased ACCDBL_Register;
-- Snapshot of ACCDBL register. Value generated by the TASKS_READCLEACC
-- task.
ACCDBLREAD : aliased ACCDBLREAD_Register;
-- Peripheral power control.
POWER : aliased POWER_Register;
end record
with Volatile;
for QDEC_Peripheral use record
TASKS_START at 16#0# range 0 .. 31;
TASKS_STOP at 16#4# range 0 .. 31;
TASKS_READCLRACC at 16#8# range 0 .. 31;
EVENTS_SAMPLERDY at 16#100# range 0 .. 31;
EVENTS_REPORTRDY at 16#104# range 0 .. 31;
EVENTS_ACCOF at 16#108# range 0 .. 31;
SHORTS at 16#200# range 0 .. 31;
INTENSET at 16#304# range 0 .. 31;
INTENCLR at 16#308# range 0 .. 31;
ENABLE at 16#500# range 0 .. 31;
LEDPOL at 16#504# range 0 .. 31;
SAMPLEPER at 16#508# range 0 .. 31;
SAMPLE at 16#50C# range 0 .. 31;
REPORTPER at 16#510# range 0 .. 31;
ACC at 16#514# range 0 .. 31;
ACCREAD at 16#518# range 0 .. 31;
PSELLED at 16#51C# range 0 .. 31;
PSELA at 16#520# range 0 .. 31;
PSELB at 16#524# range 0 .. 31;
DBFEN at 16#528# range 0 .. 31;
LEDPRE at 16#540# range 0 .. 31;
ACCDBL at 16#544# range 0 .. 31;
ACCDBLREAD at 16#548# range 0 .. 31;
POWER at 16#FFC# range 0 .. 31;
end record;
-- Rotary decoder.
QDEC_Periph : aliased QDEC_Peripheral
with Import, Address => System'To_Address (16#40012000#);
end NRF51_SVD.QDEC;
|
with Ada.Real_Time; use Ada.Real_Time;
package body Solar_System.Graphics is
procedure Draw_Body(Object : Body_Type; Canvas : Canvas_ID) is
begin
if Object.Visible then
Draw_Sphere(Canvas => Canvas,
Position => (Object.Pos.X, Object.Pos.Y, 0.0),
Radius => Object.Radius,
Color => Object.Color);
if Object.With_Tail then
for I in T_Tail'Range loop
Draw_Sphere(Canvas => Canvas,
Position => (Object.Tail(I).X, Object.Tail(I).Y, 0.0),
Radius => Object.Radius,
Color => Object.Color);
end loop;
end if;
end if;
end Draw_Body;
protected body Graphic_Context is
procedure Set_Window(W : Window_ID) is
begin
Window := W;
Canvas := Get_Canvas(W);
Is_Set := True;
end Set_Window;
entry Get_Window(W : out Window_ID; C : out Canvas_ID) when Is_Set is
begin
W := Window;
C := Canvas;
end Get_Window;
end Graphic_Context;
task body T_Display is
-- declare a variable Now of type Time to record current time
Now : Time;
-- declare a constant Period of 40 milliseconds of type Time_Span defining the loop period
Period : constant Time_Span := Milliseconds (30);
Canvas : Canvas_ID;
Window : Window_ID;
begin
Graphic_Context.Get_Window(Window, Canvas);
loop
Now := Clock;
for B of Bodies loop
Draw_Body(Object => B.Get_Data,
Canvas => Canvas);
end loop;
Swap_Buffers(Window);
delay until Now + Period;
end loop;
end T_Display;
end Solar_System.Graphics;
|
------------------------------------------------------------------------------
-- Copyright (c) 2015, Natacha Porté --
-- --
-- Permission to use, copy, modify, and distribute this software for any --
-- purpose with or without fee is hereby granted, provided that the above --
-- copyright notice and this permission notice appear in all copies. --
-- --
-- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES --
-- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF --
-- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR --
-- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES --
-- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN --
-- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF --
-- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --
------------------------------------------------------------------------------
------------------------------------------------------------------------------
-- Natools.Web.Fallback_Render is a render procedure that implements --
-- generic commands, meant to be available from any context. --
-- When the command is not recognized and Context is provided, the --
-- following error message is logged: --
-- Unknown render command "<command>" in <context> --
------------------------------------------------------------------------------
with Natools.S_Expressions.Lockable;
with Natools.Web.Containers;
with Natools.Web.Sites;
procedure Natools.Web.Fallback_Render
(Exchange : in out Natools.Web.Sites.Exchange;
Name : in Natools.S_Expressions.Atom;
Arguments : in out Natools.S_Expressions.Lockable.Descriptor'Class;
Context : in String := "";
Re_Enter : access procedure
(Exchange : in out Natools.Web.Sites.Exchange;
Expression : in out Natools.S_Expressions.Lockable.Descriptor'Class)
:= null;
Elements : in Natools.Web.Containers.Expression_Maps.Constant_Map
:= Natools.Web.Containers.Expression_Maps.Empty_Constant_Map;
Severity : in Severities.Code := Severities.Error);
|
package Protected_Body_Declaration is
protected type T is
function func return Integer;
end T;
end Protected_Body_Declaration;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S Y S T E M . P O O L _ L O C A L --
-- --
-- S p e c --
-- --
-- $Revision: 2 $ --
-- --
-- Copyright (c) 1992,1993,1994 NYU, All Rights Reserved --
-- --
-- The GNAT library is free software; you can redistribute it and/or modify --
-- it under terms of the GNU Library General Public License as published by --
-- the Free Software Foundation; either version 2, or (at your option) any --
-- later version. The GNAT 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 --
-- Library General Public License for more details. You should have --
-- received a copy of the GNU Library General Public License along with --
-- the GNAT library; see the file COPYING.LIB. If not, write to the Free --
-- Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
-- --
------------------------------------------------------------------------------
with System.Storage_Pools;
with System.Storage_Elements;
with System.Pool_Global;
package System.Pool_Local is
pragma Elaborate_Body;
-- Needed to ensure that library routines can execute allocators
----------------------------
-- Unbounded_Reclaim_Pool --
----------------------------
-- Allocation strategy:
-- Call to malloc/free for each Allocate/Deallocate
-- no user specifiable size
-- Space of allocated objects is reclaimed at pool finalization
-- Manages a list of allocated objects
-- Default pool in the compiler for access types locally declared
type Unbounded_Reclaim_Pool is new
System.Pool_Global.Unbounded_No_Reclaim_Pool with
record
First : System.Address := Null_Address;
end record;
-- function Storage_Size is inherited
procedure Allocate
(Pool : in out Unbounded_Reclaim_Pool;
Address : out System.Address;
Storage_Size : System.Storage_Elements.Storage_Count;
Alignment : System.Storage_Elements.Storage_Count);
procedure Deallocate
(Pool : in out Unbounded_Reclaim_Pool;
Address : System.Address;
Storage_Size : System.Storage_Elements.Storage_Count;
Alignment : System.Storage_Elements.Storage_Count);
procedure Finalize (Pool : in out Unbounded_Reclaim_Pool);
end System.Pool_Local;
|
-- SPDX-FileCopyrightText: 2020-2021 Max Reznik <reznikmm@gmail.com>
--
-- SPDX-License-Identifier: MIT
-------------------------------------------------------------
with Program.Element_Vectors;
with Program.Elements.Constraints;
with Program.Elements.Defining_Names;
with Program.Elements.Discrete_Ranges;
with Program.Elements.Discriminant_Associations;
with Program.Elements.Identifiers;
with Program.Elements.Subtype_Indications;
with Program.Complete_Contexts;
with Program.Node_Symbols;
with Program.Nodes.Proxy_Calls;
with Program.Resolvers.Name_In_Region;
with Program.Safe_Element_Visitors;
with Program.Symbols;
package body Program.Type_Resolvers is
type Visitor
(Env : not null Program.Visibility.Context_Access;
Setter : not null
Program.Cross_Reference_Updaters.Cross_Reference_Updater_Access;
Sets : not null Program.Interpretations.Context_Access)
is new Program.Safe_Element_Visitors.Safe_Element_Visitor
with record
Has_View : Boolean := False;
View : Program.Visibility.View;
end record;
overriding procedure Identifier
(Self : in out Visitor;
Element : not null Program.Elements.Identifiers.Identifier_Access);
overriding procedure Subtype_Indication
(Self : in out Visitor;
Element : not null Program.Elements.Subtype_Indications
.Subtype_Indication_Access);
----------------
-- Identifier --
----------------
overriding procedure Identifier
(Self : in out Visitor;
Element : not null Program.Elements.Identifiers.Identifier_Access)
is
use type Program.Visibility.View_Cursor;
Def : Program.Elements.Defining_Names.Defining_Name_Access;
Symbol : constant Program.Symbols.Symbol :=
Program.Node_Symbols.Get_Symbol (Element);
begin
for View in Self.Env.Immediate_Visible (Symbol) loop
Self.View := +View;
Def := Program.Visibility.Name (Self.View);
Self.Setter.Set_Corresponding_Defining_Name (Element.all'Access, Def);
return;
end loop;
end Identifier;
------------------
-- Resolve_Type --
------------------
procedure Resolve_Type
(Element : Program.Elements.Expressions.Expression_Access;
Context : not null Program.Visibility.Context_Access;
Setter : not null Program.Cross_Reference_Updaters
.Cross_Reference_Updater_Access;
Sets : not null Program.Interpretations.Context_Access;
Value : out Program.Visibility.View)
is
V : Visitor (Context, Setter, Sets);
begin
V.Visit (Element);
Value := V.View;
end Resolve_Type;
-----------------------------
-- Resolve_Type_Definition --
-----------------------------
procedure Resolve_Type_Definition
(Element : Program.Elements.Element_Access;
Context : not null Program.Visibility.Context_Access;
Setter : not null
Program.Cross_Reference_Updaters.Cross_Reference_Updater_Access;
Sets : not null Program.Interpretations.Context_Access;
Value : out Program.Visibility.View)
is
V : Visitor (Context, Setter, Sets);
begin
V.Visit (Element);
Value := V.View;
end Resolve_Type_Definition;
------------------------
-- Subtype_Indication --
------------------------
overriding procedure Subtype_Indication
(Self : in out Visitor;
Element : not null Program.Elements.Subtype_Indications
.Subtype_Indication_Access)
is
Constr : constant Program.Elements.Constraints.Constraint_Access :=
Element.Constraint;
begin
Self.Visit (Element.Subtype_Mark);
if not Constr.Assigned then
return;
end if;
if Self.View.Kind in Program.Visibility.Array_Type_View then
if Constr.Is_Discriminant_Constraint
and then Constr.all in Program.Nodes.Proxy_Calls.Proxy_Call'Class
then
-- Fix parser assumption for `F(X)` to make it index constraint
Program.Nodes.Proxy_Calls.Proxy_Call'Class (Constr.all)
.Turn_To_Index_Constraint;
end if;
-- ARM:3.6.1(4): each discrete_range shall resolve to be of the type
-- of the corresponding index.
declare
List : constant Program.Visibility.View_Array :=
Program.Visibility.Indexes (Self.View);
Args : constant Program.Elements.Discrete_Ranges
.Discrete_Range_Vector_Access :=
Constr.To_Index_Constraint.Ranges;
begin
pragma Assert (List'Length = Args.Length);
for J in Args.Each_Element loop
Program.Complete_Contexts.Resolve_To_Expected_Type
(Sets => Self.Sets,
Setter => Self.Setter,
Expect => Program.Visibility.First_Subtype (List (J.Index)),
Element => J.Element);
end loop;
end;
elsif Self.View.Kind in Program.Visibility.Record_Type_View then
pragma Assert (Constr.Is_Discriminant_Constraint);
for J in
Constr.To_Discriminant_Constraint.Discriminants.Each_Element
loop
declare
Compon : Program.Visibility.View;
Assoc : constant Program.Elements.Discriminant_Associations
.Discriminant_Association_Access :=
J.Element.To_Discriminant_Association;
Choices : constant Program.Elements.Identifiers
.Identifier_Vector_Access := Assoc.Selector_Names;
begin
pragma Assert (Choices.Length > 0);
for K in Choices.Each_Element loop
Program.Resolvers.Name_In_Region.Resolve_Name
(Region => Self.View,
Name => K.Element.To_Expression,
Setter => Self.Setter);
Compon := Self.Sets.Env.Get_Name_View (K.Element);
Program.Complete_Contexts.Resolve_To_Expected_Type
(Assoc.Discriminant_Value.To_Element,
Self.Sets,
Self.Setter,
Expect => Program.Visibility.Subtype_Mark (Compon));
end loop;
end;
end loop;
end if;
end Subtype_Indication;
end Program.Type_Resolvers;
|
-- This spec has been automatically generated from nrf53.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with HAL;
with System;
package NRF53_SVD.GPIO_P0 is
pragma Preelaborate;
---------------
-- Registers --
---------------
-- If pin satisfied sense criteria
type DETECTMODE_Register is record
-- LDETECT if 1
DETECTMODE : Boolean := False;
-- unspecified
Reserved_1_31 : HAL.UInt31 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for DETECTMODE_Register use record
DETECTMODE at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-- If pin satisfied sense criteria
type DETECTMODE_SEC_Register is record
-- LDETECT if 1
DETECTMODE : Boolean := False;
-- unspecified
Reserved_1_31 : HAL.UInt31 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for DETECTMODE_SEC_Register use record
DETECTMODE at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
subtype PIN_CFG_0_PULL_Field is HAL.UInt2;
subtype PIN_CFG_0_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_0_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_0_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_0_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_0_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_0_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_0_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_0_MCUSEL_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 PIN_CFG_0_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_1_PULL_Field is HAL.UInt2;
subtype PIN_CFG_1_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_1_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_1_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_1_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_1_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_1_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_1_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_1_MCUSEL_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 PIN_CFG_1_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_2_PULL_Field is HAL.UInt2;
subtype PIN_CFG_2_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_2_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_2_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_2_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_2_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_2_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_2_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_2_MCUSEL_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 PIN_CFG_2_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_3_PULL_Field is HAL.UInt2;
subtype PIN_CFG_3_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_3_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_3_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_3_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_3_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_3_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_3_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_3_MCUSEL_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 PIN_CFG_3_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_4_PULL_Field is HAL.UInt2;
subtype PIN_CFG_4_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_4_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_4_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_4_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_4_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_4_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_4_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_4_MCUSEL_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 PIN_CFG_4_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_5_PULL_Field is HAL.UInt2;
subtype PIN_CFG_5_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_5_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_5_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_5_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_5_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_5_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_5_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_5_MCUSEL_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 PIN_CFG_5_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_6_PULL_Field is HAL.UInt2;
subtype PIN_CFG_6_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_6_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_6_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_6_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_6_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_6_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_6_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_6_MCUSEL_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 PIN_CFG_6_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_7_PULL_Field is HAL.UInt2;
subtype PIN_CFG_7_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_7_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_7_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_7_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_7_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_7_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_7_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_7_MCUSEL_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 PIN_CFG_7_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_8_PULL_Field is HAL.UInt2;
subtype PIN_CFG_8_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_8_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_8_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_8_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_8_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_8_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_8_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_8_MCUSEL_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 PIN_CFG_8_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_9_PULL_Field is HAL.UInt2;
subtype PIN_CFG_9_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_9_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_9_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_9_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_9_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_9_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_9_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_9_MCUSEL_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 PIN_CFG_9_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_10_PULL_Field is HAL.UInt2;
subtype PIN_CFG_10_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_10_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_10_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_10_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_10_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_10_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_10_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_10_MCUSEL_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 PIN_CFG_10_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_11_PULL_Field is HAL.UInt2;
subtype PIN_CFG_11_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_11_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_11_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_11_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_11_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_11_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_11_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_11_MCUSEL_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 PIN_CFG_11_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_12_PULL_Field is HAL.UInt2;
subtype PIN_CFG_12_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_12_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_12_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_12_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_12_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_12_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_12_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_12_MCUSEL_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 PIN_CFG_12_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_13_PULL_Field is HAL.UInt2;
subtype PIN_CFG_13_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_13_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_13_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_13_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_13_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_13_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_13_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_13_MCUSEL_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 PIN_CFG_13_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_14_PULL_Field is HAL.UInt2;
subtype PIN_CFG_14_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_14_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_14_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_14_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_14_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_14_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_14_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_14_MCUSEL_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 PIN_CFG_14_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_15_PULL_Field is HAL.UInt2;
subtype PIN_CFG_15_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_15_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_15_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_15_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_15_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_15_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_15_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_15_MCUSEL_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 PIN_CFG_15_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_16_PULL_Field is HAL.UInt2;
subtype PIN_CFG_16_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_16_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_16_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_16_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_16_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_16_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_16_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_16_MCUSEL_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 PIN_CFG_16_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_17_PULL_Field is HAL.UInt2;
subtype PIN_CFG_17_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_17_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_17_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_17_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_17_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_17_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_17_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_17_MCUSEL_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 PIN_CFG_17_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_18_PULL_Field is HAL.UInt2;
subtype PIN_CFG_18_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_18_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_18_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_18_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_18_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_18_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_18_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_18_MCUSEL_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 PIN_CFG_18_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_19_PULL_Field is HAL.UInt2;
subtype PIN_CFG_19_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_19_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_19_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_19_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_19_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_19_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_19_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_19_MCUSEL_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 PIN_CFG_19_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_20_PULL_Field is HAL.UInt2;
subtype PIN_CFG_20_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_20_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_20_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_20_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_20_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_20_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_20_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_20_MCUSEL_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 PIN_CFG_20_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_21_PULL_Field is HAL.UInt2;
subtype PIN_CFG_21_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_21_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_21_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_21_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_21_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_21_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_21_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_21_MCUSEL_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 PIN_CFG_21_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_22_PULL_Field is HAL.UInt2;
subtype PIN_CFG_22_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_22_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_22_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_22_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_22_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_22_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_22_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_22_MCUSEL_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 PIN_CFG_22_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_23_PULL_Field is HAL.UInt2;
subtype PIN_CFG_23_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_23_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_23_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_23_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_23_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_23_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_23_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_23_MCUSEL_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 PIN_CFG_23_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_24_PULL_Field is HAL.UInt2;
subtype PIN_CFG_24_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_24_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_24_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_24_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_24_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_24_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_24_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_24_MCUSEL_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 PIN_CFG_24_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_25_PULL_Field is HAL.UInt2;
subtype PIN_CFG_25_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_25_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_25_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_25_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_25_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_25_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_25_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_25_MCUSEL_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 PIN_CFG_25_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_26_PULL_Field is HAL.UInt2;
subtype PIN_CFG_26_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_26_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_26_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_26_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_26_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_26_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_26_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_26_MCUSEL_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 PIN_CFG_26_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_27_PULL_Field is HAL.UInt2;
subtype PIN_CFG_27_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_27_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_27_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_27_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_27_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_27_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_27_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_27_MCUSEL_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 PIN_CFG_27_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_28_PULL_Field is HAL.UInt2;
subtype PIN_CFG_28_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_28_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_28_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_28_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_28_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_28_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_28_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_28_MCUSEL_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 PIN_CFG_28_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_29_PULL_Field is HAL.UInt2;
subtype PIN_CFG_29_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_29_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_29_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_29_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_29_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_29_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_29_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_29_MCUSEL_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 PIN_CFG_29_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_30_PULL_Field is HAL.UInt2;
subtype PIN_CFG_30_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_30_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_30_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_30_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_30_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_30_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_30_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_30_MCUSEL_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 PIN_CFG_30_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
subtype PIN_CFG_31_PULL_Field is HAL.UInt2;
subtype PIN_CFG_31_DRIVE_Field is HAL.UInt4;
subtype PIN_CFG_31_SENSE_Field is HAL.UInt2;
subtype PIN_CFG_31_MCUSEL_Field is HAL.UInt3;
-- Pin configuration
type PIN_CFG_31_Register is record
-- In/out configuration
STANCE : Boolean := False;
-- Input configuration
INPUT : Boolean := False;
-- Pull configuration
PULL : PIN_CFG_31_PULL_Field := 16#0#;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Drive configuration
DRIVE : PIN_CFG_31_DRIVE_Field := 16#0#;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- Pin sensing mech
SENSE : PIN_CFG_31_SENSE_Field := 16#0#;
-- unspecified
Reserved_18_27 : HAL.UInt10 := 16#0#;
-- Which MCU subsystem controls the pin
MCUSEL : PIN_CFG_31_MCUSEL_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 PIN_CFG_31_Register use record
STANCE at 0 range 0 .. 0;
INPUT at 0 range 1 .. 1;
PULL at 0 range 2 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
DRIVE at 0 range 8 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
SENSE at 0 range 16 .. 17;
Reserved_18_27 at 0 range 18 .. 27;
MCUSEL at 0 range 28 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- General purpose input and output
type GPIO_P0_Peripheral is record
-- Write GPIO port
OUT_k : aliased HAL.UInt32;
-- Set individual bits in GPIO port
OUTSET : aliased HAL.UInt32;
-- Clear individual bits in GPIO port
OUTCLR : aliased HAL.UInt32;
-- Read GPIO port
IN_k : aliased HAL.UInt32;
-- Direction of GPIO port
DIR : aliased HAL.UInt32;
-- direction set
DIRSET : aliased HAL.UInt32;
-- direction clr
DIRCLR : aliased HAL.UInt32;
-- If pin satisfied sense criteria
LATCH : aliased HAL.UInt32;
-- If pin satisfied sense criteria
DETECTMODE : aliased DETECTMODE_Register;
-- If pin satisfied sense criteria
DETECTMODE_SEC : aliased DETECTMODE_SEC_Register;
-- Pin configuration
PIN_CFG_0 : aliased PIN_CFG_0_Register;
-- Pin configuration
PIN_CFG_1 : aliased PIN_CFG_1_Register;
-- Pin configuration
PIN_CFG_2 : aliased PIN_CFG_2_Register;
-- Pin configuration
PIN_CFG_3 : aliased PIN_CFG_3_Register;
-- Pin configuration
PIN_CFG_4 : aliased PIN_CFG_4_Register;
-- Pin configuration
PIN_CFG_5 : aliased PIN_CFG_5_Register;
-- Pin configuration
PIN_CFG_6 : aliased PIN_CFG_6_Register;
-- Pin configuration
PIN_CFG_7 : aliased PIN_CFG_7_Register;
-- Pin configuration
PIN_CFG_8 : aliased PIN_CFG_8_Register;
-- Pin configuration
PIN_CFG_9 : aliased PIN_CFG_9_Register;
-- Pin configuration
PIN_CFG_10 : aliased PIN_CFG_10_Register;
-- Pin configuration
PIN_CFG_11 : aliased PIN_CFG_11_Register;
-- Pin configuration
PIN_CFG_12 : aliased PIN_CFG_12_Register;
-- Pin configuration
PIN_CFG_13 : aliased PIN_CFG_13_Register;
-- Pin configuration
PIN_CFG_14 : aliased PIN_CFG_14_Register;
-- Pin configuration
PIN_CFG_15 : aliased PIN_CFG_15_Register;
-- Pin configuration
PIN_CFG_16 : aliased PIN_CFG_16_Register;
-- Pin configuration
PIN_CFG_17 : aliased PIN_CFG_17_Register;
-- Pin configuration
PIN_CFG_18 : aliased PIN_CFG_18_Register;
-- Pin configuration
PIN_CFG_19 : aliased PIN_CFG_19_Register;
-- Pin configuration
PIN_CFG_20 : aliased PIN_CFG_20_Register;
-- Pin configuration
PIN_CFG_21 : aliased PIN_CFG_21_Register;
-- Pin configuration
PIN_CFG_22 : aliased PIN_CFG_22_Register;
-- Pin configuration
PIN_CFG_23 : aliased PIN_CFG_23_Register;
-- Pin configuration
PIN_CFG_24 : aliased PIN_CFG_24_Register;
-- Pin configuration
PIN_CFG_25 : aliased PIN_CFG_25_Register;
-- Pin configuration
PIN_CFG_26 : aliased PIN_CFG_26_Register;
-- Pin configuration
PIN_CFG_27 : aliased PIN_CFG_27_Register;
-- Pin configuration
PIN_CFG_28 : aliased PIN_CFG_28_Register;
-- Pin configuration
PIN_CFG_29 : aliased PIN_CFG_29_Register;
-- Pin configuration
PIN_CFG_30 : aliased PIN_CFG_30_Register;
-- Pin configuration
PIN_CFG_31 : aliased PIN_CFG_31_Register;
end record
with Volatile;
for GPIO_P0_Peripheral use record
OUT_k at 16#4# range 0 .. 31;
OUTSET at 16#8# range 0 .. 31;
OUTCLR at 16#C# range 0 .. 31;
IN_k at 16#10# range 0 .. 31;
DIR at 16#14# range 0 .. 31;
DIRSET at 16#18# range 0 .. 31;
DIRCLR at 16#1C# range 0 .. 31;
LATCH at 16#20# range 0 .. 31;
DETECTMODE at 16#24# range 0 .. 31;
DETECTMODE_SEC at 16#28# range 0 .. 31;
PIN_CFG_0 at 16#200# range 0 .. 31;
PIN_CFG_1 at 16#204# range 0 .. 31;
PIN_CFG_2 at 16#208# range 0 .. 31;
PIN_CFG_3 at 16#20C# range 0 .. 31;
PIN_CFG_4 at 16#210# range 0 .. 31;
PIN_CFG_5 at 16#214# range 0 .. 31;
PIN_CFG_6 at 16#218# range 0 .. 31;
PIN_CFG_7 at 16#21C# range 0 .. 31;
PIN_CFG_8 at 16#220# range 0 .. 31;
PIN_CFG_9 at 16#224# range 0 .. 31;
PIN_CFG_10 at 16#228# range 0 .. 31;
PIN_CFG_11 at 16#22C# range 0 .. 31;
PIN_CFG_12 at 16#230# range 0 .. 31;
PIN_CFG_13 at 16#234# range 0 .. 31;
PIN_CFG_14 at 16#238# range 0 .. 31;
PIN_CFG_15 at 16#23C# range 0 .. 31;
PIN_CFG_16 at 16#240# range 0 .. 31;
PIN_CFG_17 at 16#244# range 0 .. 31;
PIN_CFG_18 at 16#248# range 0 .. 31;
PIN_CFG_19 at 16#24C# range 0 .. 31;
PIN_CFG_20 at 16#250# range 0 .. 31;
PIN_CFG_21 at 16#254# range 0 .. 31;
PIN_CFG_22 at 16#258# range 0 .. 31;
PIN_CFG_23 at 16#25C# range 0 .. 31;
PIN_CFG_24 at 16#260# range 0 .. 31;
PIN_CFG_25 at 16#264# range 0 .. 31;
PIN_CFG_26 at 16#268# range 0 .. 31;
PIN_CFG_27 at 16#26C# range 0 .. 31;
PIN_CFG_28 at 16#270# range 0 .. 31;
PIN_CFG_29 at 16#274# range 0 .. 31;
PIN_CFG_30 at 16#278# range 0 .. 31;
PIN_CFG_31 at 16#27C# range 0 .. 31;
end record;
-- General purpose input and output
GPIO_P0_Periph : aliased GPIO_P0_Peripheral
with Import, Address => System'To_Address (16#50842500#);
-- General purpose input and output
GPIO_P1_Periph : aliased GPIO_P0_Peripheral
with Import, Address => System'To_Address (16#50842800#);
end NRF53_SVD.GPIO_P0;
|
--------------------------------------------------------------------------------------------------------------------
-- 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.Platform
--
-- Determine which platform we are running on.
--------------------------------------------------------------------------------------------------------------------
package SDL.Platform is
type Platforms is (Windows, Mac_OS_X, Linux, BSD, iOS, Android);
function Get return Platforms with
Inline => True;
end SDL.Platform;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S Y S T E M . P O O L _ G L O B A L --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2011, 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. --
-- --
------------------------------------------------------------------------------
-- Storage pool corresponding to default global storage pool used for types
-- for which no storage pool is specified.
with System;
with System.Storage_Pools;
with System.Storage_Elements;
package System.Pool_Global is
pragma Elaborate_Body;
-- Needed to ensure that library routines can execute allocators
-- Allocation strategy:
-- Call to malloc/free for each Allocate/Deallocate
-- No user specifiable size
-- No automatic reclaim
-- Minimal overhead
-- Pool simulating the allocation/deallocation strategy used by the
-- compiler for access types globally declared.
type Unbounded_No_Reclaim_Pool is new
System.Storage_Pools.Root_Storage_Pool with null record;
overriding function Storage_Size
(Pool : Unbounded_No_Reclaim_Pool)
return System.Storage_Elements.Storage_Count;
overriding procedure Allocate
(Pool : in out Unbounded_No_Reclaim_Pool;
Address : out System.Address;
Storage_Size : System.Storage_Elements.Storage_Count;
Alignment : System.Storage_Elements.Storage_Count);
overriding procedure Deallocate
(Pool : in out Unbounded_No_Reclaim_Pool;
Address : System.Address;
Storage_Size : System.Storage_Elements.Storage_Count;
Alignment : System.Storage_Elements.Storage_Count);
-- Pool object used by the compiler when implicit Storage Pool objects are
-- explicitly referred to. For instance when writing something like:
-- for T'Storage_Pool use Q'Storage_Pool;
-- and Q'Storage_Pool hasn't been defined explicitly.
Global_Pool_Object : Unbounded_No_Reclaim_Pool;
end System.Pool_Global;
|
-----------------------------------------------------------------------
-- servlet-servlets-rest -- REST servlet
-- Copyright (C) 2016, 2017, 2018, 2019, 2020 Stephane Carrez
-- Written by Stephane Carrez (Stephane.Carrez@gmail.com)
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Servlet.Streams.JSON;
package body Servlet.Core.Rest is
-- ------------------------------
-- Called by the servlet container to indicate to a servlet that the servlet
-- is being placed into service.
-- ------------------------------
procedure Initialize (Server : in out Rest_Servlet;
Context : in Servlet_Registry'Class) is
pragma Unreferenced (Context);
begin
null;
end Initialize;
-- ------------------------------
-- Receives standard HTTP requests from the public service method and dispatches
-- them to the Do_XXX methods defined in this class. This method is an HTTP-specific
-- version of the Servlet.service(Request, Response) method. There's no need
-- to override this method.
-- ------------------------------
overriding
procedure Service (Server : in Rest_Servlet;
Request : in out Requests.Request'Class;
Response : in out Responses.Response'Class) is
Method : constant String := Request.Get_Method;
begin
if Method = "GET" then
Rest_Servlet'Class (Server).Dispatch (GET, Request, Response);
elsif Method = "POST" then
Rest_Servlet'Class (Server).Dispatch (POST, Request, Response);
elsif Method = "PUT" then
Rest_Servlet'Class (Server).Dispatch (PUT, Request, Response);
elsif Method = "DELETE" then
Rest_Servlet'Class (Server).Dispatch (DELETE, Request, Response);
elsif Method = "HEAD" then
Rest_Servlet'Class (Server).Dispatch (HEAD, Request, Response);
elsif Method = "OPTIONS" then
Rest_Servlet'Class (Server).Dispatch (OPTIONS, Request, Response);
elsif Method = "TRACE" then
Rest_Servlet'Class (Server).Dispatch (TRACE, Request, Response);
elsif Method = "PATCH" then
Rest_Servlet'Class (Server).Dispatch (PATCH, Request, Response);
elsif Method = "CONNECT" then
Rest_Servlet'Class (Server).Dispatch (CONNECT, Request, Response);
else
Response.Send_Error (Responses.SC_NOT_IMPLEMENTED);
end if;
end Service;
procedure Dispatch (Server : in Rest_Servlet;
Method : in Method_Type;
Request : in out Requests.Request'Class;
Response : in out Responses.Response'Class) is
pragma Unreferenced (Server);
begin
if not Request.Has_Route then
Response.Set_Status (Responses.SC_NOT_FOUND);
Response.Set_Committed;
return;
end if;
declare
Route : constant Routes.Route_Type_Accessor := Request.Get_Route;
begin
if not (Route in Routes.Servlets.Rest.API_Route_Type'Class) then
Response.Set_Status (Responses.SC_NOT_FOUND);
Response.Set_Committed;
return;
end if;
declare
Api : constant access Routes.Servlets.Rest.API_Route_Type'Class
:= Routes.Servlets.Rest.API_Route_Type'Class (Route.Element.all)'Access;
Desc : constant Descriptor_Access := Api.Descriptors (Method);
Output : constant Streams.Print_Stream := Response.Get_Output_Stream;
Stream : Streams.JSON.Print_Stream;
begin
if Desc = null then
Response.Set_Status (Responses.SC_NOT_FOUND);
Response.Set_Committed;
return;
end if;
-- if not App.Has_Permission (Desc.Permission) then
-- Response.Set_Status (Responses.SC_FORBIDDEN);
-- return;
-- end if;
Streams.JSON.Initialize (Stream, Output);
Response.Set_Content_Type ("application/json; charset=utf-8");
Api.Descriptors (Method).Dispatch (Request, Response, Stream);
end;
end;
end Dispatch;
function Create_Route (Registry : in Core.Servlet_Registry;
Name : in String)
return Routes.Servlets.Rest.API_Route_Type_Access is
Pos : constant Servlet_Maps.Cursor := Registry.Servlets.Find (Name);
Result : Routes.Servlets.Rest.API_Route_Type_Access;
begin
if not Servlet_Maps.Has_Element (Pos) then
-- Log.Error ("No servlet {0}", Name);
raise Servlet_Error with "No servlet " & Name;
end if;
Result := new Routes.Servlets.Rest.API_Route_Type;
Result.Servlet := Servlet_Maps.Element (Pos);
return Result;
end Create_Route;
-- Create a route for the REST API.
function Create_Route (Servlet : in Core.Servlet_Access)
return Routes.Servlets.Rest.API_Route_Type_Access is
Result : Routes.Servlets.Rest.API_Route_Type_Access;
begin
Result := new Routes.Servlets.Rest.API_Route_Type;
Result.Servlet := Servlet;
return Result;
end Create_Route;
end Servlet.Core.Rest;
|
with ada.text_io;
with ada.command_line;
with ada.strings.fixed;
with gnat.os_lib;
with ada.containers.vectors;
with numbers; use numbers;
with strings; use strings;
procedure d0xfa is
use type ada.text_io.count;
use type byte;
use type word;
PROGRAMM_NAME : constant string := "d0xfa";
file : ada.text_io.file_type;
procedure close_app is
begin
if ada.text_io.is_open(file) then
ada.text_io.close(file);
end if;
end close_app;
procedure error (s : string) is
begin
close_app;
print(s);
gnat.os_lib.os_exit(1);
end error;
subtype label_t is string(1..6);
null_label : constant label_t := (others => ' ');
label_counter : natural := 1;
interrupt_lines_counter : natural := 0;
must_be_next_addr : word := 0;
type commands is (
f_rrc, f_swpb, f_rra, f_sxt, f_push, f_call, f_reti,
f_jne, f_jeq, f_jnc, f_jc, f_jn, f_jge, f_jl, f_jmp,
f_mov, f_add, f_addc, f_subc, f_sub, f_cmp, f_dadd,
f_bit, f_bic, f_bis, f_xor, f_and,
f_jnz, f_jz, f_jlo, f_jhs);
subtype single_commands is commands range f_rrc..f_reti;
subtype jump_commands is commands range f_jne..f_jmp;
subtype two_commands is commands range f_mov..f_and;
type command_types is (t_jump, t_single, t_two, t_interrupt);
type addressing_modes is (
m_constant,
m_immediate, m_indexed, m_symbolic, m_absolute,
m_indirect_register, m_indirect_autoincrement, m_register);
type address_t is record
mode : addressing_modes := m_constant;
address : word := 0;
register : word := 0;
ext_word : boolean := false;
label : label_t := null_label;
end record;
type command_t is record
command_raw : word;
command : commands;
command_type : command_types;
address : word;
first_op, second_op : word := 0;
source, destination : address_t;
label : label_t := null_label;
num_operands : byte := 0;
bw : boolean := true;
end record;
tmp_command : command_t;
package programm_t is new ada.containers.vectors(
element_type => command_t, index_type => natural);
programm : programm_t.vector;
programm_cursor : programm_t.cursor;
procedure parse_source (cmd : in out command_t) is
as : word := sr(cmd.command_raw, 4) and 3;
src : word;
begin
if cmd.command_type = t_single then
src := cmd.command_raw and 15;
else
src := sr(cmd.command_raw, 8) and 15;
end if;
cmd.source.register := src;
cmd.source.address := src;
if as = 0 then
if src = 3 then
cmd.source.mode := m_constant;
cmd.source.address := 0;
else
cmd.source.mode := m_register;
end if;
elsif as = 1 then
if src = 0 then
cmd.source.mode := m_symbolic;
elsif src = 2 then
cmd.source.mode := m_absolute;
elsif src = 3 then
cmd.source.mode := m_constant;
cmd.source.address := 1;
else
cmd.source.mode := m_indexed;
end if;
elsif as = 2 then
if src = 2 then
cmd.source.mode := m_constant;
cmd.source.address := 4;
elsif src = 3 then
cmd.source.mode := m_constant;
cmd.source.address := 2;
else
cmd.source.mode := m_indirect_register;
end if;
elsif as = 3 then
if src = 0 then
cmd.source.mode := m_immediate;
elsif src = 2 then
cmd.source.mode := m_constant;
cmd.source.address := 8;
elsif src = 3 then
cmd.source.mode := m_constant;
cmd.source.address := 16#ffff#;
else
cmd.source.mode := m_indirect_autoincrement;
end if;
end if;
if cmd.source.mode in m_immediate..m_absolute then
inc(cmd.num_operands);
cmd.source.ext_word := true;
end if;
end parse_source;
procedure parse_destination (cmd : in out command_t) is
ad : word := sr(cmd.command_raw, 7) and 1;
dst : word := cmd.command_raw and 15;
begin
cmd.destination.register := dst;
if ad = 0 then
cmd.destination.mode := m_register;
cmd.destination.address := dst;
else
inc(cmd.num_operands);
cmd.destination.ext_word := true;
if dst = 0 then
cmd.destination.mode := m_symbolic;
elsif dst = 2 then
cmd.destination.mode := m_absolute;
else
cmd.destination.mode := m_indexed;
end if;
end if;
end parse_destination;
procedure parse_single (cmd : in out command_t) is
begin
cmd.command := commands'val(
(sr(cmd.command_raw, 7) and 7) +
word(single_commands'pos(single_commands'first)));
parse_source(cmd);
end parse_single;
procedure parse_two (cmd : in out command_t) is
begin
cmd.command := commands'val(
(sr(cmd.command_raw, 12) +
word(two_commands'pos(two_commands'first)) - 4));
parse_source(cmd);
parse_destination(cmd);
end parse_two;
procedure parse_jump (cmd : in out command_t) is
begin
cmd.command := commands'val(
((sr(cmd.command_raw, 10) and 7) +
word(jump_commands'pos(jump_commands'first))));
end parse_jump;
procedure put_operand (op : address_t; op_m : addressing_modes) is
begin
if op_m = m_register then
put('r' & ltrim(op.address'img));
elsif op_m = m_indexed then
put(ltrim(word_to_integer(op.address)'img) & "(r" & ltrim(op.register'img) & ')');
elsif op_m = m_constant then
put('#' & ltrim(word_to_integer(op.address)'img));
elsif op_m = m_symbolic then
if op.label /= null_label then
put(rtrim(op.label));
else
put("$");
if word_to_integer(op.address) >= 0 then
put("+");
end if;
put(ltrim(word_to_integer(op.address)'img));
end if;
elsif op_m = m_absolute then
if op.label /= null_label then
put('&' & rtrim(op.label));
else
put("&" & hex(op.address));
end if;
elsif op_m = m_indirect_register then
put("@r" & ltrim(op.register'img));
elsif op_m = m_indirect_autoincrement then
put("@r" & ltrim(op.register'img) & "+");
elsif op_m = m_immediate then
put("#" & ltrim(word_to_integer(op.address)'img));
end if;
end put_operand;
function new_command (w, addr : word) return command_t is
cmd : command_t;
begin
cmd.command_raw := w;
cmd.address := addr;
if addr >= 16#ffc0# then
cmd.command_type := t_interrupt;
return cmd;
end if;
cmd.bw := (w and 64) /= 0;
case sr(cmd.command_raw, 13) is
when 0 => cmd.command_type := t_single; parse_single(cmd);
when 1 => cmd.command_type := t_jump; cmd.bw := false; parse_jump(cmd);
when others => cmd.command_type := t_two; parse_two(cmd);
end case;
return cmd;
end new_command;
procedure operand_to_command (cmd : in out command_t; w : word; tl : byte) is
begin
if cmd.num_operands = 2 then
if tl = 2 then
cmd.source.address := w;
else
cmd.destination.address := w;
end if;
elsif cmd.source.ext_word then
cmd.source.address := w;
else
cmd.destination.address := w;
end if;
end operand_to_command;
function get_addr_by_offset (cmd : command_t) return word is
begin
return ((cmd.command_raw and 1023) + 64512 * (
sr(cmd.command_raw, 9) and 1) + 1) * 2 + cmd.address;
end get_addr_by_offset;
procedure create_label (cmd : command_t; addr : in out address_t) is
tmp_addr : word := addr.address;
tmp_cursor : programm_t.cursor;
tmp_command : command_t;
begin
if cmd.command_type = t_jump then
tmp_addr := get_addr_by_offset(cmd);
elsif addr.mode = m_symbolic then
tmp_addr := tmp_addr + 2 + cmd.address;
if addr = cmd.destination and cmd.source.ext_word then
tmp_addr := tmp_addr + 2;
end if;
elsif addr.mode /= m_absolute then
error("programm error");
end if;
tmp_cursor := programm.first;
while (programm_t.has_element(tmp_cursor)) loop
tmp_command := programm_t.element(tmp_cursor);
if tmp_command.address = tmp_addr then
if tmp_command.label = null_label then
tmp_command.label := ada.strings.fixed.head(
'l' & ltrim(label_counter'img), null_label'length);
inc(label_counter);
programm_t.replace_element(programm, tmp_cursor, tmp_command);
end if;
addr.label := tmp_command.label;
exit;
end if;
tmp_cursor := programm_t.next(tmp_cursor);
end loop;
end create_label;
procedure end_command (cmd : in out command_t) is
tmp_addr : address_t;
begin
if cmd.command_type = t_jump then
create_label(cmd, cmd.destination);
else
if cmd.source.mode in m_symbolic|m_absolute then
create_label(cmd, cmd.source);
end if;
if cmd.destination.mode in m_symbolic|m_absolute then
create_label(cmd, cmd.destination);
end if;
end if;
programm.append(cmd);
end end_command;
procedure disasm (cmd : in out command_t) is
tmp_cur : programm_t.cursor;
col : ada.text_io.count := 1;
procedure shift_col (v : ada.text_io.count) is
begin
col := col + v;
ada.text_io.set_col(col);
end shift_col;
procedure set_col (v : ada.text_io.count) is
begin
col := v;
ada.text_io.set_col(col);
end set_col;
procedure put_hex_raw (w : word) is
strword : string(1..4) := image(w, 16);
begin
put(strword(3..4) & ' ' & strword(1..2));
end put_hex_raw;
function repr_bw return string is
begin
if cmd.bw then
return ".b";
end if;
return "";
end repr_bw;
function repr_commands (command : commands) return string is
begin
return lowercase(command'img(3..command'img'length)) & repr_bw;
end repr_commands;
procedure put_alternative (scmd : string) is
begin
put("; " & scmd);
shift_col(9);
end put_alternative;
procedure put_alternative_with_dst (scmd : string) is
begin
put_alternative(scmd);
put_operand(cmd.destination, cmd.destination.mode);
end put_alternative_with_dst;
procedure put_jump_offset (jcmd : command_t) is
begin
if jcmd.destination.label = null_label then
put("$");
if (sr(cmd.command_raw, 9) and 1) = 0 then
put("+");
end if;
put(ltrim(word_to_integer(
((jcmd.command_raw and 1023) + 64512 * (
sr(cmd.command_raw, 9) and 1) + 1) * 2)'img));
else
put(jcmd.destination.label);
end if;
end put_jump_offset;
procedure put_comment (sc : string) is
begin
put("; " & sc);
end put_comment;
procedure put_label (s : string) is
begin
put(ada.strings.fixed.head(
rtrim(s) & ':', null_label'length));
end put_label;
begin
if cmd.source.mode in m_symbolic|m_absolute then
create_label(cmd, cmd.source);
end if;
if cmd.destination.mode in m_symbolic|m_absolute then
create_label(cmd, cmd.destination);
end if;
if cmd.command_type = t_jump then
create_label(cmd, cmd.destination);
end if;
if cmd.label /= null_label then
put_label(cmd.label);
end if;
shift_col(7);
put(repr_commands(cmd.command));
shift_col(7);
if cmd.command_type = t_jump then
put_jump_offset(cmd);
if cmd.command in f_jne..f_jc then
shift_col(24);
put_alternative(repr_commands(
commands'val(commands'pos(cmd.command) + (
commands'pos(f_jnz) - commands'pos(f_jne)))));
put_jump_offset(cmd);
end if;
elsif cmd.command /= f_reti then
put_operand(cmd.source, cmd.source.mode);
end if;
if cmd.command_type = t_two then
put(",");
shift_col(12);
put_operand(cmd.destination, cmd.destination.mode);
shift_col(12);
if cmd.command = f_addc then
if cmd.source.mode = cmd.destination.mode and
cmd.source.address = cmd.destination.address then
put_alternative_with_dst("rlc" & repr_bw);
elsif cmd.source.mode = m_constant and cmd.source.address = 0 then
put_alternative_with_dst("adc" & repr_bw);
end if;
elsif cmd.command = f_add then
if cmd.source.mode = cmd.destination.mode and
(cmd.source.address = cmd.destination.address or (
cmd.source.mode = m_symbolic and cmd.source.address - 2 = cmd.destination.address)) then
put_alternative_with_dst("rla" & repr_bw);
elsif cmd.source.mode = m_constant then
if cmd.source.address = 1 then
put_alternative_with_dst("inc" & repr_bw);
elsif cmd.source.address = 2 then
put_alternative_with_dst("incd" & repr_bw);
end if;
end if;
elsif cmd.command = f_xor and cmd.source.mode = m_constant and cmd.source.address = 16#ffff# then
put_alternative_with_dst("inv" & repr_bw);
elsif cmd.command = f_bic and cmd.destination.mode = m_register and
cmd.destination.register = 2 and cmd.source.mode = m_constant then
if cmd.source.address = 1 then
put_alternative("clrc");
elsif cmd.source.address = 2 then
put_alternative("clrz");
elsif cmd.source.address = 4 then
put_alternative("clrn");
elsif cmd.source.address = 8 then
put_alternative("dint");
end if;
elsif cmd.command = f_bis and cmd.source.mode = m_constant and
cmd.destination.mode = m_register and cmd.destination.register = 2 then
if cmd.source.address = 1 then
put_alternative("setc");
elsif cmd.source.address = 2 then
put_alternative("setz");
elsif cmd.source.address = 4 then
put_alternative("setn");
elsif cmd.source.address = 8 then
put_alternative("eint");
end if;
elsif cmd.command = f_cmp and
cmd.source.mode = m_constant and cmd.source.address = 0 then
put_alternative_with_dst("tst" & repr_bw);
elsif cmd.command = f_dadd and
cmd.source.mode = m_constant and cmd.source.address = 0 then
put_alternative_with_dst("dadc" & repr_bw);
elsif cmd.command = f_subc and
cmd.source.mode = m_constant and cmd.source.address = 0 then
put_alternative_with_dst("sbc" & repr_bw);
elsif cmd.command = f_sub and
cmd.source.mode = m_constant then
if cmd.source.address = 1 then
put_alternative_with_dst("dec" & repr_bw);
elsif cmd.source.address = 2 then
put_alternative_with_dst("decd" & repr_bw);
end if;
elsif cmd.command = f_mov then
if cmd.source.mode = m_indirect_autoincrement and cmd.source.address = 1 then
if cmd.destination.mode = m_register and cmd.destination.address = 0 then
put_alternative("ret");
else
put_alternative_with_dst("pop" & repr_bw);
end if;
elsif cmd.destination.mode = m_register and cmd.destination.address = 0 then
put_alternative("br");
put_operand(cmd.source, cmd.source.mode);
elsif cmd.source.mode = m_constant and cmd.source.address = 0 then
if cmd.destination.mode = m_register and cmd.destination.register = 3 then
put_alternative("nop");
else
put_alternative_with_dst("clr" & repr_bw);
end if;
end if;
end if;
end if;
set_col(59);
if cmd.command_type = t_jump then
put_comment(hex(get_addr_by_offset(cmd)));
else
if cmd.source.mode = m_immediate then
put_comment('#' & hex(cmd.source.address));
elsif cmd.source.mode = m_constant and cmd.source.address = 16#ffff# then
put_comment('#' & hex(cmd.source.address));
elsif cmd.source.mode = m_symbolic then
put_comment(hex(cmd.address + 2 + cmd.source.address));
elsif cmd.source.mode = m_absolute then
put_comment('&' & hex(cmd.source.address));
end if;
if cmd.destination.mode = m_symbolic then
put_comment(hex(cmd.address + word(cmd.num_operands) * 2 + cmd.destination.address));
elsif cmd.destination.mode = m_absolute then
put_comment('&' & hex(cmd.destination.address));
end if;
end if;
set_col(78);
put("; ");
put(image(cmd.address, 16));
shift_col(9);
put_hex_raw(cmd.command_raw);
if cmd.source.ext_word then
put(" ");
put_hex_raw(cmd.source.address);
end if;
if cmd.destination.ext_word then
put(" ");
put_hex_raw(cmd.destination.address);
end if;
ada.text_io.new_line;
end disasm;
i : byte;
cmd : command_t;
l, op_l : byte := 0;
is_ssar : boolean := false;
is_end : boolean := true;
is_first : boolean := true;
checksum : byte;
first_char : character;
b : byte;
wt : word;
addr, next_addr, op_addr : word := 0;
begin
print(";;; 0xfa [http://0xfa.space] ;;;");
print("; d0xfa v0.1.0 - msp430 disassembler (ihex format [https://wikipedia.org/wiki/Intel_HEX])");
print("");
if ada.command_line.argument_count = 0 then
error("no input files");
end if;
ada.text_io.open(file, ada.text_io.in_file, ada.command_line.argument(1));
loop_read: while not ada.text_io.end_of_file(file) loop
if l /= 0 or not is_end then
error("bad format");
end if;
i := 0;
checksum := 0;
is_end := false;
for c of remove_ret_car(ada.text_io.get_line(file)) loop
if not (c in '0'..'9' or c in 'A'..'F' or (i = 0 and c = ':')) then
error("bad format");
end if;
if (i and 1) /= 0 then
first_char := c;
elsif i /= 0 then
b := byte'value("16#" & first_char & c & '#');
checksum := checksum + b;
if i = 2 then
l := b;
elsif i = 4 then
addr := word(b);
elsif i = 6 then
addr := sl(addr, 8) + word(b);
if next_addr > 0 and next_addr - word(op_l) * 2 /= addr then
if op_l /= 0 then
null;
-- error("seq addrs");
end if;
end if;
if op_l = 0 then
next_addr := addr;
op_addr := next_addr;
end if;
elsif i = 8 then
if b = 1 then
if l /= 0 or addr /= 0 then
error("bad end record");
end if;
exit loop_read;
elsif b = 3 then
if l /= 4 or addr /= 0 then
error("bad SSAR len");
end if;
is_ssar := true;
end if;
elsif i > 9 and l > 0 then
if is_first then
wt := word(b);
is_first := false;
else
wt := sl(word(b), 8) or wt;
is_first := true;
end if;
if is_first then
if op_l = 0 then
if is_ssar then
op_l := 1;
else
cmd := new_command(wt, op_addr);
op_l := cmd.num_operands;
next_addr := op_addr + 2 + word(op_l) * 2;
end if;
else
if is_ssar then
ada.text_io.set_col(1);
print("; SSAR: " & hex(sl(wt, 8) + sr(wt, 8)));
else
operand_to_command(cmd, wt, op_l);
end if;
dec(op_l);
end if;
if op_l = 0 then
if not is_ssar then
end_command(cmd);
op_addr := next_addr;
end if;
end if;
end if;
dec(l);
elsif i > 9 and l = 0 then
is_end := true;
if checksum /= 0 then
error("checksum error");
end if;
end if;
end if;
inc(i);
end loop;
end loop loop_read;
print(";label cmd 1st_operand 2nd_operand emulated comments addr raw");
programm_cursor := programm.first;
while (programm_t.has_element(programm_cursor)) loop
tmp_command := programm_t.element(programm_cursor);
if tmp_command.command_type = t_interrupt then
if interrupt_lines_counter = 0 then
print("; interrupt vectors:");
put(';');
interrupt_lines_counter := 1;
end if;
if tmp_command.address >= 16#fff0# and interrupt_lines_counter = 1 then
interrupt_lines_counter := 2;
ada.text_io.new_line;
put(';');
end if;
ada.text_io.set_col((ada.text_io.count(tmp_command.address - 16#ffe0#) mod 16) * 6 + 3);
put(image(tmp_command.address, 16) & ": " & image(tmp_command.command_raw, 16) & " ");
else
if must_be_next_addr /= 0 and must_be_next_addr /= tmp_command.address then
print("; ...");
end if;
disasm(tmp_command);
must_be_next_addr := tmp_command.address + 2 * word(tmp_command.num_operands) + 2;
end if;
programm_cursor := programm_t.next(programm_cursor);
end loop;
close_app;
end d0xfa; |
------------------------------------------------------------------------------
-- --
-- GNAT EXAMPLE --
-- --
-- Copyright (C) 2016, AdaCore --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Interfaces; use Interfaces;
package Video is
procedure Init_Video;
subtype Pixel is Unsigned_32;
Width : constant := 1680;
Height : constant := 1050;
type Frame_Buffer is array (Natural range 0 .. Height - 1,
Natural range 0 .. Width - 1) of Pixel;
type Frame_Buffer_Acc is access Frame_Buffer;
pragma No_Strict_Aliasing (Frame_Buffer_Acc);
Fb : Frame_Buffer_Acc;
end Video;
|
-- This spec has been automatically generated from STM32L4x5.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with HAL;
with System;
package STM32_SVD.LPTIM is
pragma Preelaborate;
---------------
-- Registers --
---------------
-- Interrupt and Status Register
type ISR_Register is record
-- Read-only. Compare match
CMPM : Boolean;
-- Read-only. Autoreload match
ARRM : Boolean;
-- Read-only. External trigger edge event
EXTTRIG : Boolean;
-- Read-only. Compare register update OK
CMPOK : Boolean;
-- Read-only. Autoreload register update OK
ARROK : Boolean;
-- Read-only. Counter direction change down to up
UP : Boolean;
-- Read-only. Counter direction change up to down
DOWN : Boolean;
-- unspecified
Reserved_7_31 : HAL.UInt25;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for ISR_Register use record
CMPM at 0 range 0 .. 0;
ARRM at 0 range 1 .. 1;
EXTTRIG at 0 range 2 .. 2;
CMPOK at 0 range 3 .. 3;
ARROK at 0 range 4 .. 4;
UP at 0 range 5 .. 5;
DOWN at 0 range 6 .. 6;
Reserved_7_31 at 0 range 7 .. 31;
end record;
-- Interrupt Clear Register
type ICR_Register is record
-- Write-only. compare match Clear Flag
CMPMCF : Boolean := False;
-- Write-only. Autoreload match Clear Flag
ARRMCF : Boolean := False;
-- Write-only. External trigger valid edge Clear Flag
EXTTRIGCF : Boolean := False;
-- Write-only. Compare register update OK Clear Flag
CMPOKCF : Boolean := False;
-- Write-only. Autoreload register update OK Clear Flag
ARROKCF : Boolean := False;
-- Write-only. Direction change to UP Clear Flag
UPCF : Boolean := False;
-- Write-only. Direction change to down Clear Flag
DOWNCF : Boolean := False;
-- unspecified
Reserved_7_31 : HAL.UInt25 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for ICR_Register use record
CMPMCF at 0 range 0 .. 0;
ARRMCF at 0 range 1 .. 1;
EXTTRIGCF at 0 range 2 .. 2;
CMPOKCF at 0 range 3 .. 3;
ARROKCF at 0 range 4 .. 4;
UPCF at 0 range 5 .. 5;
DOWNCF at 0 range 6 .. 6;
Reserved_7_31 at 0 range 7 .. 31;
end record;
-- Interrupt Enable Register
type IER_Register is record
-- Compare match Interrupt Enable
CMPMIE : Boolean := False;
-- Autoreload match Interrupt Enable
ARRMIE : Boolean := False;
-- External trigger valid edge Interrupt Enable
EXTTRIGIE : Boolean := False;
-- Compare register update OK Interrupt Enable
CMPOKIE : Boolean := False;
-- Autoreload register update OK Interrupt Enable
ARROKIE : Boolean := False;
-- Direction change to UP Interrupt Enable
UPIE : Boolean := False;
-- Direction change to down Interrupt Enable
DOWNIE : Boolean := False;
-- unspecified
Reserved_7_31 : HAL.UInt25 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for IER_Register use record
CMPMIE at 0 range 0 .. 0;
ARRMIE at 0 range 1 .. 1;
EXTTRIGIE at 0 range 2 .. 2;
CMPOKIE at 0 range 3 .. 3;
ARROKIE at 0 range 4 .. 4;
UPIE at 0 range 5 .. 5;
DOWNIE at 0 range 6 .. 6;
Reserved_7_31 at 0 range 7 .. 31;
end record;
subtype CFGR_CKPOL_Field is HAL.UInt2;
subtype CFGR_CKFLT_Field is HAL.UInt2;
subtype CFGR_TRGFLT_Field is HAL.UInt2;
subtype CFGR_PRESC_Field is HAL.UInt3;
subtype CFGR_TRIGSEL_Field is HAL.UInt3;
subtype CFGR_TRIGEN_Field is HAL.UInt2;
-- Configuration Register
type CFGR_Register is record
-- Clock selector
CKSEL : Boolean := False;
-- Clock Polarity
CKPOL : CFGR_CKPOL_Field := 16#0#;
-- Configurable digital filter for external clock
CKFLT : CFGR_CKFLT_Field := 16#0#;
-- unspecified
Reserved_5_5 : HAL.Bit := 16#0#;
-- Configurable digital filter for trigger
TRGFLT : CFGR_TRGFLT_Field := 16#0#;
-- unspecified
Reserved_8_8 : HAL.Bit := 16#0#;
-- Clock prescaler
PRESC : CFGR_PRESC_Field := 16#0#;
-- unspecified
Reserved_12_12 : HAL.Bit := 16#0#;
-- Trigger selector
TRIGSEL : CFGR_TRIGSEL_Field := 16#0#;
-- unspecified
Reserved_16_16 : HAL.Bit := 16#0#;
-- Trigger enable and polarity
TRIGEN : CFGR_TRIGEN_Field := 16#0#;
-- Timeout enable
TIMOUT : Boolean := False;
-- Waveform shape
WAVE : Boolean := False;
-- Waveform shape polarity
WAVPOL : Boolean := False;
-- Registers update mode
PRELOAD : Boolean := False;
-- counter mode enabled
COUNTMODE : Boolean := False;
-- Encoder mode enable
ENC : Boolean := False;
-- unspecified
Reserved_25_31 : HAL.UInt7 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CFGR_Register use record
CKSEL at 0 range 0 .. 0;
CKPOL at 0 range 1 .. 2;
CKFLT at 0 range 3 .. 4;
Reserved_5_5 at 0 range 5 .. 5;
TRGFLT at 0 range 6 .. 7;
Reserved_8_8 at 0 range 8 .. 8;
PRESC at 0 range 9 .. 11;
Reserved_12_12 at 0 range 12 .. 12;
TRIGSEL at 0 range 13 .. 15;
Reserved_16_16 at 0 range 16 .. 16;
TRIGEN at 0 range 17 .. 18;
TIMOUT at 0 range 19 .. 19;
WAVE at 0 range 20 .. 20;
WAVPOL at 0 range 21 .. 21;
PRELOAD at 0 range 22 .. 22;
COUNTMODE at 0 range 23 .. 23;
ENC at 0 range 24 .. 24;
Reserved_25_31 at 0 range 25 .. 31;
end record;
-- Control Register
type CR_Register is record
-- LPTIM Enable
ENABLE : Boolean := False;
-- LPTIM start in single mode
SNGSTRT : Boolean := False;
-- Timer start in continuous mode
CNTSTRT : Boolean := False;
-- unspecified
Reserved_3_31 : HAL.UInt29 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CR_Register use record
ENABLE at 0 range 0 .. 0;
SNGSTRT at 0 range 1 .. 1;
CNTSTRT at 0 range 2 .. 2;
Reserved_3_31 at 0 range 3 .. 31;
end record;
subtype CMP_CMP_Field is HAL.UInt16;
-- Compare Register
type CMP_Register is record
-- Compare value
CMP : CMP_CMP_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 CMP_Register use record
CMP at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype ARR_ARR_Field is HAL.UInt16;
-- Autoreload Register
type ARR_Register is record
-- Auto reload value
ARR : ARR_ARR_Field := 16#1#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for ARR_Register use record
ARR at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CNT_CNT_Field is HAL.UInt16;
-- Counter Register
type CNT_Register is record
-- Read-only. Counter value
CNT : CNT_CNT_Field;
-- unspecified
Reserved_16_31 : HAL.UInt16;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CNT_Register use record
CNT at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- Low power timer
type LPTIM_Peripheral is record
-- Interrupt and Status Register
ISR : aliased ISR_Register;
-- Interrupt Clear Register
ICR : aliased ICR_Register;
-- Interrupt Enable Register
IER : aliased IER_Register;
-- Configuration Register
CFGR : aliased CFGR_Register;
-- Control Register
CR : aliased CR_Register;
-- Compare Register
CMP : aliased CMP_Register;
-- Autoreload Register
ARR : aliased ARR_Register;
-- Counter Register
CNT : aliased CNT_Register;
end record
with Volatile;
for LPTIM_Peripheral use record
ISR at 16#0# range 0 .. 31;
ICR at 16#4# range 0 .. 31;
IER at 16#8# range 0 .. 31;
CFGR at 16#C# range 0 .. 31;
CR at 16#10# range 0 .. 31;
CMP at 16#14# range 0 .. 31;
ARR at 16#18# range 0 .. 31;
CNT at 16#1C# range 0 .. 31;
end record;
-- Low power timer
LPTIM1_Periph : aliased LPTIM_Peripheral
with Import, Address => System'To_Address (16#40007C00#);
-- Low power timer
LPTIM2_Periph : aliased LPTIM_Peripheral
with Import, Address => System'To_Address (16#40009400#);
end STM32_SVD.LPTIM;
|
-- { dg-do run }
-- { dg-options "-Os" }
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
with Opt41_Pkg; use Opt41_Pkg;
procedure Opt41 is
R : Rec := (Five, To_Unbounded_String ("CONFIG"));
SP : String_Access := new String'(To_String (Rec_Write (R)));
RP : Rec_Ptr := new Rec'(Rec_Read (SP));
begin
if RP.D /= R.D then
raise Program_Error;
end if;
end;
|
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE boost_serialization>
<boost_serialization signature="serialization::archive" version="14">
<syndb class_id="0" tracking_level="0" version="0">
<userIPLatency>-1</userIPLatency>
<userIPName></userIPName>
<cdfg class_id="1" tracking_level="1" version="0" object_id="_0">
<name>power</name>
<ret_bitwidth>64</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>1</id>
<name>x</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo class_id="6" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>x</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs class_id="7" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_2">
<Value>
<Obj>
<type>1</type>
<id>2</id>
<name>y</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>y</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>13</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_3">
<Value>
<Obj>
<type>0</type>
<id>3</id>
<name>y_read</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>y</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>26</item>
<item>27</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_4">
<Value>
<Obj>
<type>0</type>
<id>4</id>
<name>x_read</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>x</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>29</item>
<item>30</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_5">
<Value>
<Obj>
<type>0</type>
<id>5</id>
<name>tmp_cast</name>
<fileName>../source_files/src/dut.cpp</fileName>
<fileDirectory>/mnt/centos_share/Vivado_Projects/hls_scratchpad/hls_cmd_line_testing/hls_gui_proj</fileDirectory>
<lineNumber>16</lineNumber>
<contextFuncName>power</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="11" tracking_level="0" version="0">
<first>/mnt/centos_share/Vivado_Projects/hls_scratchpad/hls_cmd_line_testing/hls_gui_proj</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>../source_files/src/dut.cpp</first>
<second>power</second>
</first>
<second>16</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_6">
<Value>
<Obj>
<type>0</type>
<id>6</id>
<name>tmp_2</name>
<fileName>../source_files/src/dut.cpp</fileName>
<fileDirectory>/mnt/centos_share/Vivado_Projects/hls_scratchpad/hls_cmd_line_testing/hls_gui_proj</fileDirectory>
<lineNumber>16</lineNumber>
<contextFuncName>power</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/centos_share/Vivado_Projects/hls_scratchpad/hls_cmd_line_testing/hls_gui_proj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../source_files/src/dut.cpp</first>
<second>power</second>
</first>
<second>16</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>32</item>
<item>34</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_7">
<Value>
<Obj>
<type>0</type>
<id>7</id>
<name></name>
<fileName>../source_files/src/dut.cpp</fileName>
<fileDirectory>/mnt/centos_share/Vivado_Projects/hls_scratchpad/hls_cmd_line_testing/hls_gui_proj</fileDirectory>
<lineNumber>16</lineNumber>
<contextFuncName>power</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/centos_share/Vivado_Projects/hls_scratchpad/hls_cmd_line_testing/hls_gui_proj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../source_files/src/dut.cpp</first>
<second>power</second>
</first>
<second>16</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>35</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_8">
<Value>
<Obj>
<type>0</type>
<id>9</id>
<name>result_int</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>result_int</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>37</item>
<item>38</item>
<item>39</item>
<item>40</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_9">
<Value>
<Obj>
<type>0</type>
<id>10</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>6</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>41</item>
<item>42</item>
<item>43</item>
<item>44</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>11</id>
<name>exitcond</name>
<fileName>../source_files/src/dut.cpp</fileName>
<fileDirectory>/mnt/centos_share/Vivado_Projects/hls_scratchpad/hls_cmd_line_testing/hls_gui_proj</fileDirectory>
<lineNumber>16</lineNumber>
<contextFuncName>power</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/centos_share/Vivado_Projects/hls_scratchpad/hls_cmd_line_testing/hls_gui_proj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../source_files/src/dut.cpp</first>
<second>power</second>
</first>
<second>16</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>45</item>
<item>46</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>12</id>
<name></name>
<fileName>../source_files/src/dut.cpp</fileName>
<fileDirectory>/mnt/centos_share/Vivado_Projects/hls_scratchpad/hls_cmd_line_testing/hls_gui_proj</fileDirectory>
<lineNumber>16</lineNumber>
<contextFuncName>power</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/centos_share/Vivado_Projects/hls_scratchpad/hls_cmd_line_testing/hls_gui_proj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../source_files/src/dut.cpp</first>
<second>power</second>
</first>
<second>16</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>47</item>
<item>48</item>
<item>49</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>18</id>
<name>result_int_1</name>
<fileName>../source_files/src/dut.cpp</fileName>
<fileDirectory>/mnt/centos_share/Vivado_Projects/hls_scratchpad/hls_cmd_line_testing/hls_gui_proj</fileDirectory>
<lineNumber>18</lineNumber>
<contextFuncName>power</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/centos_share/Vivado_Projects/hls_scratchpad/hls_cmd_line_testing/hls_gui_proj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../source_files/src/dut.cpp</first>
<second>power</second>
</first>
<second>18</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>result_int</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>50</item>
<item>51</item>
</oprand_edges>
<opcode>dmul</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>20</id>
<name>i_1</name>
<fileName>../source_files/src/dut.cpp</fileName>
<fileDirectory>/mnt/centos_share/Vivado_Projects/hls_scratchpad/hls_cmd_line_testing/hls_gui_proj</fileDirectory>
<lineNumber>16</lineNumber>
<contextFuncName>power</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/centos_share/Vivado_Projects/hls_scratchpad/hls_cmd_line_testing/hls_gui_proj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../source_files/src/dut.cpp</first>
<second>power</second>
</first>
<second>16</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>52</item>
<item>53</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name></name>
<fileName>../source_files/src/dut.cpp</fileName>
<fileDirectory>/mnt/centos_share/Vivado_Projects/hls_scratchpad/hls_cmd_line_testing/hls_gui_proj</fileDirectory>
<lineNumber>16</lineNumber>
<contextFuncName>power</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/centos_share/Vivado_Projects/hls_scratchpad/hls_cmd_line_testing/hls_gui_proj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../source_files/src/dut.cpp</first>
<second>power</second>
</first>
<second>16</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>54</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>23</id>
<name></name>
<fileName>../source_files/src/dut.cpp</fileName>
<fileDirectory>/mnt/centos_share/Vivado_Projects/hls_scratchpad/hls_cmd_line_testing/hls_gui_proj</fileDirectory>
<lineNumber>20</lineNumber>
<contextFuncName>power</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/centos_share/Vivado_Projects/hls_scratchpad/hls_cmd_line_testing/hls_gui_proj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../source_files/src/dut.cpp</first>
<second>power</second>
</first>
<second>20</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>55</item>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_16">
<Value>
<Obj>
<type>2</type>
<id>33</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>6</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_17">
<Value>
<Obj>
<type>2</type>
<id>36</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>1</const_type>
<content>1</content>
</item>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_18">
<Obj>
<type>3</type>
<id>8</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>5</count>
<item_version>0</item_version>
<item>3</item>
<item>4</item>
<item>5</item>
<item>6</item>
<item>7</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_19">
<Obj>
<type>3</type>
<id>13</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>9</item>
<item>10</item>
<item>11</item>
<item>12</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_20">
<Obj>
<type>3</type>
<id>22</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>3</count>
<item_version>0</item_version>
<item>18</item>
<item>20</item>
<item>21</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_21">
<Obj>
<type>3</type>
<id>24</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>23</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>29</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_22">
<id>27</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>3</sink_obj>
</item>
<item class_id_reference="20" object_id="_23">
<id>30</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>4</sink_obj>
</item>
<item class_id_reference="20" object_id="_24">
<id>31</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>5</sink_obj>
</item>
<item class_id_reference="20" object_id="_25">
<id>32</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>6</sink_obj>
</item>
<item class_id_reference="20" object_id="_26">
<id>34</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>6</sink_obj>
</item>
<item class_id_reference="20" object_id="_27">
<id>35</id>
<edge_type>2</edge_type>
<source_obj>13</source_obj>
<sink_obj>7</sink_obj>
</item>
<item class_id_reference="20" object_id="_28">
<id>37</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>9</sink_obj>
</item>
<item class_id_reference="20" object_id="_29">
<id>38</id>
<edge_type>2</edge_type>
<source_obj>8</source_obj>
<sink_obj>9</sink_obj>
</item>
<item class_id_reference="20" object_id="_30">
<id>39</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>9</sink_obj>
</item>
<item class_id_reference="20" object_id="_31">
<id>40</id>
<edge_type>2</edge_type>
<source_obj>22</source_obj>
<sink_obj>9</sink_obj>
</item>
<item class_id_reference="20" object_id="_32">
<id>41</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>10</sink_obj>
</item>
<item class_id_reference="20" object_id="_33">
<id>42</id>
<edge_type>2</edge_type>
<source_obj>8</source_obj>
<sink_obj>10</sink_obj>
</item>
<item class_id_reference="20" object_id="_34">
<id>43</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>10</sink_obj>
</item>
<item class_id_reference="20" object_id="_35">
<id>44</id>
<edge_type>2</edge_type>
<source_obj>22</source_obj>
<sink_obj>10</sink_obj>
</item>
<item class_id_reference="20" object_id="_36">
<id>45</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_37">
<id>46</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_38">
<id>47</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_39">
<id>48</id>
<edge_type>2</edge_type>
<source_obj>22</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_40">
<id>49</id>
<edge_type>2</edge_type>
<source_obj>24</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_41">
<id>50</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>18</sink_obj>
</item>
<item class_id_reference="20" object_id="_42">
<id>51</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>18</sink_obj>
</item>
<item class_id_reference="20" object_id="_43">
<id>52</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_44">
<id>53</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_45">
<id>54</id>
<edge_type>2</edge_type>
<source_obj>13</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_46">
<id>55</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>23</sink_obj>
</item>
<item class_id_reference="20" object_id="_47">
<id>85</id>
<edge_type>2</edge_type>
<source_obj>8</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_48">
<id>86</id>
<edge_type>2</edge_type>
<source_obj>13</source_obj>
<sink_obj>24</sink_obj>
</item>
<item class_id_reference="20" object_id="_49">
<id>87</id>
<edge_type>2</edge_type>
<source_obj>13</source_obj>
<sink_obj>22</sink_obj>
</item>
<item class_id_reference="20" object_id="_50">
<id>88</id>
<edge_type>2</edge_type>
<source_obj>22</source_obj>
<sink_obj>13</sink_obj>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_51">
<mId>1</mId>
<mTag>power</mTag>
<mType>0</mType>
<sub_regions>
<count>3</count>
<item_version>0</item_version>
<item>2</item>
<item>3</item>
<item>4</item>
</sub_regions>
<basic_blocks>
<count>0</count>
<item_version>0</item_version>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>188</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_52">
<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>8</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="_53">
<mId>3</mId>
<mTag>power_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>13</item>
<item>22</item>
</basic_blocks>
<mII>6</mII>
<mDepth>6</mDepth>
<mMinTripCount>0</mMinTripCount>
<mMaxTripCount>31</mMaxTripCount>
<mMinLatency>186</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_54">
<mId>4</mId>
<mTag>Return</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>24</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="24" tracking_level="1" version="0" object_id="_55">
<states class_id="25" tracking_level="0" version="0">
<count>8</count>
<item_version>0</item_version>
<item class_id="26" tracking_level="1" version="0" object_id="_56">
<id>1</id>
<operations class_id="27" tracking_level="0" version="0">
<count>5</count>
<item_version>0</item_version>
<item class_id="28" tracking_level="1" version="0" object_id="_57">
<id>3</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_58">
<id>4</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_59">
<id>5</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_60">
<id>6</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_61">
<id>7</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_62">
<id>2</id>
<operations>
<count>6</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_63">
<id>9</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_64">
<id>10</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_65">
<id>11</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_66">
<id>12</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_67">
<id>18</id>
<stage>6</stage>
<latency>6</latency>
</item>
<item class_id_reference="28" object_id="_68">
<id>20</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_69">
<id>3</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_70">
<id>18</id>
<stage>5</stage>
<latency>6</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_71">
<id>4</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_72">
<id>18</id>
<stage>4</stage>
<latency>6</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_73">
<id>5</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_74">
<id>18</id>
<stage>3</stage>
<latency>6</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_75">
<id>6</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_76">
<id>18</id>
<stage>2</stage>
<latency>6</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_77">
<id>7</id>
<operations>
<count>7</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_78">
<id>14</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_79">
<id>15</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_80">
<id>16</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_81">
<id>17</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_82">
<id>18</id>
<stage>1</stage>
<latency>6</latency>
</item>
<item class_id_reference="28" object_id="_83">
<id>19</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_84">
<id>21</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_85">
<id>8</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_86">
<id>23</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="29" tracking_level="0" version="0">
<count>8</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="1" version="0" object_id="_87">
<inState>1</inState>
<outState>2</outState>
<condition class_id="31" tracking_level="0" version="0">
<id>57</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="_88">
<inState>3</inState>
<outState>4</outState>
<condition>
<id>69</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="_89">
<inState>4</inState>
<outState>5</outState>
<condition>
<id>70</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_90">
<inState>5</inState>
<outState>6</outState>
<condition>
<id>71</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_91">
<inState>6</inState>
<outState>7</outState>
<condition>
<id>72</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="_92">
<inState>7</inState>
<outState>2</outState>
<condition>
<id>73</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="_93">
<inState>2</inState>
<outState>8</outState>
<condition>
<id>68</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>11</first>
<second>0</second>
</first>
<second>0</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_94">
<inState>2</inState>
<outState>3</outState>
<condition>
<id>74</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>11</first>
<second>0</second>
</first>
<second>1</second>
</item>
</item>
</sop>
</condition>
</item>
</transitions>
</fsm>
<res class_id="-1"></res>
<node_label_latency class_id="37" tracking_level="0" version="0">
<count>13</count>
<item_version>0</item_version>
<item class_id="38" tracking_level="0" version="0">
<first>3</first>
<second class_id="39" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>4</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>5</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>6</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>7</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>9</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>10</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>11</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>12</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>18</first>
<second>
<first>1</first>
<second>5</second>
</second>
</item>
<item>
<first>20</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>21</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>23</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="40" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="41" tracking_level="0" version="0">
<first>8</first>
<second class_id="42" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>13</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>22</first>
<second>
<first>1</first>
<second>6</second>
</second>
</item>
<item>
<first>24</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="43" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="44" tracking_level="1" version="0" object_id="_95">
<region_name>power_loop</region_name>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>13</item>
<item>22</item>
</basic_blocks>
<nodes>
<count>0</count>
<item_version>0</item_version>
</nodes>
<anchor_node>-1</anchor_node>
<region_type>8</region_type>
<interval>6</interval>
<pipe_depth>6</pipe_depth>
</item>
</regions>
<dp_fu_nodes class_id="45" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="46" tracking_level="0" version="0">
<first>36</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>3</item>
</second>
</item>
<item>
<first>42</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>4</item>
</second>
</item>
<item>
<first>52</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>64</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>71</first>
<second>
<count>6</count>
<item_version>0</item_version>
<item>18</item>
<item>18</item>
<item>18</item>
<item>18</item>
<item>18</item>
<item>18</item>
</second>
</item>
<item>
<first>76</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>5</item>
</second>
</item>
<item>
<first>80</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>6</item>
</second>
</item>
<item>
<first>86</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>91</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="48" tracking_level="0" version="0">
<count>6</count>
<item_version>0</item_version>
<item class_id="49" tracking_level="0" version="0">
<first>exitcond_fu_86</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>i_1_fu_91</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>i_phi_fu_64</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>result_int_phi_fu_52</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>tmp_2_fu_80</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>6</item>
</second>
</item>
<item>
<first>tmp_cast_fu_76</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>5</item>
</second>
</item>
</dp_fu_nodes_expression>
<dp_fu_nodes_module>
<count>1</count>
<item_version>0</item_version>
<item>
<first>grp_fu_71</first>
<second>
<count>6</count>
<item_version>0</item_version>
<item>18</item>
<item>18</item>
<item>18</item>
<item>18</item>
<item>18</item>
<item>18</item>
</second>
</item>
</dp_fu_nodes_module>
<dp_fu_nodes_io>
<count>2</count>
<item_version>0</item_version>
<item>
<first>x_read_read_fu_42</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>4</item>
</second>
</item>
<item>
<first>y_read_read_fu_36</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>3</item>
</second>
</item>
</dp_fu_nodes_io>
<return_ports>
<count>0</count>
<item_version>0</item_version>
</return_ports>
<dp_mem_port_nodes class_id="50" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>6</count>
<item_version>0</item_version>
<item>
<first>48</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>60</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>97</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>4</item>
</second>
</item>
<item>
<first>102</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>6</item>
</second>
</item>
<item>
<first>110</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>115</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>6</count>
<item_version>0</item_version>
<item>
<first>i_1_reg_110</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>i_reg_60</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>result_int_1_reg_115</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>result_int_reg_48</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>tmp_2_reg_102</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>6</item>
</second>
</item>
<item>
<first>x_read_reg_97</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>4</item>
</second>
</item>
</dp_regname_nodes>
<dp_reg_phi>
<count>2</count>
<item_version>0</item_version>
<item>
<first>48</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>60</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
</dp_reg_phi>
<dp_regname_phi>
<count>2</count>
<item_version>0</item_version>
<item>
<first>i_reg_60</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>result_int_reg_48</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
</dp_regname_phi>
<dp_port_io_nodes class_id="51" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="52" tracking_level="0" version="0">
<first>x</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>4</item>
</second>
</item>
</second>
</item>
<item>
<first>y</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>3</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core class_id="53" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
|
-- This file is generated by SWIG. Please do not modify by hand.
--
with Interfaces;
with Interfaces.C;
with Interfaces.C.Pointers;
package xcb.xcb_circulate_window_request_t is
-- Item
--
type Item is record
major_opcode : aliased Interfaces.Unsigned_8;
direction : aliased Interfaces.Unsigned_8;
length : aliased Interfaces.Unsigned_16;
window : aliased xcb.xcb_window_t;
end record;
-- Item_Array
--
type Item_Array is
array
(Interfaces.C
.size_t range <>) of aliased xcb.xcb_circulate_window_request_t
.Item;
-- Pointer
--
package C_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_circulate_window_request_t.Item,
Element_Array => xcb.xcb_circulate_window_request_t.Item_Array,
Default_Terminator => (others => <>));
subtype Pointer is C_Pointers.Pointer;
-- Pointer_Array
--
type Pointer_Array is
array
(Interfaces.C
.size_t range <>) of aliased xcb.xcb_circulate_window_request_t
.Pointer;
-- Pointer_Pointer
--
package C_Pointer_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_circulate_window_request_t.Pointer,
Element_Array => xcb.xcb_circulate_window_request_t.Pointer_Array,
Default_Terminator => null);
subtype Pointer_Pointer is C_Pointer_Pointers.Pointer;
end xcb.xcb_circulate_window_request_t;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- XML Processor --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2010, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with Ada.Unchecked_Deallocation;
package body Matreshka.Internals.XML.Attribute_Tables is
procedure Free is
new Ada.Unchecked_Deallocation (Attribute_Array, Attribute_Array_Access);
procedure New_Attribute
(Self : in out Attribute_Table;
Name : Symbol_Identifier;
The_Type : Attribute_Types;
Attribute : out Attribute_Identifier);
-- Allocates new attribute with specified type.
procedure Clear (Self : in out Attribute_Table);
-- Clear existing data.
------------
-- Append --
------------
procedure Append
(Self : in out Attribute_Table;
Attribute : Attribute_Identifier;
Next : Attribute_Identifier) is
begin
Self.Table (Attribute).Next := Next;
end Append;
-----------
-- Clear --
-----------
procedure Clear (Self : in out Attribute_Table) is
begin
for J in Self.Table'First .. Self.Last loop
Matreshka.Internals.Strings.Dereference (Self.Table (J).Default);
end loop;
end Clear;
-------------
-- Default --
-------------
function Default
(Self : Attribute_Table;
Attribute : Attribute_Identifier)
return not null Matreshka.Internals.Strings.Shared_String_Access is
begin
return Self.Table (Attribute).Default;
end Default;
--------------
-- Finalize --
--------------
procedure Finalize (Self : in out Attribute_Table) is
begin
Clear (Self);
Free (Self.Table);
end Finalize;
-----------------
-- Has_Default --
-----------------
function Has_Default
(Self : Attribute_Table;
Attribute : Attribute_Identifier) return Boolean is
begin
return
not (Self.Table (Attribute).Is_Required
or Self.Table (Attribute).Is_Implied);
end Has_Default;
--------------
-- Is_CDATA --
--------------
function Is_CDATA
(Self : Attribute_Table;
Attribute : Attribute_Identifier) return Boolean is
begin
return Self.Table (Attribute).The_Type = CDATA;
end Is_CDATA;
--------------
-- Is_Fixed --
--------------
function Is_Fixed
(Self : Attribute_Table;
Attribute : Attribute_Identifier) return Boolean is
begin
return Self.Table (Attribute).Is_Fixed;
end Is_Fixed;
-----------
-- Is_ID --
-----------
function Is_ID
(Self : Attribute_Table;
Attribute : Attribute_Identifier) return Boolean is
begin
return Self.Table (Attribute).The_Type = ID;
end Is_ID;
----------------
-- Is_Implied --
----------------
function Is_Implied
(Self : Attribute_Table;
Attribute : Attribute_Identifier) return Boolean is
begin
return Self.Table (Attribute).Is_Implied;
end Is_Implied;
-----------------
-- Is_Required --
-----------------
function Is_Required
(Self : Attribute_Table;
Attribute : Attribute_Identifier) return Boolean is
begin
return Self.Table (Attribute).Is_Required;
end Is_Required;
----------
-- Name --
----------
function Name
(Self : Attribute_Table;
Attribute : Attribute_Identifier) return Symbol_Identifier is
begin
return Self.Table (Attribute).Name;
end Name;
-------------------
-- New_Attribute --
-------------------
procedure New_Attribute
(Self : in out Attribute_Table;
Name : Symbol_Identifier;
The_Type : Attribute_Types;
Attribute : out Attribute_Identifier) is
begin
Self.Last := Self.Last + 1;
if Self.Last > Self.Table'Last then
declare
Old : Attribute_Array_Access := Self.Table;
begin
Self.Table := new Attribute_Array (1 .. Old'Last + 16);
Self.Table (Old'Range) := Old.all;
Free (Old);
end;
end if;
Attribute := Self.Last;
Self.Table (Attribute) :=
(Name => Name,
The_Type => The_Type,
Is_Required => False,
Is_Implied => False,
Is_Fixed => False,
Default => Matreshka.Internals.Strings.Shared_Empty'Access,
Next => No_Attribute);
end New_Attribute;
-------------------------
-- New_CDATA_Attribute --
-------------------------
procedure New_CDATA_Attribute
(Self : in out Attribute_Table;
Name : Symbol_Identifier;
Attribute : out Attribute_Identifier) is
begin
New_Attribute (Self, Name, CDATA, Attribute);
end New_CDATA_Attribute;
----------------------------
-- New_Entities_Attribute --
----------------------------
procedure New_Entities_Attribute
(Self : in out Attribute_Table;
Name : Symbol_Identifier;
Attribute : out Attribute_Identifier) is
begin
New_Attribute (Self, Name, ENTITIES, Attribute);
end New_Entities_Attribute;
--------------------------
-- New_Entity_Attribute --
--------------------------
procedure New_Entity_Attribute
(Self : in out Attribute_Table;
Name : Symbol_Identifier;
Attribute : out Attribute_Identifier) is
begin
New_Attribute (Self, Name, ENTITY, Attribute);
end New_Entity_Attribute;
-------------------------------
-- New_Enumeration_Attribute --
-------------------------------
procedure New_Enumeration_Attribute
(Self : in out Attribute_Table;
Name : Symbol_Identifier;
Attribute : out Attribute_Identifier) is
begin
New_Attribute (Self, Name, ENUMERATION, Attribute);
end New_Enumeration_Attribute;
----------------------
-- New_Id_Attribute --
----------------------
procedure New_Id_Attribute
(Self : in out Attribute_Table;
Name : Symbol_Identifier;
Attribute : out Attribute_Identifier) is
begin
New_Attribute (Self, Name, ID, Attribute);
end New_Id_Attribute;
-------------------------
-- New_IdRef_Attribute --
-------------------------
procedure New_IdRef_Attribute
(Self : in out Attribute_Table;
Name : Symbol_Identifier;
Attribute : out Attribute_Identifier) is
begin
New_Attribute (Self, Name, IDREF, Attribute);
end New_IdRef_Attribute;
--------------------------
-- New_IdRefs_Attribute --
--------------------------
procedure New_IdRefs_Attribute
(Self : in out Attribute_Table;
Name : Symbol_Identifier;
Attribute : out Attribute_Identifier) is
begin
New_Attribute (Self, Name, IDREFS, Attribute);
end New_IdRefs_Attribute;
---------------------------
-- New_NmToken_Attribute --
---------------------------
procedure New_NmToken_Attribute
(Self : in out Attribute_Table;
Name : Symbol_Identifier;
Attribute : out Attribute_Identifier) is
begin
New_Attribute (Self, Name, NMTOKEN, Attribute);
end New_NmToken_Attribute;
----------------------------
-- New_NmTokens_Attribute --
----------------------------
procedure New_NmTokens_Attribute
(Self : in out Attribute_Table;
Name : Symbol_Identifier;
Attribute : out Attribute_Identifier) is
begin
New_Attribute (Self, Name, NMTOKENS, Attribute);
end New_NmTokens_Attribute;
----------------------------
-- New_Notation_Attribute --
----------------------------
procedure New_Notation_Attribute
(Self : in out Attribute_Table;
Name : Symbol_Identifier;
Attribute : out Attribute_Identifier) is
begin
New_Attribute (Self, Name, NOTATION, Attribute);
end New_Notation_Attribute;
----------
-- Next --
----------
function Next
(Self : Attribute_Table;
Attribute : Attribute_Identifier) return Attribute_Identifier is
begin
return Self.Table (Attribute).Next;
end Next;
-----------
-- Reset --
-----------
procedure Reset (Self : in out Attribute_Table) is
begin
Clear (Self);
-- Resets to initial state.
Self.Last := No_Attribute;
end Reset;
-----------------
-- Set_Default --
-----------------
procedure Set_Default
(Self : in out Attribute_Table;
Attribute : Attribute_Identifier;
Value : not null Matreshka.Internals.Strings.Shared_String_Access) is
begin
Matreshka.Internals.Strings.Reference (Value);
Self.Table (Attribute).Default := Value;
end Set_Default;
------------------
-- Set_Is_Fixed --
------------------
procedure Set_Is_Fixed
(Self : in out Attribute_Table;
Attribute : Attribute_Identifier;
Value : Boolean) is
begin
Self.Table (Attribute).Is_Fixed := Value;
end Set_Is_Fixed;
--------------------
-- Set_Is_Implied --
--------------------
procedure Set_Is_Implied
(Self : in out Attribute_Table;
Attribute : Attribute_Identifier;
Value : Boolean) is
begin
Self.Table (Attribute).Is_Implied := Value;
end Set_Is_Implied;
---------------------
-- Set_Is_Required --
---------------------
procedure Set_Is_Required
(Self : in out Attribute_Table;
Attribute : Attribute_Identifier;
Value : Boolean) is
begin
Self.Table (Attribute).Is_Required := Value;
end Set_Is_Required;
-------------------------
-- Symbol_Of_Type_Name --
-------------------------
function Symbol_Of_Type_Name
(Self : Attribute_Table;
Attribute : Attribute_Identifier) return Symbol_Identifier is
begin
case Self.Table (Attribute).The_Type is
when CDATA =>
return Symbol_CDATA;
when ENTITIES =>
return Symbol_ENTITIES;
when ENTITY =>
return Symbol_ENTITY;
when ID =>
return Symbol_ID;
when IDREF =>
return Symbol_IDREF;
when IDREFS =>
return Symbol_IDREFS;
when NMTOKEN =>
return Symbol_NMTOKEN;
when NMTOKENS =>
return Symbol_NMTOKENS;
when NOTATION =>
return Symbol_NOTATION;
when ENUMERATION =>
-- [SAX2] Attribiutes::getType
--
-- "For an enumerated attribute that is not a notation, the parser
-- will report the type as "NMTOKEN"."
return Symbol_NMTOKEN;
end case;
end Symbol_Of_Type_Name;
end Matreshka.Internals.XML.Attribute_Tables;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Web Framework --
-- --
-- Tools Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2015, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with Asis;
with Engines.Contexts;
with League.Strings;
package Properties.Expressions.Selected_Components is
function Call_Convention
(Engine : access Engines.Contexts.Context;
Element : Asis.Declaration;
Name : Engines.Convention_Property)
return Engines.Convention_Kind;
function Code
(Engine : access Engines.Contexts.Context;
Element : Asis.Expression;
Name : Engines.Text_Property) return League.Strings.Universal_String;
function Intrinsic_Name
(Engine : access Engines.Contexts.Context;
Element : Asis.Declaration;
Name : Engines.Text_Property) return League.Strings.Universal_String;
function Initialize
(Engine : access Engines.Contexts.Context;
Element : Asis.Expression;
Name : Engines.Text_Property) return League.Strings.Universal_String;
function Method_Name
(Engine : access Engines.Contexts.Context;
Element : Asis.Expression;
Name : Engines.Text_Property) return League.Strings.Universal_String;
function Is_Dispatching
(Engine : access Engines.Contexts.Context;
Element : Asis.Declaration;
Name : Engines.Boolean_Property) return Boolean;
function Bounds
(Engine : access Engines.Contexts.Context;
Element : Asis.Expression;
Name : Engines.Text_Property) return League.Strings.Universal_String
renames Intrinsic_Name;
function Typed_Array_Item_Type
(Engine : access Engines.Contexts.Context;
Element : Asis.Expression;
Name : Engines.Text_Property) return League.Strings.Universal_String;
function Size
(Engine : access Engines.Contexts.Context;
Element : Asis.Expression;
Name : Engines.Text_Property) return League.Strings.Universal_String;
function Alignment
(Engine : access Engines.Contexts.Context;
Element : Asis.Expression;
Name : Engines.Integer_Property) return Integer;
end Properties.Expressions.Selected_Components;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
-- --
-- A D A . I N T E R R U P T S . N A M E S --
-- --
-- S p e c --
-- --
-- Copyright (C) 2012-2017, 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/>. --
-- --
-- GNARL was developed by the GNARL team at Florida State University. --
-- Extensive contributions were provided by Ada Core Technologies, Inc. --
-- --
------------------------------------------------------------------------------
-- This is the version for p5566 target of this package
pragma Restrictions (No_Elaboration_Code);
package Ada.Interrupts.Names is
-- All identifiers in this unit are implementation defined
pragma Implementation_Defined;
-- Names come from the Source column of Table 10-9 of MPC5566RM
INTC_SSCIR0 : constant Interrupt_ID := 0;
INTC_SSCIR1 : constant Interrupt_ID := 1;
INTC_SSCIR2 : constant Interrupt_ID := 2;
INTC_SSCIR3 : constant Interrupt_ID := 3;
INTC_SSCIR4 : constant Interrupt_ID := 4;
INTC_SSCIR5 : constant Interrupt_ID := 5;
INTC_SSCIR6 : constant Interrupt_ID := 6;
INTC_SSCIR7 : constant Interrupt_ID := 7;
end Ada.Interrupts.Names;
|
-- Abstract :
--
-- Run the gpr parser standalone. Useful for debugging grammar issues.
--
-- Copyright (C) 2017 - 2019 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or
-- modify it under terms of the GNU General Public License as
-- published by the Free Software Foundation; either version 3, 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
-- distributed with this program; see file COPYING. If not, write to
-- the Free Software Foundation, 51 Franklin Street, Suite 500, Boston,
-- MA 02110-1335, USA.
pragma License (GPL);
with Gen_Run_Wisi_LR_Parse;
with Gpr_Process_Actions;
with Gpr_Process_Main;
with Wisi.Gpr;
procedure Run_Gpr_Parse is new Gen_Run_Wisi_LR_Parse
(Wisi.Gpr.Parse_Data_Type,
Gpr_Process_Actions.Descriptor,
null,
null,
null,
Gpr_Process_Main.Create_Parser);
|
with Ada.Text_IO; use Ada.Text_IO;
with Ada.Exceptions;
-- Equitable
package body LR.Synchro.Equitable is
function Nom_Strategie return String is
begin
return "Stratègie equitable";
end Nom_Strategie;
task LectRedTask is
entry Demander_Lecture;
entry Demander_Ecriture;
entry Terminer_Lecture;
entry Terminer_Ecriture;
end LectRedTask;
task body LectRedTask is
type EtatType is (libre_prio_lect, libre_prio_rect, lecture_prio_lect, lecture_prio_rect, ecriture);
etat : EtatType := libre_prio_lect;
nbL : Natural := 0;
begin
loop
-- ETAT LIBRE_PRIO_LECT
if etat = libre_prio_lect then
select
accept Demander_Lecture ;
etat := lecture_prio_lect;
nbL := 1;
or
when Demander_Ecriture'count = 0 => accept Demander_Ecriture ;
etat := ecriture;
or
terminate;
end select;
-- ETAT LIBRE_PRIO_RECT
elsif etat = libre_prio_rect then
select
when Demander_Ecriture'count = 0 => accept Demander_Lecture ;
etat := lecture_prio_rect;
nbL := 1;
or
accept Demander_Ecriture ;
etat := ecriture;
or
terminate;
end select;
-- ETAT LECTURE_PRIO_LECT
elsif etat = lecture_prio_lect then
select
accept Demander_Lecture;
nbL := nbL +1;
or
accept Terminer_Lecture;
nbL := nbL -1;
if nbL = 0 then
etat := libre_prio_rect;
else
etat := lecture_prio_rect;
end if;
end select;
-- ETAT LECTURE_PRIO_RECT
elsif etat = lecture_prio_rect then
select
when Demander_Ecriture'count = 0 => accept Demander_Lecture;
nbL := nbL +1;
or
accept Terminer_Lecture;
nbL := nbL -1;
if nbL = 0 then
etat := libre_prio_rect;
else
etat := lecture_prio_rect;
end if;
end select;
-- ETAT ECRITURE
elsif etat = ecriture then
select
accept Terminer_Ecriture;
etat := libre_prio_lect;
end select;
end if;
end loop;
exception
when Error: others =>
Put_Line("**** LectRedTask: exception: " & Ada.Exceptions.Exception_Information(Error));
end LectRedTask;
procedure Demander_Lecture is
begin
LectRedTask.Demander_Lecture;
end Demander_Lecture;
procedure Demander_Ecriture is
begin
LectRedTask.Demander_Ecriture;
end Demander_Ecriture;
procedure Terminer_Lecture is
begin
LectRedTask.Terminer_Lecture;
end Terminer_Lecture;
procedure Terminer_Ecriture is
begin
LectRedTask.Terminer_Ecriture;
end Terminer_Ecriture;
end LR.Synchro.Equitable;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S Y S T E M . V A L _ L L U --
-- --
-- S p e c --
-- --
-- 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. --
-- --
------------------------------------------------------------------------------
-- This package contains routines for scanning modular Long_Long_Unsigned
-- values for use in Text_IO.Modular_IO, and the Value attribute.
with System.Unsigned_Types;
package System.Val_LLU is
pragma Pure;
function Scan_Raw_Long_Long_Unsigned
(Str : String;
Ptr : not null access Integer;
Max : Integer) return System.Unsigned_Types.Long_Long_Unsigned;
-- This function scans the string starting at Str (Ptr.all) for a valid
-- integer according to the syntax described in (RM 3.5(43)). The substring
-- scanned extends no further than Str (Max). Note: this does not scan
-- leading or trailing blanks, nor leading sign.
--
-- There are three cases for the return:
--
-- If a valid integer is found, then Ptr.all is updated past the last
-- character of the integer.
--
-- If no valid integer is found, then Ptr.all points either to an initial
-- non-digit character, or to Max + 1 if the field is all spaces and the
-- exception Constraint_Error is raised.
--
-- If a syntactically valid integer is scanned, but the value is out of
-- range, or, in the based case, the base value is out of range or there
-- is an out of range digit, then Ptr.all points past the integer, and
-- Constraint_Error is raised.
--
-- Note: these rules correspond to the requirements for leaving the pointer
-- positioned in Text_IO.Get. Note that the rules as stated in the RM would
-- seem to imply that for a case like:
--
-- 8#12345670009#
--
-- the pointer should be left at the first # having scanned out the longest
-- valid integer literal (8), but in fact in this case the pointer points
-- past the final # and Constraint_Error is raised. This is the behavior
-- expected for Text_IO and enforced by the ACATS tests.
--
-- If a based literal is malformed in that a character other than a valid
-- hexadecimal digit is encountered during scanning out the digits after
-- the # (this includes the case of using the wrong terminator, : instead
-- of # or vice versa) there are two cases. If all the digits before the
-- non-digit are in range of the base, as in
--
-- 8#100x00#
-- 8#100:
--
-- then in this case, the "base" value before the initial # is returned as
-- the result, and the pointer points to the initial # character on return.
--
-- If an out of range digit has been detected before the invalid character,
-- as in:
--
-- 8#900x00#
-- 8#900:
--
-- then the pointer is also left at the initial # character, but constraint
-- error is raised reflecting the encounter of an out of range digit.
--
-- Finally if we have an unterminated fixed-point constant where the final
-- # or : character is missing, Constraint_Error is raised and the pointer
-- is left pointing past the last digit, as in:
--
-- 8#22
--
-- This string results in a Constraint_Error with the pointer pointing
-- past the second 2.
--
-- Note: if Str is empty, i.e. if Max is less than Ptr, then this is a
-- special case of an all-blank string, and Ptr is unchanged, and hence
-- is greater than Max as required in this case.
--
-- Note: this routine should not be called with Str'Last = Positive'Last.
-- If this occurs Program_Error is raised with a message noting that this
-- case is not supported. Most such cases are eliminated by the caller.
function Scan_Long_Long_Unsigned
(Str : String;
Ptr : not null access Integer;
Max : Integer) return System.Unsigned_Types.Long_Long_Unsigned;
-- Same as Scan_Raw_Long_Long_Unsigned, except scans optional leading
-- blanks, and an optional leading plus sign.
--
-- Note: if a minus sign is present, Constraint_Error will be raised.
-- Note: trailing blanks are not scanned.
function Value_Long_Long_Unsigned
(Str : String) return System.Unsigned_Types.Long_Long_Unsigned;
-- Used in computing X'Value (Str) where X is a modular integer type whose
-- modulus exceeds the range of System.Unsigned_Types.Unsigned. Str is the
-- string argument of the attribute. Constraint_Error is raised if the
-- string is malformed, or if the value is out of range.
end System.Val_LLU;
|
with OO_Privacy, Ada.Unchecked_Conversion, Ada.Text_IO;
procedure OO_Break_Privacy is
type Hacker_Stuff is tagged record
Password: OO_Privacy.Password_Type := "?unknown";
end record;
function Hack is new Ada.Unchecked_Conversion
(Source => OO_Privacy.Confidential_Stuff, Target => Hacker_Stuff);
C: OO_Privacy.Confidential_Stuff; -- which password is hidden inside C?
begin
Ada.Text_IO.Put_Line("The secret password is """ & Hack(C).Password & """");
end OO_Break_Privacy;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- SYSTEM.MACHINE_STATE_OPERATIONS --
-- --
-- S p e c --
-- --
-- Copyright (C) 1999-2014, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
pragma Compiler_Unit_Warning;
pragma Polling (Off);
-- We must turn polling off for this unit, because otherwise we get
-- elaboration circularities with System.Exception_Tables.
with System.Storage_Elements;
package System.Machine_State_Operations is
subtype Code_Loc is System.Address;
-- Code location used in building exception tables and for call addresses
-- when propagating an exception (also traceback table) Values of this
-- type are created by using Label'Address or extracted from machine
-- states using Get_Code_Loc.
type Machine_State is new System.Address;
-- The table based exception handling approach (see a-except.adb) isolates
-- the target dependent aspects using an abstract data type interface
-- to the type Machine_State, which is represented as a System.Address
-- value (presumably implemented as a pointer to an appropriate record
-- structure).
function Machine_State_Length return System.Storage_Elements.Storage_Offset;
-- Function to determine the length of the Storage_Array needed to hold
-- a machine state. The machine state will always be maximally aligned.
-- The value returned is a constant that will be used to allocate space
-- for a machine state value.
function Allocate_Machine_State return Machine_State;
-- Allocate the required space for a Machine_State
procedure Free_Machine_State (M : in out Machine_State);
-- Free the dynamic memory taken by Machine_State
-- The initial value of type Machine_State is created by the low level
-- routine that actually raises an exception using the special builtin
-- _builtin_machine_state. This value will typically encode the value of
-- the program counter, and relevant registers. The following operations
-- are defined on Machine_State values:
function Get_Code_Loc (M : Machine_State) return Code_Loc;
-- This function extracts the program counter value from a machine state,
-- which the caller uses for searching the exception tables, and also for
-- recording entries in the traceback table. The call returns a value of
-- Null_Loc if the machine state represents the outer level, or some other
-- frame for which no information can be provided.
procedure Pop_Frame (M : Machine_State);
-- This procedure pops the machine state M so that it represents the
-- call point, as though the current subprogram had returned. It changes
-- only the value referenced by M, and does not affect the current stack
-- environment.
function Fetch_Code (Loc : Code_Loc) return Code_Loc;
-- Some architectures (notably HPUX) use a descriptor to describe a
-- subprogram address. This function computes the actual starting
-- address of the code from Loc.
--
-- Do not add pragma Inline to this function: there is a curious
-- interaction between rtsfind and front-end inlining. The exception
-- declaration in s-auxdec calls rtsfind, which forces several other system
-- packages to be compiled. Some of those have a pragma Inline, and we
-- compile the corresponding bodies so that inlining can take place. One
-- of these packages is s-mastop, which depends on s-auxdec, which is still
-- being compiled: we have not seen all the declarations in it yet, so we
-- get confused semantic errors ???
procedure Set_Machine_State (M : Machine_State);
-- This routine sets M from the current machine state. It is called when an
-- exception is initially signalled to initialize the state.
end System.Machine_State_Operations;
|
-----------------------------------------------------------------------
-- auth_cb -- Authentication callback examples
-- Copyright (C) 2013 Stephane Carrez
-- Written by Stephane Carrez (Stephane.Carrez@gmail.com)
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Util.Properties;
with Util.Log.Loggers;
with Util.Http.Clients.Web;
with AWS.Config;
with AWS.Config.Set;
with AWS.Server;
with AWS.Services.Dispatchers.URI;
with AWS.Services.Page_Server;
with AWS.Services.Web_Block.Registry;
with AWS.Net.SSL;
with Auth_CB;
procedure Auth_Demo is
Log : Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("Auth_Demo");
Dispatcher : AWS.Services.Dispatchers.URI.Handler;
WS : AWS.Server.HTTP;
Config : AWS.Config.Object;
begin
if not AWS.Net.SSL.Is_Supported then
Log.Error ("SSL is not supported by AWS.");
Log.Error ("SSL is required for the OpenID connector to connect to OpenID providers.");
Log.Error ("Please, rebuild AWS with SSL support.");
return;
end if;
-- Get the authentication provider configuration. We use the Util.Properties and some
-- java like property file. Other configuration implementation are possible.
Auth_CB.Config.Load_Properties ("samples.properties");
Util.Log.Loggers.Initialize (Util.Properties.Manager (Auth_CB.Config));
-- Setup the HTTP client implementation to use AWS.
Util.Http.Clients.Web.Register;
-- Setup AWS dispatchers.
AWS.Services.Dispatchers.URI.Register (Dispatcher, "/atlas/auth/auth",
Auth_CB.Get_Authorization'Access,
Prefix => True);
AWS.Services.Dispatchers.URI.Register (Dispatcher, "/verify",
Auth_CB.Verify_Authorization'Access);
AWS.Services.Dispatchers.URI.Register (Dispatcher, "/atlas",
AWS.Services.Page_Server.Callback'Access,
Prefix => True);
AWS.Services.Dispatchers.URI.Register (Dispatcher, "/success",
Auth_CB.User_Info'Access);
AWS.Services.Web_Block.Registry.Register ("success", "samples/web/success.thtml", null);
-- Configure AWS.
Config := AWS.Config.Get_Current;
AWS.Config.Set.Session (Config, True);
AWS.Config.Set.Session_Name (Config, "AUTH_DEMO");
AWS.Config.Set.Reuse_Address (Config, True);
AWS.Config.Set.WWW_Root (Config, "samples/web");
AWS.Server.Start (WS, Dispatcher => Dispatcher, Config => Config);
Log.Info ("Connect you browser to: http://localhost:8080/atlas/login.html");
Log.Info ("Press 'q' key to stop the server.");
AWS.Server.Wait (AWS.Server.Q_Key_Pressed);
Log.Info ("Shutting down server...");
AWS.Server.Shutdown (WS);
end Auth_Demo;
|
package Buffer_Package is
NONE : Integer := Integer'Size - 1;
type Pos is record
L : Integer;
C : Integer;
end record;
type Tag is record
P1 : Pos;
P2 : Pos;
V : Integer;
end record;
type Tag_Type is (
VIRTCURS,
HIGHLIGHT,
BLOCK,
TAG_MAX);
type Tags_Array is array (0 .. 2) of Tag;
type Buffer is record
N : Integer;
Can_Undo : Boolean;
Dirty : Boolean;
Tags : Tags_Array;
end record;
procedure Enable_Undo (B : in out Buffer);
procedure Clear_Tag (B : in out Buffer; T : Tag_Type);
procedure Set_Tag
(B : out Buffer;
T : Tag_Type;
P1 : Pos;
P2 : Pos;
V : Integer);
end Buffer_Package;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S Y S T E M . P R O G R A M _ I N F O --
-- --
-- B o d y --
-- --
-- Copyright (C) 1996-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. --
-- --
------------------------------------------------------------------------------
package body System.Program_Info is
Default_Stack_Size : constant := 10000;
function Default_Task_Stack return Integer is
begin
return Default_Stack_Size;
end Default_Task_Stack;
end System.Program_Info;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- F R O N T E N D --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2007, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING3. If not, go to --
-- http://www.gnu.org/licenses for a complete copy of the license. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- Top level of the front-end. This procedure is used by the different
-- gnat drivers.
procedure Frontend;
|
-- SPDX-License-Identifier: Apache-2.0
--
-- Copyright (c) 2019 onox <denkpadje@gmail.com>
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
with Orka.OS;
package body Orka.Inputs.Joysticks.Tapping is
function Create_Tap_Detector
(Button : Button_Index;
Max_Delta : Duration) return Button_Tap_Detector is
begin
return
(Button => Button,
Max_Delta => Max_Delta,
Last_Press => Orka.OS.Monotonic_Clock - Max_Delta,
Active => False);
end Create_Tap_Detector;
function Detect_Activation
(Object : in out Button_Tap_Detector;
Joystick : Joystick_Input'Class) return Boolean
is
Current_Time : constant Time := Orka.OS.Monotonic_Clock;
On_Time : constant Boolean := Current_Time - Object.Last_Press < Object.Max_Delta;
begin
if Joystick.Just_Pressed (Object.Button) then
Object.Last_Press := Current_Time;
Object.Active := On_Time;
end if;
return On_Time and Object.Active;
end Detect_Activation;
end Orka.Inputs.Joysticks.Tapping;
|
-- 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.
name = "Alterations"
type = "alt"
ldh_chars = "_abcdefghijklmnopqrstuvwxyz0123456789-"
function resolved(ctx, name, domain, records)
local nparts = split(name, ".")
local dparts = split(domain, ".")
-- Do not process resolved root domain names
if #nparts <= #dparts then
return
end
local cfg = config(ctx)
if (cfg.mode == "passive" or not cfg['alterations'].active) then
return
end
makenames(ctx, cfg.alterations, name)
end
function makenames(ctx, cfg, name)
local s = {}
local words = alt_wordlist(ctx)
if cfg['flip_words'] then
set_insert_many(s, flip_words(name, words))
end
if cfg['flip_numbers'] then
set_insert_many(s, flip_numbers(name))
end
if cfg['add_numbers'] then
set_insert_many(s, append_numbers(name))
end
if cfg['add_words'] then
set_insert_many(s, add_prefix_word(name, words))
set_insert_many(s, add_suffix_word(name, words))
end
local distance = cfg['edit_distance']
if distance > 0 then
set_insert_many(s, fuzzy_label_searches(name, distance))
end
for i, n in pairs(set_elements(s)) do
sendnames(ctx, n)
end
end
function flip_words(name, words)
local parts = split(name, ".")
local hostname = parts[1]
local base = partial_join(parts, ".", 2, #parts)
parts = split(hostname, "-")
if #parts < 2 then
return nil
end
local s = {}
local post = partial_join(parts, "-", 2, #parts)
for i, word in pairs(words) do
set_insert(s, word .. "-" .. post .. "." .. base)
end
local pre = partial_join(parts, "-", 1, #parts - 1)
for i, word in pairs(words) do
set_insert(s, pre .. "-" .. word .. "." .. base)
end
return set_elements(s)
end
function flip_numbers(name)
local parts = split(name, ".")
local hostname = parts[1]
local base = partial_join(parts, ".", 2, #parts)
local s = {}
local start = 1
while true do
local b, e = string.find(hostname, "%d+", start)
if b == nil then
break
end
start = e + 1
local pre = string.sub(hostname, 1, b - 1)
local post = string.sub(hostname, e + 1)
-- Create an entry with the number removed
set_insert(s, pre .. post .. "." .. base)
local seq = numseq(tonumber(string.sub(hostname, b, e)))
for i, sn in pairs(seq) do
set_insert(s, pre .. sn .. post .. "." .. base)
end
end
return set_elements(s)
end
function numseq(num)
local s = {}
local start = num - 50
if start < 1 then
start = 1
end
local max = num + 50
for i=start,max do
set_insert(s, tostring(i))
end
return set_elements(s)
end
function append_numbers(name)
local s = {}
local parts = split(name, ".")
local hostname = parts[1]
local base = partial_join(parts, ".", 2, #parts)
for i=0,9 do
set_insert(s, hostname .. tostring(i) .. "." .. base)
set_insert(s, hostname .. "-" .. tostring(i) .. "." .. base)
end
return set_elements(s)
end
function add_prefix_word(name, words)
local s = {}
local parts = split(name, ".")
local hostname = parts[1]
local base = partial_join(parts, ".", 2, #parts)
for i, w in pairs(words) do
set_insert(s, w .. hostname .. "." .. base)
set_insert(s, w .. "-" .. hostname .. "." .. base)
end
return set_elements(s)
end
function add_suffix_word(name, words)
local s = {}
local parts = split(name, ".")
local hostname = parts[1]
local base = partial_join(parts, ".", 2, #parts)
for i, w in pairs(words) do
set_insert(s, hostname .. w .. "." .. base)
set_insert(s, hostname .. "-" .. w .. "." .. base)
end
return set_elements(s)
end
function fuzzy_label_searches(name, distance)
local parts = split(name, ".")
local hostname = parts[1]
local base = partial_join(parts, ".", 2, #parts)
local s = {hostname}
for i=1,distance do
local tb = set_elements(s)
set_insert_many(s, additions(tb))
set_insert_many(s, deletions(tb))
set_insert_many(s, substitutions(tb))
end
local results = {}
for i, n in pairs(set_elements(s)) do
set_insert(results, n .. "." .. base)
end
return set_elements(results)
end
function additions(set)
local results = {}
local l = string.len(ldh_chars)
for x, name in pairs(set) do
local nlen = string.len(name)
for i=1,nlen do
for j=1,l do
local c = string.sub(ldh_chars, j, j)
local post = string.sub(name, i)
local pre = ""
if i > 1 then
pre = string.sub(name, 1, i - 1)
end
set_insert(results, pre .. c .. post)
end
end
end
return set_elements(results)
end
function deletions(set)
local results = {}
for x, name in pairs(set) do
local nlen = string.len(name)
for i=1,nlen do
local post = string.sub(name, i + 1)
local pre = ""
if i > 1 then
pre = string.sub(name, 1, i - 1)
end
set_insert(results, pre .. post)
end
end
return set_elements(results)
end
function substitutions(set)
local results = {}
local l = string.len(ldh_chars)
for x, name in pairs(set) do
local nlen = string.len(name)
for i=1,nlen do
for j=1,l do
local c = string.sub(ldh_chars, j, j)
local post = string.sub(name, i + 1)
local pre = ""
if i > 1 then
pre = string.sub(name, 1, i - 1)
end
set_insert(results, pre .. c .. post)
end
end
end
return set_elements(results)
end
function split(str, delim)
local result = {}
local pattern = "[^%" .. delim .. "]+"
local matches = find(str, pattern)
if (matches == nil or #matches == 0) then
return result
end
for i, match in pairs(matches) do
table.insert(result, match)
end
return result
end
function join(parts, sep)
local result = ""
for i, v in pairs(parts) do
result = result .. sep .. v
end
return result
end
function partial_join(parts, sep, first, last)
if (first < 1 or last > #parts) then
return ""
end
local result = parts[first]
first = first + 1
for i=first,last do
result = result .. sep .. parts[i]
end
return result
end
function set_insert(tb, name)
if name ~= "" then
tb[name] = true
end
return tb
end
function set_insert_many(tb, list)
if list == nil then
return tb
end
for i, v in pairs(list) do
tb[v] = true
end
return tb
end
function set_elements(tb)
local result = {}
if tb == nil then
return result
end
for k, v in pairs(tb) do
table.insert(result, k)
end
return result
end
function sendnames(ctx, content)
local names = find(content, subdomainre)
if names == nil then
return
end
for i, v in pairs(names) do
newname(ctx, v)
end
end
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Localization, Internationalization, Globalization for Ada --
-- --
-- Tools Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2011, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with GNAT.OS_Lib;
with GNAT.Strings;
package body Configure.Tests.Valgrind is
Has_Valgrind_Name : constant Unbounded_String := +"HAS_VALGRIND";
Valgrind_Name : constant Unbounded_String := +"VALGRIND";
-------------
-- Execute --
-------------
overriding procedure Execute
(Self : in out Valgrind_Test;
Arguments : in out Unbounded_String_Vector)
is
use type GNAT.Strings.String_Access;
Valgrind : constant GNAT.Strings.String_Access
:= GNAT.Os_Lib.Locate_Exec_On_Path ("valgrind");
begin
if Valgrind /= null then
Substitutions.Insert (Has_Valgrind_Name, +"true");
Substitutions.Insert (Valgrind_Name, +Valgrind.all);
else
Substitutions.Insert (Has_Valgrind_Name, Null_Unbounded_String);
Substitutions.Insert (Valgrind_Name, Null_Unbounded_String);
end if;
end Execute;
----------
-- Help --
----------
overriding function Help
(Self : Valgrind_Test) return Unbounded_String_Vector is
begin
return Result : Unbounded_String_Vector;
end Help;
----------
-- Name --
----------
overriding function Name (Self : Valgrind_Test) return String is
begin
return "valgrind";
end Name;
end Configure.Tests.Valgrind;
|
with
Ada.Directories;
package body JSA.Directories is
procedure Rename_As_Backup (Name : in String) is
use Ada.Directories;
Backup : constant String := Name & "~";
begin
if Exists (Name) then
if Exists (Backup) then
Delete_File (Backup);
end if;
Rename (Old_Name => Name,
New_Name => Backup);
end if;
end Rename_As_Backup;
end JSA.Directories;
|
-- CC1221C.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:
-- FOR A FORMAL INTEGER TYPE, CHECK THAT THE FOLLOWING BASIC
-- OPERATIONS ARE IMPLICITLY DECLARED AND ARE THEREFORE AVAILABLE
-- WITHIN THE GENERIC UNIT: ATTRIBUTES 'POS, 'VAL, 'PRED, 'SUCC,
-- 'IMAGE, AND 'VALUE.
-- HISTORY:
-- BCB 11/12/87 CREATED ORIGINAL TEST FROM SPLIT OF CC1221A.ADA
WITH SYSTEM; USE SYSTEM;
WITH REPORT; USE REPORT;
PROCEDURE CC1221C IS
SUBTYPE SUBINT IS INTEGER RANGE -100 .. 100;
TYPE NEWINT IS NEW INTEGER;
TYPE INT IS RANGE -300 .. 300;
SUBTYPE SINT1 IS INT
RANGE INT (IDENT_INT (-4)) .. INT (IDENT_INT (4));
TYPE INT1 IS RANGE -6 .. 6;
BEGIN
TEST ( "CC1221C", "FOR A FORMAL INTEGER TYPE, CHECK THAT THE " &
"FOLLOWING BASIC OPERATIONS ARE IMPLICITLY " &
"DECLARED AND ARE THEREFORE AVAILABLE " &
"WITHIN THE GENERIC UNIT: ATTRIBUTES 'POS, " &
"'VAL, 'PRED, 'SUCC, 'IMAGE, AND 'VALUE");
DECLARE -- (C1) CHECKS FOR BASIC OPERATIONS OF A DISCRETE TYPE.
-- PART III.
GENERIC
TYPE T IS RANGE <>;
F : INTEGER;
PROCEDURE P (STR : STRING);
PROCEDURE P (STR : STRING) IS
I : INTEGER;
Y : T;
FUNCTION IDENT (X : T) RETURN T IS
BEGIN
IF EQUAL (3, 3) THEN
RETURN X;
ELSE
RETURN T'SUCC (T'FIRST);
END IF;
END IDENT;
BEGIN
I := F;
FOR X IN T LOOP
IF T'VAL (I) /= X THEN
FAILED ( "WRONG VALUE FOR " & STR &
"'VAL OF " & INTEGER'IMAGE (I));
END IF;
IF T'POS (X) /= I THEN
FAILED ( "WRONG VALUE FOR " & STR &
"'POS OF " & T'IMAGE (X));
END IF;
I := I + 1;
END LOOP;
FOR X IN T LOOP
IF T'SUCC (X) /= T'VAL (T'POS (X) + 1) THEN
FAILED ( "WRONG VALUE FOR " & STR &
"'SUCC OF " & T'IMAGE (X));
END IF;
IF T'PRED (X) /= T'VAL (T'POS (X) - 1) THEN
FAILED ( "WRONG VALUE FOR " & STR &
"'PRED OF " & T'IMAGE (X));
END IF;
END LOOP;
BEGIN
Y := T'SUCC (IDENT (T'BASE'LAST));
FAILED ( "NO EXCEPTION RAISED FOR " &
STR & "'SUCC (IDENT (" & STR &
"'BASE'LAST))" );
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ( "WRONG EXCEPTION RAISED FOR " &
STR & "'SUCC (IDENT (" & STR &
"'BASE'LAST))" );
END;
BEGIN
Y := T'PRED (IDENT (T'BASE'FIRST));
FAILED ( "NO EXCEPTION RAISED FOR " &
STR & "'PRED (IDENT (" & STR &
"'BASE'FIRST))" );
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ( "WRONG EXCEPTION RAISED FOR " &
STR & "'PRED (IDENT (" & STR &
"'BASE'FIRST))" );
END;
END P;
PROCEDURE P1 IS NEW P (SUBINT, -100);
PROCEDURE P2 IS NEW P (SINT1, -4);
PROCEDURE P3 IS NEW P (INT1, -6);
BEGIN
P1 ( "SUBINT" );
P2 ( "SINT" );
P3 ( "INT1" );
END; -- (C1).
DECLARE -- (C2) CHECKS FOR BASIC OPERATIONS OF A DISCRETE TYPE.
-- PART IV.
GENERIC
TYPE T IS RANGE <>;
STR : STRING;
PACKAGE PKG IS END PKG;
PACKAGE BODY PKG IS
PROCEDURE P (IM : STRING; VA : T) IS
BEGIN
IF T'IMAGE (VA) /= IM THEN
FAILED ( "INCORRECT RESULTS FOR " & STR &
"'IMAGE OF " &
INTEGER'IMAGE (INTEGER (VA)));
END IF;
END P;
PROCEDURE Q (IM : STRING; VA : T) IS
BEGIN
IF T'VALUE (IM) /= VA THEN
FAILED ( "INCORRECT RESULTS FOR " & STR &
"'VALUE OF " & IM);
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
FAILED ( "CONSTRAINT_ERROR RAISED FOR " &
STR &"'VALUE OF " & IM);
WHEN OTHERS =>
FAILED ( "OTHER EXCEPTION RAISED FOR " &
STR &"'VALUE OF " & IM);
END Q;
BEGIN
P (" 2", 2);
P ("-1", -1);
Q (" 2", 2);
Q ("-1", -1);
Q (" 2", 2);
Q ("-1 ", -1);
END PKG;
PACKAGE PKG1 IS NEW PKG (SUBINT, "SUBINT");
PACKAGE PKG2 IS NEW PKG (SINT1, "SINT1");
PACKAGE PKG3 IS NEW PKG (INT1, "INT1");
PACKAGE PKG4 IS NEW PKG (NEWINT, "NEWINT");
BEGIN
NULL;
END; -- (C2).
RESULT;
END CC1221C;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S D E F A U L T --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2009, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING3. If not, go to --
-- http://www.gnu.org/licenses for a complete copy of the license. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package contains functions that return the default values for the
-- include and object file directories, target name, default library
-- subdirectory (libsubdir) prefix, and the target OS. The body is generated
-- automatically by the build process.
with Types; use Types;
package Sdefault is
function Include_Dir_Default_Name return String_Ptr;
function Object_Dir_Default_Name return String_Ptr;
function Target_Name return String_Ptr;
function Search_Dir_Prefix return String_Ptr;
end Sdefault;
|
with Ada.Text_Io; use Ada.Text_Io;
procedure Gcd_Test is
function Gcd (A, B : Integer) return Integer is
M : Integer := A;
N : Integer := B;
T : Integer;
begin
while N /= 0 loop
T := M;
M := N;
N := T mod N;
end loop;
return M;
end Gcd;
begin
Put_Line("GCD of 100, 5 is" & Integer'Image(Gcd(100, 5)));
Put_Line("GCD of 5, 100 is" & Integer'Image(Gcd(5, 100)));
Put_Line("GCD of 7, 23 is" & Integer'Image(Gcd(7, 23)));
end Gcd_Test;
|
-- { dg-do run }
-- { dg-options "-O" }
with Loop_Optimization17_Pkg; use Loop_Optimization17_Pkg;
procedure Loop_Optimization17 is
Data : Arr;
begin
Data := (others => (I => 0,
V1 => (others => 0.0),
V2 => (others => 0.0),
S => 0.0));
for I in Index_T'Range loop
Object (I).V1 := F (Data (I).V1);
Object (I).V2 := F (Data (I).V2);
end loop;
end;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2012, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- This file is generated, don't edit it.
------------------------------------------------------------------------------
limited with AMF.UML.Dependencies;
package AMF.Utp.Test_Objectives is
pragma Preelaborate;
type Utp_Test_Objective is limited interface;
type Utp_Test_Objective_Access is
access all Utp_Test_Objective'Class;
for Utp_Test_Objective_Access'Storage_Size use 0;
not overriding function Get_Base_Dependency
(Self : not null access constant Utp_Test_Objective)
return AMF.UML.Dependencies.UML_Dependency_Access is abstract;
-- Getter of TestObjective::base_Dependency.
--
not overriding procedure Set_Base_Dependency
(Self : not null access Utp_Test_Objective;
To : AMF.UML.Dependencies.UML_Dependency_Access) is abstract;
-- Setter of TestObjective::base_Dependency.
--
not overriding function Get_Priority
(Self : not null access constant Utp_Test_Objective)
return AMF.Optional_String is abstract;
-- Getter of TestObjective::priority.
--
not overriding procedure Set_Priority
(Self : not null access Utp_Test_Objective;
To : AMF.Optional_String) is abstract;
-- Setter of TestObjective::priority.
--
end AMF.Utp.Test_Objectives;
|
-- @file shared_file_io.adb
-- @date 26 July 2020
-- @author Chester Gillon
-- @brief Example program to attempt to open the same file more than once in a program using the GNAT RTS
with Ada.Text_IO;
with Ada.Exceptions;
procedure Shared_File_Io is
In_File_A : Ada.Text_IO.File_Type;
In_File_B : Ada.Text_IO.File_Type;
Test_Filename : constant string := "/proc/self/maps";
begin
Ada.Text_IO.Put_Line ("In_File_A.Is_Open => " & Ada.Text_IO.Is_Open (File => In_File_A)'Image);
Ada.Text_IO.Put_Line ("In_File_B.Is_Open => " & Ada.Text_IO.Is_Open (File => In_File_B)'Image);
-- Initial attempt to open the same file twice, with no Form string provided in the Open call.
-- From https://docs.adacore.com/gnat_rm-docs/html/gnat_rm/gnat_rm/the_implementation_of_standard_i_o.html#shared-files :
-- - In the absence of a shared=xxx form parameter, an attempt to open two or more files with the same full name is
-- considered an error and is not supported. The exception Use_Error will be raised.
-- Note that a file that is not explicitly closed by the program remains open until the program terminates.
begin
Ada.Text_IO.Open (File => In_File_A, Mode => Ada.Text_IO.In_File, Name => Test_Filename);
Ada.Text_IO.Put_Line ("In_File_A Form => " & Ada.Text_IO.Form (File => In_File_A));
exception
when The_Error : others =>
Ada.Text_IO.Put_Line ("Open In_File_A : " & Ada.Exceptions.Exception_Name (The_Error) & " " &
Ada.Exceptions.Exception_Name (The_Error));
end;
begin
Ada.Text_IO.Open (File => In_File_B, Mode => Ada.Text_IO.In_File, Name => Test_Filename);
Ada.Text_IO.Put_Line ("In_File_B Form => " & Ada.Text_IO.Form (File => In_File_B));
exception
when The_Error : others =>
Ada.Text_IO.Put_Line ("Open In_File_B : " & Ada.Exceptions.Exception_Name (The_Error) & " " &
Ada.Exceptions.Exception_Message (The_Error));
end;
Ada.Text_IO.Put_Line ("In_File_A.Is_Open => " & Ada.Text_IO.Is_Open (File => In_File_A)'Image);
Ada.Text_IO.Put_Line ("In_File_B.Is_Open => " & Ada.Text_IO.Is_Open (File => In_File_B)'Image);
if Ada.Text_IO.Is_Open (File => In_File_A) then
Ada.Text_IO.Close (File => In_File_A);
end if;
if Ada.Text_IO.Is_Open (File => In_File_B) then
Ada.Text_IO.Close (File => In_File_B);
end if;
-- Another attempt to open the same file twice, but using "shared=no" as the Form string to cause each file
-- to opened with its own separate stream identifier. Since the files are only read by the program this should
-- avoid any conflicts.
--
-- Running "ls -l /proc/`pgrep shared_file_io`/fd" shows these two Open calls each open their own file descriptor,
-- meaning the two streams are independent.
begin
Ada.Text_IO.Open (File => In_File_A, Mode => Ada.Text_IO.In_File, Name => Test_Filename, Form => "shared=no");
Ada.Text_IO.Put_Line ("In_File_A Form => " & Ada.Text_IO.Form (File => In_File_A));
exception
when The_Error : others =>
Ada.Text_IO.Put_Line ("Open In_File_A : " & Ada.Exceptions.Exception_Name (The_Error) & " " &
Ada.Exceptions.Exception_Name (The_Error));
end;
begin
Ada.Text_IO.Open (File => In_File_B, Mode => Ada.Text_IO.In_File, Name => Test_Filename, Form => "shared=no");
Ada.Text_IO.Put_Line ("In_File_B Form => " & Ada.Text_IO.Form (File => In_File_B));
exception
when The_Error : others =>
Ada.Text_IO.Put_Line ("Open In_File_B : " & Ada.Exceptions.Exception_Name (The_Error) & " " &
Ada.Exceptions.Exception_Message (The_Error));
end;
Ada.Text_IO.Put_Line ("In_File_A.Is_Open => " & Ada.Text_IO.Is_Open (File => In_File_A)'Image);
Ada.Text_IO.Put_Line ("In_File_B.Is_Open => " & Ada.Text_IO.Is_Open (File => In_File_B)'Image);
Ada.Text_IO.Close (File => In_File_A);
Ada.Text_IO.Close (File => In_File_B);
end Shared_File_Io;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . C R T L --
-- --
-- S p e c --
-- --
-- Copyright (C) 2003-2014, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package provides the low level interface to the C runtime library
pragma Compiler_Unit_Warning;
with System.Parameters;
package System.CRTL is
pragma Preelaborate;
subtype chars is System.Address;
-- Pointer to null-terminated array of characters
-- Should use Interfaces.C.Strings types instead, but this causes bootstrap
-- issues as i-c contains Ada 2005 specific features, not compatible with
-- older, Ada 95-only base compilers???
subtype DIRs is System.Address;
-- Corresponds to the C type DIR*
subtype FILEs is System.Address;
-- Corresponds to the C type FILE*
subtype int is Integer;
type long is range -(2 ** (System.Parameters.long_bits - 1))
.. +(2 ** (System.Parameters.long_bits - 1)) - 1;
subtype off_t is Long_Integer;
type size_t is mod 2 ** Standard'Address_Size;
type ssize_t is range -(2 ** (Standard'Address_Size - 1))
.. +(2 ** (Standard'Address_Size - 1)) - 1;
type int64 is new Long_Long_Integer;
-- Note: we use Long_Long_Integer'First instead of -2 ** 63 to allow this
-- unit to compile when using custom target configuration files where the
-- maximum integer is 32 bits. This is useful for static analysis tools
-- such as SPARK or CodePeer. In the normal case, Long_Long_Integer is
-- always 64-bits so there is no difference.
type Filename_Encoding is (UTF8, ASCII_8bits, Unspecified);
for Filename_Encoding use (UTF8 => 0, ASCII_8bits => 1, Unspecified => 2);
pragma Convention (C, Filename_Encoding);
-- Describes the filename's encoding
--------------------
-- GCC intrinsics --
--------------------
-- The following functions are imported with convention Intrinsic so that
-- we take advantage of back-end builtins if present (else we fall back
-- to C library functions by the same names).
function strlen (A : System.Address) return size_t;
pragma Import (Intrinsic, strlen, "strlen");
procedure strncpy (dest, src : System.Address; n : size_t);
pragma Import (Intrinsic, strncpy, "strncpy");
-------------------------------
-- Other C runtime functions --
-------------------------------
function atoi (A : System.Address) return Integer;
pragma Import (C, atoi, "atoi");
procedure clearerr (stream : FILEs);
pragma Import (C, clearerr, "clearerr");
function dup (handle : int) return int;
pragma Import (C, dup, "dup");
function dup2 (from, to : int) return int;
pragma Import (C, dup2, "dup2");
function fclose (stream : FILEs) return int;
pragma Import (C, fclose, "fclose");
function fdopen (handle : int; mode : chars) return FILEs;
pragma Import (C, fdopen, "fdopen");
function fflush (stream : FILEs) return int;
pragma Import (C, fflush, "fflush");
function fgetc (stream : FILEs) return int;
pragma Import (C, fgetc, "fgetc");
function fgets (strng : chars; n : int; stream : FILEs) return chars;
pragma Import (C, fgets, "fgets");
function fopen
(filename : chars;
mode : chars;
encoding : Filename_Encoding := Unspecified) return FILEs;
pragma Import (C, fopen, "__gnat_fopen");
function fputc (C : int; stream : FILEs) return int;
pragma Import (C, fputc, "fputc");
function fputwc (C : int; stream : FILEs) return int;
pragma Import (C, fputwc, "__gnat_fputwc");
function fputs (Strng : chars; Stream : FILEs) return int;
pragma Import (C, fputs, "fputs");
procedure free (Ptr : System.Address);
pragma Import (C, free, "free");
function freopen
(filename : chars;
mode : chars;
stream : FILEs;
encoding : Filename_Encoding := Unspecified) return FILEs;
pragma Import (C, freopen, "__gnat_freopen");
function fseek
(stream : FILEs;
offset : long;
origin : int) return int;
pragma Import (C, fseek, "fseek");
function fseek64
(stream : FILEs;
offset : int64;
origin : int) return int;
pragma Import (C, fseek64, "__gnat_fseek64");
function ftell (stream : FILEs) return long;
pragma Import (C, ftell, "ftell");
function ftell64 (stream : FILEs) return int64;
pragma Import (C, ftell64, "__gnat_ftell64");
function getenv (S : String) return System.Address;
pragma Import (C, getenv, "getenv");
function isatty (handle : int) return int;
pragma Import (C, isatty, "isatty");
function lseek (fd : int; offset : off_t; direction : int) return off_t;
pragma Import (C, lseek, "lseek");
function malloc (Size : size_t) return System.Address;
pragma Import (C, malloc, "malloc");
procedure memcpy (S1 : System.Address; S2 : System.Address; N : size_t);
pragma Import (C, memcpy, "memcpy");
procedure memmove (S1 : System.Address; S2 : System.Address; N : size_t);
pragma Import (C, memmove, "memmove");
procedure mktemp (template : chars);
pragma Import (C, mktemp, "mktemp");
function pclose (stream : System.Address) return int;
pragma Import (C, pclose, "pclose");
function popen (command, mode : System.Address) return System.Address;
pragma Import (C, popen, "popen");
function realloc
(Ptr : System.Address; Size : size_t) return System.Address;
pragma Import (C, realloc, "realloc");
procedure rewind (stream : FILEs);
pragma Import (C, rewind, "rewind");
function rmdir (dir_name : String) return int;
pragma Import (C, rmdir, "__gnat_rmdir");
function chdir (dir_name : String) return int;
pragma Import (C, chdir, "__gnat_chdir");
function mkdir
(dir_name : String;
encoding : Filename_Encoding := Unspecified) return int;
pragma Import (C, mkdir, "__gnat_mkdir");
function setvbuf
(stream : FILEs;
buffer : chars;
mode : int;
size : size_t) return int;
pragma Import (C, setvbuf, "setvbuf");
procedure tmpnam (str : chars);
pragma Import (C, tmpnam, "tmpnam");
function tmpfile return FILEs;
pragma Import (C, tmpfile, "tmpfile");
function ungetc (c : int; stream : FILEs) return int;
pragma Import (C, ungetc, "ungetc");
function unlink (filename : chars) return int;
pragma Import (C, unlink, "__gnat_unlink");
function open (filename : chars; oflag : int) return int;
pragma Import (C, open, "__gnat_open");
function close (fd : int) return int;
pragma Import (C, close, "close");
function read (fd : int; buffer : chars; count : size_t) return ssize_t;
pragma Import (C, read, "read");
function write (fd : int; buffer : chars; count : size_t) return ssize_t;
pragma Import (C, write, "write");
end System.CRTL;
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.